mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-10 09:17:00 +02:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commitc8ffd1356d
, reversing changes made to2ee6f3a5f7
. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
40 lines
862 B
C
40 lines
862 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2012 Samsung Electronics
|
|
* R. Chandrasekar <rcsekar@samsung.com>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <log.h>
|
|
#include <sound.h>
|
|
|
|
void sound_create_square_wave(uint sample_rate, unsigned short *data, int size,
|
|
uint freq, uint channels)
|
|
{
|
|
const unsigned short amplitude = 16000; /* between 1 and 32767 */
|
|
const int period = freq ? sample_rate / freq : 0;
|
|
const int half = period / 2;
|
|
|
|
if (!half) {
|
|
memset(data, 0, size);
|
|
return;
|
|
}
|
|
|
|
/* Make sure we don't overflow our buffer */
|
|
if (size % 2)
|
|
size--;
|
|
|
|
while (size) {
|
|
int i, j;
|
|
|
|
for (i = 0; size && i < half; i++) {
|
|
for (j = 0; size && j < channels; j++, size -= 2)
|
|
*data++ = amplitude;
|
|
}
|
|
for (i = 0; size && i < period - half; i++) {
|
|
for (j = 0; size && j < channels; j++, size -= 2)
|
|
*data++ = -amplitude;
|
|
}
|
|
}
|
|
}
|