cmi8330.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783
  1. /*
  2. * Driver for C-Media's CMI8330 and CMI8329 soundcards.
  3. * Copyright (c) by George Talusan <gstalusan@uwaterloo.ca>
  4. * http://www.undergrad.math.uwaterloo.ca/~gstalusa
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. */
  21. /*
  22. * NOTES
  23. *
  24. * The extended registers contain mixer settings which are largely
  25. * untapped for the time being.
  26. *
  27. * MPU401 and SPDIF are not supported yet. I don't have the hardware
  28. * to aid in coding and testing, so I won't bother.
  29. *
  30. * To quickly load the module,
  31. *
  32. * modprobe -a snd-cmi8330 sbport=0x220 sbirq=5 sbdma8=1
  33. * sbdma16=5 wssport=0x530 wssirq=11 wssdma=0 fmport=0x388
  34. *
  35. * This card has two mixers and two PCM devices. I've cheesed it such
  36. * that recording and playback can be done through the same device.
  37. * The driver "magically" routes the capturing to the AD1848 codec,
  38. * and playback to the SB16 codec. This allows for full-duplex mode
  39. * to some extent.
  40. * The utilities in alsa-utils are aware of both devices, so passing
  41. * the appropriate parameters to amixer and alsactl will give you
  42. * full control over both mixers.
  43. */
  44. #include <linux/init.h>
  45. #include <linux/err.h>
  46. #include <linux/isa.h>
  47. #include <linux/slab.h>
  48. #include <linux/pnp.h>
  49. #include <linux/moduleparam.h>
  50. #include <sound/core.h>
  51. #include <sound/wss.h>
  52. #include <sound/opl3.h>
  53. #include <sound/mpu401.h>
  54. #include <sound/sb.h>
  55. #include <sound/initval.h>
  56. /*
  57. */
  58. /* #define ENABLE_SB_MIXER */
  59. #define PLAYBACK_ON_SB
  60. /*
  61. */
  62. MODULE_AUTHOR("George Talusan <gstalusan@uwaterloo.ca>");
  63. MODULE_DESCRIPTION("C-Media CMI8330/CMI8329");
  64. MODULE_LICENSE("GPL");
  65. MODULE_SUPPORTED_DEVICE("{{C-Media,CMI8330,isapnp:{CMI0001,@@@0001,@X@0001}}}");
  66. static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
  67. static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
  68. static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP;
  69. #ifdef CONFIG_PNP
  70. static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
  71. #endif
  72. static long sbport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
  73. static int sbirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
  74. static int sbdma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
  75. static int sbdma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
  76. static long wssport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
  77. static int wssirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
  78. static int wssdma[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
  79. static long fmport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
  80. static long mpuport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
  81. static int mpuirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
  82. module_param_array(index, int, NULL, 0444);
  83. MODULE_PARM_DESC(index, "Index value for CMI8330/CMI8329 soundcard.");
  84. module_param_array(id, charp, NULL, 0444);
  85. MODULE_PARM_DESC(id, "ID string for CMI8330/CMI8329 soundcard.");
  86. module_param_array(enable, bool, NULL, 0444);
  87. MODULE_PARM_DESC(enable, "Enable CMI8330/CMI8329 soundcard.");
  88. #ifdef CONFIG_PNP
  89. module_param_array(isapnp, bool, NULL, 0444);
  90. MODULE_PARM_DESC(isapnp, "PnP detection for specified soundcard.");
  91. #endif
  92. module_param_array(sbport, long, NULL, 0444);
  93. MODULE_PARM_DESC(sbport, "Port # for CMI8330/CMI8329 SB driver.");
  94. module_param_array(sbirq, int, NULL, 0444);
  95. MODULE_PARM_DESC(sbirq, "IRQ # for CMI8330/CMI8329 SB driver.");
  96. module_param_array(sbdma8, int, NULL, 0444);
  97. MODULE_PARM_DESC(sbdma8, "DMA8 for CMI8330/CMI8329 SB driver.");
  98. module_param_array(sbdma16, int, NULL, 0444);
  99. MODULE_PARM_DESC(sbdma16, "DMA16 for CMI8330/CMI8329 SB driver.");
  100. module_param_array(wssport, long, NULL, 0444);
  101. MODULE_PARM_DESC(wssport, "Port # for CMI8330/CMI8329 WSS driver.");
  102. module_param_array(wssirq, int, NULL, 0444);
  103. MODULE_PARM_DESC(wssirq, "IRQ # for CMI8330/CMI8329 WSS driver.");
  104. module_param_array(wssdma, int, NULL, 0444);
  105. MODULE_PARM_DESC(wssdma, "DMA for CMI8330/CMI8329 WSS driver.");
  106. module_param_array(fmport, long, NULL, 0444);
  107. MODULE_PARM_DESC(fmport, "FM port # for CMI8330/CMI8329 driver.");
  108. module_param_array(mpuport, long, NULL, 0444);
  109. MODULE_PARM_DESC(mpuport, "MPU-401 port # for CMI8330/CMI8329 driver.");
  110. module_param_array(mpuirq, int, NULL, 0444);
  111. MODULE_PARM_DESC(mpuirq, "IRQ # for CMI8330/CMI8329 MPU-401 port.");
  112. #ifdef CONFIG_PNP
  113. static int isa_registered;
  114. static int pnp_registered;
  115. #endif
  116. #define CMI8330_RMUX3D 16
  117. #define CMI8330_MUTEMUX 17
  118. #define CMI8330_OUTPUTVOL 18
  119. #define CMI8330_MASTVOL 19
  120. #define CMI8330_LINVOL 20
  121. #define CMI8330_CDINVOL 21
  122. #define CMI8330_WAVVOL 22
  123. #define CMI8330_RECMUX 23
  124. #define CMI8330_WAVGAIN 24
  125. #define CMI8330_LINGAIN 25
  126. #define CMI8330_CDINGAIN 26
  127. static unsigned char snd_cmi8330_image[((CMI8330_CDINGAIN)-16) + 1] =
  128. {
  129. 0x40, /* 16 - recording mux (SB-mixer-enabled) */
  130. #ifdef ENABLE_SB_MIXER
  131. 0x40, /* 17 - mute mux (Mode2) */
  132. #else
  133. 0x0, /* 17 - mute mux */
  134. #endif
  135. 0x0, /* 18 - vol */
  136. 0x0, /* 19 - master volume */
  137. 0x0, /* 20 - line-in volume */
  138. 0x0, /* 21 - cd-in volume */
  139. 0x0, /* 22 - wave volume */
  140. 0x0, /* 23 - mute/rec mux */
  141. 0x0, /* 24 - wave rec gain */
  142. 0x0, /* 25 - line-in rec gain */
  143. 0x0 /* 26 - cd-in rec gain */
  144. };
  145. typedef int (*snd_pcm_open_callback_t)(struct snd_pcm_substream *);
  146. enum card_type {
  147. CMI8330,
  148. CMI8329
  149. };
  150. struct snd_cmi8330 {
  151. #ifdef CONFIG_PNP
  152. struct pnp_dev *cap;
  153. struct pnp_dev *play;
  154. struct pnp_dev *mpu;
  155. #endif
  156. struct snd_card *card;
  157. struct snd_wss *wss;
  158. struct snd_sb *sb;
  159. struct snd_pcm *pcm;
  160. struct snd_cmi8330_stream {
  161. struct snd_pcm_ops ops;
  162. snd_pcm_open_callback_t open;
  163. void *private_data; /* sb or wss */
  164. } streams[2];
  165. enum card_type type;
  166. };
  167. #ifdef CONFIG_PNP
  168. static struct pnp_card_device_id snd_cmi8330_pnpids[] = {
  169. { .id = "CMI0001", .devs = { { "@X@0001" }, { "@@@0001" }, { "@H@0001" }, { "A@@0001" } } },
  170. { .id = "CMI0001", .devs = { { "@@@0001" }, { "@X@0001" }, { "@H@0001" } } },
  171. { .id = "" }
  172. };
  173. MODULE_DEVICE_TABLE(pnp_card, snd_cmi8330_pnpids);
  174. #endif
  175. static struct snd_kcontrol_new snd_cmi8330_controls[] __devinitdata = {
  176. WSS_DOUBLE("Master Playback Volume", 0,
  177. CMI8330_MASTVOL, CMI8330_MASTVOL, 4, 0, 15, 0),
  178. WSS_SINGLE("Loud Playback Switch", 0,
  179. CMI8330_MUTEMUX, 6, 1, 1),
  180. WSS_DOUBLE("PCM Playback Switch", 0,
  181. CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1),
  182. WSS_DOUBLE("PCM Playback Volume", 0,
  183. CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 63, 1),
  184. WSS_DOUBLE("Line Playback Switch", 0,
  185. CMI8330_MUTEMUX, CMI8330_MUTEMUX, 4, 3, 1, 0),
  186. WSS_DOUBLE("Line Playback Volume", 0,
  187. CMI8330_LINVOL, CMI8330_LINVOL, 4, 0, 15, 0),
  188. WSS_DOUBLE("Line Capture Switch", 0,
  189. CMI8330_RMUX3D, CMI8330_RMUX3D, 2, 1, 1, 0),
  190. WSS_DOUBLE("Line Capture Volume", 0,
  191. CMI8330_LINGAIN, CMI8330_LINGAIN, 4, 0, 15, 0),
  192. WSS_DOUBLE("CD Playback Switch", 0,
  193. CMI8330_MUTEMUX, CMI8330_MUTEMUX, 2, 1, 1, 0),
  194. WSS_DOUBLE("CD Capture Switch", 0,
  195. CMI8330_RMUX3D, CMI8330_RMUX3D, 4, 3, 1, 0),
  196. WSS_DOUBLE("CD Playback Volume", 0,
  197. CMI8330_CDINVOL, CMI8330_CDINVOL, 4, 0, 15, 0),
  198. WSS_DOUBLE("CD Capture Volume", 0,
  199. CMI8330_CDINGAIN, CMI8330_CDINGAIN, 4, 0, 15, 0),
  200. WSS_SINGLE("Mic Playback Switch", 0,
  201. CMI8330_MUTEMUX, 0, 1, 0),
  202. WSS_SINGLE("Mic Playback Volume", 0,
  203. CMI8330_OUTPUTVOL, 0, 7, 0),
  204. WSS_SINGLE("Mic Capture Switch", 0,
  205. CMI8330_RMUX3D, 0, 1, 0),
  206. WSS_SINGLE("Mic Capture Volume", 0,
  207. CMI8330_OUTPUTVOL, 5, 7, 0),
  208. WSS_DOUBLE("Wavetable Playback Switch", 0,
  209. CMI8330_RECMUX, CMI8330_RECMUX, 1, 0, 1, 0),
  210. WSS_DOUBLE("Wavetable Playback Volume", 0,
  211. CMI8330_WAVVOL, CMI8330_WAVVOL, 4, 0, 15, 0),
  212. WSS_DOUBLE("Wavetable Capture Switch", 0,
  213. CMI8330_RECMUX, CMI8330_RECMUX, 5, 4, 1, 0),
  214. WSS_DOUBLE("Wavetable Capture Volume", 0,
  215. CMI8330_WAVGAIN, CMI8330_WAVGAIN, 4, 0, 15, 0),
  216. WSS_SINGLE("3D Control - Switch", 0,
  217. CMI8330_RMUX3D, 5, 1, 1),
  218. WSS_SINGLE("PC Speaker Playback Volume", 0,
  219. CMI8330_OUTPUTVOL, 3, 3, 0),
  220. WSS_DOUBLE("FM Playback Switch", 0,
  221. CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1),
  222. WSS_DOUBLE("FM Playback Volume", 0,
  223. CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1),
  224. WSS_SINGLE(SNDRV_CTL_NAME_IEC958("Input ", CAPTURE, SWITCH), 0,
  225. CMI8330_RMUX3D, 7, 1, 1),
  226. WSS_SINGLE(SNDRV_CTL_NAME_IEC958("Input ", PLAYBACK, SWITCH), 0,
  227. CMI8330_MUTEMUX, 7, 1, 1),
  228. };
  229. #ifdef ENABLE_SB_MIXER
  230. static struct sbmix_elem cmi8330_sb_mixers[] __devinitdata = {
  231. SB_DOUBLE("SB Master Playback Volume", SB_DSP4_MASTER_DEV, (SB_DSP4_MASTER_DEV + 1), 3, 3, 31),
  232. SB_DOUBLE("Tone Control - Bass", SB_DSP4_BASS_DEV, (SB_DSP4_BASS_DEV + 1), 4, 4, 15),
  233. SB_DOUBLE("Tone Control - Treble", SB_DSP4_TREBLE_DEV, (SB_DSP4_TREBLE_DEV + 1), 4, 4, 15),
  234. SB_DOUBLE("SB PCM Playback Volume", SB_DSP4_PCM_DEV, (SB_DSP4_PCM_DEV + 1), 3, 3, 31),
  235. SB_DOUBLE("SB Synth Playback Volume", SB_DSP4_SYNTH_DEV, (SB_DSP4_SYNTH_DEV + 1), 3, 3, 31),
  236. SB_DOUBLE("SB CD Playback Switch", SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, 2, 1, 1),
  237. SB_DOUBLE("SB CD Playback Volume", SB_DSP4_CD_DEV, (SB_DSP4_CD_DEV + 1), 3, 3, 31),
  238. SB_DOUBLE("SB Line Playback Switch", SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, 4, 3, 1),
  239. SB_DOUBLE("SB Line Playback Volume", SB_DSP4_LINE_DEV, (SB_DSP4_LINE_DEV + 1), 3, 3, 31),
  240. SB_SINGLE("SB Mic Playback Switch", SB_DSP4_OUTPUT_SW, 0, 1),
  241. SB_SINGLE("SB Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31),
  242. SB_SINGLE("SB PC Speaker Volume", SB_DSP4_SPEAKER_DEV, 6, 3),
  243. SB_DOUBLE("SB Capture Volume", SB_DSP4_IGAIN_DEV, (SB_DSP4_IGAIN_DEV + 1), 6, 6, 3),
  244. SB_DOUBLE("SB Playback Volume", SB_DSP4_OGAIN_DEV, (SB_DSP4_OGAIN_DEV + 1), 6, 6, 3),
  245. SB_SINGLE("SB Mic Auto Gain", SB_DSP4_MIC_AGC, 0, 1),
  246. };
  247. static unsigned char cmi8330_sb_init_values[][2] __devinitdata = {
  248. { SB_DSP4_MASTER_DEV + 0, 0 },
  249. { SB_DSP4_MASTER_DEV + 1, 0 },
  250. { SB_DSP4_PCM_DEV + 0, 0 },
  251. { SB_DSP4_PCM_DEV + 1, 0 },
  252. { SB_DSP4_SYNTH_DEV + 0, 0 },
  253. { SB_DSP4_SYNTH_DEV + 1, 0 },
  254. { SB_DSP4_INPUT_LEFT, 0 },
  255. { SB_DSP4_INPUT_RIGHT, 0 },
  256. { SB_DSP4_OUTPUT_SW, 0 },
  257. { SB_DSP4_SPEAKER_DEV, 0 },
  258. };
  259. static int __devinit cmi8330_add_sb_mixers(struct snd_sb *chip)
  260. {
  261. int idx, err;
  262. unsigned long flags;
  263. spin_lock_irqsave(&chip->mixer_lock, flags);
  264. snd_sbmixer_write(chip, 0x00, 0x00); /* mixer reset */
  265. spin_unlock_irqrestore(&chip->mixer_lock, flags);
  266. /* mute and zero volume channels */
  267. for (idx = 0; idx < ARRAY_SIZE(cmi8330_sb_init_values); idx++) {
  268. spin_lock_irqsave(&chip->mixer_lock, flags);
  269. snd_sbmixer_write(chip, cmi8330_sb_init_values[idx][0],
  270. cmi8330_sb_init_values[idx][1]);
  271. spin_unlock_irqrestore(&chip->mixer_lock, flags);
  272. }
  273. for (idx = 0; idx < ARRAY_SIZE(cmi8330_sb_mixers); idx++) {
  274. if ((err = snd_sbmixer_add_ctl_elem(chip, &cmi8330_sb_mixers[idx])) < 0)
  275. return err;
  276. }
  277. return 0;
  278. }
  279. #endif
  280. static int __devinit snd_cmi8330_mixer(struct snd_card *card, struct snd_cmi8330 *acard)
  281. {
  282. unsigned int idx;
  283. int err;
  284. strcpy(card->mixername, (acard->type == CMI8329) ? "CMI8329" : "CMI8330/C3D");
  285. for (idx = 0; idx < ARRAY_SIZE(snd_cmi8330_controls); idx++) {
  286. err = snd_ctl_add(card,
  287. snd_ctl_new1(&snd_cmi8330_controls[idx],
  288. acard->wss));
  289. if (err < 0)
  290. return err;
  291. }
  292. #ifdef ENABLE_SB_MIXER
  293. if ((err = cmi8330_add_sb_mixers(acard->sb)) < 0)
  294. return err;
  295. #endif
  296. return 0;
  297. }
  298. #ifdef CONFIG_PNP
  299. static int __devinit snd_cmi8330_pnp(int dev, struct snd_cmi8330 *acard,
  300. struct pnp_card_link *card,
  301. const struct pnp_card_device_id *id)
  302. {
  303. struct pnp_dev *pdev;
  304. int err;
  305. /* CMI8329 has a device with ID A@@0001, CMI8330 does not */
  306. acard->type = (id->devs[3].id[0]) ? CMI8329 : CMI8330;
  307. acard->cap = pnp_request_card_device(card, id->devs[0].id, NULL);
  308. if (acard->cap == NULL)
  309. return -EBUSY;
  310. acard->play = pnp_request_card_device(card, id->devs[1].id, NULL);
  311. if (acard->play == NULL)
  312. return -EBUSY;
  313. acard->mpu = pnp_request_card_device(card, id->devs[2].id, NULL);
  314. if (acard->mpu == NULL)
  315. return -EBUSY;
  316. pdev = acard->cap;
  317. err = pnp_activate_dev(pdev);
  318. if (err < 0) {
  319. snd_printk(KERN_ERR "AD1848 PnP configure failure\n");
  320. return -EBUSY;
  321. }
  322. wssport[dev] = pnp_port_start(pdev, 0);
  323. wssdma[dev] = pnp_dma(pdev, 0);
  324. wssirq[dev] = pnp_irq(pdev, 0);
  325. if (pnp_port_start(pdev, 1))
  326. fmport[dev] = pnp_port_start(pdev, 1);
  327. /* allocate SB16 resources */
  328. pdev = acard->play;
  329. err = pnp_activate_dev(pdev);
  330. if (err < 0) {
  331. snd_printk(KERN_ERR "SB16 PnP configure failure\n");
  332. return -EBUSY;
  333. }
  334. sbport[dev] = pnp_port_start(pdev, 0);
  335. sbdma8[dev] = pnp_dma(pdev, 0);
  336. sbdma16[dev] = pnp_dma(pdev, 1);
  337. sbirq[dev] = pnp_irq(pdev, 0);
  338. /* On CMI8239, the OPL3 port might be present in SB16 PnP resources */
  339. if (fmport[dev] == SNDRV_AUTO_PORT) {
  340. if (pnp_port_start(pdev, 1))
  341. fmport[dev] = pnp_port_start(pdev, 1);
  342. else
  343. fmport[dev] = 0x388; /* Or hardwired */
  344. }
  345. /* allocate MPU-401 resources */
  346. pdev = acard->mpu;
  347. err = pnp_activate_dev(pdev);
  348. if (err < 0)
  349. snd_printk(KERN_ERR "MPU-401 PnP configure failure: will be disabled\n");
  350. else {
  351. mpuport[dev] = pnp_port_start(pdev, 0);
  352. mpuirq[dev] = pnp_irq(pdev, 0);
  353. }
  354. return 0;
  355. }
  356. #endif
  357. /*
  358. * PCM interface
  359. *
  360. * since we call the different chip interfaces for playback and capture
  361. * directions, we need a trick.
  362. *
  363. * - copy the ops for each direction into a local record.
  364. * - replace the open callback with the new one, which replaces the
  365. * substream->private_data with the corresponding chip instance
  366. * and calls again the original open callback of the chip.
  367. *
  368. */
  369. #ifdef PLAYBACK_ON_SB
  370. #define CMI_SB_STREAM SNDRV_PCM_STREAM_PLAYBACK
  371. #define CMI_AD_STREAM SNDRV_PCM_STREAM_CAPTURE
  372. #else
  373. #define CMI_SB_STREAM SNDRV_PCM_STREAM_CAPTURE
  374. #define CMI_AD_STREAM SNDRV_PCM_STREAM_PLAYBACK
  375. #endif
  376. static int snd_cmi8330_playback_open(struct snd_pcm_substream *substream)
  377. {
  378. struct snd_cmi8330 *chip = snd_pcm_substream_chip(substream);
  379. /* replace the private_data and call the original open callback */
  380. substream->private_data = chip->streams[SNDRV_PCM_STREAM_PLAYBACK].private_data;
  381. return chip->streams[SNDRV_PCM_STREAM_PLAYBACK].open(substream);
  382. }
  383. static int snd_cmi8330_capture_open(struct snd_pcm_substream *substream)
  384. {
  385. struct snd_cmi8330 *chip = snd_pcm_substream_chip(substream);
  386. /* replace the private_data and call the original open callback */
  387. substream->private_data = chip->streams[SNDRV_PCM_STREAM_CAPTURE].private_data;
  388. return chip->streams[SNDRV_PCM_STREAM_CAPTURE].open(substream);
  389. }
  390. static int __devinit snd_cmi8330_pcm(struct snd_card *card, struct snd_cmi8330 *chip)
  391. {
  392. struct snd_pcm *pcm;
  393. const struct snd_pcm_ops *ops;
  394. int err;
  395. static snd_pcm_open_callback_t cmi_open_callbacks[2] = {
  396. snd_cmi8330_playback_open,
  397. snd_cmi8330_capture_open
  398. };
  399. if ((err = snd_pcm_new(card, (chip->type == CMI8329) ? "CMI8329" : "CMI8330", 0, 1, 1, &pcm)) < 0)
  400. return err;
  401. strcpy(pcm->name, (chip->type == CMI8329) ? "CMI8329" : "CMI8330");
  402. pcm->private_data = chip;
  403. /* SB16 */
  404. ops = snd_sb16dsp_get_pcm_ops(CMI_SB_STREAM);
  405. chip->streams[CMI_SB_STREAM].ops = *ops;
  406. chip->streams[CMI_SB_STREAM].open = ops->open;
  407. chip->streams[CMI_SB_STREAM].ops.open = cmi_open_callbacks[CMI_SB_STREAM];
  408. chip->streams[CMI_SB_STREAM].private_data = chip->sb;
  409. /* AD1848 */
  410. ops = snd_wss_get_pcm_ops(CMI_AD_STREAM);
  411. chip->streams[CMI_AD_STREAM].ops = *ops;
  412. chip->streams[CMI_AD_STREAM].open = ops->open;
  413. chip->streams[CMI_AD_STREAM].ops.open = cmi_open_callbacks[CMI_AD_STREAM];
  414. chip->streams[CMI_AD_STREAM].private_data = chip->wss;
  415. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &chip->streams[SNDRV_PCM_STREAM_PLAYBACK].ops);
  416. snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &chip->streams[SNDRV_PCM_STREAM_CAPTURE].ops);
  417. snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
  418. snd_dma_isa_data(),
  419. 64*1024, 128*1024);
  420. chip->pcm = pcm;
  421. return 0;
  422. }
  423. #ifdef CONFIG_PM
  424. static int snd_cmi8330_suspend(struct snd_card *card)
  425. {
  426. struct snd_cmi8330 *acard = card->private_data;
  427. snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
  428. snd_pcm_suspend_all(acard->pcm);
  429. acard->wss->suspend(acard->wss);
  430. snd_sbmixer_suspend(acard->sb);
  431. return 0;
  432. }
  433. static int snd_cmi8330_resume(struct snd_card *card)
  434. {
  435. struct snd_cmi8330 *acard = card->private_data;
  436. snd_sbdsp_reset(acard->sb);
  437. snd_sbmixer_suspend(acard->sb);
  438. acard->wss->resume(acard->wss);
  439. snd_power_change_state(card, SNDRV_CTL_POWER_D0);
  440. return 0;
  441. }
  442. #endif
  443. /*
  444. */
  445. #ifdef CONFIG_PNP
  446. #define is_isapnp_selected(dev) isapnp[dev]
  447. #else
  448. #define is_isapnp_selected(dev) 0
  449. #endif
  450. #define PFX "cmi8330: "
  451. static int snd_cmi8330_card_new(int dev, struct snd_card **cardp)
  452. {
  453. struct snd_card *card;
  454. struct snd_cmi8330 *acard;
  455. int err;
  456. err = snd_card_create(index[dev], id[dev], THIS_MODULE,
  457. sizeof(struct snd_cmi8330), &card);
  458. if (err < 0) {
  459. snd_printk(KERN_ERR PFX "could not get a new card\n");
  460. return err;
  461. }
  462. acard = card->private_data;
  463. acard->card = card;
  464. *cardp = card;
  465. return 0;
  466. }
  467. static int __devinit snd_cmi8330_probe(struct snd_card *card, int dev)
  468. {
  469. struct snd_cmi8330 *acard;
  470. int i, err;
  471. struct snd_opl3 *opl3;
  472. acard = card->private_data;
  473. err = snd_wss_create(card, wssport[dev] + 4, -1,
  474. wssirq[dev],
  475. wssdma[dev], -1,
  476. WSS_HW_DETECT, 0, &acard->wss);
  477. if (err < 0) {
  478. snd_printk(KERN_ERR PFX "AD1848 device busy??\n");
  479. return err;
  480. }
  481. if (acard->wss->hardware != WSS_HW_CMI8330) {
  482. snd_printk(KERN_ERR PFX "AD1848 not found during probe\n");
  483. return -ENODEV;
  484. }
  485. if ((err = snd_sbdsp_create(card, sbport[dev],
  486. sbirq[dev],
  487. snd_sb16dsp_interrupt,
  488. sbdma8[dev],
  489. sbdma16[dev],
  490. SB_HW_AUTO, &acard->sb)) < 0) {
  491. snd_printk(KERN_ERR PFX "SB16 device busy??\n");
  492. return err;
  493. }
  494. if (acard->sb->hardware != SB_HW_16) {
  495. snd_printk(KERN_ERR PFX "SB16 not found during probe\n");
  496. return err;
  497. }
  498. snd_wss_out(acard->wss, CS4231_MISC_INFO, 0x40); /* switch on MODE2 */
  499. for (i = CMI8330_RMUX3D; i <= CMI8330_CDINGAIN; i++)
  500. snd_wss_out(acard->wss, i,
  501. snd_cmi8330_image[i - CMI8330_RMUX3D]);
  502. if ((err = snd_cmi8330_mixer(card, acard)) < 0) {
  503. snd_printk(KERN_ERR PFX "failed to create mixers\n");
  504. return err;
  505. }
  506. if ((err = snd_cmi8330_pcm(card, acard)) < 0) {
  507. snd_printk(KERN_ERR PFX "failed to create pcms\n");
  508. return err;
  509. }
  510. if (fmport[dev] != SNDRV_AUTO_PORT) {
  511. if (snd_opl3_create(card,
  512. fmport[dev], fmport[dev] + 2,
  513. OPL3_HW_AUTO, 0, &opl3) < 0) {
  514. snd_printk(KERN_ERR PFX
  515. "no OPL device at 0x%lx-0x%lx ?\n",
  516. fmport[dev], fmport[dev] + 2);
  517. } else {
  518. err = snd_opl3_hwdep_new(opl3, 0, 1, NULL);
  519. if (err < 0)
  520. return err;
  521. }
  522. }
  523. if (mpuport[dev] != SNDRV_AUTO_PORT) {
  524. if (snd_mpu401_uart_new(card, 0, MPU401_HW_MPU401,
  525. mpuport[dev], 0, mpuirq[dev],
  526. IRQF_DISABLED, NULL) < 0)
  527. printk(KERN_ERR PFX "no MPU-401 device at 0x%lx.\n",
  528. mpuport[dev]);
  529. }
  530. strcpy(card->driver, (acard->type == CMI8329) ? "CMI8329" : "CMI8330/C3D");
  531. strcpy(card->shortname, (acard->type == CMI8329) ? "C-Media CMI8329" : "C-Media CMI8330/C3D");
  532. sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d",
  533. card->shortname,
  534. acard->wss->port,
  535. wssirq[dev],
  536. wssdma[dev]);
  537. return snd_card_register(card);
  538. }
  539. static int __devinit snd_cmi8330_isa_match(struct device *pdev,
  540. unsigned int dev)
  541. {
  542. if (!enable[dev] || is_isapnp_selected(dev))
  543. return 0;
  544. if (wssport[dev] == SNDRV_AUTO_PORT) {
  545. snd_printk(KERN_ERR PFX "specify wssport\n");
  546. return 0;
  547. }
  548. if (sbport[dev] == SNDRV_AUTO_PORT) {
  549. snd_printk(KERN_ERR PFX "specify sbport\n");
  550. return 0;
  551. }
  552. return 1;
  553. }
  554. static int __devinit snd_cmi8330_isa_probe(struct device *pdev,
  555. unsigned int dev)
  556. {
  557. struct snd_card *card;
  558. int err;
  559. err = snd_cmi8330_card_new(dev, &card);
  560. if (err < 0)
  561. return err;
  562. snd_card_set_dev(card, pdev);
  563. if ((err = snd_cmi8330_probe(card, dev)) < 0) {
  564. snd_card_free(card);
  565. return err;
  566. }
  567. dev_set_drvdata(pdev, card);
  568. return 0;
  569. }
  570. static int __devexit snd_cmi8330_isa_remove(struct device *devptr,
  571. unsigned int dev)
  572. {
  573. snd_card_free(dev_get_drvdata(devptr));
  574. dev_set_drvdata(devptr, NULL);
  575. return 0;
  576. }
  577. #ifdef CONFIG_PM
  578. static int snd_cmi8330_isa_suspend(struct device *dev, unsigned int n,
  579. pm_message_t state)
  580. {
  581. return snd_cmi8330_suspend(dev_get_drvdata(dev));
  582. }
  583. static int snd_cmi8330_isa_resume(struct device *dev, unsigned int n)
  584. {
  585. return snd_cmi8330_resume(dev_get_drvdata(dev));
  586. }
  587. #endif
  588. #define DEV_NAME "cmi8330"
  589. static struct isa_driver snd_cmi8330_driver = {
  590. .match = snd_cmi8330_isa_match,
  591. .probe = snd_cmi8330_isa_probe,
  592. .remove = __devexit_p(snd_cmi8330_isa_remove),
  593. #ifdef CONFIG_PM
  594. .suspend = snd_cmi8330_isa_suspend,
  595. .resume = snd_cmi8330_isa_resume,
  596. #endif
  597. .driver = {
  598. .name = DEV_NAME
  599. },
  600. };
  601. #ifdef CONFIG_PNP
  602. static int __devinit snd_cmi8330_pnp_detect(struct pnp_card_link *pcard,
  603. const struct pnp_card_device_id *pid)
  604. {
  605. static int dev;
  606. struct snd_card *card;
  607. int res;
  608. for ( ; dev < SNDRV_CARDS; dev++) {
  609. if (enable[dev] && isapnp[dev])
  610. break;
  611. }
  612. if (dev >= SNDRV_CARDS)
  613. return -ENODEV;
  614. res = snd_cmi8330_card_new(dev, &card);
  615. if (res < 0)
  616. return res;
  617. if ((res = snd_cmi8330_pnp(dev, card->private_data, pcard, pid)) < 0) {
  618. snd_printk(KERN_ERR PFX "PnP detection failed\n");
  619. snd_card_free(card);
  620. return res;
  621. }
  622. snd_card_set_dev(card, &pcard->card->dev);
  623. if ((res = snd_cmi8330_probe(card, dev)) < 0) {
  624. snd_card_free(card);
  625. return res;
  626. }
  627. pnp_set_card_drvdata(pcard, card);
  628. dev++;
  629. return 0;
  630. }
  631. static void __devexit snd_cmi8330_pnp_remove(struct pnp_card_link * pcard)
  632. {
  633. snd_card_free(pnp_get_card_drvdata(pcard));
  634. pnp_set_card_drvdata(pcard, NULL);
  635. }
  636. #ifdef CONFIG_PM
  637. static int snd_cmi8330_pnp_suspend(struct pnp_card_link *pcard, pm_message_t state)
  638. {
  639. return snd_cmi8330_suspend(pnp_get_card_drvdata(pcard));
  640. }
  641. static int snd_cmi8330_pnp_resume(struct pnp_card_link *pcard)
  642. {
  643. return snd_cmi8330_resume(pnp_get_card_drvdata(pcard));
  644. }
  645. #endif
  646. static struct pnp_card_driver cmi8330_pnpc_driver = {
  647. .flags = PNP_DRIVER_RES_DISABLE,
  648. .name = "cmi8330",
  649. .id_table = snd_cmi8330_pnpids,
  650. .probe = snd_cmi8330_pnp_detect,
  651. .remove = __devexit_p(snd_cmi8330_pnp_remove),
  652. #ifdef CONFIG_PM
  653. .suspend = snd_cmi8330_pnp_suspend,
  654. .resume = snd_cmi8330_pnp_resume,
  655. #endif
  656. };
  657. #endif /* CONFIG_PNP */
  658. static int __init alsa_card_cmi8330_init(void)
  659. {
  660. int err;
  661. err = isa_register_driver(&snd_cmi8330_driver, SNDRV_CARDS);
  662. #ifdef CONFIG_PNP
  663. if (!err)
  664. isa_registered = 1;
  665. err = pnp_register_card_driver(&cmi8330_pnpc_driver);
  666. if (!err)
  667. pnp_registered = 1;
  668. if (isa_registered)
  669. err = 0;
  670. #endif
  671. return err;
  672. }
  673. static void __exit alsa_card_cmi8330_exit(void)
  674. {
  675. #ifdef CONFIG_PNP
  676. if (pnp_registered)
  677. pnp_unregister_card_driver(&cmi8330_pnpc_driver);
  678. if (isa_registered)
  679. #endif
  680. isa_unregister_driver(&snd_cmi8330_driver);
  681. }
  682. module_init(alsa_card_cmi8330_init)
  683. module_exit(alsa_card_cmi8330_exit)