blob: 40f4f7598aae4e1b6c9798e4de1226b02188790f [file] [log] [blame]
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +09001menu "Sound support"
2
Simon Glassef35d982015-03-06 13:19:08 -07003config SOUND
4 bool "Enable sound support"
5 help
6 Support making sounds through an audio codec. This is normally a
7 beep at a chosen frequency for a selected length of time. However
8 the drivers support playing arbitrary sound samples using a
9 PCM interface.
10
11 Note: At present the sound setup is somewhat tangled up in that the
12 audio codecs are called from the sound-i2s code. This could be
13 converted to driver model.
Simon Glass00cf7bf2015-03-06 13:19:10 -070014
15config I2S
16 bool "Enable I2S support"
17 depends on SOUND
18 help
19 I2S is a serial bus often used to transmit audio data from the
20 SoC to the audio codec. This option enables sound support using
21 I2S. It calls either of the two supported codecs (no use is made
22 of driver model at present).
Simon Glass6bd7be22015-03-06 13:19:11 -070023
Simon Glass2665f092018-12-27 20:15:21 -070024config I2S_ROCKCHIP
25 bool "Enable I2S support for Rockchip SoCs"
26 depends on I2S
27 help
28 Rockchip SoCs support an I2S interface for sending audio data to an
29 audio codec. This option enables support for this, using one of the
30 available audio codec drivers. This driver does not make use of
31 DMA, but writes each word directly to the hardware.
32
Simon Glass6bd7be22015-03-06 13:19:11 -070033config I2S_SAMSUNG
34 bool "Enable I2C support for Samsung SoCs"
Simon Glassafcd6452018-12-27 13:24:39 -070035 depends on I2S
Simon Glass6bd7be22015-03-06 13:19:11 -070036 help
37 Samsung Exynos SoCs support an I2S interface for sending audio
38 data to an audio codec. This option enables support for this,
39 using one of the available audio codec drivers. Enabling this
40 option provides an implementation for sound_init() and
41 sound_play().
Simon Glass7a170a52015-03-06 13:19:12 -070042
Simon Glass9a7210f2019-01-11 18:37:09 -070043config SOUND_MAX98088
44 bool "Support Maxim max98088 audio codec"
Simon Glassafcd6452018-12-27 13:24:39 -070045 depends on I2S
Simon Glass9a7210f2019-01-11 18:37:09 -070046 help
47 Enable the max98088 audio codec. This is connected via I2S for
48 audio data and I2C for codec control. At present it only works
49 with the Samsung I2S driver.
50
Simon Glass8cad63c2018-12-10 10:37:43 -070051config SOUND_MAX98090
52 bool "Support Maxim max98090 audio codec"
Simon Glassafcd6452018-12-27 13:24:39 -070053 depends on I2S
Simon Glass8cad63c2018-12-10 10:37:43 -070054 help
55 Enable the max98090 audio codec. This is connected via I2S for
56 audio data and I2C for codec control. At present it only works
57 with the Samsung I2S driver.
58
Simon Glass7a170a52015-03-06 13:19:12 -070059config SOUND_MAX98095
60 bool "Support Maxim max98095 audio codec"
Simon Glassafcd6452018-12-27 13:24:39 -070061 depends on I2S
Simon Glass7a170a52015-03-06 13:19:12 -070062 help
63 Enable the max98095 audio codec. This is connected via I2S for
64 audio data and I2C for codec control. At present it only works
65 with the Samsung I2S driver.
Simon Glassdd573f92015-03-06 13:19:13 -070066
Simon Glass39073052015-03-06 13:19:14 -070067config SOUND_SANDBOX
68 bool "Support sandbox emulated audio codec"
69 depends on SANDBOX && SOUND
70 help
71 U-Boot sandbox can emulate a sound device using SDL, playing the
72 sound on the host machine. This option implements the sound_init()
73 and sound_play() functions for sandbox. Note that you must install
74 the SDL libraries for this to work.
75
Simon Glassdd573f92015-03-06 13:19:13 -070076config SOUND_WM8994
77 bool "Support Wolfson Micro wm8994 audio codec"
78 depends on I2S_SAMSUNG
79 help
80 Enable the wm8994 audio codec. This is connected via I2S for
81 audio data and I2C for codec control. At present it only works
82 with the Samsung I2S driver.
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +090083
84endmenu