diff options
author | Simon Glass | 2019-02-16 20:24:55 -0700 |
---|---|---|
committer | Bin Meng | 2019-02-20 15:27:09 +0800 |
commit | 2ca471379b471dc0d31459974d7cc4b54c824956 (patch) | |
tree | 983fe8748d877c73a8cbbfb277d6c6078ebea30e /drivers/sound/Kconfig | |
parent | 2850266965ade165f913a66f679a0449faf21180 (diff) |
sound: Add support for Intel HDA
The Intel High-definition Audio is a newer-generation audio system which
provides for transfer of a large number of audio stream, each containing
up to 16 channels.
Add support for HDA as a library which can be used by other drivers.
U-Boot currently uses only two channels (stereo).
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/sound/Kconfig')
-rw-r--r-- | drivers/sound/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/sound/Kconfig b/drivers/sound/Kconfig index 40f4f7598aa..0dca6ffe88c 100644 --- a/drivers/sound/Kconfig +++ b/drivers/sound/Kconfig @@ -40,6 +40,15 @@ config I2S_SAMSUNG option provides an implementation for sound_init() and sound_play(). +config SOUND_INTEL_HDA + bool "Intel HDA audio codec" + depends on SOUND + help + Most Intel chips have an HDA (High-definition audio) codec which can + be used by U-Boot to play simple beeps. This is also sometimes called + Azalia which was the development code-name. It requires setup + information in the device tree (see intel-hda.txt). + config SOUND_MAX98088 bool "Support Maxim max98088 audio codec" depends on I2S |