diff options
| -rw-r--r-- | configs/arndale_defconfig | 1 | ||||
| -rw-r--r-- | configs/sandbox_defconfig | 1 | ||||
| -rw-r--r-- | configs/smdk5250_defconfig | 1 | ||||
| -rw-r--r-- | configs/snow_defconfig | 1 | ||||
| -rw-r--r-- | drivers/sound/Kconfig | 11 | ||||
| -rw-r--r-- | include/configs/exynos5250-common.h | 1 | ||||
| -rw-r--r-- | include/configs/sandbox.h | 1 | 
7 files changed, 15 insertions, 2 deletions
| diff --git a/configs/arndale_defconfig b/configs/arndale_defconfig index 4aa14af057f..71c9e657827 100644 --- a/configs/arndale_defconfig +++ b/configs/arndale_defconfig @@ -3,3 +3,4 @@ CONFIG_ARM=y  CONFIG_ARCH_EXYNOS=y  CONFIG_TARGET_ARNDALE=y  CONFIG_DEFAULT_DEVICE_TREE="exynos5250-arndale" +CONFIG_SOUND=y diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig index c8c888dd687..db10c191bab 100644 --- a/configs/sandbox_defconfig +++ b/configs/sandbox_defconfig @@ -23,3 +23,4 @@ CONFIG_SYS_I2C_SANDBOX=y  CONFIG_SANDBOX_SPI=y  CONFIG_SPI_FLASH_SANDBOX=y  CONFIG_TPM_TIS_SANDBOX=y +CONFIG_SOUND=y diff --git a/configs/smdk5250_defconfig b/configs/smdk5250_defconfig index efc738bfeb3..95f80d9fe64 100644 --- a/configs/smdk5250_defconfig +++ b/configs/smdk5250_defconfig @@ -3,3 +3,4 @@ CONFIG_ARM=y  CONFIG_ARCH_EXYNOS=y  CONFIG_TARGET_SMDK5250=y  CONFIG_DEFAULT_DEVICE_TREE="exynos5250-smdk5250" +CONFIG_SOUND=y diff --git a/configs/snow_defconfig b/configs/snow_defconfig index 6417a771618..6b2c8bd363e 100644 --- a/configs/snow_defconfig +++ b/configs/snow_defconfig @@ -7,3 +7,4 @@ CONFIG_CROS_EC=y  CONFIG_CROS_EC_I2C=y  CONFIG_CROS_EC_KEYB=y  CONFIG_CMD_CROS_EC=y +CONFIG_SOUND=y diff --git a/drivers/sound/Kconfig b/drivers/sound/Kconfig index e69de29bb2d..599edae97f2 100644 --- a/drivers/sound/Kconfig +++ b/drivers/sound/Kconfig @@ -0,0 +1,11 @@ +config SOUND +	bool "Enable sound support" +	help +	  Support making sounds through an audio codec. This is normally a +	  beep at a chosen frequency for a selected length of time. However +	  the drivers support playing arbitrary sound samples using a +	  PCM interface. + +	  Note: At present the sound setup is somewhat tangled up in that the +	  audio codecs are called from the sound-i2s code. This could be +	  converted to driver model. diff --git a/include/configs/exynos5250-common.h b/include/configs/exynos5250-common.h index ae0e5ff47b0..e5935b61228 100644 --- a/include/configs/exynos5250-common.h +++ b/include/configs/exynos5250-common.h @@ -31,7 +31,6 @@  /* Sound */  #define CONFIG_CMD_SOUND  #ifdef CONFIG_CMD_SOUND -#define CONFIG_SOUND  #define CONFIG_I2S_SAMSUNG  #define CONFIG_I2S  #define CONFIG_SOUND_MAX98095 diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 842fbe27072..ec182261bdb 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -151,7 +151,6 @@  #define CONFIG_BOARD_LATE_INIT -#define CONFIG_SOUND  #define CONFIG_SOUND_SANDBOX  #define CONFIG_CMD_SOUND | 
