1# SPDX-License-Identifier: GPL-2.0-only 2 3menuconfig SND_HDA_CODEC_REALTEK 4 tristate "Realtek HD-audio codec support" 5 help 6 Say Y or M here to include Realtek HD-audio codec support. 7 8 This will enable all Realtek HD-audio codec drivers as default, 9 but you can enable/disable each codec driver individually, too 10 (only when CONFIG_EXPERT is set). 11 12if SND_HDA_CODEC_REALTEK 13 14config SND_HDA_CODEC_REALTEK_LIB 15 tristate 16 select SND_HDA_GENERIC 17 select SND_HDA_GENERIC_LEDS 18 select SND_HDA_SCODEC_COMPONENT 19 20config SND_HDA_CODEC_ALC260 21 tristate "Build Realtek ALC260 HD-audio codec support" if EXPERT 22 depends on INPUT 23 select SND_HDA_CODEC_REALTEK_LIB 24 default y 25 help 26 Say Y or M here to include Realtek ALC260 HD-audio codec support 27 28config SND_HDA_CODEC_ALC262 29 tristate "Build Realtek ALC262 HD-audio codec support" if EXPERT 30 depends on INPUT 31 select SND_HDA_CODEC_REALTEK_LIB 32 default y 33 help 34 Say Y or M here to include Realtek ALC262 HD-audio codec support 35 36config SND_HDA_CODEC_ALC268 37 tristate "Build Realtek ALC268 HD-audio codec support" if EXPERT 38 depends on INPUT 39 select SND_HDA_CODEC_REALTEK_LIB 40 default y 41 help 42 Say Y or M here to include Realtek ALC268 and compatible HD-audio 43 codec support 44 45config SND_HDA_CODEC_ALC269 46 tristate "Build Realtek ALC269 HD-audio codecs support" if EXPERT 47 depends on INPUT 48 select SND_HDA_CODEC_REALTEK_LIB 49 default y 50 help 51 Say Y or M here to include Realtek ALC269 and compatible HD-audio 52 codec support 53 54config SND_HDA_CODEC_ALC662 55 tristate "Build Realtek ALC662 HD-audio codecs support" if EXPERT 56 depends on INPUT 57 select SND_HDA_CODEC_REALTEK_LIB 58 default y 59 help 60 Say Y or M here to include Realtek ALC662 and compatible HD-audio 61 codec support 62 63config SND_HDA_CODEC_ALC680 64 tristate "Build Realtek ALC680 HD-audio codecs support" if EXPERT 65 depends on INPUT 66 select SND_HDA_CODEC_REALTEK_LIB 67 default y 68 help 69 Say Y or M here to include Realtek ALC680 HD-audio codec support 70 71config SND_HDA_CODEC_ALC861 72 tristate "Build Realtek ALC861 HD-audio codecs support" if EXPERT 73 depends on INPUT 74 select SND_HDA_CODEC_REALTEK_LIB 75 default y 76 help 77 Say Y or M here to include Realtek ALC861 HD-audio codec support 78 79config SND_HDA_CODEC_ALC861VD 80 tristate "Build Realtek ALC861-VD HD-audio codecs support" if EXPERT 81 depends on INPUT 82 select SND_HDA_CODEC_REALTEK_LIB 83 default y 84 help 85 Say Y or M here to include Realtek ALC861-VD HD-audio codec support 86 87config SND_HDA_CODEC_ALC880 88 tristate "Build Realtek ALC880 HD-audio codecs support" if EXPERT 89 depends on INPUT 90 select SND_HDA_CODEC_REALTEK_LIB 91 default y 92 help 93 Say Y or M here to include Realtek ALC880 HD-audio codec support 94 95config SND_HDA_CODEC_ALC882 96 tristate "Build Realtek ALC882 HD-audio codecs support" if EXPERT 97 depends on INPUT 98 select SND_HDA_CODEC_REALTEK_LIB 99 default y 100 help 101 Say Y or M here to include Realtek ALC882 and compatible HD-audio 102 codec support 103 104endif 105