cs4232.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:14k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) by Hannu Savolainen 1993-1997
  3.  *
  4.  * cs4232.c
  5.  *
  6.  * The low level driver for Crystal CS4232 based cards. The CS4232 is
  7.  * a PnP compatible chip which contains a CS4231A codec, SB emulation,
  8.  * a MPU401 compatible MIDI port, joystick and synthesizer and IDE CD-ROM 
  9.  * interfaces. This is just a temporary driver until full PnP support
  10.  * gets implemented. Just the WSS codec, FM synth and the MIDI ports are
  11.  * supported. Other interfaces are left uninitialized.
  12.  *
  13.  * ifdef ...WAVEFRONT...
  14.  * 
  15.  *   Support is provided for initializing the WaveFront synth
  16.  *   interface as well, which is logical device #4. Note that if
  17.  *   you have a Tropez+ card, you probably don't need to setup
  18.  *   the CS4232-supported MIDI interface, since it corresponds to
  19.  *   the internal 26-pin header that's hard to access. Using this
  20.  *   requires an additional IRQ, a resource none too plentiful in
  21.  *   this environment. Just don't set module parameters mpuio and
  22.  *   mpuirq, and the MIDI port will be left uninitialized. You can
  23.  *   still use the ICS2115 hosted MIDI interface which corresponds
  24.  *   to the 9-pin D connector on the back of the card.
  25.  *
  26.  * endif  ...WAVEFRONT...
  27.  *
  28.  * Supported chips are:
  29.  *      CS4232
  30.  *      CS4236
  31.  *      CS4236B
  32.  *
  33.  * Note: You will need a PnP config setup to initialise some CS4232 boards
  34.  * anyway.
  35.  *
  36.  * Changes
  37.  *      John Rood               Added Bose Sound System Support.
  38.  *      Toshio Spoor
  39.  * Alan Cox Modularisation, Basic cleanups.
  40.  *      Paul Barton-Davis Separated MPU configuration, added
  41.  *                                       Tropez+ (WaveFront) support
  42.  * Christoph Hellwig Adapted to module_init/module_exit,
  43.  *  simple cleanups
  44.  *  Arnaldo C. de Melo got rid of attach_uart401
  45.  * Bartlomiej Zolnierkiewicz
  46.  * Added some __init/__initdata/__exit
  47.  * Marcus Meissner Added ISA PnP support.
  48.  */
  49. #include <linux/config.h>
  50. #include <linux/isapnp.h>
  51. #include <linux/module.h>
  52. #include <linux/init.h>
  53. #include "sound_config.h"
  54. #include "cs4232.h"
  55. #include "ad1848.h"
  56. #include "mpu401.h"
  57. #define KEY_PORT 0x279 /* Same as LPT1 status port */
  58. #define CSN_NUM 0x99 /* Just a random number */
  59. #define INDEX_ADDRESS   0x00    /* (R0) Index Address Register */
  60. #define INDEX_DATA      0x01    /* (R1) Indexed Data Register */
  61. #define PIN_CONTROL     0x0a    /* (I10) Pin Control */
  62. #define ENABLE_PINS     0xc0    /* XCTRL0/XCTRL1 enable */
  63. static void CS_OUT(unsigned char a)
  64. {
  65. outb(a, KEY_PORT);
  66. }
  67. #define CS_OUT2(a, b) {CS_OUT(a);CS_OUT(b);}
  68. #define CS_OUT3(a, b, c) {CS_OUT(a);CS_OUT(b);CS_OUT(c);}
  69. static int __initdata bss       = 0;
  70. static int mpu_base = 0, mpu_irq = 0;
  71. static int synth_base = 0, synth_irq = 0;
  72. static int mpu_detected = 0;
  73. int __init probe_cs4232_mpu(struct address_info *hw_config)
  74. {
  75. /*
  76.  * Just write down the config values.
  77.  */
  78. mpu_base = hw_config->io_base;
  79. mpu_irq = hw_config->irq;
  80. return 1;
  81. }
  82. static unsigned char crystal_key[] __initdata = /* A 32 byte magic key sequence */
  83. {
  84. 0x96, 0x35, 0x9a, 0xcd, 0xe6, 0xf3, 0x79, 0xbc,
  85. 0x5e, 0xaf, 0x57, 0x2b, 0x15, 0x8a, 0xc5, 0xe2,
  86. 0xf1, 0xf8, 0x7c, 0x3e, 0x9f, 0x4f, 0x27, 0x13,
  87. 0x09, 0x84, 0x42, 0xa1, 0xd0, 0x68, 0x34, 0x1a
  88. };
  89. static void sleep(unsigned howlong)
  90. {
  91. current->state = TASK_INTERRUPTIBLE;
  92. schedule_timeout(howlong);
  93. }
  94. static void enable_xctrl(int baseio)
  95. {
  96.         unsigned char regd;
  97.                 
  98.         /*
  99.          * Some IBM Aptiva's have the Bose Sound System. By default
  100.          * the Bose Amplifier is disabled. The amplifier will be 
  101.          * activated, by setting the XCTRL0 and XCTRL1 bits.
  102.          * Volume of the monitor bose speakers/woofer, can then
  103.          * be set by changing the PCM volume.
  104.          *
  105.          */
  106.                 
  107.         printk("cs4232: enabling Bose Sound System Amplifier.n");
  108.         
  109.         /* Switch to Pin Control Address */                   
  110.         regd = inb(baseio + INDEX_ADDRESS) & 0xe0;
  111.         outb(((unsigned char) (PIN_CONTROL | regd)), baseio + INDEX_ADDRESS );
  112.         
  113.         /* Activate the XCTRL0 and XCTRL1 Pins */
  114.         regd = inb(baseio + INDEX_DATA);
  115.         outb(((unsigned char) (ENABLE_PINS | regd)), baseio + INDEX_DATA );
  116. }
  117. int __init probe_cs4232(struct address_info *hw_config, int isapnp_configured)
  118. {
  119. int i, n;
  120. int base = hw_config->io_base, irq = hw_config->irq;
  121. int dma1 = hw_config->dma, dma2 = hw_config->dma2;
  122. /*
  123.  * Verify that the I/O port range is free.
  124.  */
  125. if (check_region(base, 4))
  126. {
  127. printk(KERN_ERR "cs4232.c: I/O port 0x%03x not freen", base);
  128. return 0;
  129. }
  130. if (ad1848_detect(hw_config->io_base, NULL, hw_config->osp)) {
  131. return 1; /* The card is already active */
  132. }
  133. if (isapnp_configured) {
  134. printk(KERN_ERR "cs4232.c: ISA PnP configured, but not detected?n");
  135. return 0;
  136. }
  137. /*
  138.  * This version of the driver doesn't use the PnP method when configuring
  139.  * the card but a simplified method defined by Crystal. This means that
  140.  * just one CS4232 compatible device can exist on the system. Also this
  141.  * method conflicts with possible PnP support in the OS. For this reason 
  142.  * driver is just a temporary kludge.
  143.  *
  144.  * Also the Cirrus/Crystal method doesn't always work. Try ISA PnP first ;)
  145.  */
  146. /*
  147.  * Repeat initialization few times since it doesn't always succeed in
  148.  * first time.
  149.  */
  150. for (n = 0; n < 4; n++)
  151. {
  152. /*
  153.  * Wake up the card by sending a 32 byte Crystal key to the key port.
  154.  */
  155. for (i = 0; i < 32; i++)
  156. CS_OUT(crystal_key[i]);
  157. sleep(HZ / 10);
  158. /*
  159.  * Now set the CSN (Card Select Number).
  160.  */
  161. CS_OUT2(0x06, CSN_NUM);
  162. /*
  163.  * Then set some config bytes. First logical device 0 
  164.  */
  165. CS_OUT2(0x15, 0x00); /* Select logical device 0 (WSS/SB/FM) */
  166. CS_OUT3(0x47, (base >> 8) & 0xff, base & 0xff); /* WSS base */
  167. if (check_region(0x388, 4)) /* Not free */
  168. CS_OUT3(0x48, 0x00, 0x00) /* FM base off */
  169. else
  170. CS_OUT3(0x48, 0x03, 0x88); /* FM base 0x388 */
  171. CS_OUT3(0x42, 0x00, 0x00); /* SB base off */
  172. CS_OUT2(0x22, irq); /* SB+WSS IRQ */
  173. CS_OUT2(0x2a, dma1); /* SB+WSS DMA */
  174. if (dma2 != -1)
  175. CS_OUT2(0x25, dma2) /* WSS DMA2 */
  176. else
  177. CS_OUT2(0x25, 4); /* No WSS DMA2 */
  178. CS_OUT2(0x33, 0x01); /* Activate logical dev 0 */
  179. sleep(HZ / 10);
  180. /*
  181.  * Initialize logical device 3 (MPU)
  182.  */
  183. if (mpu_base != 0 && mpu_irq != 0)
  184. {
  185. CS_OUT2(0x15, 0x03); /* Select logical device 3 (MPU) */
  186. CS_OUT3(0x47, (mpu_base >> 8) & 0xff, mpu_base & 0xff); /* MPU base */
  187. CS_OUT2(0x22, mpu_irq); /* MPU IRQ */
  188. CS_OUT2(0x33, 0x01); /* Activate logical dev 3 */
  189. }
  190. if(synth_base != 0)
  191. {
  192.     CS_OUT2 (0x15, 0x04);         /* logical device 4 (WaveFront) */
  193.     CS_OUT3 (0x47, (synth_base >> 8) & 0xff,
  194.      synth_base & 0xff); /* base */
  195.     CS_OUT2 (0x22, synth_irq);      /* IRQ */
  196.     CS_OUT2 (0x33, 0x01);         /* Activate logical dev 4 */
  197. }
  198. /*
  199.  * Finally activate the chip
  200.  */
  201. CS_OUT(0x79);
  202. sleep(HZ / 5);
  203. /*
  204.  * Then try to detect the codec part of the chip
  205.  */
  206. if (ad1848_detect(hw_config->io_base, NULL, hw_config->osp))
  207. return 1;
  208. sleep(HZ);
  209. }
  210. return 0;
  211. }
  212. void __init attach_cs4232(struct address_info *hw_config)
  213. {
  214. int base = hw_config->io_base,
  215. irq = hw_config->irq,
  216. dma1 = hw_config->dma,
  217. dma2 = hw_config->dma2;
  218. if (base == -1 || irq == -1 || dma1 == -1) {
  219. printk(KERN_ERR "cs4232: dma, irq and io must be set.n");
  220. return;
  221. }
  222. if (dma2 == -1)
  223. dma2 = dma1;
  224. hw_config->slots[0] = ad1848_init("Crystal audio controller", base,
  225.   irq,
  226.   dma1, /* Playback DMA */
  227.   dma2, /* Capture DMA */
  228.   0,
  229.   hw_config->osp,
  230.   THIS_MODULE);
  231. if (hw_config->slots[0] != -1 &&
  232. audio_devs[hw_config->slots[0]]->mixer_dev!=-1)
  233. {
  234. /* Assume the mixer map is as suggested in the CS4232 databook */
  235. AD1848_REROUTE(SOUND_MIXER_LINE1, SOUND_MIXER_LINE);
  236. AD1848_REROUTE(SOUND_MIXER_LINE2, SOUND_MIXER_CD);
  237. AD1848_REROUTE(SOUND_MIXER_LINE3, SOUND_MIXER_SYNTH); /* FM synth */
  238. }
  239. if (mpu_base != 0 && mpu_irq != 0)
  240. {
  241. static struct address_info hw_config2 = {
  242. 0
  243. }; /* Ensure it's initialized */
  244. hw_config2.io_base = mpu_base;
  245. hw_config2.irq = mpu_irq;
  246. hw_config2.dma = -1;
  247. hw_config2.dma2 = -1;
  248. hw_config2.always_detect = 0;
  249. hw_config2.name = NULL;
  250. hw_config2.driver_use_1 = 0;
  251. hw_config2.driver_use_2 = 0;
  252. hw_config2.card_subtype = 0;
  253. if (probe_uart401(&hw_config2, THIS_MODULE))
  254. {
  255. mpu_detected = 1;
  256. }
  257. else
  258. {
  259. mpu_base = mpu_irq = 0;
  260. }
  261. hw_config->slots[1] = hw_config2.slots[1];
  262. }
  263. if (bss)
  264. {
  265.          enable_xctrl(base);
  266. }
  267. }
  268. void unload_cs4232(struct address_info *hw_config)
  269. {
  270. int base = hw_config->io_base, irq = hw_config->irq;
  271. int dma1 = hw_config->dma, dma2 = hw_config->dma2;
  272. if (dma2 == -1)
  273. dma2 = dma1;
  274. ad1848_unload(base,
  275.       irq,
  276.       dma1, /* Playback DMA */
  277.       dma2, /* Capture DMA */
  278.       0);
  279. sound_unload_audiodev(hw_config->slots[0]);
  280. if (mpu_base != 0 && mpu_irq != 0 && mpu_detected)
  281. {
  282. static struct address_info hw_config2 =
  283. {
  284. 0
  285. }; /* Ensure it's initialized */
  286. hw_config2.io_base = mpu_base;
  287. hw_config2.irq = mpu_irq;
  288. hw_config2.dma = -1;
  289. hw_config2.dma2 = -1;
  290. hw_config2.always_detect = 0;
  291. hw_config2.name = NULL;
  292. hw_config2.driver_use_1 = 0;
  293. hw_config2.driver_use_2 = 0;
  294. hw_config2.card_subtype = 0;
  295. hw_config2.slots[1] = hw_config->slots[1];
  296. unload_uart401(&hw_config2);
  297. }
  298. }
  299. static struct address_info cfg;
  300. static struct address_info cfg_mpu;
  301. static int __initdata io = -1;
  302. static int __initdata irq = -1;
  303. static int __initdata dma = -1;
  304. static int __initdata dma2 = -1;
  305. static int __initdata mpuio = -1;
  306. static int __initdata mpuirq = -1;
  307. static int __initdata synthio = -1;
  308. static int __initdata synthirq = -1;
  309. static int __initdata isapnp = 1;
  310. MODULE_DESCRIPTION("CS4232 based soundcard driver"); 
  311. MODULE_AUTHOR("Hannu Savolainen, Paul Barton-Davis"); 
  312. MODULE_LICENSE("GPL");
  313. MODULE_PARM(io,"i");
  314. MODULE_PARM_DESC(io,"base I/O port for AD1848");
  315. MODULE_PARM(irq,"i");
  316. MODULE_PARM_DESC(irq,"IRQ for AD1848 chip");
  317. MODULE_PARM(dma,"i");
  318. MODULE_PARM_DESC(dma,"8 bit DMA for AD1848 chip");
  319. MODULE_PARM(dma2,"i");
  320. MODULE_PARM_DESC(dma2,"16 bit DMA for AD1848 chip");
  321. MODULE_PARM(mpuio,"i");
  322. MODULE_PARM_DESC(mpuio,"MPU 401 base address");
  323. MODULE_PARM(mpuirq,"i");
  324. MODULE_PARM_DESC(mpuirq,"MPU 401 IRQ");
  325. MODULE_PARM(synthio,"i");
  326. MODULE_PARM_DESC(synthio,"Maui WaveTable base I/O port");
  327. MODULE_PARM(synthirq,"i");
  328. MODULE_PARM_DESC(synthirq,"Maui WaveTable IRQ");
  329. MODULE_PARM(isapnp,"i");
  330. MODULE_PARM_DESC(isapnp,"Enable ISAPnP probing (default 1)");
  331. MODULE_PARM(bss,"i");
  332. MODULE_PARM_DESC(bss,"Enable Bose Sound System Support (default 0)");
  333. /*
  334.  * Install a CS4232 based card. Need to have ad1848 and mpu401
  335.  * loaded ready.
  336.  */
  337. /* All cs4232 based cards have the main ad1848 card either as CSC0000 or
  338.  * CSC0100. */
  339. struct isapnp_device_id isapnp_cs4232_list[] __initdata = {
  340. {       ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  341. ISAPNP_VENDOR('C','S','C'), ISAPNP_FUNCTION(0x0100),
  342. 0 },
  343. {       ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  344. ISAPNP_VENDOR('C','S','C'), ISAPNP_FUNCTION(0x0000),
  345. 0 },
  346. /* Guillemot Turtlebeach something appears to be cs4232 compatible
  347.  * (untested) */
  348. {       ISAPNP_VENDOR('C','S','C'), ISAPNP_ANY_ID,
  349. ISAPNP_VENDOR('G','I','M'), ISAPNP_FUNCTION(0x0100),
  350. 0 },
  351. {0}
  352. };
  353. MODULE_DEVICE_TABLE(isapnp, isapnp_cs4232_list);
  354. int cs4232_isapnp_probe(struct pci_dev *dev, const struct isapnp_device_id *id)
  355. {
  356. int ret;
  357. struct address_info *isapnpcfg;
  358. isapnpcfg=(struct address_info*)kmalloc(sizeof(*isapnpcfg),GFP_KERNEL);
  359. if (!isapnpcfg) 
  360. return -ENOMEM;
  361. /*
  362.  * If device is active, assume configured with /proc/isapnp
  363.  * and use anyway. Any other way to check this?
  364.  */
  365. ret = dev->prepare(dev);
  366. if(ret && ret != -EBUSY) {
  367. printk(KERN_ERR "cs4232: ISA PnP found device that could not be autoconfigured.n");
  368. kfree(isapnpcfg);
  369. return -ENODEV;
  370. }
  371. if(ret != -EBUSY) {
  372. if(dev->activate(dev) < 0) {
  373. printk(KERN_WARNING "cs4232: ISA PnP activate failedn");
  374. kfree(isapnpcfg);
  375. return -ENODEV;
  376. }
  377. } /* else subfunction is already activated */
  378. isapnpcfg->irq = dev->irq_resource[0].start;
  379. isapnpcfg->dma = dev->dma_resource[0].start;
  380. isapnpcfg->dma2 = dev->dma_resource[1].start;
  381. isapnpcfg->io_base = dev->resource[0].start;
  382. if (probe_cs4232(isapnpcfg,TRUE) == 0) {
  383. printk(KERN_ERR "cs4232: ISA PnP card found, but not detected?n");
  384. kfree(isapnpcfg);
  385. return -ENODEV;
  386. }
  387. attach_cs4232(isapnpcfg);
  388. pci_set_drvdata(dev,isapnpcfg);
  389. return 0;
  390. }
  391. static int __init init_cs4232(void)
  392. {
  393. #ifdef CONFIG_SOUND_WAVEFRONT_MODULE
  394. if(synthio == -1)
  395. printk(KERN_INFO "cs4232: set synthio and synthirq to use the wavefront facilities.n");
  396. else {
  397. synth_base = synthio;
  398. synth_irq =  synthirq;
  399. }
  400. #else
  401. if(synthio != -1)
  402. printk(KERN_WARNING "cs4232: wavefront support not enabled in this driver.n");
  403. #endif
  404. cfg.irq = -1;
  405. if (isapnp &&
  406.     (isapnp_probe_devs(isapnp_cs4232_list, cs4232_isapnp_probe) > 0)
  407. )
  408. return 0;
  409. if(io==-1||irq==-1||dma==-1)
  410. {
  411. printk(KERN_ERR "cs4232: Must set io, irq and dma.n");
  412. return -ENODEV;
  413. }
  414. cfg.io_base = io;
  415. cfg.irq = irq;
  416. cfg.dma = dma;
  417. cfg.dma2 = dma2;
  418. cfg_mpu.io_base = -1;
  419. cfg_mpu.irq = -1;
  420. if (mpuio != -1 && mpuirq != -1) {
  421. cfg_mpu.io_base = mpuio;
  422. cfg_mpu.irq = mpuirq;
  423. probe_cs4232_mpu(&cfg_mpu); /* Bug always returns 0 not OK -- AC */
  424. }
  425. if (probe_cs4232(&cfg,FALSE) == 0)
  426. return -ENODEV;
  427. attach_cs4232(&cfg);
  428. return 0;
  429. }
  430. int cs4232_isapnp_remove(struct pci_dev *dev, const struct isapnp_device_id *id)
  431. {
  432. struct address_info *cfg = (struct address_info*)pci_get_drvdata(dev);
  433. if (cfg) unload_cs4232(cfg);
  434. pci_set_drvdata(dev,NULL);
  435. dev->deactivate(dev);
  436. return 0;
  437. }
  438. static void __exit cleanup_cs4232(void)
  439. {
  440. isapnp_probe_devs(isapnp_cs4232_list, cs4232_isapnp_remove);
  441.         if (cfg.irq != -1)
  442. unload_cs4232(&cfg); /* Unloads global MPU as well, if needed */
  443. }
  444. module_init(init_cs4232);
  445. module_exit(cleanup_cs4232);
  446. #ifndef MODULE
  447. static int __init setup_cs4232(char *str)
  448. {
  449. /* io, irq, dma, dma2 mpuio, mpuirq*/
  450. int ints[7];
  451. /* If we have isapnp cards, no need for options */
  452. if (isapnp_probe_devs(isapnp_cs4232_list, cs4232_isapnp_probe) > 0)
  453. return 1;
  454. str = get_options(str, ARRAY_SIZE(ints), ints);
  455. io = ints[1];
  456. irq = ints[2];
  457. dma = ints[3];
  458. dma2 = ints[4];
  459. mpuio = ints[5];
  460. mpuirq = ints[6];
  461. return 1;
  462. }
  463. __setup("cs4232=", setup_cs4232);
  464. #endif