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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * sound/ad1848.c
  3.  *
  4.  * The low level driver for the AD1848/CS4248 codec chip which
  5.  * is used for example in the MS Sound System.
  6.  *
  7.  * The CS4231 which is used in the GUS MAX and some other cards is
  8.  * upwards compatible with AD1848 and this driver is able to drive it.
  9.  *
  10.  * CS4231A and AD1845 are upward compatible with CS4231. However
  11.  * the new features of these chips are different.
  12.  *
  13.  * CS4232 is a PnP audio chip which contains a CS4231A (and SB, MPU).
  14.  * CS4232A is an improved version of CS4232.
  15.  *
  16.  *
  17.  *
  18.  * Copyright (C) by Hannu Savolainen 1993-1997
  19.  *
  20.  * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
  21.  * Version 2 (June 1991). See the "COPYING" file distributed with this software
  22.  * for more info.
  23.  *
  24.  *
  25.  * Thomas Sailer : ioctl code reworked (vmalloc/vfree removed)
  26.  *   general sleep/wakeup clean up.
  27.  * Alan Cox : reformatted. Fixed SMP bugs. Moved to kernel alloc/free
  28.  *           of irqs. Use dev_id.
  29.  * Christoph Hellwig : adapted to module_init/module_exit
  30.  * Aki Laukkanen : added power management support
  31.  * Arnaldo C. de Melo : added missing restore_flags in ad1848_resume
  32.  * Miguel Freitas       : added ISA PnP support
  33.  * Alan Cox : Added CS4236->4239 identification
  34.  * Daniel T. Cobra : Alernate config/mixer for later chips
  35.  * Alan Cox : Merged chip idents and config code
  36.  * Zwane Mwaikambo : Fix ISA PnP scan
  37.  *
  38.  * TODO
  39.  * APM save restore assist code on IBM thinkpad
  40.  *
  41.  * Status:
  42.  * Tested. Believed fully functional.
  43.  */
  44. #include <linux/config.h>
  45. #include <linux/init.h>
  46. #include <linux/module.h>
  47. #include <linux/stddef.h>
  48. #include <linux/pm.h>
  49. #include <linux/isapnp.h>
  50. #define DEB(x)
  51. #define DEB1(x)
  52. #include "sound_config.h"
  53. #include "ad1848.h"
  54. #include "ad1848_mixer.h"
  55. typedef struct
  56. {
  57. int             base;
  58. int             irq;
  59. int             dma1, dma2;
  60. int             dual_dma; /* 1, when two DMA channels allocated */
  61. int  subtype;
  62. unsigned char   MCE_bit;
  63. unsigned char   saved_regs[64]; /* Includes extended register space */
  64. int             debug_flag;
  65. int             audio_flags;
  66. int             record_dev, playback_dev;
  67. int             xfer_count;
  68. int             audio_mode;
  69. int             open_mode;
  70. int             intr_active;
  71. char           *chip_name, *name;
  72. int             model;
  73. #define MD_1848 1
  74. #define MD_4231 2
  75. #define MD_4231A 3
  76. #define MD_1845 4
  77. #define MD_4232 5
  78. #define MD_C930 6
  79. #define MD_IWAVE 7
  80. #define MD_4235         8 /* Crystal Audio CS4235  */
  81. #define MD_1845_SSCAPE  9 /* Ensoniq Soundscape PNP*/
  82. #define MD_4236 10 /* 4236 and higher */
  83. #define MD_42xB 11 /* CS 42xB */
  84. #define MD_4239 12 /* CS4239 */
  85. /* Mixer parameters */
  86. int             recmask;
  87. int             supported_devices, orig_devices;
  88. int             supported_rec_devices, orig_rec_devices;
  89. int            *levels;
  90. short           mixer_reroute[32];
  91. int             dev_no;
  92. volatile unsigned long timer_ticks;
  93. int             timer_running;
  94. int             irq_ok;
  95. mixer_ents     *mix_devices;
  96. int             mixer_output_port;
  97. /* Power management */
  98. struct pm_dev *pmdev;
  99. } ad1848_info;
  100. typedef struct ad1848_port_info
  101. {
  102. int             open_mode;
  103. int             speed;
  104. unsigned char   speed_bits;
  105. int             channels;
  106. int             audio_format;
  107. unsigned char   format_bits;
  108. }
  109. ad1848_port_info;
  110. static struct address_info cfg;
  111. static int nr_ad1848_devs;
  112. int deskpro_xl;
  113. int deskpro_m;
  114. int soundpro;
  115. static volatile signed char irq2dev[17] = {
  116. -1, -1, -1, -1, -1, -1, -1, -1,
  117. -1, -1, -1, -1, -1, -1, -1, -1, -1
  118. };
  119. #ifndef EXCLUDE_TIMERS
  120. static int timer_installed = -1;
  121. #endif
  122. static int loaded;
  123. static int ad_format_mask[13 /*devc->model */ ] =
  124. {
  125. 0,
  126. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW,
  127. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW | AFMT_S16_BE | AFMT_IMA_ADPCM,
  128. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW | AFMT_S16_BE | AFMT_IMA_ADPCM,
  129. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW, /* AD1845 */
  130. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW | AFMT_S16_BE | AFMT_IMA_ADPCM,
  131. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW | AFMT_S16_BE | AFMT_IMA_ADPCM,
  132. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW | AFMT_S16_BE | AFMT_IMA_ADPCM,
  133. AFMT_U8 | AFMT_S16_LE /* CS4235 */,
  134. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW /* Ensoniq Soundscape*/,
  135. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW | AFMT_S16_BE | AFMT_IMA_ADPCM,
  136. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW | AFMT_S16_BE | AFMT_IMA_ADPCM,
  137. AFMT_U8 | AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW | AFMT_S16_BE | AFMT_IMA_ADPCM
  138. };
  139. static ad1848_info adev_info[MAX_AUDIO_DEV];
  140. #define io_Index_Addr(d) ((d)->base)
  141. #define io_Indexed_Data(d) ((d)->base+1)
  142. #define io_Status(d) ((d)->base+2)
  143. #define io_Polled_IO(d) ((d)->base+3)
  144. static struct {
  145.      unsigned char flags;
  146. #define CAP_F_TIMER 0x01     
  147. } capabilities [10 /*devc->model */ ] = {
  148.      {0}
  149.     ,{0}           /* MD_1848  */
  150.     ,{CAP_F_TIMER} /* MD_4231  */
  151.     ,{CAP_F_TIMER} /* MD_4231A */
  152.     ,{CAP_F_TIMER} /* MD_1845  */
  153.     ,{CAP_F_TIMER} /* MD_4232  */
  154.     ,{0}           /* MD_C930  */
  155.     ,{CAP_F_TIMER} /* MD_IWAVE */
  156.     ,{0}           /* MD_4235  */
  157.     ,{CAP_F_TIMER} /* MD_1845_SSCAPE */
  158. };
  159. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  160. static int isapnp = 1;
  161. static int isapnpjump = 0;
  162. static int reverse = 0;
  163. static int audio_activated = 0;
  164. #else
  165. static int isapnp = 0;
  166. #endif
  167. static int      ad1848_open(int dev, int mode);
  168. static void     ad1848_close(int dev);
  169. static void     ad1848_output_block(int dev, unsigned long buf, int count, int intrflag);
  170. static void     ad1848_start_input(int dev, unsigned long buf, int count, int intrflag);
  171. static int      ad1848_prepare_for_output(int dev, int bsize, int bcount);
  172. static int      ad1848_prepare_for_input(int dev, int bsize, int bcount);
  173. static void     ad1848_halt(int dev);
  174. static void     ad1848_halt_input(int dev);
  175. static void     ad1848_halt_output(int dev);
  176. static void     ad1848_trigger(int dev, int bits);
  177. static int ad1848_pm_callback(struct pm_dev *dev, pm_request_t rqst, void *data);
  178. #ifndef EXCLUDE_TIMERS
  179. static int ad1848_tmr_install(int dev);
  180. static void ad1848_tmr_reprogram(int dev);
  181. #endif
  182. static int ad_read(ad1848_info * devc, int reg)
  183. {
  184. unsigned long flags;
  185. int x;
  186. int timeout = 900000;
  187. while (timeout > 0 && inb(devc->base) == 0x80) /*Are we initializing */
  188. timeout--;
  189. save_flags(flags);
  190. cli();
  191. if(reg < 32)
  192. {
  193. outb(((unsigned char) (reg & 0xff) | devc->MCE_bit), io_Index_Addr(devc));
  194. x = inb(io_Indexed_Data(devc));
  195. }
  196. else
  197. {
  198. int xreg, xra;
  199. xreg = (reg & 0xff) - 32;
  200. xra = (((xreg & 0x0f) << 4) & 0xf0) | 0x08 | ((xreg & 0x10) >> 2);
  201. outb(((unsigned char) (23 & 0xff) | devc->MCE_bit), io_Index_Addr(devc));
  202. outb(((unsigned char) (xra & 0xff)), io_Indexed_Data(devc));
  203. x = inb(io_Indexed_Data(devc));
  204. }
  205. restore_flags(flags);
  206. return x;
  207. }
  208. static void ad_write(ad1848_info * devc, int reg, int data)
  209. {
  210. unsigned long flags;
  211. int timeout = 900000;
  212. while (timeout > 0 && inb(devc->base) == 0x80) /* Are we initializing */
  213. timeout--;
  214. save_flags(flags);
  215. cli();
  216. if(reg < 32)
  217. {
  218. outb(((unsigned char) (reg & 0xff) | devc->MCE_bit), io_Index_Addr(devc));
  219. outb(((unsigned char) (data & 0xff)), io_Indexed_Data(devc));
  220. }
  221. else
  222. {
  223. int xreg, xra;
  224. xreg = (reg & 0xff) - 32;
  225. xra = (((xreg & 0x0f) << 4) & 0xf0) | 0x08 | ((xreg & 0x10) >> 2);
  226. outb(((unsigned char) (23 & 0xff) | devc->MCE_bit), io_Index_Addr(devc));
  227. outb(((unsigned char) (xra & 0xff)), io_Indexed_Data(devc));
  228. outb((unsigned char) (data & 0xff), io_Indexed_Data(devc));
  229. }
  230. restore_flags(flags);
  231. }
  232. static void wait_for_calibration(ad1848_info * devc)
  233. {
  234. int timeout = 0;
  235. /*
  236.  * Wait until the auto calibration process has finished.
  237.  *
  238.  * 1)       Wait until the chip becomes ready (reads don't return 0x80).
  239.  * 2)       Wait until the ACI bit of I11 gets on and then off.
  240.  */
  241. timeout = 100000;
  242. while (timeout > 0 && inb(devc->base) == 0x80)
  243. timeout--;
  244. if (inb(devc->base) & 0x80)
  245. printk(KERN_WARNING "ad1848: Auto calibration timed out(1).n");
  246. timeout = 100;
  247. while (timeout > 0 && !(ad_read(devc, 11) & 0x20))
  248. timeout--;
  249. if (!(ad_read(devc, 11) & 0x20))
  250. return;
  251. timeout = 80000;
  252. while (timeout > 0 && (ad_read(devc, 11) & 0x20))
  253. timeout--;
  254. if (ad_read(devc, 11) & 0x20)
  255. if ( (devc->model != MD_1845) || (devc->model != MD_1845_SSCAPE))
  256. printk(KERN_WARNING "ad1848: Auto calibration timed out(3).n");
  257. }
  258. static void ad_mute(ad1848_info * devc)
  259. {
  260. int i;
  261. unsigned char prev;
  262. /*
  263.  * Save old register settings and mute output channels
  264.  */
  265.  
  266. for (i = 6; i < 8; i++)
  267. {
  268. prev = devc->saved_regs[i] = ad_read(devc, i);
  269. }
  270. }
  271. static void ad_unmute(ad1848_info * devc)
  272. {
  273. }
  274. static void ad_enter_MCE(ad1848_info * devc)
  275. {
  276. unsigned long flags;
  277. int timeout = 1000;
  278. unsigned short prev;
  279. while (timeout > 0 && inb(devc->base) == 0x80) /*Are we initializing */
  280. timeout--;
  281. save_flags(flags);
  282. cli();
  283. devc->MCE_bit = 0x40;
  284. prev = inb(io_Index_Addr(devc));
  285. if (prev & 0x40)
  286. {
  287. restore_flags(flags);
  288. return;
  289. }
  290. outb((devc->MCE_bit), io_Index_Addr(devc));
  291. restore_flags(flags);
  292. }
  293. static void ad_leave_MCE(ad1848_info * devc)
  294. {
  295. unsigned long flags;
  296. unsigned char prev, acal;
  297. int timeout = 1000;
  298. while (timeout > 0 && inb(devc->base) == 0x80) /*Are we initializing */
  299. timeout--;
  300. save_flags(flags);
  301. cli();
  302. acal = ad_read(devc, 9);
  303. devc->MCE_bit = 0x00;
  304. prev = inb(io_Index_Addr(devc));
  305. outb((0x00), io_Index_Addr(devc)); /* Clear the MCE bit */
  306. if ((prev & 0x40) == 0) /* Not in MCE mode */
  307. {
  308. restore_flags(flags);
  309. return;
  310. }
  311. outb((0x00), io_Index_Addr(devc)); /* Clear the MCE bit */
  312. if (acal & 0x08) /* Auto calibration is enabled */
  313. wait_for_calibration(devc);
  314. restore_flags(flags);
  315. }
  316. static int ad1848_set_recmask(ad1848_info * devc, int mask)
  317. {
  318. unsigned char   recdev;
  319. int             i, n;
  320. mask &= devc->supported_rec_devices;
  321. /* Rename the mixer bits if necessary */
  322. for (i = 0; i < 32; i++)
  323. {
  324. if (devc->mixer_reroute[i] != i)
  325. {
  326. if (mask & (1 << i))
  327. {
  328. mask &= ~(1 << i);
  329. mask |= (1 << devc->mixer_reroute[i]);
  330. }
  331. }
  332. }
  333. n = 0;
  334. for (i = 0; i < 32; i++) /* Count selected device bits */
  335. if (mask & (1 << i))
  336. n++;
  337. if (!soundpro) {
  338. if (n == 0)
  339. mask = SOUND_MASK_MIC;
  340. else if (n != 1) { /* Too many devices selected */
  341. mask &= ~devc->recmask; /* Filter out active settings */
  342. n = 0;
  343. for (i = 0; i < 32; i++) /* Count selected device bits */
  344. if (mask & (1 << i))
  345. n++;
  346. if (n != 1)
  347. mask = SOUND_MASK_MIC;
  348. }
  349. switch (mask) {
  350. case SOUND_MASK_MIC:
  351. recdev = 2;
  352. break;
  353. case SOUND_MASK_LINE:
  354. case SOUND_MASK_LINE3:
  355. recdev = 0;
  356. break;
  357. case SOUND_MASK_CD:
  358. case SOUND_MASK_LINE1:
  359. recdev = 1;
  360. break;
  361. case SOUND_MASK_IMIX:
  362. recdev = 3;
  363. break;
  364. default:
  365. mask = SOUND_MASK_MIC;
  366. recdev = 2;
  367. }
  368. recdev <<= 6;
  369. ad_write(devc, 0, (ad_read(devc, 0) & 0x3f) | recdev);
  370. ad_write(devc, 1, (ad_read(devc, 1) & 0x3f) | recdev);
  371. } else { /* soundpro */
  372. unsigned char val;
  373. int set_rec_bit;
  374. int j;
  375. for (i = 0; i < 32; i++) { /* For each bit */
  376. if ((devc->supported_rec_devices & (1 << i)) == 0)
  377. continue; /* Device not supported */
  378. for (j = LEFT_CHN; j <= RIGHT_CHN; j++) {
  379. if (devc->mix_devices[i][j].nbits == 0) /* Inexistent channel */
  380. continue;
  381. /*
  382.  * This is tricky:
  383.  * set_rec_bit becomes 1 if the corresponding bit in mask is set
  384.  * then it gets flipped if the polarity is inverse
  385.  */
  386. set_rec_bit = ((mask & (1 << i)) != 0) ^ devc->mix_devices[i][j].recpol;
  387. val = ad_read(devc, devc->mix_devices[i][j].recreg);
  388. val &= ~(1 << devc->mix_devices[i][j].recpos);
  389. val |= (set_rec_bit << devc->mix_devices[i][j].recpos);
  390. ad_write(devc, devc->mix_devices[i][j].recreg, val);
  391. }
  392. }
  393. }
  394. /* Rename the mixer bits back if necessary */
  395. for (i = 0; i < 32; i++)
  396. {
  397. if (devc->mixer_reroute[i] != i)
  398. {
  399. if (mask & (1 << devc->mixer_reroute[i]))
  400. {
  401. mask &= ~(1 << devc->mixer_reroute[i]);
  402. mask |= (1 << i);
  403. }
  404. }
  405. }
  406. devc->recmask = mask;
  407. return mask;
  408. }
  409. static void change_bits(ad1848_info * devc, unsigned char *regval,
  410. unsigned char *muteval, int dev, int chn, int newval)
  411. {
  412. unsigned char mask;
  413. int shift;
  414. int mute;
  415. int mutemask;
  416. int set_mute_bit;
  417. set_mute_bit = (newval == 0) ^ devc->mix_devices[dev][chn].mutepol;
  418. if (devc->mix_devices[dev][chn].polarity == 1) /* Reverse */
  419. newval = 100 - newval;
  420. mask = (1 << devc->mix_devices[dev][chn].nbits) - 1;
  421. shift = devc->mix_devices[dev][chn].bitpos;
  422. if (devc->mix_devices[dev][chn].mutepos == 8)
  423. { /* if there is no mute bit */
  424. mute = 0; /* No mute bit; do nothing special */
  425. mutemask = ~0; /* No mute bit; do nothing special */
  426. }
  427. else
  428. {
  429. mute = (set_mute_bit << devc->mix_devices[dev][chn].mutepos);
  430. mutemask = ~(1 << devc->mix_devices[dev][chn].mutepos);
  431. }
  432. newval = (int) ((newval * mask) + 50) / 100; /* Scale it */
  433. *regval &= ~(mask << shift); /* Clear bits */
  434. *regval |= (newval & mask) << shift; /* Set new value */
  435. *muteval &= mutemask;
  436. *muteval |= mute;
  437. }
  438. static int ad1848_mixer_get(ad1848_info * devc, int dev)
  439. {
  440. if (!((1 << dev) & devc->supported_devices))
  441. return -EINVAL;
  442. dev = devc->mixer_reroute[dev];
  443. return devc->levels[dev];
  444. }
  445. static void ad1848_mixer_set_channel(ad1848_info *devc, int dev, int value, int channel)
  446. {
  447. int regoffs, muteregoffs;
  448. unsigned char val, muteval;
  449. regoffs = devc->mix_devices[dev][channel].regno;
  450. muteregoffs = devc->mix_devices[dev][channel].mutereg;
  451. val = ad_read(devc, regoffs);
  452. if (muteregoffs != regoffs) {
  453. muteval = ad_read(devc, muteregoffs);
  454. change_bits(devc, &val, &muteval, dev, channel, value);
  455. }
  456. else
  457. change_bits(devc, &val, &val, dev, channel, value);
  458. ad_write(devc, regoffs, val);
  459. devc->saved_regs[regoffs] = val;
  460. if (muteregoffs != regoffs) {
  461. ad_write(devc, muteregoffs, muteval);
  462. devc->saved_regs[muteregoffs] = muteval;
  463. }
  464. }
  465. static int ad1848_mixer_set(ad1848_info * devc, int dev, int value)
  466. {
  467. int left = value & 0x000000ff;
  468. int right = (value & 0x0000ff00) >> 8;
  469. int retvol;
  470. if (dev > 31)
  471. return -EINVAL;
  472. if (!(devc->supported_devices & (1 << dev)))
  473. return -EINVAL;
  474. dev = devc->mixer_reroute[dev];
  475. if (devc->mix_devices[dev][LEFT_CHN].nbits == 0)
  476. return -EINVAL;
  477. if (left > 100)
  478. left = 100;
  479. if (right > 100)
  480. right = 100;
  481. if (devc->mix_devices[dev][RIGHT_CHN].nbits == 0) /* Mono control */
  482. right = left;
  483. retvol = left | (right << 8);
  484. /* Scale volumes */
  485. left = mix_cvt[left];
  486. right = mix_cvt[right];
  487. devc->levels[dev] = retvol;
  488. /*
  489.  * Set the left channel
  490.  */
  491. ad1848_mixer_set_channel(devc, dev, left, LEFT_CHN);
  492. /*
  493.  * Set the right channel
  494.  */
  495. if (devc->mix_devices[dev][RIGHT_CHN].nbits == 0)
  496. goto out;
  497. ad1848_mixer_set_channel(devc, dev, right, RIGHT_CHN);
  498.  out:
  499. return retvol;
  500. }
  501. static void ad1848_mixer_reset(ad1848_info * devc)
  502. {
  503. int i;
  504. char name[32];
  505. devc->mix_devices = &(ad1848_mix_devices[0]);
  506. sprintf(name, "%s_%d", devc->chip_name, nr_ad1848_devs);
  507. for (i = 0; i < 32; i++)
  508. devc->mixer_reroute[i] = i;
  509. devc->supported_rec_devices = MODE1_REC_DEVICES;
  510. switch (devc->model)
  511. {
  512. case MD_4231:
  513. case MD_4231A:
  514. case MD_1845:
  515. case MD_1845_SSCAPE:
  516. devc->supported_devices = MODE2_MIXER_DEVICES;
  517. break;
  518. case MD_C930:
  519. devc->supported_devices = C930_MIXER_DEVICES;
  520. devc->mix_devices = &(c930_mix_devices[0]);
  521. break;
  522. case MD_IWAVE:
  523. devc->supported_devices = MODE3_MIXER_DEVICES;
  524. devc->mix_devices = &(iwave_mix_devices[0]);
  525. break;
  526. case MD_42xB:
  527. case MD_4239:
  528. devc->mix_devices = &(cs42xb_mix_devices[0]);
  529. devc->supported_devices = MODE3_MIXER_DEVICES;
  530. break;
  531. case MD_4232:
  532. case MD_4236:
  533. devc->supported_devices = MODE3_MIXER_DEVICES;
  534. break;
  535. case MD_1848:
  536. if (soundpro) {
  537. devc->supported_devices = SPRO_MIXER_DEVICES;
  538. devc->supported_rec_devices = SPRO_REC_DEVICES;
  539. devc->mix_devices = &(spro_mix_devices[0]);
  540. break;
  541. }
  542. default:
  543. devc->supported_devices = MODE1_MIXER_DEVICES;
  544. }
  545. devc->orig_devices = devc->supported_devices;
  546. devc->orig_rec_devices = devc->supported_rec_devices;
  547. devc->levels = load_mixer_volumes(name, default_mixer_levels, 1);
  548. for (i = 0; i < SOUND_MIXER_NRDEVICES; i++)
  549. {
  550. if (devc->supported_devices & (1 << i))
  551. ad1848_mixer_set(devc, i, devc->levels[i]);
  552. }
  553. ad1848_set_recmask(devc, SOUND_MASK_MIC);
  554. devc->mixer_output_port = devc->levels[31] | AUDIO_HEADPHONE | AUDIO_LINE_OUT;
  555. if (!soundpro) {
  556. if (devc->mixer_output_port & AUDIO_SPEAKER)
  557. ad_write(devc, 26, ad_read(devc, 26) & ~0x40); /* Unmute mono out */
  558. else
  559. ad_write(devc, 26, ad_read(devc, 26) | 0x40); /* Mute mono out */
  560. } else {
  561. /*
  562.  * From the "wouldn't it be nice if the mixer API had (better)
  563.  * support for custom stuff" category
  564.  */
  565. /* Enable surround mode and SB16 mixer */
  566. ad_write(devc, 16, 0x60);
  567. }
  568. }
  569. static int ad1848_mixer_ioctl(int dev, unsigned int cmd, caddr_t arg)
  570. {
  571. ad1848_info *devc = mixer_devs[dev]->devc;
  572. int val;
  573. if (cmd == SOUND_MIXER_PRIVATE1) 
  574. {
  575. if (get_user(val, (int *)arg))
  576. return -EFAULT;
  577. if (val != 0xffff) 
  578. {
  579. val &= (AUDIO_SPEAKER | AUDIO_HEADPHONE | AUDIO_LINE_OUT);
  580. devc->mixer_output_port = val;
  581. val |= AUDIO_HEADPHONE | AUDIO_LINE_OUT; /* Always on */
  582. devc->mixer_output_port = val;
  583. if (val & AUDIO_SPEAKER)
  584. ad_write(devc, 26, ad_read(devc, 26) & ~0x40); /* Unmute mono out */
  585. else
  586. ad_write(devc, 26, ad_read(devc, 26) | 0x40); /* Mute mono out */
  587. }
  588. val = devc->mixer_output_port;
  589. return put_user(val, (int *)arg);
  590. }
  591. if (cmd == SOUND_MIXER_PRIVATE2)
  592. {
  593. if (get_user(val, (int *)arg))
  594. return -EFAULT;
  595. return(ad1848_control(AD1848_MIXER_REROUTE, val));
  596. }
  597. if (((cmd >> 8) & 0xff) == 'M') 
  598. {
  599. if (_SIOC_DIR(cmd) & _SIOC_WRITE)
  600. {
  601. switch (cmd & 0xff) 
  602. {
  603. case SOUND_MIXER_RECSRC:
  604. if (get_user(val, (int *)arg))
  605. return -EFAULT;
  606. val = ad1848_set_recmask(devc, val);
  607. break;
  608. default:
  609. if (get_user(val, (int *)arg))
  610. return -EFAULT;
  611. val = ad1848_mixer_set(devc, cmd & 0xff, val);
  612. break;
  613. return put_user(val, (int *)arg);
  614. }
  615. else
  616. {
  617. switch (cmd & 0xff) 
  618. {
  619. /*
  620.  * Return parameters
  621.  */
  622.     
  623. case SOUND_MIXER_RECSRC:
  624. val = devc->recmask;
  625. break;
  626. case SOUND_MIXER_DEVMASK:
  627. val = devc->supported_devices;
  628. break;
  629. case SOUND_MIXER_STEREODEVS:
  630. val = devc->supported_devices;
  631. if (devc->model != MD_C930)
  632. val &= ~(SOUND_MASK_SPEAKER | SOUND_MASK_IMIX);
  633. break;
  634. case SOUND_MIXER_RECMASK:
  635. val = devc->supported_rec_devices;
  636. break;
  637. case SOUND_MIXER_CAPS:
  638. val=SOUND_CAP_EXCL_INPUT;
  639. break;
  640. default:
  641. val = ad1848_mixer_get(devc, cmd & 0xff);
  642. break;
  643. }
  644. return put_user(val, (int *)arg);
  645. }
  646. }
  647. else
  648. return -EINVAL;
  649. }
  650. static int ad1848_set_speed(int dev, int arg)
  651. {
  652. ad1848_info *devc = (ad1848_info *) audio_devs[dev]->devc;
  653. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  654. /*
  655.  * The sampling speed is encoded in the least significant nibble of I8. The
  656.  * LSB selects the clock source (0=24.576 MHz, 1=16.9344 MHz) and other
  657.  * three bits select the divisor (indirectly):
  658.  *
  659.  * The available speeds are in the following table. Keep the speeds in
  660.  * the increasing order.
  661.  */
  662. typedef struct
  663. {
  664. int             speed;
  665. unsigned char   bits;
  666. }
  667. speed_struct;
  668. static speed_struct speed_table[] =
  669. {
  670. {5510, (0 << 1) | 1},
  671. {5510, (0 << 1) | 1},
  672. {6620, (7 << 1) | 1},
  673. {8000, (0 << 1) | 0},
  674. {9600, (7 << 1) | 0},
  675. {11025, (1 << 1) | 1},
  676. {16000, (1 << 1) | 0},
  677. {18900, (2 << 1) | 1},
  678. {22050, (3 << 1) | 1},
  679. {27420, (2 << 1) | 0},
  680. {32000, (3 << 1) | 0},
  681. {33075, (6 << 1) | 1},
  682. {37800, (4 << 1) | 1},
  683. {44100, (5 << 1) | 1},
  684. {48000, (6 << 1) | 0}
  685. };
  686. int i, n, selected = -1;
  687. n = sizeof(speed_table) / sizeof(speed_struct);
  688. if (arg <= 0)
  689. return portc->speed;
  690. if (devc->model == MD_1845 || devc->model == MD_1845_SSCAPE) /* AD1845 has different timer than others */
  691. {
  692. if (arg < 4000)
  693. arg = 4000;
  694. if (arg > 50000)
  695. arg = 50000;
  696. portc->speed = arg;
  697. portc->speed_bits = speed_table[3].bits;
  698. return portc->speed;
  699. }
  700. if (arg < speed_table[0].speed)
  701. selected = 0;
  702. if (arg > speed_table[n - 1].speed)
  703. selected = n - 1;
  704. for (i = 1 /*really */ ; selected == -1 && i < n; i++)
  705. {
  706. if (speed_table[i].speed == arg)
  707. selected = i;
  708. else if (speed_table[i].speed > arg)
  709. {
  710. int diff1, diff2;
  711. diff1 = arg - speed_table[i - 1].speed;
  712. diff2 = speed_table[i].speed - arg;
  713. if (diff1 < diff2)
  714. selected = i - 1;
  715. else
  716. selected = i;
  717. }
  718. }
  719. if (selected == -1)
  720. {
  721. printk(KERN_WARNING "ad1848: Can't find speed???n");
  722. selected = 3;
  723. }
  724. portc->speed = speed_table[selected].speed;
  725. portc->speed_bits = speed_table[selected].bits;
  726. return portc->speed;
  727. }
  728. static short ad1848_set_channels(int dev, short arg)
  729. {
  730. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  731. if (arg != 1 && arg != 2)
  732. return portc->channels;
  733. portc->channels = arg;
  734. return arg;
  735. }
  736. static unsigned int ad1848_set_bits(int dev, unsigned int arg)
  737. {
  738. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  739. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  740. static struct format_tbl
  741. {
  742.   int             format;
  743.   unsigned char   bits;
  744. }
  745. format2bits[] =
  746. {
  747. {
  748. 0, 0
  749. }
  750. ,
  751. {
  752. AFMT_MU_LAW, 1
  753. }
  754. ,
  755. {
  756. AFMT_A_LAW, 3
  757. }
  758. ,
  759. {
  760. AFMT_IMA_ADPCM, 5
  761. }
  762. ,
  763. {
  764. AFMT_U8, 0
  765. }
  766. ,
  767. {
  768. AFMT_S16_LE, 2
  769. }
  770. ,
  771. {
  772. AFMT_S16_BE, 6
  773. }
  774. ,
  775. {
  776. AFMT_S8, 0
  777. }
  778. ,
  779. {
  780. AFMT_U16_LE, 0
  781. }
  782. ,
  783. {
  784. AFMT_U16_BE, 0
  785. }
  786. };
  787. int i, n = sizeof(format2bits) / sizeof(struct format_tbl);
  788. if (arg == 0)
  789. return portc->audio_format;
  790. if (!(arg & ad_format_mask[devc->model]))
  791. arg = AFMT_U8;
  792. portc->audio_format = arg;
  793. for (i = 0; i < n; i++)
  794. if (format2bits[i].format == arg)
  795. {
  796. if ((portc->format_bits = format2bits[i].bits) == 0)
  797. return portc->audio_format = AFMT_U8; /* Was not supported */
  798. return arg;
  799. }
  800. /* Still hanging here. Something must be terribly wrong */
  801. portc->format_bits = 0;
  802. return portc->audio_format = AFMT_U8;
  803. }
  804. static struct audio_driver ad1848_audio_driver =
  805. {
  806. owner: THIS_MODULE,
  807. open: ad1848_open,
  808. close: ad1848_close,
  809. output_block: ad1848_output_block,
  810. start_input: ad1848_start_input,
  811. prepare_for_input: ad1848_prepare_for_input,
  812. prepare_for_output: ad1848_prepare_for_output,
  813. halt_io: ad1848_halt,
  814. halt_input: ad1848_halt_input,
  815. halt_output: ad1848_halt_output,
  816. trigger: ad1848_trigger,
  817. set_speed: ad1848_set_speed,
  818. set_bits: ad1848_set_bits,
  819. set_channels: ad1848_set_channels
  820. };
  821. static struct mixer_operations ad1848_mixer_operations =
  822. {
  823. owner: THIS_MODULE,
  824. id: "SOUNDPORT",
  825. name: "AD1848/CS4248/CS4231",
  826. ioctl: ad1848_mixer_ioctl
  827. };
  828. static int ad1848_open(int dev, int mode)
  829. {
  830. ad1848_info    *devc = NULL;
  831. ad1848_port_info *portc;
  832. unsigned long   flags;
  833. if (dev < 0 || dev >= num_audiodevs)
  834. return -ENXIO;
  835. devc = (ad1848_info *) audio_devs[dev]->devc;
  836. portc = (ad1848_port_info *) audio_devs[dev]->portc;
  837. save_flags(flags);
  838. cli();
  839. if (portc->open_mode || (devc->open_mode & mode))
  840. {
  841. restore_flags(flags);
  842. return -EBUSY;
  843. }
  844. devc->dual_dma = 0;
  845. if (audio_devs[dev]->flags & DMA_DUPLEX)
  846. {
  847. devc->dual_dma = 1;
  848. }
  849. devc->intr_active = 0;
  850. devc->audio_mode = 0;
  851. devc->open_mode |= mode;
  852. portc->open_mode = mode;
  853. ad1848_trigger(dev, 0);
  854. if (mode & OPEN_READ)
  855. devc->record_dev = dev;
  856. if (mode & OPEN_WRITE)
  857. devc->playback_dev = dev;
  858. restore_flags(flags);
  859. /*
  860.  * Mute output until the playback really starts. This decreases clicking (hope so).
  861.  */
  862. ad_mute(devc);
  863. return 0;
  864. }
  865. static void ad1848_close(int dev)
  866. {
  867. unsigned long   flags;
  868. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  869. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  870. DEB(printk("ad1848_close(void)n"));
  871. save_flags(flags);
  872. cli();
  873. devc->intr_active = 0;
  874. ad1848_halt(dev);
  875. devc->audio_mode = 0;
  876. devc->open_mode &= ~portc->open_mode;
  877. portc->open_mode = 0;
  878. ad_unmute(devc);
  879. restore_flags(flags);
  880. }
  881. static void ad1848_output_block(int dev, unsigned long buf, int count, int intrflag)
  882. {
  883. unsigned long   flags, cnt;
  884. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  885. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  886. cnt = count;
  887. if (portc->audio_format == AFMT_IMA_ADPCM)
  888. {
  889. cnt /= 4;
  890. }
  891. else
  892. {
  893. if (portc->audio_format & (AFMT_S16_LE | AFMT_S16_BE)) /* 16 bit data */
  894. cnt >>= 1;
  895. }
  896. if (portc->channels > 1)
  897. cnt >>= 1;
  898. cnt--;
  899. if ((devc->audio_mode & PCM_ENABLE_OUTPUT) && (audio_devs[dev]->flags & DMA_AUTOMODE) &&
  900.     intrflag &&
  901.     cnt == devc->xfer_count)
  902. {
  903. devc->audio_mode |= PCM_ENABLE_OUTPUT;
  904. devc->intr_active = 1;
  905. return; /*
  906.  * Auto DMA mode on. No need to react
  907.  */
  908. }
  909. save_flags(flags);
  910. cli();
  911. ad_write(devc, 15, (unsigned char) (cnt & 0xff));
  912. ad_write(devc, 14, (unsigned char) ((cnt >> 8) & 0xff));
  913. devc->xfer_count = cnt;
  914. devc->audio_mode |= PCM_ENABLE_OUTPUT;
  915. devc->intr_active = 1;
  916. restore_flags(flags);
  917. }
  918. static void ad1848_start_input(int dev, unsigned long buf, int count, int intrflag)
  919. {
  920. unsigned long   flags, cnt;
  921. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  922. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  923. cnt = count;
  924. if (portc->audio_format == AFMT_IMA_ADPCM)
  925. {
  926. cnt /= 4;
  927. }
  928. else
  929. {
  930. if (portc->audio_format & (AFMT_S16_LE | AFMT_S16_BE)) /* 16 bit data */
  931. cnt >>= 1;
  932. }
  933. if (portc->channels > 1)
  934. cnt >>= 1;
  935. cnt--;
  936. if ((devc->audio_mode & PCM_ENABLE_INPUT) && (audio_devs[dev]->flags & DMA_AUTOMODE) &&
  937. intrflag &&
  938. cnt == devc->xfer_count)
  939. {
  940. devc->audio_mode |= PCM_ENABLE_INPUT;
  941. devc->intr_active = 1;
  942. return; /*
  943.  * Auto DMA mode on. No need to react
  944.  */
  945. }
  946. save_flags(flags);
  947. cli();
  948. if (devc->model == MD_1848)
  949. {
  950.   ad_write(devc, 15, (unsigned char) (cnt & 0xff));
  951.   ad_write(devc, 14, (unsigned char) ((cnt >> 8) & 0xff));
  952. }
  953. else
  954. {
  955.   ad_write(devc, 31, (unsigned char) (cnt & 0xff));
  956.   ad_write(devc, 30, (unsigned char) ((cnt >> 8) & 0xff));
  957. }
  958. ad_unmute(devc);
  959. devc->xfer_count = cnt;
  960. devc->audio_mode |= PCM_ENABLE_INPUT;
  961. devc->intr_active = 1;
  962. restore_flags(flags);
  963. }
  964. static int ad1848_prepare_for_output(int dev, int bsize, int bcount)
  965. {
  966. int             timeout;
  967. unsigned char   fs, old_fs, tmp = 0;
  968. unsigned long   flags;
  969. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  970. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  971. ad_mute(devc);
  972. save_flags(flags);
  973. cli();
  974. fs = portc->speed_bits | (portc->format_bits << 5);
  975. if (portc->channels > 1)
  976. fs |= 0x10;
  977. ad_enter_MCE(devc); /* Enables changes to the format select reg */
  978. if (devc->model == MD_1845 || devc->model == MD_1845_SSCAPE) /* Use alternate speed select registers */
  979. {
  980. fs &= 0xf0; /* Mask off the rate select bits */
  981. ad_write(devc, 22, (portc->speed >> 8) & 0xff); /* Speed MSB */
  982. ad_write(devc, 23, portc->speed & 0xff); /* Speed LSB */
  983. }
  984. old_fs = ad_read(devc, 8);
  985. if (devc->model == MD_4232 || devc->model >= MD_4236)
  986. {
  987. tmp = ad_read(devc, 16);
  988. ad_write(devc, 16, tmp | 0x30);
  989. }
  990. if (devc->model == MD_IWAVE)
  991. ad_write(devc, 17, 0xc2); /* Disable variable frequency select */
  992. ad_write(devc, 8, fs);
  993. /*
  994.  * Write to I8 starts resynchronization. Wait until it completes.
  995.  */
  996. timeout = 0;
  997. while (timeout < 100 && inb(devc->base) != 0x80)
  998. timeout++;
  999. timeout = 0;
  1000. while (timeout < 10000 && inb(devc->base) == 0x80)
  1001. timeout++;
  1002. if (devc->model >= MD_4232)
  1003. ad_write(devc, 16, tmp & ~0x30);
  1004. ad_leave_MCE(devc); /*
  1005.  * Starts the calibration process.
  1006.  */
  1007. restore_flags(flags);
  1008. devc->xfer_count = 0;
  1009. #ifndef EXCLUDE_TIMERS
  1010. if (dev == timer_installed && devc->timer_running)
  1011. if ((fs & 0x01) != (old_fs & 0x01))
  1012. {
  1013. ad1848_tmr_reprogram(dev);
  1014. }
  1015. #endif
  1016. ad1848_halt_output(dev);
  1017. return 0;
  1018. }
  1019. static int ad1848_prepare_for_input(int dev, int bsize, int bcount)
  1020. {
  1021. int timeout;
  1022. unsigned char fs, old_fs, tmp = 0;
  1023. unsigned long flags;
  1024. ad1848_info *devc = (ad1848_info *) audio_devs[dev]->devc;
  1025. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  1026. if (devc->audio_mode)
  1027. return 0;
  1028. save_flags(flags);
  1029. cli();
  1030. fs = portc->speed_bits | (portc->format_bits << 5);
  1031. if (portc->channels > 1)
  1032. fs |= 0x10;
  1033. ad_enter_MCE(devc); /* Enables changes to the format select reg */
  1034. if ((devc->model == MD_1845) || (devc->model == MD_1845_SSCAPE)) /* Use alternate speed select registers */
  1035. {
  1036. fs &= 0xf0; /* Mask off the rate select bits */
  1037. ad_write(devc, 22, (portc->speed >> 8) & 0xff); /* Speed MSB */
  1038. ad_write(devc, 23, portc->speed & 0xff); /* Speed LSB */
  1039. }
  1040. if (devc->model == MD_4232)
  1041. {
  1042. tmp = ad_read(devc, 16);
  1043. ad_write(devc, 16, tmp | 0x30);
  1044. }
  1045. if (devc->model == MD_IWAVE)
  1046. ad_write(devc, 17, 0xc2); /* Disable variable frequency select */
  1047. /*
  1048.  * If mode >= 2 (CS4231), set I28. It's the capture format register.
  1049.  */
  1050. if (devc->model != MD_1848)
  1051. {
  1052. old_fs = ad_read(devc, 28);
  1053. ad_write(devc, 28, fs);
  1054. /*
  1055.  * Write to I28 starts resynchronization. Wait until it completes.
  1056.  */
  1057. timeout = 0;
  1058. while (timeout < 100 && inb(devc->base) != 0x80)
  1059. timeout++;
  1060. timeout = 0;
  1061. while (timeout < 10000 && inb(devc->base) == 0x80)
  1062. timeout++;
  1063. if (devc->model != MD_1848 && devc->model != MD_1845 && devc->model != MD_1845_SSCAPE)
  1064. {
  1065. /*
  1066.  * CS4231 compatible devices don't have separate sampling rate selection
  1067.  * register for recording an playback. The I8 register is shared so we have to
  1068.  * set the speed encoding bits of it too.
  1069.  */
  1070. unsigned char   tmp = portc->speed_bits | (ad_read(devc, 8) & 0xf0);
  1071. ad_write(devc, 8, tmp);
  1072. /*
  1073.  * Write to I8 starts resynchronization. Wait until it completes.
  1074.  */
  1075. timeout = 0;
  1076. while (timeout < 100 && inb(devc->base) != 0x80)
  1077. timeout++;
  1078. timeout = 0;
  1079. while (timeout < 10000 && inb(devc->base) == 0x80)
  1080. timeout++;
  1081. }
  1082. }
  1083. else
  1084. { /* For AD1848 set I8. */
  1085. old_fs = ad_read(devc, 8);
  1086. ad_write(devc, 8, fs);
  1087. /*
  1088.  * Write to I8 starts resynchronization. Wait until it completes.
  1089.  */
  1090. timeout = 0;
  1091. while (timeout < 100 && inb(devc->base) != 0x80)
  1092. timeout++;
  1093. timeout = 0;
  1094. while (timeout < 10000 && inb(devc->base) == 0x80)
  1095. timeout++;
  1096. }
  1097. if (devc->model == MD_4232)
  1098. ad_write(devc, 16, tmp & ~0x30);
  1099. ad_leave_MCE(devc); /*
  1100.  * Starts the calibration process.
  1101.  */
  1102. restore_flags(flags);
  1103. devc->xfer_count = 0;
  1104. #ifndef EXCLUDE_TIMERS
  1105. if (dev == timer_installed && devc->timer_running)
  1106. {
  1107. if ((fs & 0x01) != (old_fs & 0x01))
  1108. {
  1109. ad1848_tmr_reprogram(dev);
  1110. }
  1111. }
  1112. #endif
  1113. ad1848_halt_input(dev);
  1114. return 0;
  1115. }
  1116. static void ad1848_halt(int dev)
  1117. {
  1118. ad1848_info *devc = (ad1848_info *) audio_devs[dev]->devc;
  1119. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  1120. unsigned char   bits = ad_read(devc, 9);
  1121. if (bits & 0x01 && (portc->open_mode & OPEN_WRITE))
  1122. ad1848_halt_output(dev);
  1123. if (bits & 0x02 && (portc->open_mode & OPEN_READ))
  1124. ad1848_halt_input(dev);
  1125. devc->audio_mode = 0;
  1126. }
  1127. static void ad1848_halt_input(int dev)
  1128. {
  1129. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  1130. unsigned long   flags;
  1131. if (!(ad_read(devc, 9) & 0x02))
  1132. return; /* Capture not enabled */
  1133. save_flags(flags);
  1134. cli();
  1135. ad_mute(devc);
  1136. {
  1137. int             tmout;
  1138. if(!isa_dma_bridge_buggy)
  1139.         disable_dma(audio_devs[dev]->dmap_in->dma);
  1140. for (tmout = 0; tmout < 100000; tmout++)
  1141. if (ad_read(devc, 11) & 0x10)
  1142. break;
  1143. ad_write(devc, 9, ad_read(devc, 9) & ~0x02); /* Stop capture */
  1144. if(!isa_dma_bridge_buggy)
  1145.         enable_dma(audio_devs[dev]->dmap_in->dma);
  1146. devc->audio_mode &= ~PCM_ENABLE_INPUT;
  1147. }
  1148. outb(0, io_Status(devc)); /* Clear interrupt status */
  1149. outb(0, io_Status(devc)); /* Clear interrupt status */
  1150. devc->audio_mode &= ~PCM_ENABLE_INPUT;
  1151. restore_flags(flags);
  1152. }
  1153. static void ad1848_halt_output(int dev)
  1154. {
  1155. ad1848_info *devc = (ad1848_info *) audio_devs[dev]->devc;
  1156. unsigned long flags;
  1157. if (!(ad_read(devc, 9) & 0x01))
  1158. return; /* Playback not enabled */
  1159. save_flags(flags);
  1160. cli();
  1161. ad_mute(devc);
  1162. {
  1163. int             tmout;
  1164. if(!isa_dma_bridge_buggy)
  1165.         disable_dma(audio_devs[dev]->dmap_out->dma);
  1166. for (tmout = 0; tmout < 100000; tmout++)
  1167. if (ad_read(devc, 11) & 0x10)
  1168. break;
  1169. ad_write(devc, 9, ad_read(devc, 9) & ~0x01); /* Stop playback */
  1170. if(!isa_dma_bridge_buggy)
  1171.        enable_dma(audio_devs[dev]->dmap_out->dma);
  1172. devc->audio_mode &= ~PCM_ENABLE_OUTPUT;
  1173. }
  1174. outb((0), io_Status(devc)); /* Clear interrupt status */
  1175. outb((0), io_Status(devc)); /* Clear interrupt status */
  1176. devc->audio_mode &= ~PCM_ENABLE_OUTPUT;
  1177. restore_flags(flags);
  1178. }
  1179. static void ad1848_trigger(int dev, int state)
  1180. {
  1181. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  1182. ad1848_port_info *portc = (ad1848_port_info *) audio_devs[dev]->portc;
  1183. unsigned long   flags;
  1184. unsigned char   tmp, old;
  1185. save_flags(flags);
  1186. cli();
  1187. state &= devc->audio_mode;
  1188. tmp = old = ad_read(devc, 9);
  1189. if (portc->open_mode & OPEN_READ)
  1190. {
  1191.   if (state & PCM_ENABLE_INPUT)
  1192.   tmp |= 0x02;
  1193.   else
  1194.   tmp &= ~0x02;
  1195. }
  1196. if (portc->open_mode & OPEN_WRITE)
  1197. {
  1198. if (state & PCM_ENABLE_OUTPUT)
  1199. tmp |= 0x01;
  1200. else
  1201. tmp &= ~0x01;
  1202. }
  1203. /* ad_mute(devc); */
  1204. if (tmp != old)
  1205. {
  1206.   ad_write(devc, 9, tmp);
  1207.   ad_unmute(devc);
  1208. }
  1209. restore_flags(flags);
  1210. }
  1211. static void ad1848_init_hw(ad1848_info * devc)
  1212. {
  1213. int i;
  1214. int *init_values;
  1215. /*
  1216.  * Initial values for the indirect registers of CS4248/AD1848.
  1217.  */
  1218. static int      init_values_a[] =
  1219. {
  1220. 0xa8, 0xa8, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00,
  1221. 0x00, 0x0c, 0x02, 0x00, 0x8a, 0x01, 0x00, 0x00,
  1222. /* Positions 16 to 31 just for CS4231/2 and ad1845 */
  1223. 0x80, 0x00, 0x10, 0x10, 0x00, 0x00, 0x1f, 0x40,
  1224. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  1225. };
  1226. static int      init_values_b[] =
  1227. {
  1228. /* 
  1229.    Values for the newer chips
  1230.    Some of the register initialization values were changed. In
  1231.    order to get rid of the click that preceded PCM playback,
  1232.    calibration was disabled on the 10th byte. On that same byte,
  1233.    dual DMA was enabled; on the 11th byte, ADC dithering was
  1234.    enabled, since that is theoretically desirable; on the 13th
  1235.    byte, Mode 3 was selected, to enable access to extended
  1236.    registers.
  1237.  */
  1238. 0xa8, 0xa8, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00,
  1239. 0x00, 0x00, 0x06, 0x00, 0xe0, 0x01, 0x00, 0x00,
  1240.   0x80, 0x00, 0x10, 0x10, 0x00, 0x00, 0x1f, 0x40,
  1241.   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  1242. };
  1243. /*
  1244.  * Select initialisation data
  1245.  */
  1246.  
  1247. init_values = init_values_a;
  1248. if(devc->model >= MD_4236)
  1249. init_values = init_values_b;
  1250. for (i = 0; i < 16; i++)
  1251. ad_write(devc, i, init_values[i]);
  1252. ad_mute(devc); /* Initialize some variables */
  1253. ad_unmute(devc); /* Leave it unmuted now */
  1254. if (devc->model > MD_1848)
  1255. {
  1256. if (devc->model == MD_1845_SSCAPE)
  1257. ad_write(devc, 12, ad_read(devc, 12) | 0x50);
  1258. else 
  1259. ad_write(devc, 12, ad_read(devc, 12) | 0x40); /* Mode2 = enabled */
  1260. if (devc->model == MD_IWAVE)
  1261. ad_write(devc, 12, 0x6c); /* Select codec mode 3 */
  1262. if (devc->model != MD_1845_SSCAPE)
  1263. for (i = 16; i < 32; i++)
  1264. ad_write(devc, i, init_values[i]);
  1265. if (devc->model == MD_IWAVE)
  1266. ad_write(devc, 16, 0x30); /* Playback and capture counters enabled */
  1267. }
  1268. if (devc->model > MD_1848)
  1269. {
  1270. if (devc->audio_flags & DMA_DUPLEX)
  1271. ad_write(devc, 9, ad_read(devc, 9) & ~0x04); /* Dual DMA mode */
  1272. else
  1273. ad_write(devc, 9, ad_read(devc, 9) | 0x04); /* Single DMA mode */
  1274. if (devc->model == MD_1845 || devc->model == MD_1845_SSCAPE)
  1275. ad_write(devc, 27, ad_read(devc, 27) | 0x08); /* Alternate freq select enabled */
  1276. if (devc->model == MD_IWAVE)
  1277. { /* Some magic Interwave specific initialization */
  1278. ad_write(devc, 12, 0x6c); /* Select codec mode 3 */
  1279. ad_write(devc, 16, 0x30); /* Playback and capture counters enabled */
  1280. ad_write(devc, 17, 0xc2); /* Alternate feature enable */
  1281. }
  1282. }
  1283. else
  1284. {
  1285.   devc->audio_flags &= ~DMA_DUPLEX;
  1286.   ad_write(devc, 9, ad_read(devc, 9) | 0x04); /* Single DMA mode */
  1287.   if (soundpro)
  1288.   ad_write(devc, 12, ad_read(devc, 12) | 0x40); /* Mode2 = enabled */
  1289. }
  1290. outb((0), io_Status(devc)); /* Clear pending interrupts */
  1291. /*
  1292.  * Toggle the MCE bit. It completes the initialization phase.
  1293.  */
  1294. ad_enter_MCE(devc); /* In case the bit was off */
  1295. ad_leave_MCE(devc);
  1296. ad1848_mixer_reset(devc);
  1297. }
  1298. int ad1848_detect(int io_base, int *ad_flags, int *osp)
  1299. {
  1300. unsigned char tmp;
  1301. ad1848_info *devc = &adev_info[nr_ad1848_devs];
  1302. unsigned char tmp1 = 0xff, tmp2 = 0xff;
  1303. int optiC930 = 0; /* OPTi 82C930 flag */
  1304. int interwave = 0;
  1305. int ad1847_flag = 0;
  1306. int cs4248_flag = 0;
  1307. int sscape_flag = 0;
  1308. int i;
  1309. DDB(printk("ad1848_detect(%x)n", io_base));
  1310. if (ad_flags)
  1311. {
  1312. if (*ad_flags == 0x12345678)
  1313. {
  1314. interwave = 1;
  1315. *ad_flags = 0;
  1316. }
  1317. if (*ad_flags == 0x87654321)
  1318. {
  1319. sscape_flag = 1;
  1320. *ad_flags = 0;
  1321. }
  1322. if (*ad_flags == 0x12345677)
  1323. {
  1324.     cs4248_flag = 1;
  1325.     *ad_flags = 0;
  1326. }
  1327. }
  1328. if (nr_ad1848_devs >= MAX_AUDIO_DEV)
  1329. {
  1330. printk(KERN_ERR "ad1848 - Too many audio devicesn");
  1331. return 0;
  1332. }
  1333. if (check_region(io_base, 4))
  1334. {
  1335. printk(KERN_ERR "ad1848.c: Port %x not free.n", io_base);
  1336. return 0;
  1337. }
  1338. devc->base = io_base;
  1339. devc->irq_ok = 0;
  1340. devc->timer_running = 0;
  1341. devc->MCE_bit = 0x40;
  1342. devc->irq = 0;
  1343. devc->open_mode = 0;
  1344. devc->chip_name = devc->name = "AD1848";
  1345. devc->model = MD_1848; /* AD1848 or CS4248 */
  1346. devc->levels = NULL;
  1347. devc->debug_flag = 0;
  1348. /*
  1349.  * Check that the I/O address is in use.
  1350.  *
  1351.  * The bit 0x80 of the base I/O port is known to be 0 after the
  1352.  * chip has performed its power on initialization. Just assume
  1353.  * this has happened before the OS is starting.
  1354.  *
  1355.  * If the I/O address is unused, it typically returns 0xff.
  1356.  */
  1357. if (inb(devc->base) == 0xff)
  1358. {
  1359. DDB(printk("ad1848_detect: The base I/O address appears to be deadn"));
  1360. }
  1361. /*
  1362.  * Wait for the device to stop initialization
  1363.  */
  1364. DDB(printk("ad1848_detect() - step 0n"));
  1365. for (i = 0; i < 10000000; i++)
  1366. {
  1367. unsigned char   x = inb(devc->base);
  1368. if (x == 0xff || !(x & 0x80))
  1369. break;
  1370. }
  1371. DDB(printk("ad1848_detect() - step An"));
  1372. if (inb(devc->base) == 0x80) /* Not ready. Let's wait */
  1373. ad_leave_MCE(devc);
  1374. if ((inb(devc->base) & 0x80) != 0x00) /* Not a AD1848 */
  1375. {
  1376. DDB(printk("ad1848 detect error - step A (%02x)n", (int) inb(devc->base)));
  1377. return 0;
  1378. }
  1379. /*
  1380.  * Test if it's possible to change contents of the indirect registers.
  1381.  * Registers 0 and 1 are ADC volume registers. The bit 0x10 is read only
  1382.  * so try to avoid using it.
  1383.  */
  1384. DDB(printk("ad1848_detect() - step Bn"));
  1385. ad_write(devc, 0, 0xaa);
  1386. ad_write(devc, 1, 0x45); /* 0x55 with bit 0x10 clear */
  1387. if ((tmp1 = ad_read(devc, 0)) != 0xaa || (tmp2 = ad_read(devc, 1)) != 0x45)
  1388. {
  1389. if (tmp2 == 0x65) /* AD1847 has couple of bits hardcoded to 1 */
  1390. ad1847_flag = 1;
  1391. else
  1392. {
  1393. DDB(printk("ad1848 detect error - step B (%x/%x)n", tmp1, tmp2));
  1394. return 0;
  1395. }
  1396. }
  1397. DDB(printk("ad1848_detect() - step Cn"));
  1398. ad_write(devc, 0, 0x45);
  1399. ad_write(devc, 1, 0xaa);
  1400. if ((tmp1 = ad_read(devc, 0)) != 0x45 || (tmp2 = ad_read(devc, 1)) != 0xaa)
  1401. {
  1402. if (tmp2 == 0x8a) /* AD1847 has few bits hardcoded to 1 */
  1403. ad1847_flag = 1;
  1404. else
  1405. {
  1406. DDB(printk("ad1848 detect error - step C (%x/%x)n", tmp1, tmp2));
  1407. return 0;
  1408. }
  1409. }
  1410. /*
  1411.  * The indirect register I12 has some read only bits. Let's
  1412.  * try to change them.
  1413.  */
  1414. DDB(printk("ad1848_detect() - step Dn"));
  1415. tmp = ad_read(devc, 12);
  1416. ad_write(devc, 12, (~tmp) & 0x0f);
  1417. if ((tmp & 0x0f) != ((tmp1 = ad_read(devc, 12)) & 0x0f))
  1418. {
  1419. DDB(printk("ad1848 detect error - step D (%x)n", tmp1));
  1420. return 0;
  1421. }
  1422. /*
  1423.  * NOTE! Last 4 bits of the reg I12 tell the chip revision.
  1424.  *   0x01=RevB and 0x0A=RevC.
  1425.  */
  1426. /*
  1427.  * The original AD1848/CS4248 has just 15 indirect registers. This means
  1428.  * that I0 and I16 should return the same value (etc.).
  1429.  * However this doesn't work with CS4248. Actually it seems to be impossible
  1430.  * to detect if the chip is a CS4231 or CS4248.
  1431.  * Ensure that the Mode2 enable bit of I12 is 0. Otherwise this test fails
  1432.  * with CS4231.
  1433.  */
  1434. /*
  1435.  * OPTi 82C930 has mode2 control bit in another place. This test will fail
  1436.  * with it. Accept this situation as a possible indication of this chip.
  1437.  */
  1438. DDB(printk("ad1848_detect() - step Fn"));
  1439. ad_write(devc, 12, 0); /* Mode2=disabled */
  1440. for (i = 0; i < 16; i++)
  1441. {
  1442. if ((tmp1 = ad_read(devc, i)) != (tmp2 = ad_read(devc, i + 16)))
  1443. {
  1444. DDB(printk("ad1848 detect step F(%d/%x/%x) - OPTi chip???n", i, tmp1, tmp2));
  1445. if (!ad1847_flag)
  1446. optiC930 = 1;
  1447. break;
  1448. }
  1449. }
  1450. /*
  1451.  * Try to switch the chip to mode2 (CS4231) by setting the MODE2 bit (0x40).
  1452.  * The bit 0x80 is always 1 in CS4248 and CS4231.
  1453.  */
  1454. DDB(printk("ad1848_detect() - step Gn"));
  1455. if (ad_flags && *ad_flags == 400)
  1456. *ad_flags = 0;
  1457. else
  1458. ad_write(devc, 12, 0x40); /* Set mode2, clear 0x80 */
  1459. if (ad_flags)
  1460. *ad_flags = 0;
  1461. tmp1 = ad_read(devc, 12);
  1462. if (tmp1 & 0x80)
  1463. {
  1464. if (ad_flags)
  1465. *ad_flags |= AD_F_CS4248;
  1466. devc->chip_name = "CS4248"; /* Our best knowledge just now */
  1467. }
  1468. if (optiC930 || (tmp1 & 0xc0) == (0x80 | 0x40))
  1469. {
  1470. /*
  1471.  *      CS4231 detected - is it?
  1472.  *
  1473.  *      Verify that setting I0 doesn't change I16.
  1474.  */
  1475. DDB(printk("ad1848_detect() - step Hn"));
  1476. ad_write(devc, 16, 0); /* Set I16 to known value */
  1477. ad_write(devc, 0, 0x45);
  1478. if ((tmp1 = ad_read(devc, 16)) != 0x45) /* No change -> CS4231? */
  1479. {
  1480. ad_write(devc, 0, 0xaa);
  1481. if ((tmp1 = ad_read(devc, 16)) == 0xaa) /* Rotten bits? */
  1482. {
  1483. DDB(printk("ad1848 detect error - step H(%x)n", tmp1));
  1484. return 0;
  1485. }
  1486. /*
  1487.  * Verify that some bits of I25 are read only.
  1488.  */
  1489. DDB(printk("ad1848_detect() - step In"));
  1490. tmp1 = ad_read(devc, 25); /* Original bits */
  1491. ad_write(devc, 25, ~tmp1); /* Invert all bits */
  1492. if ((ad_read(devc, 25) & 0xe7) == (tmp1 & 0xe7))
  1493. {
  1494. int id;
  1495. /*
  1496.  *      It's at least CS4231
  1497.  */
  1498. devc->chip_name = "CS4231";
  1499. devc->model = MD_4231;
  1500. /*
  1501.  * It could be an AD1845 or CS4231A as well.
  1502.  * CS4231 and AD1845 report the same revision info in I25
  1503.  * while the CS4231A reports different.
  1504.  */
  1505. id = ad_read(devc, 25);
  1506. if ((id & 0xe7) == 0x80) /* Device busy??? */
  1507. id = ad_read(devc, 25);
  1508. if ((id & 0xe7) == 0x80) /* Device still busy??? */
  1509. id = ad_read(devc, 25);
  1510. DDB(printk("ad1848_detect() - step J (%02x/%02x)n", id, ad_read(devc, 25)));
  1511.                                 if ((id & 0xe7) == 0x80) {
  1512. /* 
  1513.  * It must be a CS4231 or AD1845. The register I23 of
  1514.  * CS4231 is undefined and it appears to be read only.
  1515.  * AD1845 uses I23 for setting sample rate. Assume
  1516.  * the chip is AD1845 if I23 is changeable.
  1517.  */
  1518. unsigned char   tmp = ad_read(devc, 23);
  1519. ad_write(devc, 23, ~tmp);
  1520. if (interwave)
  1521. {
  1522. devc->model = MD_IWAVE;
  1523. devc->chip_name = "IWave";
  1524. }
  1525. else if (ad_read(devc, 23) != tmp) /* AD1845 ? */
  1526. {
  1527. devc->chip_name = "AD1845";
  1528. devc->model = MD_1845;
  1529. }
  1530. else if (cs4248_flag)
  1531. {
  1532. if (ad_flags)
  1533.   *ad_flags |= AD_F_CS4248;
  1534. devc->chip_name = "CS4248";
  1535. devc->model = MD_1848;
  1536. ad_write(devc, 12, ad_read(devc, 12) & ~0x40); /* Mode2 off */
  1537. }
  1538. ad_write(devc, 23, tmp); /* Restore */
  1539. }
  1540. else
  1541. {
  1542. switch (id & 0x1f) {
  1543. case 3: /* CS4236/CS4235/CS42xB/CS4239 */
  1544. {
  1545. int xid;
  1546. ad_write(devc, 12, ad_read(devc, 12) | 0x60); /* switch to mode 3 */
  1547. ad_write(devc, 23, 0x9c); /* select extended register 25 */
  1548. xid = inb(io_Indexed_Data(devc));
  1549. ad_write(devc, 12, ad_read(devc, 12) & ~0x60); /* back to mode 0 */
  1550. switch (xid & 0x1f)
  1551. {
  1552. case 0x00:
  1553. devc->chip_name = "CS4237B(B)";
  1554. devc->model = MD_42xB;
  1555. break;
  1556. case 0x08:
  1557. /* Seems to be a 4238 ?? */
  1558. devc->chip_name = "CS4238";
  1559. devc->model = MD_42xB;
  1560. break;
  1561. case 0x09:
  1562. devc->chip_name = "CS4238B";
  1563. devc->model = MD_42xB;
  1564. break;
  1565. case 0x0b:
  1566. devc->chip_name = "CS4236B";
  1567. devc->model = MD_4236;
  1568. break;
  1569. case 0x10:
  1570. devc->chip_name = "CS4237B";
  1571. devc->model = MD_42xB;
  1572. break;
  1573. case 0x1d:
  1574. devc->chip_name = "CS4235";
  1575. devc->model = MD_4235;
  1576. break;
  1577. case 0x1e:
  1578. devc->chip_name = "CS4239";
  1579. devc->model = MD_4239;
  1580. break;
  1581. default:
  1582. printk("Chip ident is %X.n", xid&0x1F);
  1583. devc->chip_name = "CS42xx";
  1584. devc->model = MD_4232;
  1585. break;
  1586. }
  1587. }
  1588. break;
  1589. case 2: /* CS4232/CS4232A */
  1590. devc->chip_name = "CS4232";
  1591. devc->model = MD_4232;
  1592. break;
  1593. case 0:
  1594. if ((id & 0xe0) == 0xa0)
  1595. {
  1596. devc->chip_name = "CS4231A";
  1597. devc->model = MD_4231A;
  1598. }
  1599. else
  1600. {
  1601. devc->chip_name = "CS4321";
  1602. devc->model = MD_4231;
  1603. }
  1604. break;
  1605. default: /* maybe */
  1606. DDB(printk("ad1848: I25 = %02x/%02xn", ad_read(devc, 25), ad_read(devc, 25) & 0xe7));
  1607.                                                 if (optiC930)
  1608.                                                 {
  1609.                                                         devc->chip_name = "82C930";
  1610.                                                         devc->model = MD_C930;
  1611.                                                 }
  1612. else
  1613. {
  1614. devc->chip_name = "CS4231";
  1615. devc->model = MD_4231;
  1616. }
  1617. }
  1618. }
  1619. }
  1620. ad_write(devc, 25, tmp1); /* Restore bits */
  1621. DDB(printk("ad1848_detect() - step Kn"));
  1622. }
  1623. } else if (tmp1 == 0x0a) {
  1624. /*
  1625.  * Is it perhaps a SoundPro CMI8330?
  1626.  * If so, then we should be able to change indirect registers
  1627.  * greater than I15 after activating MODE2, even though reading
  1628.  * back I12 does not show it.
  1629.  */
  1630. /*
  1631.  * Let's try comparing register values
  1632.  */
  1633. for (i = 0; i < 16; i++) {
  1634. if ((tmp1 = ad_read(devc, i)) != (tmp2 = ad_read(devc, i + 16))) {
  1635. DDB(printk("ad1848 detect step H(%d/%x/%x) - SoundPro chip?n", i, tmp1, tmp2));
  1636. soundpro = 1;
  1637. devc->chip_name = "SoundPro CMI 8330";
  1638. break;
  1639. }
  1640. }
  1641. }
  1642. DDB(printk("ad1848_detect() - step Ln"));
  1643. if (ad_flags)
  1644. {
  1645.   if (devc->model != MD_1848)
  1646.   *ad_flags |= AD_F_CS4231;
  1647. }
  1648. DDB(printk("ad1848_detect() - Detected OKn"));
  1649. if (devc->model == MD_1848 && ad1847_flag)
  1650. devc->chip_name = "AD1847";
  1651. if (sscape_flag == 1)
  1652. devc->model = MD_1845_SSCAPE;
  1653. return 1;
  1654. }
  1655. int ad1848_init (char *name, int io_base, int irq, int dma_playback,
  1656. int dma_capture, int share_dma, int *osp, struct module *owner)
  1657. {
  1658. /*
  1659.  * NOTE! If irq < 0, there is another driver which has allocated the IRQ
  1660.  *   so that this driver doesn't need to allocate/deallocate it.
  1661.  *   The actually used IRQ is ABS(irq).
  1662.  */
  1663. int my_dev;
  1664. char dev_name[100];
  1665. int e;
  1666. ad1848_info  *devc = &adev_info[nr_ad1848_devs];
  1667. ad1848_port_info *portc = NULL;
  1668. devc->irq = (irq > 0) ? irq : 0;
  1669. devc->open_mode = 0;
  1670. devc->timer_ticks = 0;
  1671. devc->dma1 = dma_playback;
  1672. devc->dma2 = dma_capture;
  1673. devc->subtype = cfg.card_subtype;
  1674. devc->audio_flags = DMA_AUTOMODE;
  1675. devc->playback_dev = devc->record_dev = 0;
  1676. if (name != NULL)
  1677. devc->name = name;
  1678. if (name != NULL && name[0] != 0)
  1679. sprintf(dev_name,
  1680. "%s (%s)", name, devc->chip_name);
  1681. else
  1682. sprintf(dev_name,
  1683. "Generic audio codec (%s)", devc->chip_name);
  1684. request_region(devc->base, 4, devc->name);
  1685. conf_printf2(dev_name, devc->base, devc->irq, dma_playback, dma_capture);
  1686. if (devc->model == MD_1848 || devc->model == MD_C930)
  1687. devc->audio_flags |= DMA_HARDSTOP;
  1688. if (devc->model > MD_1848)
  1689. {
  1690. if (devc->dma1 == devc->dma2 || devc->dma2 == -1 || devc->dma1 == -1)
  1691. devc->audio_flags &= ~DMA_DUPLEX;
  1692. else
  1693. devc->audio_flags |= DMA_DUPLEX;
  1694. }
  1695. portc = (ad1848_port_info *) kmalloc(sizeof(ad1848_port_info), GFP_KERNEL);
  1696. if(portc==NULL)
  1697. return -1;
  1698. if ((my_dev = sound_install_audiodrv(AUDIO_DRIVER_VERSION,
  1699.      dev_name,
  1700.      &ad1848_audio_driver,
  1701.      sizeof(struct audio_driver),
  1702.      devc->audio_flags,
  1703.      ad_format_mask[devc->model],
  1704.      devc,
  1705.      dma_playback,
  1706.      dma_capture)) < 0)
  1707. {
  1708. kfree(portc);
  1709. portc=NULL;
  1710. return -1;
  1711. }
  1712. audio_devs[my_dev]->portc = portc;
  1713. audio_devs[my_dev]->mixer_dev = -1;
  1714. if (owner)
  1715. audio_devs[my_dev]->d->owner = owner;
  1716. memset((char *) portc, 0, sizeof(*portc));
  1717. nr_ad1848_devs++;
  1718. devc->pmdev = pm_register(PM_ISA_DEV, my_dev, ad1848_pm_callback);
  1719. if (devc->pmdev)
  1720. devc->pmdev->data = devc;
  1721. ad1848_init_hw(devc);
  1722. if (irq > 0)
  1723. {
  1724. devc->dev_no = my_dev;
  1725. if (request_irq(devc->irq, adintr, 0, devc->name, (void *)my_dev) < 0)
  1726. {
  1727. printk(KERN_WARNING "ad1848: Unable to allocate IRQn");
  1728. /* Don't free it either then.. */
  1729. devc->irq = 0;
  1730. }
  1731. if (capabilities[devc->model].flags & CAP_F_TIMER)
  1732. {
  1733. #ifndef CONFIG_SMP
  1734. int x;
  1735. unsigned char tmp = ad_read(devc, 16);
  1736. #endif
  1737. devc->timer_ticks = 0;
  1738. ad_write(devc, 21, 0x00); /* Timer MSB */
  1739. ad_write(devc, 20, 0x10); /* Timer LSB */
  1740. #ifndef CONFIG_SMP
  1741. ad_write(devc, 16, tmp | 0x40); /* Enable timer */
  1742. for (x = 0; x < 100000 && devc->timer_ticks == 0; x++);
  1743. ad_write(devc, 16, tmp & ~0x40); /* Disable timer */
  1744. if (devc->timer_ticks == 0)
  1745. printk(KERN_WARNING "ad1848: Interrupt test failed (IRQ%d)n", irq);
  1746. else
  1747. {
  1748. DDB(printk("Interrupt test OKn"));
  1749. devc->irq_ok = 1;
  1750. }
  1751. #else
  1752. devc->irq_ok = 1;
  1753. #endif
  1754. }
  1755. else
  1756. devc->irq_ok = 1; /* Couldn't test. assume it's OK */
  1757. } else if (irq < 0)
  1758. irq2dev[-irq] = devc->dev_no = my_dev;
  1759. #ifndef EXCLUDE_TIMERS
  1760. if ((capabilities[devc->model].flags & CAP_F_TIMER) &&
  1761.     devc->irq_ok)
  1762. ad1848_tmr_install(my_dev);
  1763. #endif
  1764. if (!share_dma)
  1765. {
  1766. if (sound_alloc_dma(dma_playback, devc->name))
  1767. printk(KERN_WARNING "ad1848.c: Can't allocate DMA%dn", dma_playback);
  1768. if (dma_capture != dma_playback)
  1769. if (sound_alloc_dma(dma_capture, devc->name))
  1770. printk(KERN_WARNING "ad1848.c: Can't allocate DMA%dn", dma_capture);
  1771. }
  1772. if ((e = sound_install_mixer(MIXER_DRIVER_VERSION,
  1773.      dev_name,
  1774.      &ad1848_mixer_operations,
  1775.      sizeof(struct mixer_operations),
  1776.      devc)) >= 0)
  1777. {
  1778. audio_devs[my_dev]->mixer_dev = e;
  1779. if (owner)
  1780. mixer_devs[e]->owner = owner;
  1781. }
  1782. return my_dev;
  1783. }
  1784. int ad1848_control(int cmd, int arg)
  1785. {
  1786. ad1848_info *devc;
  1787. if (nr_ad1848_devs < 1)
  1788. return -ENODEV;
  1789. devc = &adev_info[nr_ad1848_devs - 1];
  1790. switch (cmd)
  1791. {
  1792. case AD1848_SET_XTAL: /* Change clock frequency of AD1845 (only ) */
  1793. if (devc->model != MD_1845 || devc->model != MD_1845_SSCAPE)
  1794. return -EINVAL;
  1795. ad_enter_MCE(devc);
  1796. ad_write(devc, 29, (ad_read(devc, 29) & 0x1f) | (arg << 5));
  1797. ad_leave_MCE(devc);
  1798. break;
  1799. case AD1848_MIXER_REROUTE:
  1800. {
  1801. int o = (arg >> 8) & 0xff;
  1802. int n = arg & 0xff;
  1803. if (o < 0 || o >= SOUND_MIXER_NRDEVICES)
  1804. return -EINVAL;
  1805. if (!(devc->supported_devices & (1 << o)) &&
  1806.     !(devc->supported_rec_devices & (1 << o)))
  1807. return -EINVAL;
  1808. if (n == SOUND_MIXER_NONE)
  1809. { /* Just hide this control */
  1810. ad1848_mixer_set(devc, o, 0); /* Shut up it */
  1811. devc->supported_devices &= ~(1 << o);
  1812. devc->supported_rec_devices &= ~(1 << o);
  1813. break;
  1814. }
  1815. /* Make the mixer control identified by o to appear as n */
  1816. if (n < 0 || n >= SOUND_MIXER_NRDEVICES)
  1817. return -EINVAL;
  1818. devc->mixer_reroute[n] = o; /* Rename the control */
  1819. if (devc->supported_devices & (1 << o))
  1820. devc->supported_devices |= (1 << n);
  1821. if (devc->supported_rec_devices & (1 << o))
  1822. devc->supported_rec_devices |= (1 << n);
  1823. devc->supported_devices &= ~(1 << o);
  1824. devc->supported_rec_devices &= ~(1 << o);
  1825. }
  1826. break;
  1827. }
  1828. return 0;
  1829. }
  1830. void ad1848_unload(int io_base, int irq, int dma_playback, int dma_capture, int share_dma)
  1831. {
  1832. int i, mixer, dev = 0;
  1833. ad1848_info *devc = NULL;
  1834. for (i = 0; devc == NULL && i < nr_ad1848_devs; i++)
  1835. {
  1836. if (adev_info[i].base == io_base)
  1837. {
  1838. devc = &adev_info[i];
  1839. dev = devc->dev_no;
  1840. }
  1841. }
  1842. if (devc != NULL)
  1843. {
  1844. if(audio_devs[dev]->portc!=NULL)
  1845. kfree(audio_devs[dev]->portc);
  1846. release_region(devc->base, 4);
  1847. if (!share_dma)
  1848. {
  1849. if (devc->irq > 0) /* There is no point in freeing irq, if it wasn't allocated */
  1850. free_irq(devc->irq, (void *)devc->dev_no);
  1851. sound_free_dma(dma_playback);
  1852. if (dma_playback != dma_capture)
  1853. sound_free_dma(dma_capture);
  1854. }
  1855. mixer = audio_devs[devc->dev_no]->mixer_dev;
  1856. if(mixer>=0)
  1857. sound_unload_mixerdev(mixer);
  1858. if (devc->pmdev)
  1859. pm_unregister(devc->pmdev);
  1860. nr_ad1848_devs--;
  1861. for ( ; i < nr_ad1848_devs ; i++)
  1862. adev_info[i] = adev_info[i+1];
  1863. }
  1864. else
  1865. printk(KERN_ERR "ad1848: Can't find device to be unloaded. Base=%xn", io_base);
  1866. }
  1867. void adintr(int irq, void *dev_id, struct pt_regs *dummy)
  1868. {
  1869. unsigned char status;
  1870. ad1848_info *devc;
  1871. int dev;
  1872. int alt_stat = 0xff;
  1873. unsigned char c930_stat = 0;
  1874. int cnt = 0;
  1875. dev = (int)dev_id;
  1876. devc = (ad1848_info *) audio_devs[dev]->devc;
  1877. interrupt_again: /* Jump back here if int status doesn't reset */
  1878. status = inb(io_Status(devc));
  1879. if (status == 0x80)
  1880. printk(KERN_DEBUG "adintr: Why?n");
  1881. if (devc->model == MD_1848)
  1882. outb((0), io_Status(devc)); /* Clear interrupt status */
  1883. if (status & 0x01)
  1884. {
  1885. if (devc->model == MD_C930)
  1886. { /* 82C930 has interrupt status register in MAD16 register MC11 */
  1887. unsigned long   flags;
  1888. save_flags(flags);
  1889. cli();
  1890. /* 0xe0e is C930 address port
  1891.  * 0xe0f is C930 data port
  1892.  */
  1893. outb(11, 0xe0e);
  1894. c930_stat = inb(0xe0f);
  1895. outb((~c930_stat), 0xe0f);
  1896. restore_flags(flags);
  1897. alt_stat = (c930_stat << 2) & 0x30;
  1898. }
  1899. else if (devc->model != MD_1848)
  1900. {
  1901. alt_stat = ad_read(devc, 24);
  1902. ad_write(devc, 24, ad_read(devc, 24) & ~alt_stat); /* Selective ack */
  1903. }
  1904. if ((devc->open_mode & OPEN_READ) && (devc->audio_mode & PCM_ENABLE_INPUT) && (alt_stat & 0x20))
  1905. {
  1906. DMAbuf_inputintr(devc->record_dev);
  1907. }
  1908. if ((devc->open_mode & OPEN_WRITE) && (devc->audio_mode & PCM_ENABLE_OUTPUT) &&
  1909.       (alt_stat & 0x10))
  1910. {
  1911. DMAbuf_outputintr(devc->playback_dev, 1);
  1912. }
  1913. if (devc->model != MD_1848 && (alt_stat & 0x40)) /* Timer interrupt */
  1914. {
  1915. devc->timer_ticks++;
  1916. #ifndef EXCLUDE_TIMERS
  1917. if (timer_installed == dev && devc->timer_running)
  1918. sound_timer_interrupt();
  1919. #endif
  1920. }
  1921. }
  1922. /*
  1923.  * Sometimes playback or capture interrupts occur while a timer interrupt
  1924.  * is being handled. The interrupt will not be retriggered if we don't
  1925.  * handle it now. Check if an interrupt is still pending and restart
  1926.  * the handler in this case.
  1927.  */
  1928. if (inb(io_Status(devc)) & 0x01 && cnt++ < 4)
  1929. {
  1930.   goto interrupt_again;
  1931. }
  1932. }
  1933. /*
  1934.  * Experimental initialization sequence for the integrated sound system
  1935.  * of the Compaq Deskpro M.
  1936.  */
  1937. static int init_deskpro_m(struct address_info *hw_config)
  1938. {
  1939. unsigned char   tmp;
  1940. if ((tmp = inb(0xc44)) == 0xff)
  1941. {
  1942. DDB(printk("init_deskpro_m: Dead port 0xc44n"));
  1943. return 0;
  1944. }
  1945. outb(0x10, 0xc44);
  1946. outb(0x40, 0xc45);
  1947. outb(0x00, 0xc46);
  1948. outb(0xe8, 0xc47);
  1949. outb(0x14, 0xc44);
  1950. outb(0x40, 0xc45);
  1951. outb(0x00, 0xc46);
  1952. outb(0xe8, 0xc47);
  1953. outb(0x10, 0xc44);
  1954. return 1;
  1955. }
  1956. /*
  1957.  * Experimental initialization sequence for the integrated sound system
  1958.  * of Compaq Deskpro XL.
  1959.  */
  1960. static int init_deskpro(struct address_info *hw_config)
  1961. {
  1962. unsigned char   tmp;
  1963. if ((tmp = inb(0xc44)) == 0xff)
  1964. {
  1965. DDB(printk("init_deskpro: Dead port 0xc44n"));
  1966. return 0;
  1967. }
  1968. outb((tmp | 0x04), 0xc44); /* Select bank 1 */
  1969. if (inb(0xc44) != 0x04)
  1970. {
  1971. DDB(printk("init_deskpro: Invalid bank1 signature in port 0xc44n"));
  1972. return 0;
  1973. }
  1974. /*
  1975.  * OK. It looks like a Deskpro so let's proceed.
  1976.  */
  1977. /*
  1978.  * I/O port 0xc44 Audio configuration register.
  1979.  *
  1980.  * bits 0xc0:   Audio revision bits
  1981.  *              0x00 = Compaq Business Audio
  1982.  *              0x40 = MS Sound System Compatible (reset default)
  1983.  *              0x80 = Reserved
  1984.  *              0xc0 = Reserved
  1985.  * bit 0x20:    No Wait State Enable
  1986.  *              0x00 = Disabled (reset default, DMA mode)
  1987.  *              0x20 = Enabled (programmed I/O mode)
  1988.  * bit 0x10:    MS Sound System Decode Enable
  1989.  *              0x00 = Decoding disabled (reset default)
  1990.  *              0x10 = Decoding enabled
  1991.  * bit 0x08:    FM Synthesis Decode Enable
  1992.  *              0x00 = Decoding Disabled (reset default)
  1993.  *              0x08 = Decoding enabled
  1994.  * bit 0x04     Bank select
  1995.  *              0x00 = Bank 0
  1996.  *              0x04 = Bank 1
  1997.  * bits 0x03    MSS Base address
  1998.  *              0x00 = 0x530 (reset default)
  1999.  *              0x01 = 0x604
  2000.  *              0x02 = 0xf40
  2001.  *              0x03 = 0xe80
  2002.  */
  2003. #ifdef DEBUGXL
  2004. /* Debug printing */
  2005. printk("Port 0xc44 (before): ");
  2006. outb((tmp & ~0x04), 0xc44);
  2007. printk("%02x ", inb(0xc44));
  2008. outb((tmp | 0x04), 0xc44);
  2009. printk("%02xn", inb(0xc44));
  2010. #endif
  2011. /* Set bank 1 of the register */
  2012. tmp = 0x58; /* MSS Mode, MSS&FM decode enabled */
  2013. switch (hw_config->io_base)
  2014. {
  2015. case 0x530:
  2016. tmp |= 0x00;
  2017. break;
  2018. case 0x604:
  2019. tmp |= 0x01;
  2020. break;
  2021. case 0xf40:
  2022. tmp |= 0x02;
  2023. break;
  2024. case 0xe80:
  2025. tmp |= 0x03;
  2026. break;
  2027. default:
  2028. DDB(printk("init_deskpro: Invalid MSS port %xn", hw_config->io_base));
  2029. return 0;
  2030. }
  2031. outb((tmp & ~0x04), 0xc44); /* Write to bank=0 */
  2032. #ifdef DEBUGXL
  2033. /* Debug printing */
  2034. printk("Port 0xc44 (after): ");
  2035. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2036. printk("%02x ", inb(0xc44));
  2037. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2038. printk("%02xn", inb(0xc44));
  2039. #endif
  2040. /*
  2041.  * I/O port 0xc45 FM Address Decode/MSS ID Register.
  2042.  *
  2043.  * bank=0, bits 0xfe:   FM synthesis Decode Compare bits 7:1 (default=0x88)
  2044.  * bank=0, bit 0x01:    SBIC Power Control Bit
  2045.  *                      0x00 = Powered up
  2046.  *                      0x01 = Powered down
  2047.  * bank=1, bits 0xfc:   MSS ID (default=0x40)
  2048.  */
  2049. #ifdef DEBUGXL
  2050. /* Debug printing */
  2051. printk("Port 0xc45 (before): ");
  2052. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2053. printk("%02x ", inb(0xc45));
  2054. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2055. printk("%02xn", inb(0xc45));
  2056. #endif
  2057. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2058. outb((0x88), 0xc45); /* FM base 7:0 = 0x88 */
  2059. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2060. outb((0x10), 0xc45); /* MSS ID = 0x10 (MSS port returns 0x04) */
  2061. #ifdef DEBUGXL
  2062. /* Debug printing */
  2063. printk("Port 0xc45 (after): ");
  2064. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2065. printk("%02x ", inb(0xc45));
  2066. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2067. printk("%02xn", inb(0xc45));
  2068. #endif
  2069. /*
  2070.  * I/O port 0xc46 FM Address Decode/Address ASIC Revision Register.
  2071.  *
  2072.  * bank=0, bits 0xff:   FM synthesis Decode Compare bits 15:8 (default=0x03)
  2073.  * bank=1, bits 0xff:   Audio addressing ASIC id
  2074.  */
  2075. #ifdef DEBUGXL
  2076. /* Debug printing */
  2077. printk("Port 0xc46 (before): ");
  2078. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2079. printk("%02x ", inb(0xc46));
  2080. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2081. printk("%02xn", inb(0xc46));
  2082. #endif
  2083. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2084. outb((0x03), 0xc46); /* FM base 15:8 = 0x03 */
  2085. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2086. outb((0x11), 0xc46); /* ASIC ID = 0x11 */
  2087. #ifdef DEBUGXL
  2088. /* Debug printing */
  2089. printk("Port 0xc46 (after): ");
  2090. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2091. printk("%02x ", inb(0xc46));
  2092. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2093. printk("%02xn", inb(0xc46));
  2094. #endif
  2095. /*
  2096.  * I/O port 0xc47 FM Address Decode Register.
  2097.  *
  2098.  * bank=0, bits 0xff:   Decode enable selection for various FM address bits
  2099.  * bank=1, bits 0xff:   Reserved
  2100.  */
  2101. #ifdef DEBUGXL
  2102. /* Debug printing */
  2103. printk("Port 0xc47 (before): ");
  2104. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2105. printk("%02x ", inb(0xc47));
  2106. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2107. printk("%02xn", inb(0xc47));
  2108. #endif
  2109. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2110. outb((0x7c), 0xc47); /* FM decode enable bits = 0x7c */
  2111. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2112. outb((0x00), 0xc47); /* Reserved bank1 = 0x00 */
  2113. #ifdef DEBUGXL
  2114. /* Debug printing */
  2115. printk("Port 0xc47 (after): ");
  2116. outb((tmp & ~0x04), 0xc44); /* Select bank=0 */
  2117. printk("%02x ", inb(0xc47));
  2118. outb((tmp | 0x04), 0xc44); /* Select bank=1 */
  2119. printk("%02xn", inb(0xc47));
  2120. #endif
  2121. /*
  2122.  * I/O port 0xc6f = Audio Disable Function Register
  2123.  */
  2124. #ifdef DEBUGXL
  2125. printk("Port 0xc6f (before) = %02xn", inb(0xc6f));
  2126. #endif
  2127. outb((0x80), 0xc6f);
  2128. #ifdef DEBUGXL
  2129. printk("Port 0xc6f (after) = %02xn", inb(0xc6f));
  2130. #endif
  2131. return 1;
  2132. }
  2133. int probe_ms_sound(struct address_info *hw_config)
  2134. {
  2135. unsigned char   tmp;
  2136. DDB(printk("Entered probe_ms_sound(%x, %d)n", hw_config->io_base, hw_config->card_subtype));
  2137. if (check_region(hw_config->io_base, 8))
  2138. {
  2139. printk(KERN_ERR "MSS: I/O port conflictn");
  2140. return 0;
  2141. }
  2142. if (hw_config->card_subtype == 1) /* Has no IRQ/DMA registers */
  2143. {
  2144. /* check_opl3(0x388, hw_config); */
  2145. return ad1848_detect(hw_config->io_base + 4, NULL, hw_config->osp);
  2146. }
  2147. if (deskpro_xl && hw_config->card_subtype == 2) /* Compaq Deskpro XL */
  2148. {
  2149. if (!init_deskpro(hw_config))
  2150. return 0;
  2151. }
  2152. if (deskpro_m) /* Compaq Deskpro M */
  2153. {
  2154. if (!init_deskpro_m(hw_config))
  2155. return 0;
  2156. }
  2157. /*
  2158.    * Check if the IO port returns valid signature. The original MS Sound
  2159.    * system returns 0x04 while some cards (AudioTrix Pro for example)
  2160.    * return 0x00 or 0x0f.
  2161.  */
  2162. if ((tmp = inb(hw_config->io_base + 3)) == 0xff) /* Bus float */
  2163. {
  2164.   int             ret;
  2165.   DDB(printk("I/O address is inactive (%x)n", tmp));
  2166.   if (!(ret = ad1848_detect(hw_config->io_base + 4, NULL, hw_config->osp)))
  2167.   return 0;
  2168.   return 1;
  2169. }
  2170. DDB(printk("MSS signature = %xn", tmp & 0x3f));
  2171. if ((tmp & 0x3f) != 0x04 &&
  2172.     (tmp & 0x3f) != 0x0f &&
  2173.     (tmp & 0x3f) != 0x00)
  2174. {
  2175. int ret;
  2176. MDB(printk(KERN_ERR "No MSS signature detected on port 0x%x (0x%x)n", hw_config->io_base, (int) inb(hw_config->io_base + 3)));
  2177. DDB(printk("Trying to detect codec anyway but IRQ/DMA may not workn"));
  2178. if (!(ret = ad1848_detect(hw_config->io_base + 4, NULL, hw_config->osp)))
  2179. return 0;
  2180. hw_config->card_subtype = 1;
  2181. return 1;
  2182. }
  2183. if ((hw_config->irq != 5)  &&
  2184.     (hw_config->irq != 7)  &&
  2185.     (hw_config->irq != 9)  &&
  2186.     (hw_config->irq != 10) &&
  2187.     (hw_config->irq != 11) &&
  2188.     (hw_config->irq != 12))
  2189. {
  2190. printk(KERN_ERR "MSS: Bad IRQ %dn", hw_config->irq);
  2191. return 0;
  2192. }
  2193. if (hw_config->dma != 0 && hw_config->dma != 1 && hw_config->dma != 3)
  2194. {
  2195.   printk(KERN_ERR "MSS: Bad DMA %dn", hw_config->dma);
  2196.   return 0;
  2197. }
  2198. /*
  2199.  * Check that DMA0 is not in use with a 8 bit board.
  2200.  */
  2201. if (hw_config->dma == 0 && inb(hw_config->io_base + 3) & 0x80)
  2202. {
  2203. printk(KERN_ERR "MSS: Can't use DMA0 with a 8 bit card/slotn");
  2204. return 0;
  2205. }
  2206. if (hw_config->irq > 7 && hw_config->irq != 9 && inb(hw_config->io_base + 3) & 0x80)
  2207. {
  2208. printk(KERN_ERR "MSS: Can't use IRQ%d with a 8 bit card/slotn", hw_config->irq);
  2209. return 0;
  2210. }
  2211. return ad1848_detect(hw_config->io_base + 4, NULL, hw_config->osp);
  2212. }
  2213. void attach_ms_sound(struct address_info *hw_config, struct module *owner)
  2214. {
  2215. static signed char interrupt_bits[12] =
  2216. {
  2217. -1, -1, -1, -1, -1, 0x00, -1, 0x08, -1, 0x10, 0x18, 0x20
  2218. };
  2219. signed char     bits;
  2220. char            dma2_bit = 0;
  2221. static char     dma_bits[4] =
  2222. {
  2223. 1, 2, 0, 3
  2224. };
  2225. int config_port = hw_config->io_base + 0;
  2226. int version_port = hw_config->io_base + 3;
  2227. int dma = hw_config->dma;
  2228. int dma2 = hw_config->dma2;
  2229. if (hw_config->card_subtype == 1) /* Has no IRQ/DMA registers */
  2230. {
  2231. hw_config->slots[0] = ad1848_init("MS Sound System", hw_config->io_base + 4,
  2232.     hw_config->irq,
  2233.     hw_config->dma,
  2234.     hw_config->dma2, 0, 
  2235.     hw_config->osp,
  2236.     owner);
  2237. request_region(hw_config->io_base, 4, "WSS config");
  2238. return;
  2239. }
  2240. /*
  2241.  * Set the IRQ and DMA addresses.
  2242.  */
  2243. bits = interrupt_bits[hw_config->irq];
  2244. if (bits == -1)
  2245. {
  2246. printk(KERN_ERR "MSS: Bad IRQ %dn", hw_config->irq);
  2247. return;
  2248. }
  2249. outb((bits | 0x40), config_port);
  2250. if ((inb(version_port) & 0x40) == 0)
  2251. printk(KERN_ERR "[MSS: IRQ Conflict?]n");
  2252. /*
  2253.  * Handle the capture DMA channel
  2254.  */
  2255. if (dma2 != -1 && dma2 != dma)
  2256. {
  2257. if (!((dma == 0 && dma2 == 1) ||
  2258. (dma == 1 && dma2 == 0) ||
  2259. (dma == 3 && dma2 == 0)))
  2260. { /* Unsupported combination. Try to swap channels */
  2261. int tmp = dma;
  2262. dma = dma2;
  2263. dma2 = tmp;
  2264. }
  2265. if ((dma == 0 && dma2 == 1) ||
  2266. (dma == 1 && dma2 == 0) ||
  2267. (dma == 3 && dma2 == 0))
  2268. {
  2269. dma2_bit = 0x04; /* Enable capture DMA */
  2270. }
  2271. else
  2272. {
  2273. printk(KERN_WARNING "MSS: Invalid capture DMAn");
  2274. dma2 = dma;
  2275. }
  2276. }
  2277. else
  2278. {
  2279. dma2 = dma;
  2280. }
  2281. hw_config->dma = dma;
  2282. hw_config->dma2 = dma2;
  2283. outb((bits | dma_bits[dma] | dma2_bit), config_port); /* Write IRQ+DMA setup */
  2284. hw_config->slots[0] = ad1848_init("MS Sound System", hw_config->io_base + 4,
  2285.   hw_config->irq,
  2286.   dma, dma2, 0,
  2287.   hw_config->osp,
  2288.   THIS_MODULE);
  2289. request_region(hw_config->io_base, 4, "WSS config");
  2290. }
  2291. void unload_ms_sound(struct address_info *hw_config)
  2292. {
  2293. ad1848_unload(hw_config->io_base + 4,
  2294.       hw_config->irq,
  2295.       hw_config->dma,
  2296.       hw_config->dma2, 0);
  2297. sound_unload_audiodev(hw_config->slots[0]);
  2298. release_region(hw_config->io_base, 4);
  2299. }
  2300. #ifndef EXCLUDE_TIMERS
  2301. /*
  2302.  * Timer stuff (for /dev/music).
  2303.  */
  2304. static unsigned int current_interval = 0;
  2305. static unsigned int ad1848_tmr_start(int dev, unsigned int usecs)
  2306. {
  2307. unsigned long   flags;
  2308. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  2309. unsigned long   xtal_nsecs; /* nanoseconds per xtal oscillator tick */
  2310. unsigned long   divider;
  2311. save_flags(flags);
  2312. cli();
  2313. /*
  2314.  * Length of the timer interval (in nanoseconds) depends on the
  2315.  * selected crystal oscillator. Check this from bit 0x01 of I8.
  2316.  *
  2317.  * AD1845 has just one oscillator which has cycle time of 10.050 us
  2318.  * (when a 24.576 MHz xtal oscillator is used).
  2319.  *
  2320.  * Convert requested interval to nanoseconds before computing
  2321.  * the timer divider.
  2322.  */
  2323. if (devc->model == MD_1845 || devc->model == MD_1845_SSCAPE)
  2324. xtal_nsecs = 10050;
  2325. else if (ad_read(devc, 8) & 0x01)
  2326. xtal_nsecs = 9920;
  2327. else
  2328. xtal_nsecs = 9969;
  2329. divider = (usecs * 1000 + xtal_nsecs / 2) / xtal_nsecs;
  2330. if (divider < 100) /* Don't allow shorter intervals than about 1ms */
  2331. divider = 100;
  2332. if (divider > 65535) /* Overflow check */
  2333. divider = 65535;
  2334. ad_write(devc, 21, (divider >> 8) & 0xff); /* Set upper bits */
  2335. ad_write(devc, 20, divider & 0xff); /* Set lower bits */
  2336. ad_write(devc, 16, ad_read(devc, 16) | 0x40); /* Start the timer */
  2337. devc->timer_running = 1;
  2338. restore_flags(flags);
  2339. return current_interval = (divider * xtal_nsecs + 500) / 1000;
  2340. }
  2341. static void ad1848_tmr_reprogram(int dev)
  2342. {
  2343. /*
  2344.  *    Audio driver has changed sampling rate so that a different xtal
  2345.  *      oscillator was selected. We have to reprogram the timer rate.
  2346.  */
  2347. ad1848_tmr_start(dev, current_interval);
  2348. sound_timer_syncinterval(current_interval);
  2349. }
  2350. static void ad1848_tmr_disable(int dev)
  2351. {
  2352. unsigned long   flags;
  2353. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  2354. save_flags(flags);
  2355. cli();
  2356. ad_write(devc, 16, ad_read(devc, 16) & ~0x40);
  2357. devc->timer_running = 0;
  2358. restore_flags(flags);
  2359. }
  2360. static void ad1848_tmr_restart(int dev)
  2361. {
  2362. unsigned long   flags;
  2363. ad1848_info    *devc = (ad1848_info *) audio_devs[dev]->devc;
  2364. if (current_interval == 0)
  2365. return;
  2366. save_flags(flags);
  2367. cli();
  2368. ad_write(devc, 16, ad_read(devc, 16) | 0x40);
  2369. devc->timer_running = 1;
  2370. restore_flags(flags);
  2371. }
  2372. static struct sound_lowlev_timer ad1848_tmr =
  2373. {
  2374. 0,
  2375. 2,
  2376. ad1848_tmr_start,
  2377. ad1848_tmr_disable,
  2378. ad1848_tmr_restart
  2379. };
  2380. static int ad1848_tmr_install(int dev)
  2381. {
  2382. if (timer_installed != -1)
  2383. return 0; /* Don't install another timer */
  2384. timer_installed = ad1848_tmr.dev = dev;
  2385. sound_timer_init(&ad1848_tmr, audio_devs[dev]->name);
  2386. return 1;
  2387. }
  2388. #endif /* EXCLUDE_TIMERS */
  2389. static int ad1848_suspend(ad1848_info *devc)
  2390. {
  2391. unsigned long flags;
  2392. save_flags(flags);
  2393. cli();
  2394. ad_mute(devc);
  2395. restore_flags(flags);
  2396. return 0;
  2397. }
  2398. static int ad1848_resume(ad1848_info *devc)
  2399. {
  2400. unsigned long flags;
  2401. int mixer_levels[32], i;
  2402. save_flags(flags);
  2403. cli();
  2404. /* Thinkpad is a bit more of PITA than normal. The BIOS tends to
  2405.    restore it in a different config to the one we use.  Need to
  2406.    fix this somehow */
  2407. /* store old mixer levels */
  2408. memcpy(mixer_levels, devc->levels, sizeof (mixer_levels));  
  2409. ad1848_init_hw(devc);
  2410. /* restore mixer levels */
  2411. for (i = 0; i < 32; i++)
  2412. ad1848_mixer_set(devc, devc->dev_no, mixer_levels[i]);
  2413. if (!devc->subtype) {
  2414. static signed char interrupt_bits[12] = { -1, -1, -1, -1, -1, 0x00, -1, 0x08, -1, 0x10, 0x18, 0x20 };
  2415. static char dma_bits[4] = { 1, 2, 0, 3 };
  2416. signed char bits;
  2417. char dma2_bit = 0;
  2418. int config_port = devc->base + 0;
  2419. bits = interrupt_bits[devc->irq];
  2420. if (bits == -1) {
  2421. printk(KERN_ERR "MSS: Bad IRQ %dn", devc->irq);
  2422. restore_flags(flags);
  2423. return -1;
  2424. }
  2425. outb((bits | 0x40), config_port); 
  2426. if (devc->dma2 != -1 && devc->dma2 != devc->dma1)
  2427. if ( (devc->dma1 == 0 && devc->dma2 == 1) ||
  2428.      (devc->dma1 == 1 && devc->dma2 == 0) ||
  2429.      (devc->dma1 == 3 && devc->dma2 == 0))
  2430. dma2_bit = 0x04;
  2431. outb((bits | dma_bits[devc->dma1] | dma2_bit), config_port);
  2432. }
  2433. restore_flags(flags);
  2434.        return 0;
  2435. }
  2436. static int ad1848_pm_callback(struct pm_dev *dev, pm_request_t rqst, void *data) 
  2437. {
  2438. ad1848_info *devc = dev->data;
  2439. if (devc) {
  2440. DEB(printk("ad1848: pm event received: 0x%xn", rqst));
  2441. switch (rqst) {
  2442. case PM_SUSPEND:
  2443. ad1848_suspend(devc);
  2444. break;
  2445. case PM_RESUME:
  2446. ad1848_resume(devc);
  2447. break;
  2448. }
  2449. }
  2450. return 0;
  2451. }
  2452. EXPORT_SYMBOL(ad1848_detect);
  2453. EXPORT_SYMBOL(ad1848_init);
  2454. EXPORT_SYMBOL(ad1848_unload);
  2455. EXPORT_SYMBOL(ad1848_control);
  2456. EXPORT_SYMBOL(adintr);
  2457. EXPORT_SYMBOL(probe_ms_sound);
  2458. EXPORT_SYMBOL(attach_ms_sound);
  2459. EXPORT_SYMBOL(unload_ms_sound);
  2460. static int __initdata io = -1;
  2461. static int __initdata irq = -1;
  2462. static int __initdata dma = -1;
  2463. static int __initdata dma2 = -1;
  2464. static int __initdata type = 0;
  2465. MODULE_PARM(io, "i");                   /* I/O for a raw AD1848 card */
  2466. MODULE_PARM(irq, "i");                  /* IRQ to use */
  2467. MODULE_PARM(dma, "i");                  /* First DMA channel */
  2468. MODULE_PARM(dma2, "i");                 /* Second DMA channel */
  2469. MODULE_PARM(type, "i");                 /* Card type */
  2470. MODULE_PARM(deskpro_xl, "i");           /* Special magic for Deskpro XL boxen */
  2471. MODULE_PARM(deskpro_m, "i");            /* Special magic for Deskpro M box */
  2472. MODULE_PARM(soundpro, "i");             /* More special magic for SoundPro chips */
  2473. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  2474. MODULE_PARM(isapnp, "i");
  2475. MODULE_PARM(isapnpjump, "i");
  2476. MODULE_PARM(reverse, "i");
  2477. MODULE_PARM_DESC(isapnp, "When set to 0, Plug & Play support will be disabled");
  2478. MODULE_PARM_DESC(isapnpjump, "Jumps to a specific slot in the driver's PnP table. Use the source, Luke.");
  2479. MODULE_PARM_DESC(reverse, "When set to 1, will reverse ISAPnP search order");
  2480. struct pci_dev *ad1848_dev  = NULL;
  2481. /* Please add new entries at the end of the table */
  2482. static struct {
  2483. char *name;
  2484. unsigned short card_vendor, card_device,
  2485. vendor, function;
  2486. short mss_io, irq, dma, dma2;   /* index into isapnp table */
  2487.         int type;
  2488. } ad1848_isapnp_list[] __initdata = {
  2489. {"CMI 8330 SoundPRO",
  2490. ISAPNP_VENDOR('C','M','I'), ISAPNP_DEVICE(0x0001),
  2491. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001),
  2492. 0, 0, 0,-1, 0},
  2493.         {"CS4232 based card",
  2494.                 ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  2495. ISAPNP_VENDOR('C','S','C'), ISAPNP_FUNCTION(0x0000),
  2496. 0, 0, 0, 1, 0},
  2497.         {"CS4232 based card",
  2498.                 ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  2499. ISAPNP_VENDOR('C','S','C'), ISAPNP_FUNCTION(0x0100),
  2500. 0, 0, 0, 1, 0},
  2501.         {"OPL3-SA2 WSS mode",
  2502.          ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  2503. ISAPNP_VENDOR('Y','M','H'), ISAPNP_FUNCTION(0x0021),
  2504.                 1, 0, 0, 1, 1},
  2505. {0}
  2506. };
  2507. static struct isapnp_device_id id_table[] __devinitdata = {
  2508. { ISAPNP_VENDOR('C','M','I'), ISAPNP_DEVICE(0x0001),
  2509. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001), 0 },
  2510.         {       ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  2511. ISAPNP_VENDOR('C','S','C'), ISAPNP_FUNCTION(0x0000), 0 },
  2512.         {       ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  2513. ISAPNP_VENDOR('C','S','C'), ISAPNP_FUNCTION(0x0100), 0 },
  2514.         {       ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  2515. ISAPNP_VENDOR('Y','M','H'), ISAPNP_FUNCTION(0x0021), 0 },
  2516. {0}
  2517. };
  2518. MODULE_DEVICE_TABLE(isapnp, id_table);
  2519. static struct pci_dev *activate_dev(char *devname, char *resname, struct pci_dev *dev)
  2520. {
  2521. int err;
  2522. /* Device already active? Let's use it */
  2523. if(dev->active)
  2524. return(dev);
  2525. if((err = dev->activate(dev)) < 0) {
  2526. printk(KERN_ERR "ad1848: %s %s config failed (out of resources?)[%d]n", devname, resname, err);
  2527. dev->deactivate(dev);
  2528. return(NULL);
  2529. }
  2530. return(dev);
  2531. }
  2532. static struct pci_dev *ad1848_init_generic(struct pci_dev *dev, struct address_info *hw_config, int slot)
  2533. {
  2534. /* Configure Audio device, point ad1848_dev to device found */
  2535. if((ad1848_dev = dev))
  2536. {
  2537. int ret;
  2538. ret = ad1848_dev->prepare(ad1848_dev);
  2539. /* If device is active, assume configured with /proc/isapnp
  2540.  * and use anyway. Some other way to check this? */
  2541. if(ret && ret != -EBUSY) {
  2542. printk(KERN_ERR "ad1848: ISAPnP found device that could not be autoconfigured.n");
  2543. return(NULL);
  2544. }
  2545. if(ret == -EBUSY)
  2546. audio_activated = 1;
  2547. if((ad1848_dev = activate_dev(ad1848_isapnp_list[slot].name, "ad1848", ad1848_dev)))
  2548. {
  2549. hw_config->io_base  = ad1848_dev->resource[ad1848_isapnp_list[slot].mss_io].start;
  2550. hw_config->irq  = ad1848_dev->irq_resource[ad1848_isapnp_list[slot].irq].start;
  2551. hw_config->dma  = ad1848_dev->dma_resource[ad1848_isapnp_list[slot].dma].start;
  2552. if(ad1848_isapnp_list[slot].dma2 != -1)
  2553. hw_config->dma2 = ad1848_dev->dma_resource[ad1848_isapnp_list[slot].dma2].start;
  2554. else
  2555. hw_config->dma2 = -1;
  2556.                         hw_config->card_subtype = ad1848_isapnp_list[slot].type;
  2557. } else
  2558. return(NULL);
  2559. } else
  2560. return(NULL);
  2561. return(ad1848_dev);
  2562. }
  2563. static int __init ad1848_isapnp_init(struct address_info *hw_config, struct pci_dev *dev, int slot)
  2564. {
  2565. char *devname = dev->name[0] ? dev->name : ad1848_isapnp_list[slot].name;
  2566. printk(KERN_INFO "ad1848: %s detectedn", devname);
  2567. /* Initialize this baby. */
  2568. if(ad1848_init_generic(dev, hw_config, slot)) {
  2569. /* We got it. */
  2570. printk(KERN_NOTICE "ad1848: ISAPnP reports '%s' at i/o %#x, irq %d, dma %d, %dn",
  2571.        devname,
  2572.        hw_config->io_base, hw_config->irq, hw_config->dma,
  2573.        hw_config->dma2);
  2574. return 1;
  2575. }
  2576. else
  2577. printk(KERN_INFO "ad1848: Failed to initialize %sn", devname);
  2578. return 0;
  2579. }
  2580. static int __init ad1848_isapnp_probe(struct address_info *hw_config)
  2581. {
  2582. static int first = 1;
  2583. int i;
  2584. /* Count entries in sb_isapnp_list */
  2585. for (i = 0; ad1848_isapnp_list[i].card_vendor != 0; i++);
  2586. i--;
  2587. /* Check and adjust isapnpjump */
  2588. if( isapnpjump < 0 || isapnpjump > i) {
  2589. isapnpjump = reverse ? i : 0;
  2590. printk(KERN_ERR "ad1848: Valid range for isapnpjump is 0-%d. Adjusted to %d.n", i, isapnpjump);
  2591. }
  2592. if(!first || !reverse)
  2593. i = isapnpjump;
  2594. first = 0;
  2595. while(ad1848_isapnp_list[i].card_vendor != 0) {
  2596. static struct pci_dev *dev = NULL;
  2597. while ((dev = isapnp_find_dev(NULL,
  2598. ad1848_isapnp_list[i].vendor,
  2599. ad1848_isapnp_list[i].function,
  2600. NULL))) {
  2601. if(ad1848_isapnp_init(hw_config, dev, i)) {
  2602. isapnpjump = i; /* start next search from here */
  2603. return 0;
  2604. }
  2605. }
  2606. i += reverse ? -1 : 1;
  2607. }
  2608. return -ENODEV;
  2609. }
  2610. #endif
  2611. static int __init init_ad1848(void)
  2612. {
  2613. printk(KERN_INFO "ad1848/cs4248 codec driver Copyright (C) by Hannu Savolainen 1993-1996n");
  2614. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  2615. if(isapnp && (ad1848_isapnp_probe(&cfg) < 0) ) {
  2616. printk(KERN_NOTICE "ad1848: No ISAPnP cards found, trying standard ones...n");
  2617. isapnp = 0;
  2618. }
  2619. #endif
  2620. if(io != -1) {
  2621.         if( isapnp == 0 )
  2622.         {
  2623. if(irq == -1 || dma == -1) {
  2624. printk(KERN_WARNING "ad1848: must give I/O , IRQ and DMA.n");
  2625. return -EINVAL;
  2626. }
  2627. cfg.irq = irq;
  2628. cfg.io_base = io;
  2629. cfg.dma = dma;
  2630. cfg.dma2 = dma2;
  2631. cfg.card_subtype = type;
  2632.         }
  2633. if(!probe_ms_sound(&cfg))
  2634. return -ENODEV;
  2635. attach_ms_sound(&cfg, THIS_MODULE);
  2636. loaded = 1;
  2637. }
  2638. return 0;
  2639. }
  2640. static void __exit cleanup_ad1848(void)
  2641. {
  2642. if(loaded)
  2643. unload_ms_sound(&cfg);
  2644. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  2645. if(audio_activated)
  2646. if(ad1848_dev)
  2647. ad1848_dev->deactivate(ad1848_dev);
  2648. #endif
  2649. }
  2650. module_init(init_ad1848);
  2651. module_exit(cleanup_ad1848);
  2652. #ifndef MODULE
  2653. static int __init setup_ad1848(char *str)
  2654. {
  2655.         /* io, irq, dma, dma2, type */
  2656. int ints[6];
  2657. str = get_options(str, ARRAY_SIZE(ints), ints);
  2658. io = ints[1];
  2659. irq = ints[2];
  2660. dma = ints[3];
  2661. dma2 = ints[4];
  2662. type = ints[5];
  2663. return 1;
  2664. }
  2665. __setup("ad1848=", setup_ad1848);
  2666. #endif
  2667. MODULE_LICENSE("GPL");