ixp4xx: remove unmaintained target
[openwrt/openwrt.git] / package / kernel / linux / modules / sound.mk
1 #
2 # Copyright (C) 2006-2013 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 SOUND_MENU:=Sound Support
9
10 # allow targets to override the soundcore stuff
11 SOUNDCORE_LOAD ?= \
12 soundcore \
13 snd \
14 snd-hwdep \
15 snd-seq-device \
16 snd-rawmidi \
17 snd-timer \
18 snd-pcm \
19 snd-mixer-oss \
20 snd-pcm-oss \
21 snd-compress
22
23 SOUNDCORE_FILES ?= \
24 $(LINUX_DIR)/sound/soundcore.ko \
25 $(LINUX_DIR)/sound/core/snd.ko \
26 $(LINUX_DIR)/sound/core/snd-hwdep.ko \
27 $(LINUX_DIR)/sound/core/seq/snd-seq-device.ko@lt4.13 \
28 $(LINUX_DIR)/sound/core/snd-seq-device.ko@ge4.13 \
29 $(LINUX_DIR)/sound/core/snd-rawmidi.ko \
30 $(LINUX_DIR)/sound/core/snd-timer.ko \
31 $(LINUX_DIR)/sound/core/snd-pcm.ko \
32 $(LINUX_DIR)/sound/core/oss/snd-mixer-oss.ko \
33 $(LINUX_DIR)/sound/core/oss/snd-pcm-oss.ko \
34 $(LINUX_DIR)/sound/core/snd-compress.ko
35
36 SOUNDCORE_LOAD += \
37 $(if $(CONFIG_SND_DMAENGINE_PCM),snd-pcm-dmaengine)
38
39 SOUNDCORE_FILES += \
40 $(if $(CONFIG_SND_DMAENGINE_PCM),$(LINUX_DIR)/sound/core/snd-pcm-dmaengine.ko)
41
42 define KernelPackage/sound-core
43 SUBMENU:=$(SOUND_MENU)
44 TITLE:=Sound support
45 DEPENDS:=@AUDIO_SUPPORT +kmod-input-core
46 KCONFIG:= \
47 CONFIG_SOUND \
48 CONFIG_SND \
49 CONFIG_SND_HWDEP \
50 CONFIG_SND_RAWMIDI \
51 CONFIG_SND_TIMER \
52 CONFIG_SND_PCM \
53 CONFIG_SND_PCM_TIMER=y \
54 CONFIG_SND_SEQUENCER \
55 CONFIG_SND_VIRMIDI \
56 CONFIG_SND_SEQ_DUMMY \
57 CONFIG_SND_SEQUENCER_OSS=y \
58 CONFIG_HOSTAUDIO \
59 CONFIG_SND_PCM_OSS \
60 CONFIG_SND_MIXER_OSS \
61 CONFIG_SOUND_OSS_CORE_PRECLAIM=y \
62 CONFIG_SND_COMPRESS_OFFLOAD
63 FILES:=$(SOUNDCORE_FILES)
64 AUTOLOAD:=$(call AutoLoad,30,$(SOUNDCORE_LOAD))
65 endef
66
67 define KernelPackage/sound-core/uml
68 FILES:= \
69 $(LINUX_DIR)/sound/soundcore.ko \
70 $(LINUX_DIR)/arch/um/drivers/hostaudio.ko
71 AUTOLOAD+=$(call AutoLoad,30,soundcore hostaudio)
72 endef
73
74 define KernelPackage/sound-core/description
75 Kernel modules for sound support
76 endef
77
78 $(eval $(call KernelPackage,sound-core))
79
80
81 define AddDepends/sound
82 SUBMENU:=$(SOUND_MENU)
83 DEPENDS+=kmod-sound-core $(1) @!TARGET_uml
84 endef
85
86
87 define KernelPackage/ac97
88 TITLE:=ac97 controller
89 KCONFIG:=CONFIG_SND_AC97_CODEC
90 FILES:= \
91 $(LINUX_DIR)/sound/ac97_bus.ko \
92 $(LINUX_DIR)/sound/pci/ac97/snd-ac97-codec.ko
93 AUTOLOAD:=$(call AutoLoad,35,ac97_bus snd-ac97-codec)
94 $(call AddDepends/sound)
95 endef
96
97 define KernelPackage/ac97/description
98 The ac97 controller
99 endef
100
101 $(eval $(call KernelPackage,ac97))
102
103
104 define KernelPackage/sound-mpu401
105 TITLE:=MPU-401 uart driver
106 KCONFIG:=CONFIG_SND_MPU401_UART
107 FILES:= \
108 $(LINUX_DIR)/sound/drivers/mpu401/snd-mpu401-uart.ko
109 AUTOLOAD:=$(call AutoLoad,35,snd-mpu401-uart)
110 $(call AddDepends/sound)
111 endef
112
113 define KernelPackage/sound-mpu401/description
114 support for MIDI ports compatible with the Roland MPU-401
115 interface in UART mode.
116 endef
117
118 $(eval $(call KernelPackage,sound-mpu401))
119
120
121 define KernelPackage/sound-seq
122 TITLE:=Sequencer support
123 FILES:= \
124 $(LINUX_DIR)/sound/core/seq/snd-seq.ko \
125 $(LINUX_DIR)/sound/core/seq/snd-seq-midi-event.ko \
126 $(LINUX_DIR)/sound/core/seq/snd-seq-midi.ko
127 AUTOLOAD:=$(call AutoLoad,35,snd-seq snd-seq-midi-event snd-seq-midi)
128 $(call AddDepends/sound)
129 endef
130
131 define KernelPackage/sound-seq/description
132 Kernel modules for sequencer support
133 endef
134
135 $(eval $(call KernelPackage,sound-seq))
136
137
138 define KernelPackage/sound-ens1371
139 TITLE:=(Creative) Ensoniq AudioPCI 1371
140 KCONFIG:=CONFIG_SND_ENS1371
141 DEPENDS:=@PCI_SUPPORT +kmod-ac97
142 FILES:=$(LINUX_DIR)/sound/pci/snd-ens1371.ko
143 AUTOLOAD:=$(call AutoLoad,36,snd-ens1371)
144 $(call AddDepends/sound)
145 endef
146
147 define KernelPackage/sound-ens1371/description
148 support for (Creative) Ensoniq AudioPCI 1371 chips
149 endef
150
151 $(eval $(call KernelPackage,sound-ens1371))
152
153
154 define KernelPackage/sound-i8x0
155 TITLE:=Intel/SiS/nVidia/AMD/ALi AC97 Controller
156 DEPENDS:=+kmod-ac97
157 KCONFIG:=CONFIG_SND_INTEL8X0
158 FILES:=$(LINUX_DIR)/sound/pci/snd-intel8x0.ko
159 AUTOLOAD:=$(call AutoLoad,36,snd-intel8x0)
160 $(call AddDepends/sound)
161 endef
162
163 define KernelPackage/sound-i8x0/description
164 support for the integrated AC97 sound device on motherboards
165 with Intel/SiS/nVidia/AMD chipsets, or ALi chipsets using
166 the M5455 Audio Controller.
167 endef
168
169 $(eval $(call KernelPackage,sound-i8x0))
170
171
172 define KernelPackage/sound-via82xx
173 TITLE:=VIA 82xx AC97 Controller
174 DEPENDS:=+kmod-ac97 +kmod-sound-mpu401
175 KCONFIG:=CONFIG_SND_VIA82XX
176 FILES:=$(LINUX_DIR)/sound/pci/snd-via82xx.ko
177 AUTOLOAD:=$(call AutoLoad,36,snd-via82xx)
178 $(call AddDepends/sound)
179 endef
180
181 define KernelPackage/sound-via82xx/description
182 support for the integrated AC97 sound device on motherboards
183 with VIA chipsets.
184 endef
185
186 $(eval $(call KernelPackage,sound-via82xx))
187
188
189 define KernelPackage/sound-soc-core
190 TITLE:=SoC sound support
191 DEPENDS:=+kmod-regmap-core +kmod-ac97
192 KCONFIG:= \
193 CONFIG_SND_SOC \
194 CONFIG_SND_SOC_ADI=n \
195 CONFIG_SND_SOC_DMAENGINE_PCM=y \
196 CONFIG_SND_SOC_ALL_CODECS=n
197 FILES:=$(LINUX_DIR)/sound/soc/snd-soc-core.ko
198 AUTOLOAD:=$(call AutoLoad,55, snd-soc-core)
199 $(call AddDepends/sound)
200 endef
201
202 $(eval $(call KernelPackage,sound-soc-core))
203
204
205 define KernelPackage/sound-soc-ac97
206 TITLE:=AC97 Codec support
207 KCONFIG:=CONFIG_SND_SOC_AC97_CODEC
208 FILES:=$(LINUX_DIR)/sound/soc/codecs/snd-soc-ac97.ko
209 AUTOLOAD:=$(call AutoLoad,57,snd-soc-ac97)
210 DEPENDS:=+kmod-ac97 +kmod-sound-soc-core
211 $(call AddDepends/sound)
212 endef
213
214 $(eval $(call KernelPackage,sound-soc-ac97))
215
216
217 define KernelPackage/sound-soc-imx
218 TITLE:=IMX SoC support
219 KCONFIG:=\
220 CONFIG_SND_IMX_SOC \
221 CONFIG_SND_SOC_IMX_AUDMUX \
222 CONFIG_SND_SOC_FSL_SSI \
223 CONFIG_SND_SOC_IMX_PCM_DMA
224 FILES:= \
225 $(LINUX_DIR)/sound/soc/fsl/snd-soc-imx-audmux.ko \
226 $(LINUX_DIR)/sound/soc/fsl/snd-soc-fsl-ssi.ko \
227 $(LINUX_DIR)/sound/soc/fsl/imx-pcm-dma.ko
228 AUTOLOAD:=$(call AutoLoad,56,snd-soc-imx-audmux snd-soc-fsl-ssi snd-soc-imx-pcm)
229 DEPENDS:=@TARGET_imx6 +kmod-sound-soc-core
230 $(call AddDepends/sound)
231 endef
232
233 define KernelPackage/sound-soc-imx/description
234 Support for i.MX6 Platform sound (ssi/audmux/pcm)
235 endef
236
237 $(eval $(call KernelPackage,sound-soc-imx))
238
239
240 define KernelPackage/sound-soc-imx-sgtl5000
241 TITLE:=IMX SoC support for SGTL5000
242 KCONFIG:=CONFIG_SND_SOC_IMX_SGTL5000
243 FILES:=\
244 $(LINUX_DIR)/sound/soc/codecs/snd-soc-sgtl5000.ko \
245 $(LINUX_DIR)/sound/soc/fsl/snd-soc-imx-sgtl5000.ko
246 AUTOLOAD:=$(call AutoLoad,57,snd-soc-sgtl5000 snd-soc-imx-sgtl5000)
247 DEPENDS:=@TARGET_imx6 +kmod-sound-soc-imx
248 $(call AddDepends/sound)
249 endef
250
251 define KernelPackage/sound-soc-imx-sgtl5000/description
252 Support for i.MX6 Platform sound SGTL5000 codec
253 endef
254
255 $(eval $(call KernelPackage,sound-soc-imx-sgtl5000))
256
257
258 define KernelPackage/pcspkr
259 DEPENDS:=@TARGET_x86 +kmod-input-core
260 TITLE:=PC speaker support
261 KCONFIG:= \
262 CONFIG_SND_PCSP
263 FILES:= \
264 $(LINUX_DIR)/sound/drivers/pcsp/snd-pcsp.ko
265 AUTOLOAD:=$(call AutoLoad,50,snd-pcsp)
266 $(call AddDepends/sound)
267 endef
268
269 define KernelPackage/pcspkr/description
270 This enables sounds (tones) through the pc speaker
271 endef
272
273 $(eval $(call KernelPackage,pcspkr))
274
275 define KernelPackage/sound-dummy
276 $(call AddDepends/sound)
277 TITLE:=Null sound output driver (sink)
278 KCONFIG:= \
279 CONFIG_SND_DUMMY
280 FILES:= \
281 $(LINUX_DIR)/sound/drivers/snd-dummy.ko
282 AUTOLOAD:=$(call AutoLoad,32,snd-dummy)
283 endef
284
285 define KernelPackage/sound_dummy/description
286 Dummy sound device for Alsa when no hardware present
287 endef
288
289 $(eval $(call KernelPackage,sound-dummy))
290
291 define KernelPackage/sound-hda-core
292 SUBMENU:=$(SOUND_MENU)
293 TITLE:=HD Audio Sound Core Support
294 KCONFIG:= \
295 CONFIG_SND_HDA_CORE@ge4.1 \
296 CONFIG_SND_HDA_HWDEP=y \
297 CONFIG_SND_HDA_RECONFIG=n \
298 CONFIG_SND_HDA_INPUT_BEEP=n \
299 CONFIG_SND_HDA_PATCH_LOADER=n \
300 CONFIG_SND_HDA_GENERIC
301 FILES:= \
302 $(LINUX_DIR)/sound/hda/snd-hda-core.ko@ge4.1 \
303 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec.ko \
304 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-generic.ko
305 AUTOLOAD:=$(call AutoProbe,snd-hda-core@ge4.1 snd-hda-codec snd-hda-codec-generic)
306 $(call AddDepends/sound,+kmod-regmap-core)
307 endef
308
309 define KernelPackage/sound-hda-core/description
310 Kernel modules for HD Audio sound support
311 endef
312
313 $(eval $(call KernelPackage,sound-hda-core))
314
315 define KernelPackage/sound-hda-codec-realtek
316 SUBMENU:=$(SOUND_MENU)
317 TITLE:= HD Audio Realtek Codec
318 KCONFIG:= \
319 CONFIG_SND_HDA_CODEC_REALTEK
320 FILES:= \
321 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-realtek.ko
322 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-realtek)
323 $(call AddDepends/sound,kmod-sound-hda-core)
324 endef
325
326 define KernelPackage/sound-hda-codec-realtek/description
327 Kernel modules for Intel HDA Realtek codec support
328 endef
329
330 $(eval $(call KernelPackage,sound-hda-codec-realtek))
331
332 define KernelPackage/sound-hda-codec-cmedia
333 SUBMENU:=$(SOUND_MENU)
334 TITLE:=HD Audio C-Media Codec
335 KCONFIG:= \
336 CONFIG_SND_HDA_CODEC_CMEDIA
337 FILES:= \
338 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-cmedia.ko
339 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-cmedia)
340 $(call AddDepends/sound,kmod-sound-hda-core)
341 endef
342
343 define KernelPackage/sound-hda-codec-cmedia/description
344 Kernel modules for HD Audio C-Media codec support
345 endef
346
347 $(eval $(call KernelPackage,sound-hda-codec-cmedia))
348
349 define KernelPackage/sound-hda-codec-analog
350 SUBMENU:=$(SOUND_MENU)
351 TITLE:=HD Audio Analog Devices Codec
352 KCONFIG:= \
353 CONFIG_SND_HDA_CODEC_ANALOG
354 FILES:= \
355 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-analog.ko
356 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-analog)
357 $(call AddDepends/sound,kmod-sound-hda-core)
358 endef
359
360 define KernelPackage/sound-hda-codec-analog/description
361 Kernel modules for HD Audio Analog Devices codec support
362 endef
363
364 $(eval $(call KernelPackage,sound-hda-codec-analog))
365
366 define KernelPackage/sound-hda-codec-idt
367 SUBMENU:=$(SOUND_MENU)
368 TITLE:=HD Audio Sigmatel IDT Codec
369 KCONFIG:= \
370 CONFIG_SND_HDA_CODEC_SIGMATEL
371 FILES:= \
372 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-idt.ko
373 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-idt)
374 $(call AddDepends/sound,kmod-sound-hda-core)
375 endef
376
377 define KernelPackage/sound-hda-codec-idt/description
378 Kernel modules for HD Audio Sigmatel IDT codec support
379 endef
380
381 $(eval $(call KernelPackage,sound-hda-codec-idt))
382
383 define KernelPackage/sound-hda-codec-si3054
384 SUBMENU:=$(SOUND_MENU)
385 TITLE:=HD Audio Silicon Labs 3054 Codec
386 KCONFIG:= \
387 CONFIG_SND_HDA_CODEC_SI3054
388 FILES:= \
389 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-si3054.ko
390 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-si3054)
391 $(call AddDepends/sound,kmod-sound-hda-core)
392 endef
393
394 define KernelPackage/sound-hda-codec-si3054/description
395 Kernel modules for HD Audio Silicon Labs 3054 codec support
396 endef
397
398 $(eval $(call KernelPackage,sound-hda-codec-si3054))
399
400 define KernelPackage/sound-hda-codec-cirrus
401 SUBMENU:=$(SOUND_MENU)
402 TITLE:=HD Audio Cirrus Logic Codec
403 KCONFIG:= \
404 CONFIG_SND_HDA_CODEC_CIRRUS
405 FILES:= \
406 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-cirrus.ko
407 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-cirrus)
408 $(call AddDepends/sound,kmod-sound-hda-core)
409 endef
410
411 define KernelPackage/sound-hda-codec-cirrus/description
412 Kernel modules for HD Audio Cirrus Logic codec support
413 endef
414
415 $(eval $(call KernelPackage,sound-hda-codec-cirrus))
416
417 define KernelPackage/sound-hda-codec-ca0110
418 SUBMENU:=$(SOUND_MENU)
419 TITLE:=HD Audio Creative CA0110 Codec
420 KCONFIG:= \
421 CONFIG_SND_HDA_CODEC_CA0110
422 FILES:= \
423 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-ca0110.ko
424 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-ca0110)
425 $(call AddDepends/sound,kmod-sound-hda-core)
426 endef
427
428 define KernelPackage/sound-hda-codec-ca0110/description
429 Kernel modules for HD Audio Creative CA0110 codec support
430 endef
431
432 $(eval $(call KernelPackage,sound-hda-codec-ca0110))
433
434 define KernelPackage/sound-hda-codec-ca0132
435 SUBMENU:=$(SOUND_MENU)
436 TITLE:=HD Audio Creative CA0132 Codec
437 KCONFIG:= \
438 CONFIG_SND_HDA_CODEC_CA0132 \
439 CONFIG_SND_HDA_CODEC_CA0132_DSP=n
440 FILES:= \
441 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-ca0132.ko
442 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-ca0132)
443 $(call AddDepends/sound,kmod-sound-hda-core)
444 endef
445
446 define KernelPackage/sound-hda-codec-ca0132/description
447 Kernel modules for HD Audio Creative CA0132 codec support
448 endef
449
450 $(eval $(call KernelPackage,sound-hda-codec-ca0132))
451
452 define KernelPackage/sound-hda-codec-conexant
453 SUBMENU:=$(SOUND_MENU)
454 TITLE:=HD Audio Conexant Codec
455 KCONFIG:= \
456 CONFIG_SND_HDA_CODEC_CONEXANT
457 FILES:= \
458 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-conexant.ko
459 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-conexant)
460 $(call AddDepends/sound,kmod-sound-hda-core)
461 endef
462
463 define KernelPackage/sound-hda-codec-conexant/description
464 Kernel modules for HD Audio Conexant codec support
465 endef
466
467 $(eval $(call KernelPackage,sound-hda-codec-conexant))
468
469 define KernelPackage/sound-hda-codec-via
470 SUBMENU:=$(SOUND_MENU)
471 TITLE:=HD Audio Via Codec
472 KCONFIG:= \
473 CONFIG_SND_HDA_CODEC_VIA
474 FILES:= \
475 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-via.ko
476 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-via)
477 $(call AddDepends/sound,kmod-sound-hda-core)
478 endef
479
480 define KernelPackage/sound-hda-codec-via/description
481 Kernel modules for HD Audio VIA codec support
482 endef
483
484 $(eval $(call KernelPackage,sound-hda-codec-via))
485
486 define KernelPackage/sound-hda-codec-hdmi
487 SUBMENU:=$(SOUND_MENU)
488 TITLE:=HD Audio HDMI/DisplayPort Codec
489 KCONFIG:= \
490 CONFIG_SND_HDA_CODEC_HDMI
491 FILES:= \
492 $(LINUX_DIR)/sound/pci/hda/snd-hda-codec-hdmi.ko
493 AUTOLOAD:=$(call AutoProbe,snd-hda-codec-hdmi)
494 $(call AddDepends/sound,kmod-sound-hda-core)
495 endef
496
497 define KernelPackage/sound-hda-codec-hdmi/description
498 Kernel modules for HD Audio HDMI codec support
499 endef
500
501 $(eval $(call KernelPackage,sound-hda-codec-hdmi))
502
503 define KernelPackage/sound-hda-intel
504 SUBMENU:=$(SOUND_MENU)
505 TITLE:=HD Audio Intel Driver
506 KCONFIG:= \
507 CONFIG_SOUND_PCI \
508 CONFIG_SND_HDA_INTEL
509 FILES:= \
510 $(LINUX_DIR)/sound/pci/hda/snd-hda-intel.ko \
511 $(LINUX_DIR)/sound/pci/hda/snd-hda-controller.ko@lt4.4
512 AUTOLOAD:=$(call AutoProbe,snd-hda-controller@lt4.4 snd-hda-intel)
513 $(call AddDepends/sound,kmod-sound-hda-core)
514 endef
515
516 define KernelPackage/sound-hda-intel/description
517 Kernel modules for HD Audio Intel driver support
518 endef
519
520 $(eval $(call KernelPackage,sound-hda-intel))