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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Audio Command Interface (ACI) driver (sound/aci.c)
  3.  *
  4.  * ACI is a protocol used to communicate with the microcontroller on
  5.  * some sound cards produced by miro, e.g. the miroSOUND PCM12 and
  6.  * PCM20. The ACI has been developed for miro by Norberto Pellicci
  7.  * <pellicci@home.com>. Special thanks to both him and miro for
  8.  * providing the ACI specification.
  9.  *
  10.  * The main function of the ACI is to control the mixer and to get a
  11.  * product identification. On the PCM20, ACI also controls the radio
  12.  * tuner on this card, this is supported in the Video for Linux 
  13.  * miropcm20 driver.
  14.  * -
  15.  * This is a fullfeatured implementation. Unsupported features
  16.  * are bugs... (:
  17.  *
  18.  * It is not longer necessary to load the mad16 module first. The
  19.  * user is currently responsible to set the mad16 mixer correctly.
  20.  *
  21.  * To toggle the solo mode for full duplex operation just use the OSS
  22.  * record switch for the pcm ('wave') controller.           Robert
  23.  * -
  24.  *
  25.  * Revision history:
  26.  *
  27.  *   1995-11-10  Markus Kuhn <mskuhn@cip.informatik.uni-erlangen.de>
  28.  *        First version written.
  29.  *   1995-12-31  Markus Kuhn
  30.  *        Second revision, general code cleanup.
  31.  *   1996-05-16  Hannu Savolainen
  32.  *   Integrated with other parts of the driver.
  33.  *   1996-05-28  Markus Kuhn
  34.  *        Initialize CS4231A mixer, make ACI first mixer,
  35.  *        use new private mixer API for solo mode.
  36.  *   1998-08-18  Ruurd Reitsma <R.A.Reitsma@wbmt.tudelft.nl>
  37.  *   Small modification to export ACI functions and 
  38.  *   complete modularisation.
  39.  *   2000-06-20  Robert Siemer <Robert.Siemer@gmx.de>
  40.  *        Don't initialize the CS4231A mixer anymore, so the code is
  41.  *        working again, and other small changes to fit in todays
  42.  *        kernels.
  43.  *   2000-08-26  Robert Siemer
  44.  *        Clean up and rewrite for 2.4.x. Maybe it's SMP safe now... (:
  45.  *        ioctl bugfix, and integration of solo-mode into OSS-API,
  46.  *        added (OSS-limited) equalizer support, return value bugfix,
  47.  *        changed param aci_reset to reset, new params: ide, wss.
  48.  *   2001-04-20  Robert Siemer
  49.  *        even more cleanups...
  50.  *   2001-10-08  Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  51.  *      Get rid of check_region, .bss optimizations, use set_current_state
  52.  */
  53. #include <linux/kernel.h>
  54. #include <linux/init.h>
  55. #include <linux/module.h> 
  56. #include <linux/proc_fs.h>
  57. #include <linux/slab.h>
  58. #include <asm/semaphore.h>
  59. #include <asm/io.h>
  60. #include <asm/uaccess.h>
  61. #include "sound_config.h"
  62. int aci_port; /* as determined by bit 4 in the OPTi 929 MC4 register */
  63. int aci_idcode[2]; /* manufacturer and product ID */
  64. int aci_version; /* ACI firmware version */
  65. EXPORT_SYMBOL(aci_port);
  66. EXPORT_SYMBOL(aci_idcode);
  67. EXPORT_SYMBOL(aci_version);
  68. #include "aci.h"
  69. static int aci_solo; /* status bit of the card that can't be *
  70.  * checked with ACI versions prior to 0xb0 */
  71. static int aci_amp;   /* status bit for power-amp/line-out level
  72.    but I have no docs about what is what... */
  73. static int aci_micpreamp=3; /* microphone preamp-level that can't be    *
  74.  * checked with ACI versions prior to 0xb0 */
  75. static int mixer_device;
  76. static struct semaphore aci_sem;
  77. #ifdef MODULE
  78. static int reset;
  79. MODULE_PARM(reset,"i");
  80. MODULE_PARM_DESC(reset,"When set to 1, reset aci mixer.");
  81. #else
  82. static int reset = 1;
  83. #endif
  84. static int ide=-1;
  85. MODULE_PARM(ide,"i");
  86. MODULE_PARM_DESC(ide,"1 enable, 0 disable ide-port - untested"
  87.  " default: do nothing");
  88. static int wss=-1;
  89. MODULE_PARM(wss,"i");
  90. MODULE_PARM_DESC(wss,"change between ACI/WSS-mixer; use 0 and 1 - untested"
  91.  " default: do nothing; for PCM1-pro only");
  92. #if DEBUG
  93. static void print_bits(unsigned char c)
  94. {
  95. int j;
  96. printk(KERN_DEBUG "aci: ");
  97. for (j=7; j>=0; j--) {
  98. printk("%d", (c >> j) & 0x1);
  99. }
  100. printk("n");
  101. }
  102. #endif
  103. /*
  104.  * This busy wait code normally requires less than 15 loops and
  105.  * practically always less than 100 loops on my i486/DX2 66 MHz.
  106.  *
  107.  * Warning: Waiting on the general status flag after reseting the MUTE
  108.  * function can take a VERY long time, because the PCM12 does some kind
  109.  * of fade-in effect. For this reason, access to the MUTE function has
  110.  * not been implemented at all.
  111.  *
  112.  * - The OSS interface has no mute option. It takes about 3 seconds to
  113.  * fade-in on my PCM20. busy_wait() handles it great now...     Robert
  114.  */
  115. static int busy_wait(void)
  116. {
  117. #define MINTIME 500
  118. long timeout;
  119. unsigned char byte;
  120. for (timeout = 1; timeout <= MINTIME+30; timeout++) {
  121. if (((byte=inb(BUSY_REGISTER)) & 1) == 0) {
  122. if (timeout >= MINTIME)
  123. printk(KERN_DEBUG "aci: Got READYFLAG in round %ld.n", timeout-MINTIME);
  124. return byte;
  125. }
  126. if (timeout >= MINTIME) {
  127. long out=10*HZ;
  128. switch (timeout-MINTIME) {
  129. case 0 ... 9:
  130. out /= 10;
  131. case 10 ... 19:
  132. out /= 10;
  133. case 20 ... 30:
  134. out /= 10;
  135. default:
  136. set_current_state(TASK_UNINTERRUPTIBLE);
  137. schedule_timeout(out);
  138. break;
  139. }
  140. }
  141. }
  142. printk(KERN_WARNING "aci: busy_wait() time out.n");
  143. return -EBUSY;
  144. }
  145. /* The four ACI command types are fucked up. [-:
  146.  * implied is: 1w      - special case for INIT
  147.  * write   is: 2w1r
  148.  * read    is: x(1w1r) where x is 1 or 2 (1 CHECK_SIG, 1 CHECK_STER,
  149.  *                                        1 VERSION, 2 IDCODE)
  150.  *  the command is only in the first write, rest is protocol overhead
  151.  *
  152.  * indexed is technically a write and used for STATUS
  153.  * and the special case for TUNE is: 3w1r
  154.  * 
  155.  * Here the new general sheme: TUNE --> aci_rw_cmd(x,  y,  z)
  156.  *                indexed and write --> aci_rw_cmd(x,  y, -1)
  157.  *           implied and read (x=1) --> aci_rw_cmd(x, -1, -1)
  158.  *
  159.  * Read (x>=2) is not implemented (only used during initialization).
  160.  * Use aci_idcode[2] and aci_version...                    Robert
  161.  */
  162. /* Some notes for error detection: theoretically it is possible.
  163.  * But it doubles the I/O-traffic from ww(r) to wwwrw(r) in the normal 
  164.  * case and doesn't seem to be designed for that...        Robert
  165.  */
  166. static inline int aci_rawwrite(unsigned char byte)
  167. {
  168. if (busy_wait() >= 0) {
  169. #if DEBUG
  170. printk(KERN_DEBUG "aci_rawwrite(%d)n", byte);
  171. #endif
  172. outb(byte, COMMAND_REGISTER);
  173. return 0;
  174. } else
  175. return -EBUSY;
  176. }
  177. static inline int aci_rawread(void)
  178. {
  179. unsigned char byte;
  180. if (busy_wait() >= 0) {
  181. byte=inb(STATUS_REGISTER);
  182. #if DEBUG
  183. printk(KERN_DEBUG "%d = aci_rawread()n", byte);
  184. #endif
  185. return byte;
  186. } else
  187. return -EBUSY;
  188. }
  189. int aci_rw_cmd(int write1, int write2, int write3)
  190. {
  191. int write[] = {write1, write2, write3};
  192. int read = -EINTR, i;
  193. if (down_interruptible(&aci_sem))
  194. goto out;
  195. for (i=0; i<3; i++) {
  196. if (write[i]< 0 || write[i] > 255)
  197. break;
  198. else {
  199. read = aci_rawwrite(write[i]);
  200. if (read < 0)
  201. goto out_up;
  202. }
  203. }
  204. read = aci_rawread();
  205. out_up: up(&aci_sem);
  206. out: return read;
  207. }
  208. EXPORT_SYMBOL(aci_rw_cmd);
  209. static int setvolume(caddr_t arg, 
  210.      unsigned char left_index, unsigned char right_index)
  211. {
  212. int vol, ret, uservol, buf;
  213. __get_user(uservol, (int *)arg);
  214. /* left channel */
  215. vol = uservol & 0xff;
  216. if (vol > 100)
  217. vol = 100;
  218. vol = SCALE(100, 0x20, vol);
  219. if ((buf=aci_write_cmd(left_index, 0x20 - vol))<0)
  220. return buf;
  221. ret = SCALE(0x20, 100, vol);
  222. /* right channel */
  223. vol = (uservol >> 8) & 0xff;
  224. if (vol > 100)
  225. vol = 100;
  226. vol = SCALE(100, 0x20, vol);
  227. if ((buf=aci_write_cmd(right_index, 0x20 - vol))<0)
  228. return buf;
  229. ret |= SCALE(0x20, 100, vol) << 8;
  230.  
  231. __put_user(ret, (int *)arg);
  232. return 0;
  233. }
  234. static int getvolume(caddr_t arg,
  235.      unsigned char left_index, unsigned char right_index)
  236. {
  237. int vol;
  238. int buf;
  239. /* left channel */
  240. if ((buf=aci_indexed_cmd(ACI_STATUS, left_index))<0)
  241. return buf;
  242. vol = SCALE(0x20, 100, buf < 0x20 ? 0x20-buf : 0);
  243. /* right channel */
  244. if ((buf=aci_indexed_cmd(ACI_STATUS, right_index))<0)
  245. return buf;
  246. vol |= SCALE(0x20, 100, buf < 0x20 ? 0x20-buf : 0) << 8;
  247. __put_user(vol, (int *)arg);
  248. return 0;
  249. }
  250. /* The equalizer is somewhat strange on the ACI. From -12dB to +12dB
  251.  * write:  0xff..down.to..0x80==0x00..up.to..0x7f
  252.  */
  253. static inline unsigned int eq_oss2aci(unsigned int vol)
  254. {
  255. int boost=0;
  256. unsigned int ret;
  257. if (vol > 100)
  258. vol = 100;
  259. if (vol > 50) {
  260. vol -= 51;
  261. boost=1;
  262. }
  263. if (boost)
  264. ret=SCALE(49, 0x7e, vol)+1;
  265. else
  266. ret=0xff - SCALE(50, 0x7f, vol);
  267. return ret;
  268. }
  269. static inline unsigned int eq_aci2oss(unsigned int vol)
  270. {
  271. if (vol < 0x80)
  272. return SCALE(0x7f, 50, vol) + 50;
  273. else
  274. return SCALE(0x7f, 50, 0xff-vol);
  275. }
  276. static int setequalizer(caddr_t arg, 
  277. unsigned char left_index, unsigned char right_index)
  278. {
  279. int buf;
  280. unsigned int vol;
  281. __get_user(vol, (int *)arg);
  282. /* left channel */
  283. if ((buf=aci_write_cmd(left_index, eq_oss2aci(vol & 0xff)))<0)
  284. return buf;
  285. /* right channel */
  286. if ((buf=aci_write_cmd(right_index, eq_oss2aci((vol>>8) & 0xff)))<0)
  287. return buf;
  288. /* the ACI equalizer is more precise */
  289. return 0;
  290. }
  291. static int getequalizer(caddr_t arg,
  292. unsigned char left_index, unsigned char right_index)
  293. {
  294. int buf;
  295. unsigned int vol;
  296. /* left channel */
  297. if ((buf=aci_indexed_cmd(ACI_STATUS, left_index))<0)
  298. return buf;
  299. vol = eq_aci2oss(buf);
  300. /* right channel */
  301. if ((buf=aci_indexed_cmd(ACI_STATUS, right_index))<0)
  302. return buf;
  303. vol |= eq_aci2oss(buf) << 8;
  304. __put_user(vol, (int *)arg);
  305. return 0;
  306. }
  307. static int aci_mixer_ioctl (int dev, unsigned int cmd, caddr_t arg)
  308. {
  309. int vol, buf;
  310. switch (cmd) {
  311. case SOUND_MIXER_WRITE_VOLUME:
  312. return setvolume(arg, 0x01, 0x00);
  313. case SOUND_MIXER_WRITE_CD:
  314. return setvolume(arg, 0x3c, 0x34);
  315. case SOUND_MIXER_WRITE_MIC:
  316. return setvolume(arg, 0x38, 0x30);
  317. case SOUND_MIXER_WRITE_LINE:
  318. return setvolume(arg, 0x39, 0x31);
  319. case SOUND_MIXER_WRITE_SYNTH:
  320. return setvolume(arg, 0x3b, 0x33);
  321. case SOUND_MIXER_WRITE_PCM:
  322. return setvolume(arg, 0x3a, 0x32);
  323. case MIXER_WRITE(SOUND_MIXER_RADIO): /* fall through */
  324. case SOUND_MIXER_WRITE_LINE1:  /* AUX1 or radio */
  325. return setvolume(arg, 0x3d, 0x35);
  326. case SOUND_MIXER_WRITE_LINE2:  /* AUX2 */
  327. return setvolume(arg, 0x3e, 0x36);
  328. case SOUND_MIXER_WRITE_BASS:   /* set band one and two */
  329. if (aci_idcode[1]=='C') {
  330. if ((buf=setequalizer(arg, 0x48, 0x40)) || 
  331.     (buf=setequalizer(arg, 0x49, 0x41)));
  332. return buf;
  333. }
  334. break;
  335. case SOUND_MIXER_WRITE_TREBLE: /* set band six and seven */
  336. if (aci_idcode[1]=='C') {
  337. if ((buf=setequalizer(arg, 0x4d, 0x45)) || 
  338.     (buf=setequalizer(arg, 0x4e, 0x46)));
  339. return buf;
  340. }
  341. break;
  342. case SOUND_MIXER_WRITE_IGAIN:  /* MIC pre-amp */
  343. if (aci_idcode[1]=='B' || aci_idcode[1]=='C') {
  344. __get_user(vol, (int *)arg);
  345. vol = vol & 0xff;
  346. if (vol > 100)
  347. vol = 100;
  348. vol = SCALE(100, 3, vol);
  349. if ((buf=aci_write_cmd(ACI_WRITE_IGAIN, vol))<0)
  350. return buf;
  351. aci_micpreamp = vol;
  352. vol = SCALE(3, 100, vol);
  353. vol |= (vol << 8);
  354. __put_user(vol, (int *)arg);
  355. return 0;
  356. }
  357. break;
  358. case SOUND_MIXER_WRITE_OGAIN:  /* Power-amp/line-out level */
  359. if (aci_idcode[1]=='A' || aci_idcode[1]=='B') {
  360. __get_user(buf, (int *)arg);
  361. buf = buf & 0xff;
  362. if (buf > 50)
  363. vol = 1;
  364. else
  365. vol = 0;
  366. if ((buf=aci_write_cmd(ACI_SET_POWERAMP, vol))<0)
  367. return buf;
  368. aci_amp = vol;
  369. if (aci_amp)
  370. buf = (100 || 100<<8);
  371. else
  372. buf = 0;
  373. __put_user(buf, (int *)arg);
  374. return 0;
  375. }
  376. break;
  377. case SOUND_MIXER_WRITE_RECSRC:
  378. /* handle solo mode control */
  379. __get_user(buf, (int *)arg);
  380. /* unset solo when RECSRC for PCM is requested */
  381. if (aci_idcode[1]=='B' || aci_idcode[1]=='C') {
  382. vol = !(buf & SOUND_MASK_PCM);
  383. if ((buf=aci_write_cmd(ACI_SET_SOLOMODE, vol))<0)
  384. return buf;
  385. aci_solo = vol;
  386. }
  387. buf = (SOUND_MASK_CD| SOUND_MASK_MIC| SOUND_MASK_LINE|
  388.        SOUND_MASK_SYNTH| SOUND_MASK_LINE2);
  389. if (aci_idcode[1] == 'C') /* PCM20 radio */
  390. buf |= SOUND_MASK_RADIO;
  391. else
  392. buf |= SOUND_MASK_LINE1;
  393. if (!aci_solo)
  394. buf |= SOUND_MASK_PCM;
  395. __put_user(buf, (int *)arg);
  396. return 0;
  397. case SOUND_MIXER_READ_DEVMASK:
  398. buf = (SOUND_MASK_VOLUME | SOUND_MASK_CD    |
  399.        SOUND_MASK_MIC    | SOUND_MASK_LINE  |
  400.        SOUND_MASK_SYNTH  | SOUND_MASK_PCM   |
  401.        SOUND_MASK_LINE2);
  402. switch (aci_idcode[1]) {
  403. case 'C': /* PCM20 radio */
  404. buf |= (SOUND_MASK_RADIO | SOUND_MASK_IGAIN |
  405. SOUND_MASK_BASS  | SOUND_MASK_TREBLE);
  406. break;
  407. case 'B': /* PCM12 */
  408. buf |= (SOUND_MASK_LINE1 | SOUND_MASK_IGAIN |
  409. SOUND_MASK_OGAIN);
  410. break;
  411. case 'A': /* PCM1-pro */
  412. buf |= (SOUND_MASK_LINE1 | SOUND_MASK_OGAIN);
  413. break;
  414. default:
  415. buf |= SOUND_MASK_LINE1;
  416. }
  417. __put_user(buf, (int *)arg);
  418. return 0;
  419. case SOUND_MIXER_READ_STEREODEVS:
  420. buf = (SOUND_MASK_VOLUME | SOUND_MASK_CD    |
  421.        SOUND_MASK_MIC    | SOUND_MASK_LINE  |
  422.        SOUND_MASK_SYNTH  | SOUND_MASK_PCM   |
  423.        SOUND_MASK_LINE2);
  424. switch (aci_idcode[1]) {
  425. case 'C': /* PCM20 radio */
  426. buf |= (SOUND_MASK_RADIO |
  427. SOUND_MASK_BASS  | SOUND_MASK_TREBLE);
  428. break;
  429. default:
  430. buf |= SOUND_MASK_LINE1;
  431. }
  432. __put_user(buf, (int *)arg);
  433. return 0;
  434. case SOUND_MIXER_READ_RECMASK:
  435. buf = (SOUND_MASK_CD| SOUND_MASK_MIC| SOUND_MASK_LINE|
  436.        SOUND_MASK_SYNTH| SOUND_MASK_LINE2| SOUND_MASK_PCM);
  437. if (aci_idcode[1] == 'C') /* PCM20 radio */
  438. buf |= SOUND_MASK_RADIO;
  439. else
  440. buf |= SOUND_MASK_LINE1;
  441. __put_user(buf, (int *)arg);
  442. return 0;
  443. case SOUND_MIXER_READ_RECSRC:
  444. buf = (SOUND_MASK_CD    | SOUND_MASK_MIC   | SOUND_MASK_LINE  |
  445.        SOUND_MASK_SYNTH | SOUND_MASK_LINE2);
  446. /* do we need aci_solo or can I get it from the ACI? */
  447. switch (aci_idcode[1]) {
  448. case 'B': /* PCM12 */
  449. case 'C': /* PCM20 radio */
  450. if (aci_version >= 0xb0) {
  451. if ((vol=aci_rw_cmd(ACI_STATUS,
  452.     ACI_S_GENERAL, -1))<0)
  453. return vol;
  454. if (vol & 0x20)
  455. buf |= SOUND_MASK_PCM;
  456. }
  457. else
  458. if (!aci_solo)
  459. buf |= SOUND_MASK_PCM;
  460. break;
  461. default:
  462. buf |= SOUND_MASK_PCM;
  463. }
  464. if (aci_idcode[1] == 'C') /* PCM20 radio */
  465. buf |= SOUND_MASK_RADIO;
  466. else
  467. buf |= SOUND_MASK_LINE1;
  468. __put_user(buf, (int *)arg);
  469. return 0;
  470. case SOUND_MIXER_READ_CAPS:
  471. __put_user(0, (int *)arg);
  472. return 0;
  473. case SOUND_MIXER_READ_VOLUME:
  474. return getvolume(arg, 0x04, 0x03);
  475. case SOUND_MIXER_READ_CD:
  476. return getvolume(arg, 0x0a, 0x09);
  477. case SOUND_MIXER_READ_MIC:
  478. return getvolume(arg, 0x06, 0x05);
  479. case SOUND_MIXER_READ_LINE:
  480. return getvolume(arg, 0x08, 0x07);
  481. case SOUND_MIXER_READ_SYNTH:
  482. return getvolume(arg, 0x0c, 0x0b);
  483. case SOUND_MIXER_READ_PCM:
  484. return getvolume(arg, 0x0e, 0x0d);
  485. case MIXER_READ(SOUND_MIXER_RADIO): /* fall through */
  486. case SOUND_MIXER_READ_LINE1:  /* AUX1 */
  487. return getvolume(arg, 0x11, 0x10);
  488. case SOUND_MIXER_READ_LINE2:  /* AUX2 */
  489. return getvolume(arg, 0x13, 0x12);
  490. case SOUND_MIXER_READ_BASS:   /* get band one */
  491. if (aci_idcode[1]=='C') {
  492. return getequalizer(arg, 0x23, 0x22);
  493. }
  494. break;
  495. case SOUND_MIXER_READ_TREBLE: /* get band seven */
  496. if (aci_idcode[1]=='C') {
  497. return getequalizer(arg, 0x2f, 0x2e);
  498. }
  499. break;
  500. case SOUND_MIXER_READ_IGAIN:  /* MIC pre-amp */
  501. if (aci_idcode[1]=='B' || aci_idcode[1]=='C') {
  502. /* aci_micpreamp or ACI? */
  503. if (aci_version >= 0xb0) {
  504. if ((buf=aci_indexed_cmd(ACI_STATUS,
  505.  ACI_S_READ_IGAIN))<0)
  506. return buf;
  507. }
  508. else
  509. buf=aci_micpreamp;
  510. vol = SCALE(3, 100, buf <= 3 ? buf : 3);
  511. vol |= vol << 8;
  512. __put_user(vol, (int *)arg);
  513. return 0;
  514. }
  515. break;
  516. case SOUND_MIXER_READ_OGAIN:
  517. if (aci_amp)
  518. buf = (100 || 100<<8);
  519. else
  520. buf = 0;
  521. __put_user(buf, (int *)arg);
  522. return 0;
  523. }
  524. return -EINVAL;
  525. }
  526. static struct mixer_operations aci_mixer_operations =
  527. {
  528. owner: THIS_MODULE,
  529. id:    "ACI",
  530. ioctl: aci_mixer_ioctl
  531. };
  532. /*
  533.  * There is also an internal mixer in the codec (CS4231A or AD1845),
  534.  * that deserves no purpose in an ACI based system which uses an
  535.  * external ACI controlled stereo mixer. Make sure that this codec
  536.  * mixer has the AUX1 input selected as the recording source, that the
  537.  * input gain is set near maximum and that the other channels going
  538.  * from the inputs to the codec output are muted.
  539.  */
  540. static int __init attach_aci(void)
  541. {
  542. char *boardname;
  543. int i, rc = -EBUSY;
  544. init_MUTEX(&aci_sem);
  545. outb(0xE3, 0xf8f); /* Write MAD16 password */
  546. aci_port = (inb(0xf90) & 0x10) ?
  547. 0x344: 0x354; /* Get aci_port from MC4_PORT */
  548. if (!request_region(aci_port, 3, "sound mixer (ACI)")) {
  549. printk(KERN_NOTICE
  550.        "aci: I/O area 0x%03x-0x%03x already used.n",
  551.        aci_port, aci_port+2);
  552. goto out;
  553. }
  554. /* force ACI into a known state */
  555. rc = -EFAULT;
  556. for (i=0; i<3; i++)
  557. if (aci_rw_cmd(ACI_ERROR_OP, -1, -1)<0)
  558. goto out_release_region;
  559. /* official this is one aci read call: */
  560. rc = -EFAULT;
  561. if ((aci_idcode[0]=aci_rw_cmd(ACI_READ_IDCODE, -1, -1))<0 ||
  562.     (aci_idcode[1]=aci_rw_cmd(ACI_READ_IDCODE, -1, -1))<0) {
  563. printk(KERN_ERR "aci: Failed to read idcode on 0x%03x.n",
  564.        aci_port);
  565. goto out_release_region;
  566. }
  567. if ((aci_version=aci_rw_cmd(ACI_READ_VERSION, -1, -1))<0) {
  568. printk(KERN_ERR "aci: Failed to read version on 0x%03x.n",
  569.        aci_port);
  570. goto out_release_region;
  571. }
  572. if (aci_idcode[0] == 'm') {
  573. /* It looks like a miro sound card. */
  574. switch (aci_idcode[1]) {
  575. case 'A':
  576. boardname = "PCM1 pro / early PCM12";
  577. break;
  578. case 'B':
  579. boardname = "PCM12";
  580. break;
  581. case 'C':
  582. boardname = "PCM20 radio";
  583. break;
  584. default:
  585. boardname = "unknown miro";
  586. }
  587. } else {
  588. printk(KERN_WARNING "aci: Warning: unsupported card! - "
  589.        "no hardware, no specs...n");
  590. boardname = "unknown Cardinal Technologies";
  591. }
  592. printk(KERN_INFO "<ACI 0x%02x, id %02x/%02x "%c/%c", (%s)> at 0x%03xn",
  593.        aci_version,
  594.        aci_idcode[0], aci_idcode[1],
  595.        aci_idcode[0], aci_idcode[1],
  596.        boardname, aci_port);
  597. rc = -EBUSY;
  598. if (reset) {
  599. /* first write()s after reset fail with my PCM20 */
  600. if (aci_rw_cmd(ACI_INIT, -1, -1)<0 ||
  601.     aci_rw_cmd(ACI_ERROR_OP, ACI_ERROR_OP, ACI_ERROR_OP)<0 ||
  602.     aci_rw_cmd(ACI_ERROR_OP, ACI_ERROR_OP, ACI_ERROR_OP)<0)
  603. goto out_release_region;
  604. }
  605. /* the PCM20 is muted after reset (and reboot) */
  606. if (aci_rw_cmd(ACI_SET_MUTE, 0x00, -1)<0)
  607. goto out_release_region;
  608. if (ide>=0)
  609. if (aci_rw_cmd(ACI_SET_IDE, !ide, -1)<0)
  610. goto out_release_region;
  611. if (wss>=0 && aci_idcode[1]=='A')
  612. if (aci_rw_cmd(ACI_SET_WSS, !!wss, -1)<0)
  613. goto out_release_region;
  614. mixer_device = sound_install_mixer(MIXER_DRIVER_VERSION, boardname,
  615.    &aci_mixer_operations,
  616.    sizeof(aci_mixer_operations), NULL);
  617. rc = 0;
  618. if (mixer_device < 0) {
  619. printk(KERN_ERR "aci: Failed to install mixer.n");
  620. rc = mixer_device;
  621. goto out_release_region;
  622. } /* else Maybe initialize the CS4231A mixer here... */
  623. out: return rc;
  624. out_release_region:
  625. release_region(aci_port, 3);
  626. goto out;
  627. }
  628. static void __exit unload_aci(void)
  629. {
  630. sound_unload_mixerdev(mixer_device);
  631. release_region(aci_port, 3);
  632. }
  633. module_init(attach_aci);
  634. module_exit(unload_aci);
  635. MODULE_LICENSE("GPL");