sandbox: exynos: Move CONFIG_I2S_SAMSUNG to Kconfig
Move this over to Kconfig and tidy up. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
00cf7bf19e
commit
6bd7be2782
|
|
@ -6,3 +6,4 @@ CONFIG_DEFAULT_DEVICE_TREE="exynos5250-arndale"
|
||||||
CONFIG_SOUND=y
|
CONFIG_SOUND=y
|
||||||
CONFIG_CMD_SOUND=y
|
CONFIG_CMD_SOUND=y
|
||||||
CONFIG_I2S=y
|
CONFIG_I2S=y
|
||||||
|
CONFIG_I2S_SAMSUNG=y
|
||||||
|
|
|
||||||
|
|
@ -6,3 +6,4 @@ CONFIG_DEFAULT_DEVICE_TREE="exynos5250-smdk5250"
|
||||||
CONFIG_SOUND=y
|
CONFIG_SOUND=y
|
||||||
CONFIG_CMD_SOUND=y
|
CONFIG_CMD_SOUND=y
|
||||||
CONFIG_I2S=y
|
CONFIG_I2S=y
|
||||||
|
CONFIG_I2S_SAMSUNG=y
|
||||||
|
|
|
||||||
|
|
@ -10,3 +10,4 @@ CONFIG_CMD_CROS_EC=y
|
||||||
CONFIG_SOUND=y
|
CONFIG_SOUND=y
|
||||||
CONFIG_CMD_SOUND=y
|
CONFIG_CMD_SOUND=y
|
||||||
CONFIG_I2S=y
|
CONFIG_I2S=y
|
||||||
|
CONFIG_I2S_SAMSUNG=y
|
||||||
|
|
|
||||||
|
|
@ -18,3 +18,13 @@ config I2S
|
||||||
SoC to the audio codec. This option enables sound support using
|
SoC to the audio codec. This option enables sound support using
|
||||||
I2S. It calls either of the two supported codecs (no use is made
|
I2S. It calls either of the two supported codecs (no use is made
|
||||||
of driver model at present).
|
of driver model at present).
|
||||||
|
|
||||||
|
config I2S_SAMSUNG
|
||||||
|
bool "Enable I2C support for Samsung SoCs"
|
||||||
|
depends on SOUND
|
||||||
|
help
|
||||||
|
Samsung Exynos SoCs support an I2S interface for sending audio
|
||||||
|
data to an audio codec. This option enables support for this,
|
||||||
|
using one of the available audio codec drivers. Enabling this
|
||||||
|
option provides an implementation for sound_init() and
|
||||||
|
sound_play().
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,6 @@
|
||||||
|
|
||||||
/* Sound */
|
/* Sound */
|
||||||
#ifdef CONFIG_CMD_SOUND
|
#ifdef CONFIG_CMD_SOUND
|
||||||
#define CONFIG_I2S_SAMSUNG
|
|
||||||
#define CONFIG_SOUND_MAX98095
|
#define CONFIG_SOUND_MAX98095
|
||||||
#define CONFIG_SOUND_WM8994
|
#define CONFIG_SOUND_WM8994
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue