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

嵌入式Linux

开发平台:

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