cs4232.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

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