* added 0.99 linux version
[mascara-docs.git] / i386 / linux / linux-2.3.21 / Documentation / sound / CMI8330
blobfca15f6069e6e2c22df8a608f73223c837a7dfda
1 How to enable CMI 8330 (SOUNDPRO) soundchip on Linux
2 ------------------------------------------
3 Stefan Laudat <Stefan.Laudat@asit.ro>
5 [Note: The CMI 8338 is unrelated and right now unsupported]
7         
8         In order to use CMI8330 under Linux  you just have to use a proper isapnp.conf, a good isapnp and a little bit of patience.  I use isapnp 1.17, but
9 you may get a better one I guess at http://www.roestock.demon.co.uk/isapnptools/.
11         Of course you will have to compile kernel sound support as module, as shown below:
13 CONFIG_SOUND=m
14 CONFIG_SOUND_OSS=m
15 CONFIG_SOUND_SB=m
16 CONFIG_SOUND_ADLIB=m
17 CONFIG_SOUND_MPU401=m
18 # Mikro$chaft sound system (kinda useful here ;))       
19 CONFIG_SOUND_MSS=m
21         The /etc/isapnp.conf file will be:
23 <snip below>
26 (READPORT 0x0203)
27 (ISOLATE PRESERVE)
28 (IDENTIFY *)
29 (VERBOSITY 2)
30 (CONFLICT (IO FATAL)(IRQ FATAL)(DMA FATAL)(MEM FATAL)) # or WARNING
31 (VERIFYLD N)
34 # WSS 
36 (CONFIGURE CMI0001/16777472 (LD 0
37 (IO 0 (SIZE 8) (BASE 0x0530))
38 (IO 1 (SIZE 8) (BASE 0x0388))
39 (INT 0 (IRQ 7 (MODE +E)))
40 (DMA 0 (CHANNEL 0))
41 (NAME "CMI0001/16777472[0]{CMI8330/C3D Audio Adapter}")
42 (ACT Y)
45 # MPU
47 (CONFIGURE CMI0001/16777472 (LD 1
48 (IO 0 (SIZE 2) (BASE 0x0330))
49 (INT 0 (IRQ 11 (MODE +E)))
50 (NAME "CMI0001/16777472[1]{CMI8330/C3D Audio Adapter}")
51 (ACT Y)
54 # Joystick
56 (CONFIGURE CMI0001/16777472 (LD 2
57 (IO 0 (SIZE 8) (BASE 0x0200))
58 (NAME "CMI0001/16777472[2]{CMI8330/C3D Audio Adapter}")
59 (ACT Y)
62 # SoundBlaster 
64 (CONFIGURE CMI0001/16777472 (LD 3
65 (IO 0 (SIZE 16) (BASE 0x0220))
66 (INT 0 (IRQ 5 (MODE +E)))
67 (DMA 0 (CHANNEL 1))
68 (DMA 1 (CHANNEL 5))
69 (NAME "CMI0001/16777472[3]{CMI8330/C3D Audio Adapter}")
70 (ACT Y)
74 (WAITFORKEY)
76 <end of snip>
78         The module sequence is trivial:
80 /sbin/insmod soundcore
81 /sbin/insmod sound
82 /sbin/insmod uart401
83 # insert this first
84 /sbin/insmod ad1848 io=0x530 irq=7 dma=0 soundpro=1
85 # The sb module is an alternative to the ad1848 (Microsoft Sound System)
86 # Anyhow, this is full duplex and has MIDI
87 /sbin/insmod sb io=0x220 dma=1 dma16=5 irq=5 mpu_io=0x330
91 Alma Chao <elysian@ethereal.torsion.org> suggests the following /etc/conf.modules:
93 alias sound ad1848
94 alias synth0 opl3
95 options ad1848 io=0x530 irq=7 dma=0 soundpro=1
96 options opl3 io=0x388
98