aboutsummaryrefslogtreecommitdiff
path: root/drivers/sound/sound.c
blob: 4fde2989e04f5983106eb12b5121844639f865df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (C) 2012 Samsung Electronics
 * R. Chandrasekar <rcsekar@samsung.com>
 */

#include <log.h>
#include <sound.h>
#include <linux/string.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;
		}
	}
}