Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Rajeshwari Shinde | 511ed5f | 2012-10-25 19:49:22 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012 Samsung Electronics |
| 4 | * R. Chandrasekar < rcsekar@samsung.com> |
Rajeshwari Shinde | 511ed5f | 2012-10-25 19:49:22 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __SOUND_H__ |
| 8 | #define __SOUND_H__ |
| 9 | |
| 10 | /* sound codec enum */ |
Rajeshwari Shinde | 511ed5f | 2012-10-25 19:49:22 +0000 | [diff] [blame] | 11 | enum sound_compat { |
| 12 | AUDIO_COMPAT_SPI, |
| 13 | AUDIO_COMPAT_I2C, |
| 14 | }; |
| 15 | |
| 16 | /* Codec information structure to store the info from device tree */ |
| 17 | struct sound_codec_info { |
| 18 | int i2c_bus; |
| 19 | int i2c_dev_addr; |
Rajeshwari Shinde | 511ed5f | 2012-10-25 19:49:22 +0000 | [diff] [blame] | 20 | }; |
| 21 | |
Simon Glass | d490189 | 2018-12-10 10:37:36 -0700 | [diff] [blame^] | 22 | /** |
| 23 | * struct sound_uc_priv - private uclass information about each sound device |
| 24 | * |
| 25 | * This is used to line the codec and i2s together |
| 26 | * |
| 27 | * @codec: Codec that is used for this sound device |
| 28 | * @i2s: I2S bus that is used for this sound device |
| 29 | * @setup_done: true if setup() has been called |
| 30 | */ |
| 31 | struct sound_uc_priv { |
| 32 | struct udevice *codec; |
| 33 | struct udevice *i2s; |
| 34 | int setup_done; |
| 35 | }; |
| 36 | |
| 37 | /** |
Simon Glass | a77bf70 | 2014-02-27 13:26:20 -0700 | [diff] [blame] | 38 | * Generates square wave sound data for 1 second |
| 39 | * |
Simon Glass | 7d92b06 | 2018-11-15 19:56:13 -0700 | [diff] [blame] | 40 | * @param sample_rate Sample rate in Hz |
Simon Glass | a77bf70 | 2014-02-27 13:26:20 -0700 | [diff] [blame] | 41 | * @param data data buffer pointer |
Simon Glass | d490189 | 2018-12-10 10:37:36 -0700 | [diff] [blame^] | 42 | * @param size size of the buffer in bytes |
Simon Glass | a77bf70 | 2014-02-27 13:26:20 -0700 | [diff] [blame] | 43 | * @param freq frequency of the wave |
| 44 | */ |
Simon Glass | 7d92b06 | 2018-11-15 19:56:13 -0700 | [diff] [blame] | 45 | void sound_create_square_wave(uint sample_rate, unsigned short *data, int size, |
| 46 | uint freq); |
Simon Glass | a77bf70 | 2014-02-27 13:26:20 -0700 | [diff] [blame] | 47 | |
| 48 | /* |
Rajeshwari Shinde | 511ed5f | 2012-10-25 19:49:22 +0000 | [diff] [blame] | 49 | * Initialises audio sub system |
Rajeshwari Shinde | f482310 | 2012-12-26 20:03:17 +0000 | [diff] [blame] | 50 | * @param blob Pointer of device tree node or NULL if none. |
Rajeshwari Shinde | 511ed5f | 2012-10-25 19:49:22 +0000 | [diff] [blame] | 51 | * @return int value 0 for success, -1 for error |
| 52 | */ |
Rajeshwari Shinde | f482310 | 2012-12-26 20:03:17 +0000 | [diff] [blame] | 53 | int sound_init(const void *blob); |
Rajeshwari Shinde | 511ed5f | 2012-10-25 19:49:22 +0000 | [diff] [blame] | 54 | |
Simon Glass | d490189 | 2018-12-10 10:37:36 -0700 | [diff] [blame^] | 55 | #ifdef CONFIG_DM_SOUND |
| 56 | /* |
| 57 | * The sound uclass brings together a data transport (currently only I2C) and a |
| 58 | * codec (currently connected over I2C). |
| 59 | */ |
| 60 | |
| 61 | /* Operations for sound */ |
| 62 | struct sound_ops { |
| 63 | /** |
| 64 | * setup() - Set up to play a sound |
| 65 | */ |
| 66 | int (*setup)(struct udevice *dev); |
| 67 | |
| 68 | /** |
| 69 | * play() - Play a beep |
| 70 | * |
| 71 | * @dev: Sound device |
| 72 | * @data: Data buffer to play |
| 73 | * @data_size: Size of data buffer in bytes |
| 74 | * @return 0 if OK, -ve on error |
| 75 | */ |
| 76 | int (*play)(struct udevice *dev, void *data, uint data_size); |
| 77 | }; |
| 78 | |
| 79 | #define sound_get_ops(dev) ((struct sound_ops *)(dev)->driver->ops) |
| 80 | |
| 81 | /** |
| 82 | * setup() - Set up to play a sound |
| 83 | */ |
| 84 | int sound_setup(struct udevice *dev); |
| 85 | |
| 86 | /** |
| 87 | * play() - Play a beep |
| 88 | * |
| 89 | * @dev: Sound device |
| 90 | * @msecs: Duration of beep in milliseconds |
| 91 | * @frequency_hz: Frequency of the beep in Hertz |
| 92 | * @return 0 if OK, -ve on error |
| 93 | */ |
| 94 | int sound_beep(struct udevice *dev, int msecs, int frequency_hz); |
| 95 | |
| 96 | /** |
| 97 | * sound_find_codec_i2s() - Called by sound drivers to locate codec and i2s |
| 98 | * |
| 99 | * This finds the audio codec and i2s devices and puts them in the uclass's |
| 100 | * private data for this device. |
| 101 | */ |
| 102 | int sound_find_codec_i2s(struct udevice *dev); |
| 103 | |
| 104 | #else |
Rajeshwari Shinde | 511ed5f | 2012-10-25 19:49:22 +0000 | [diff] [blame] | 105 | /* |
| 106 | * plays the pcm data buffer in pcm_data.h through i2s1 to make the |
| 107 | * sine wave sound |
| 108 | * |
| 109 | * @return int 0 for success, -1 for error |
| 110 | */ |
| 111 | int sound_play(uint32_t msec, uint32_t frequency); |
Simon Glass | d490189 | 2018-12-10 10:37:36 -0700 | [diff] [blame^] | 112 | #endif /* CONFIG_DM_SOUND */ |
Rajeshwari Shinde | 511ed5f | 2012-10-25 19:49:22 +0000 | [diff] [blame] | 113 | |
| 114 | #endif /* __SOUND__H__ */ |