1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2012 Samsung Electronics
4 * R. Chandrasekar < rcsekar@samsung.com>
10 /* sound codec enum */
18 /* sound codec enum */
24 /* Codec information structure to store the info from device tree */
25 struct sound_codec_info {
28 enum en_sound_codec codec_type;
32 * Generates square wave sound data for 1 second
34 * @param data data buffer pointer
35 * @param size size of the buffer
36 * @param freq frequency of the wave
38 void sound_create_square_wave(unsigned short *data, int size, uint32_t freq);
41 * Initialises audio sub system
42 * @param blob Pointer of device tree node or NULL if none.
43 * @return int value 0 for success, -1 for error
45 int sound_init(const void *blob);
48 * plays the pcm data buffer in pcm_data.h through i2s1 to make the
51 * @return int 0 for success, -1 for error
53 int sound_play(uint32_t msec, uint32_t frequency);
55 #endif /* __SOUND__H__ */