blob: b2a2db47aff54820e02a635655f4c06ce8a92b1a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# sound/Config.in
2#
3
4menu "Sound"
Martin Schwidefskye25df122007-05-10 15:45:57 +02005 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7config SOUND
8 tristate "Sound card support"
9 help
10 If you have a sound card in your computer, i.e. if it can say more
11 than an occasional beep, say Y. Be sure to have all the information
12 about your sound card and its configuration down (I/O port,
13 interrupt and DMA channel), because you will be asked for it.
14
15 You want to read the Sound-HOWTO, available from
16 <http://www.tldp.org/docs.html#howto>. General information about
17 the modular sound system is contained in the files
18 <file:Documentation/sound/oss/Introduction>. The file
19 <file:Documentation/sound/oss/README.OSS> contains some slightly
20 outdated but still useful information as well. Newer sound
21 driver documentation is found in <file:Documentation/sound/alsa/*>.
22
23 If you have a PnP sound card and you want to configure it at boot
24 time using the ISA PnP tools (read
25 <http://www.roestock.demon.co.uk/isapnptools/>), then you need to
26 compile the sound card support as a module and load that module
27 after the PnP configuration is finished. To do this, choose M here
28 and read <file:Documentation/sound/oss/README.modules>; the module
29 will be called soundcore.
30
31 I'm told that even without a sound card, you can make your computer
32 say more than an occasional beep, by programming the PC speaker.
33 Kernel patches and supporting utilities to do that are in the pcsp
34 package, available at <ftp://ftp.infradead.org/pub/pcsp/>.
35
36source "sound/oss/dmasound/Kconfig"
37
38if !M68K
39
40menu "Advanced Linux Sound Architecture"
41 depends on SOUND!=n
42
43config SND
44 tristate "Advanced Linux Sound Architecture"
45 depends on SOUND
Takashi Iwai23854c32005-05-24 15:22:40 +020046 help
47 Say 'Y' or 'M' to enable ALSA (Advanced Linux Sound Architecture),
48 the new base sound system.
49
Takashi Iwai9baf6502005-05-24 17:27:00 +020050 For more information, see <http://www.alsa-project.org/>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52source "sound/core/Kconfig"
53
54source "sound/drivers/Kconfig"
55
56source "sound/isa/Kconfig"
57
58source "sound/pci/Kconfig"
59
60source "sound/ppc/Kconfig"
61
Johannes Bergf3d94782006-06-21 15:42:43 +020062source "sound/aoa/Kconfig"
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064source "sound/arm/Kconfig"
65
Hans-Christian Egtvedt3b0a8992007-07-23 15:52:42 +020066if SPI
67source "sound/spi/Kconfig"
68endif
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070source "sound/mips/Kconfig"
71
Adrian McMenamin198de432007-05-18 14:26:59 +020072source "sound/sh/Kconfig"
73
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +010074# the following will depend on the order of config.
Linus Torvalds1da177e2005-04-16 15:20:36 -070075# here assuming USB is defined before ALSA
76source "sound/usb/Kconfig"
77
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +010078# the following will depend on the order of config.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079# here assuming PCMCIA is defined before ALSA
80source "sound/pcmcia/Kconfig"
81
82source "sound/sparc/Kconfig"
83
84source "sound/parisc/Kconfig"
85
Liam Girdwooda3288172006-10-06 18:33:55 +020086source "sound/soc/Kconfig"
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088endmenu
89
90menu "Open Sound System"
Al Viro276bd312005-08-23 22:45:06 +010091 depends on SOUND!=n
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93config SOUND_PRIME
94 tristate "Open Sound System (DEPRECATED)"
95 depends on SOUND
96 help
97 Say 'Y' or 'M' to enable Open Sound System drivers.
98
99source "sound/oss/Kconfig"
100
101endmenu
102
103endif
104
Nicolas Pitree1036502006-12-12 13:32:29 -0500105config AC97_BUS
106 tristate
107 help
108 This is used to avoid config and link hard dependencies between the
109 sound subsystem and other function drivers completely unrelated to
110 sound although they're sharing the AC97 bus. Concerned drivers
111 should "select" this.
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113endmenu