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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/sound/waveartist.c
  3.  *
  4.  * The low level driver for the RWA010 Rockwell Wave Artist
  5.  * codec chip used in the Rebel.com NetWinder.
  6.  *
  7.  * Cleaned up and integrated into 2.1 by Russell King (rmk@arm.linux.org.uk)
  8.  * and Pat Beirne (patb@corel.ca)
  9.  *
  10.  *
  11.  * Copyright (C) by Rebel.com 1998-1999
  12.  *
  13.  * RWA010 specs received under NDA from Rockwell
  14.  *
  15.  * Copyright (C) by Hannu Savolainen 1993-1997
  16.  *
  17.  * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
  18.  * Version 2 (June 1991). See the "COPYING" file distributed with this software
  19.  * for more info.
  20.  *
  21.  * Changes:
  22.  * 11-10-2000 Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
  23.  * Added __init to waveartist_init()
  24.  */
  25. /* Debugging */
  26. #define DEBUG_CMD 1
  27. #define DEBUG_OUT 2
  28. #define DEBUG_IN 4
  29. #define DEBUG_INTR 8
  30. #define DEBUG_MIXER 16
  31. #define DEBUG_TRIGGER 32
  32. #define debug_flg (0)
  33. #include <linux/module.h>
  34. #include <linux/init.h>
  35. #include <linux/config.h>
  36. #include <linux/sched.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/delay.h>
  39. #include <linux/spinlock.h>
  40. #include <linux/bitops.h>
  41. #include <asm/system.h>
  42. #include "sound_config.h"
  43. #include "waveartist.h"
  44. #ifdef CONFIG_ARM
  45. #include <asm/hardware.h>
  46. #include <asm/mach-types.h>
  47. #endif
  48. #ifndef NO_DMA
  49. #define NO_DMA 255
  50. #endif
  51. #define SUPPORTED_MIXER_DEVICES (SOUND_MASK_SYNTH      |
  52.  SOUND_MASK_PCM        |
  53.  SOUND_MASK_LINE       |
  54.  SOUND_MASK_MIC        |
  55.  SOUND_MASK_LINE1      |
  56.  SOUND_MASK_RECLEV     |
  57.  SOUND_MASK_VOLUME     |
  58.  SOUND_MASK_IMIX)
  59. static unsigned short levels[SOUND_MIXER_NRDEVICES] = {
  60. 0x5555, /* Master Volume  */
  61. 0x0000, /* Bass  */
  62. 0x0000, /* Treble  */
  63. 0x2323, /* Synth (FM)  */
  64. 0x4b4b, /* PCM  */
  65. 0x6464, /* PC Speaker  */
  66. 0x0000, /* Ext Line  */
  67. 0x0000, /* Mic  */
  68. 0x0000, /* CD  */
  69. 0x6464, /* Recording monitor  */
  70. 0x0000, /* SB PCM (ALT PCM)  */
  71. 0x0000, /* Recording level  */
  72. 0x6464, /* Input gain  */
  73. 0x6464, /* Output gain  */
  74. 0x0000, /* Line1 (Aux1)  */
  75. 0x0000, /* Line2 (Aux2)  */
  76. 0x0000, /* Line3 (Aux3)  */
  77. 0x0000, /* Digital1  */
  78. 0x0000, /* Digital2  */
  79. 0x0000, /* Digital3  */
  80. 0x0000, /* Phone In  */
  81. 0x6464, /* Phone Out  */
  82. 0x0000, /* Video  */
  83. 0x0000, /* Radio  */
  84. 0x0000 /* Monitor  */
  85. };
  86. typedef struct {
  87. struct address_info  hw; /* hardware */
  88. char *chip_name;
  89. int xfer_count;
  90. int audio_mode;
  91. int open_mode;
  92. int audio_flags;
  93. int record_dev;
  94. int playback_dev;
  95. int dev_no;
  96. /* Mixer parameters */
  97. const struct waveartist_mixer_info *mix;
  98. unsigned short *levels;    /* cache of volume settings   */
  99. int recmask;    /* currently enabled recording device! */
  100. #ifdef CONFIG_ARCH_NETWINDER
  101. signed int slider_vol;    /* hardware slider volume     */
  102. unsigned int handset_detect :1;
  103. unsigned int telephone_detect:1;
  104. unsigned int no_autoselect :1;/* handset/telephone autoselects a path */
  105. unsigned int spkr_mute_state :1;/* set by ioctl or autoselect */
  106. unsigned int line_mute_state :1;/* set by ioctl or autoselect */
  107. unsigned int use_slider :1;/* use slider setting for o/p vol */
  108. #endif
  109. } wavnc_info;
  110. /*
  111.  * This is the implementation specific mixer information.
  112.  */
  113. struct waveartist_mixer_info {
  114. unsigned int supported_devs;    /* Supported devices */
  115. unsigned int recording_devs;    /* Recordable devies */
  116. unsigned int stereo_devs;    /* Stereo devices */
  117. unsigned int (*select_input)(wavnc_info *, unsigned int,
  118. unsigned char *, unsigned char *);
  119. int (*decode_mixer)(wavnc_info *, int,
  120. unsigned char, unsigned char);
  121. int (*get_mixer)(wavnc_info *, int);
  122. };
  123. typedef struct wavnc_port_info {
  124. int open_mode;
  125. int speed;
  126. int channels;
  127. int audio_format;
  128. } wavnc_port_info;
  129. static int nr_waveartist_devs;
  130. static wavnc_info adev_info[MAX_AUDIO_DEV];
  131. static spinlock_t waveartist_lock = SPIN_LOCK_UNLOCKED;
  132. #ifndef CONFIG_ARCH_NETWINDER
  133. #define machine_is_netwinder() 0
  134. #else
  135. static struct timer_list vnc_timer;
  136. static void vnc_configure_mixer(wavnc_info *devc, unsigned int input_mask);
  137. static int vnc_private_ioctl(int dev, unsigned int cmd, caddr_t arg);
  138. static void vnc_slider_tick(unsigned long data);
  139. #endif
  140. static inline void
  141. waveartist_set_ctlr(struct address_info *hw, unsigned char clear, unsigned char set)
  142. {
  143. unsigned int ctlr_port = hw->io_base + CTLR;
  144. clear = ~clear & inb(ctlr_port);
  145. outb(clear | set, ctlr_port);
  146. }
  147. /* Toggle IRQ acknowledge line
  148.  */
  149. static inline void
  150. waveartist_iack(wavnc_info *devc)
  151. {
  152. unsigned int ctlr_port = devc->hw.io_base + CTLR;
  153. int old_ctlr;
  154. old_ctlr = inb(ctlr_port) & ~IRQ_ACK;
  155. outb(old_ctlr | IRQ_ACK, ctlr_port);
  156. outb(old_ctlr, ctlr_port);
  157. }
  158. static inline int
  159. waveartist_sleep(int timeout_ms)
  160. {
  161. unsigned int timeout = timeout_ms * 10 * HZ / 100;
  162. do {
  163. set_current_state(TASK_INTERRUPTIBLE);
  164. timeout = schedule_timeout(timeout);
  165. } while (timeout);
  166. return 0;
  167. }
  168. static int
  169. waveartist_reset(wavnc_info *devc)
  170. {
  171. struct address_info *hw = &devc->hw;
  172. unsigned int timeout, res = -1;
  173. waveartist_set_ctlr(hw, -1, RESET);
  174. waveartist_sleep(2);
  175. waveartist_set_ctlr(hw, RESET, 0);
  176. timeout = 500;
  177. do {
  178. mdelay(2);
  179. if (inb(hw->io_base + STATR) & CMD_RF) {
  180. res = inw(hw->io_base + CMDR);
  181. if (res == 0x55aa)
  182. break;
  183. }
  184. } while (--timeout);
  185. if (timeout == 0) {
  186. printk(KERN_WARNING "WaveArtist: reset timeout ");
  187. if (res != (unsigned int)-1)
  188. printk("(res=%04X)", res);
  189. printk("n");
  190. return 1;
  191. }
  192. return 0;
  193. }
  194. /* Helper function to send and receive words
  195.  * from WaveArtist.  It handles all the handshaking
  196.  * and can send or receive multiple words.
  197.  */
  198. static int
  199. waveartist_cmd(wavnc_info *devc,
  200. int nr_cmd, unsigned int *cmd,
  201. int nr_resp, unsigned int *resp)
  202. {
  203. unsigned int io_base = devc->hw.io_base;
  204. unsigned int timed_out = 0;
  205. unsigned int i;
  206. if (debug_flg & DEBUG_CMD) {
  207. printk("waveartist_cmd: cmd=");
  208. for (i = 0; i < nr_cmd; i++)
  209. printk("%04X ", cmd[i]);
  210. printk("n");
  211. }
  212. /*
  213.  * flush any stale command data from the port.
  214.  */
  215. while (inb(io_base + STATR) & CMD_RF) {
  216. unsigned int old_data;
  217. old_data = inw(io_base + CMDR);
  218. printk("waveartist: flushing stale command data: 0x%04x pc=%pn",
  219.        old_data, __builtin_return_address(0));
  220. udelay(10);
  221. }
  222. for (i = 0; !timed_out && i < nr_cmd; i++) {
  223. int count;
  224. for (count = 5000; count; count--)
  225. if (inb(io_base + STATR) & CMD_WE)
  226. break;
  227. if (!count)
  228. timed_out = 1;
  229. else
  230. outw(cmd[i], io_base + CMDR);
  231. }
  232. for (i = 0; !timed_out && i < nr_resp; i++) {
  233. int count;
  234. for (count = 5000; count; count--)
  235. if (inb(io_base + STATR) & CMD_RF)
  236. break;
  237. if (!count)
  238. timed_out = 1;
  239. else
  240. resp[i] = inw(io_base + CMDR);
  241. }
  242. if (debug_flg & DEBUG_CMD && !timed_out) {
  243. printk("waveartist_cmd: resp=");
  244. for (i = 0; i < nr_resp; i++)
  245. printk("%04X ", resp[i]);
  246. printk("n");
  247. }
  248. if (timed_out) {
  249. printk(KERN_ERR "waveartist_cmd: command timed out:");
  250. for (i = 0; i < nr_cmd; i++)
  251. printk(" %04x", cmd[i]);
  252. printk("n");
  253. }
  254. return timed_out ? 1 : 0;
  255. }
  256. /*
  257.  * Send one command word
  258.  */
  259. static inline int
  260. waveartist_cmd1(wavnc_info *devc, unsigned int cmd)
  261. {
  262. return waveartist_cmd(devc, 1, &cmd, 0, NULL);
  263. }
  264. /*
  265.  * Send one command, receive one word
  266.  */
  267. static inline unsigned int
  268. waveartist_cmd1_r(wavnc_info *devc, unsigned int cmd)
  269. {
  270. unsigned int ret;
  271. waveartist_cmd(devc, 1, &cmd, 1, &ret);
  272. return ret;
  273. }
  274. /*
  275.  * Send a double command, receive one
  276.  * word (and throw it away)
  277.  */
  278. static inline int
  279. waveartist_cmd2(wavnc_info *devc, unsigned int cmd, unsigned int arg)
  280. {
  281. unsigned int vals[2];
  282. vals[0] = cmd;
  283. vals[1] = arg;
  284. return waveartist_cmd(devc, 2, vals, 1, vals);
  285. }
  286. /*
  287.  * Send a triple command
  288.  */
  289. static inline int
  290. waveartist_cmd3(wavnc_info *devc, unsigned int cmd,
  291. unsigned int arg1, unsigned int arg2)
  292. {
  293. unsigned int vals[3];
  294. vals[0] = cmd;
  295. vals[1] = arg1;
  296. vals[2] = arg2;
  297. return waveartist_cmd(devc, 3, vals, 0, NULL);
  298. }
  299. static int
  300. waveartist_getrev(wavnc_info *devc, char *rev)
  301. {
  302. unsigned int temp[2];
  303. unsigned int cmd = WACMD_GETREV;
  304. waveartist_cmd(devc, 1, &cmd, 2, temp);
  305. rev[0] = temp[0] >> 8;
  306. rev[1] = temp[0] & 255;
  307. rev[2] = '';
  308. return temp[0];
  309. }
  310. static void waveartist_halt_output(int dev);
  311. static void waveartist_halt_input(int dev);
  312. static void waveartist_halt(int dev);
  313. static void waveartist_trigger(int dev, int state);
  314. static int
  315. waveartist_open(int dev, int mode)
  316. {
  317. wavnc_info *devc;
  318. wavnc_port_info *portc;
  319. unsigned long flags;
  320. if (dev < 0 || dev >= num_audiodevs)
  321. return -ENXIO;
  322. devc  = (wavnc_info *) audio_devs[dev]->devc;
  323. portc = (wavnc_port_info *) audio_devs[dev]->portc;
  324. spin_lock_irqsave(&waveartist_lock, flags);
  325. if (portc->open_mode || (devc->open_mode & mode)) {
  326. spin_unlock_irqrestore(&waveartist_lock, flags);
  327. return -EBUSY;
  328. }
  329. devc->audio_mode  = 0;
  330. devc->open_mode  |= mode;
  331. portc->open_mode  = mode;
  332. waveartist_trigger(dev, 0);
  333. if (mode & OPEN_READ)
  334. devc->record_dev = dev;
  335. if (mode & OPEN_WRITE)
  336. devc->playback_dev = dev;
  337. spin_unlock_irqrestore(&waveartist_lock, flags);
  338. return 0;
  339. }
  340. static void
  341. waveartist_close(int dev)
  342. {
  343. wavnc_info *devc = (wavnc_info *) audio_devs[dev]->devc;
  344. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  345. unsigned long flags;
  346. spin_lock_irqsave(&waveartist_lock, flags);
  347. waveartist_halt(dev);
  348. devc->audio_mode = 0;
  349. devc->open_mode &= ~portc->open_mode;
  350. portc->open_mode = 0;
  351. spin_unlock_irqrestore(&waveartist_lock, flags);
  352. }
  353. static void
  354. waveartist_output_block(int dev, unsigned long buf, int __count, int intrflag)
  355. {
  356. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  357. wavnc_info *devc = (wavnc_info *) audio_devs[dev]->devc;
  358. unsigned long flags;
  359. unsigned int count = __count; 
  360. if (debug_flg & DEBUG_OUT)
  361. printk("waveartist: output block, buf=0x%lx, count=0x%x...n",
  362. buf, count);
  363. /*
  364.  * 16 bit data
  365.  */
  366. if (portc->audio_format & (AFMT_S16_LE | AFMT_S16_BE))
  367. count >>= 1;
  368. if (portc->channels > 1)
  369. count >>= 1;
  370. count -= 1;
  371. if (devc->audio_mode & PCM_ENABLE_OUTPUT &&
  372.     audio_devs[dev]->flags & DMA_AUTOMODE &&
  373.     intrflag &&
  374.     count == devc->xfer_count) {
  375. devc->audio_mode |= PCM_ENABLE_OUTPUT;
  376. return; /*
  377.  * Auto DMA mode on. No need to react
  378.  */
  379. }
  380. spin_lock_irqsave(&waveartist_lock, flags);
  381. /*
  382.  * set sample count
  383.  */
  384. waveartist_cmd2(devc, WACMD_OUTPUTSIZE, count);
  385. devc->xfer_count = count;
  386. devc->audio_mode |= PCM_ENABLE_OUTPUT;
  387. spin_unlock_irqrestore(&waveartist_lock, flags);
  388. }
  389. static void
  390. waveartist_start_input(int dev, unsigned long buf, int __count, int intrflag)
  391. {
  392. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  393. wavnc_info *devc = (wavnc_info *) audio_devs[dev]->devc;
  394. unsigned long flags;
  395. unsigned int count = __count;
  396. if (debug_flg & DEBUG_IN)
  397. printk("waveartist: start input, buf=0x%lx, count=0x%x...n",
  398. buf, count);
  399. if (portc->audio_format & (AFMT_S16_LE | AFMT_S16_BE)) /* 16 bit data */
  400. count >>= 1;
  401. if (portc->channels > 1)
  402. count >>= 1;
  403. count -= 1;
  404. if (devc->audio_mode & PCM_ENABLE_INPUT &&
  405.     audio_devs[dev]->flags & DMA_AUTOMODE &&
  406.     intrflag &&
  407.     count == devc->xfer_count) {
  408. return; /*
  409.  * Auto DMA mode on. No need to react
  410.  */
  411. }
  412. spin_lock_irqsave(&waveartist_lock, flags);
  413. /*
  414.  * set sample count
  415.  */
  416. waveartist_cmd2(devc, WACMD_INPUTSIZE, count);
  417. devc->xfer_count = count;
  418. devc->audio_mode |= PCM_ENABLE_INPUT;
  419. spin_unlock_irqrestore(&waveartist_lock, flags);
  420. }
  421. static int
  422. waveartist_ioctl(int dev, unsigned int cmd, caddr_t arg)
  423. {
  424. return -EINVAL;
  425. }
  426. static unsigned int
  427. waveartist_get_speed(wavnc_port_info *portc)
  428. {
  429. unsigned int speed;
  430. /*
  431.  * program the speed, channels, bits
  432.  */
  433. if (portc->speed == 8000)
  434. speed = 0x2E71;
  435. else if (portc->speed == 11025)
  436. speed = 0x4000;
  437. else if (portc->speed == 22050)
  438. speed = 0x8000;
  439. else if (portc->speed == 44100)
  440. speed = 0x0;
  441. else {
  442. /*
  443.  * non-standard - just calculate
  444.  */
  445. speed = portc->speed << 16;
  446. speed = (speed / 44100) & 65535;
  447. }
  448. return speed;
  449. }
  450. static unsigned int
  451. waveartist_get_bits(wavnc_port_info *portc)
  452. {
  453. unsigned int bits;
  454. if (portc->audio_format == AFMT_S16_LE)
  455. bits = 1;
  456. else if (portc->audio_format == AFMT_S8)
  457. bits = 0;
  458. else
  459. bits = 2; //default AFMT_U8
  460. return bits;
  461. }
  462. static int
  463. waveartist_prepare_for_input(int dev, int bsize, int bcount)
  464. {
  465. unsigned long flags;
  466. wavnc_info *devc = (wavnc_info *) audio_devs[dev]->devc;
  467. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  468. unsigned int speed, bits;
  469. speed = waveartist_get_speed(portc);
  470. bits  = waveartist_get_bits(portc);
  471. spin_lock_irqsave(&waveartist_lock, flags);
  472. if (waveartist_cmd2(devc, WACMD_INPUTFORMAT, bits))
  473. printk(KERN_WARNING "waveartist: error setting the "
  474.        "record format to %dn", portc->audio_format);
  475. if (waveartist_cmd2(devc, WACMD_INPUTCHANNELS, portc->channels))
  476. printk(KERN_WARNING "waveartist: error setting record "
  477.        "to %d channelsn", portc->channels);
  478. /*
  479.  * write cmd SetSampleSpeedTimeConstant
  480.  */
  481. if (waveartist_cmd2(devc, WACMD_INPUTSPEED, speed))
  482. printk(KERN_WARNING "waveartist: error setting the record "
  483.        "speed to %dHz.n", portc->speed);
  484. if (waveartist_cmd2(devc, WACMD_INPUTDMA, 1))
  485. printk(KERN_WARNING "waveartist: error setting the record "
  486.        "data path to 0x%Xn", 1);
  487. if (waveartist_cmd2(devc, WACMD_INPUTFORMAT, bits))
  488. printk(KERN_WARNING "waveartist: error setting the record "
  489.        "format to %dn", portc->audio_format);
  490. devc->xfer_count = 0;
  491. spin_unlock_irqrestore(&waveartist_lock, flags);
  492. waveartist_halt_input(dev);
  493. if (debug_flg & DEBUG_INTR) {
  494. printk("WA CTLR reg: 0x%02X.n",
  495.        inb(devc->hw.io_base + CTLR));
  496. printk("WA STAT reg: 0x%02X.n",
  497.        inb(devc->hw.io_base + STATR));
  498. printk("WA IRQS reg: 0x%02X.n",
  499.        inb(devc->hw.io_base + IRQSTAT));
  500. }
  501. return 0;
  502. }
  503. static int
  504. waveartist_prepare_for_output(int dev, int bsize, int bcount)
  505. {
  506. unsigned long flags;
  507. wavnc_info *devc = (wavnc_info *) audio_devs[dev]->devc;
  508. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  509. unsigned int speed, bits;
  510. /*
  511.  * program the speed, channels, bits
  512.  */
  513. speed = waveartist_get_speed(portc);
  514. bits  = waveartist_get_bits(portc);
  515. spin_lock_irqsave(&waveartist_lock, flags);
  516. if (waveartist_cmd2(devc, WACMD_OUTPUTSPEED, speed) &&
  517.     waveartist_cmd2(devc, WACMD_OUTPUTSPEED, speed))
  518. printk(KERN_WARNING "waveartist: error setting the playback "
  519.        "speed to %dHz.n", portc->speed);
  520. if (waveartist_cmd2(devc, WACMD_OUTPUTCHANNELS, portc->channels))
  521. printk(KERN_WARNING "waveartist: error setting the playback "
  522.        "to %d channelsn", portc->channels);
  523. if (waveartist_cmd2(devc, WACMD_OUTPUTDMA, 0))
  524. printk(KERN_WARNING "waveartist: error setting the playback "
  525.        "data path to 0x%Xn", 0);
  526. if (waveartist_cmd2(devc, WACMD_OUTPUTFORMAT, bits))
  527. printk(KERN_WARNING "waveartist: error setting the playback "
  528.        "format to %dn", portc->audio_format);
  529. devc->xfer_count = 0;
  530. spin_unlock_irqrestore(&waveartist_lock, flags);
  531. waveartist_halt_output(dev);
  532. if (debug_flg & DEBUG_INTR) {
  533. printk("WA CTLR reg: 0x%02X.n",inb(devc->hw.io_base + CTLR));
  534. printk("WA STAT reg: 0x%02X.n",inb(devc->hw.io_base + STATR));
  535. printk("WA IRQS reg: 0x%02X.n",inb(devc->hw.io_base + IRQSTAT));
  536. }
  537. return 0;
  538. }
  539. static void
  540. waveartist_halt(int dev)
  541. {
  542. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  543. wavnc_info *devc;
  544. if (portc->open_mode & OPEN_WRITE)
  545. waveartist_halt_output(dev);
  546. if (portc->open_mode & OPEN_READ)
  547. waveartist_halt_input(dev);
  548. devc = (wavnc_info *) audio_devs[dev]->devc;
  549. devc->audio_mode = 0;
  550. }
  551. static void
  552. waveartist_halt_input(int dev)
  553. {
  554. wavnc_info *devc = (wavnc_info *) audio_devs[dev]->devc;
  555. unsigned long flags;
  556. spin_lock_irqsave(&waveartist_lock, flags);
  557. /*
  558.  * Stop capture
  559.  */
  560. waveartist_cmd1(devc, WACMD_INPUTSTOP);
  561. devc->audio_mode &= ~PCM_ENABLE_INPUT;
  562. /*
  563.  * Clear interrupt by toggling
  564.  * the IRQ_ACK bit in CTRL
  565.  */
  566. if (inb(devc->hw.io_base + STATR) & IRQ_REQ)
  567. waveartist_iack(devc);
  568. // devc->audio_mode &= ~PCM_ENABLE_INPUT;
  569. spin_unlock_irqrestore(&waveartist_lock, flags);
  570. }
  571. static void
  572. waveartist_halt_output(int dev)
  573. {
  574. wavnc_info *devc = (wavnc_info *) audio_devs[dev]->devc;
  575. unsigned long flags;
  576. spin_lock_irqsave(&waveartist_lock, flags);
  577. waveartist_cmd1(devc, WACMD_OUTPUTSTOP);
  578. devc->audio_mode &= ~PCM_ENABLE_OUTPUT;
  579. /*
  580.  * Clear interrupt by toggling
  581.  * the IRQ_ACK bit in CTRL
  582.  */
  583. if (inb(devc->hw.io_base + STATR) & IRQ_REQ)
  584. waveartist_iack(devc);
  585. // devc->audio_mode &= ~PCM_ENABLE_OUTPUT;
  586. spin_unlock_irqrestore(&waveartist_lock, flags);
  587. }
  588. static void
  589. waveartist_trigger(int dev, int state)
  590. {
  591. wavnc_info *devc = (wavnc_info *) audio_devs[dev]->devc;
  592. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  593. unsigned long flags;
  594. if (debug_flg & DEBUG_TRIGGER) {
  595. printk("wavnc: audio trigger ");
  596. if (state & PCM_ENABLE_INPUT)
  597. printk("in ");
  598. if (state & PCM_ENABLE_OUTPUT)
  599. printk("out");
  600. printk("n");
  601. }
  602. spin_lock_irqsave(&waveartist_lock, flags);
  603. state &= devc->audio_mode;
  604. if (portc->open_mode & OPEN_READ &&
  605.     state & PCM_ENABLE_INPUT)
  606. /*
  607.  * enable ADC Data Transfer to PC
  608.  */
  609. waveartist_cmd1(devc, WACMD_INPUTSTART);
  610. if (portc->open_mode & OPEN_WRITE &&
  611.     state & PCM_ENABLE_OUTPUT)
  612. /*
  613.  * enable DAC data transfer from PC
  614.  */
  615. waveartist_cmd1(devc, WACMD_OUTPUTSTART);
  616. spin_unlock_irqrestore(&waveartist_lock, flags);
  617. }
  618. static int
  619. waveartist_set_speed(int dev, int arg)
  620. {
  621. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  622. if (arg <= 0)
  623. return portc->speed;
  624. if (arg < 5000)
  625. arg = 5000;
  626. if (arg > 44100)
  627. arg = 44100;
  628. portc->speed = arg;
  629. return portc->speed;
  630. }
  631. static short
  632. waveartist_set_channels(int dev, short arg)
  633. {
  634. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  635. if (arg != 1 && arg != 2)
  636. return portc->channels;
  637. portc->channels = arg;
  638. return arg;
  639. }
  640. static unsigned int
  641. waveartist_set_bits(int dev, unsigned int arg)
  642. {
  643. wavnc_port_info *portc = (wavnc_port_info *) audio_devs[dev]->portc;
  644. if (arg == 0)
  645. return portc->audio_format;
  646. if ((arg != AFMT_U8) && (arg != AFMT_S16_LE) && (arg != AFMT_S8))
  647. arg = AFMT_U8;
  648. portc->audio_format = arg;
  649. return arg;
  650. }
  651. static struct audio_driver waveartist_audio_driver = {
  652. owner: THIS_MODULE,
  653. open: waveartist_open,
  654. close: waveartist_close,
  655. output_block: waveartist_output_block,
  656. start_input: waveartist_start_input,
  657. ioctl: waveartist_ioctl,
  658. prepare_for_input: waveartist_prepare_for_input,
  659. prepare_for_output: waveartist_prepare_for_output,
  660. halt_io: waveartist_halt,
  661. halt_input: waveartist_halt_input,
  662. halt_output: waveartist_halt_output,
  663. trigger: waveartist_trigger,
  664. set_speed: waveartist_set_speed,
  665. set_bits: waveartist_set_bits,
  666. set_channels: waveartist_set_channels
  667. };
  668. static void
  669. waveartist_intr(int irq, void *dev_id, struct pt_regs *regs)
  670. {
  671. wavnc_info *devc = (wavnc_info *)dev_id;
  672. int    irqstatus, status;
  673. irqstatus = inb(devc->hw.io_base + IRQSTAT);
  674. status    = inb(devc->hw.io_base + STATR);
  675. if (debug_flg & DEBUG_INTR)
  676. printk("waveartist_intr: stat=%02x, irqstat=%02xn",
  677.        status, irqstatus);
  678. if (status & IRQ_REQ) /* Clear interrupt */
  679. waveartist_iack(devc);
  680. else
  681. printk(KERN_WARNING "waveartist: unexpected interruptn");
  682. if (irqstatus & 0x01) {
  683. int temp = 1;
  684. /* PCM buffer done
  685.  */
  686. if ((status & DMA0) && (devc->audio_mode & PCM_ENABLE_OUTPUT)) {
  687. DMAbuf_outputintr(devc->playback_dev, 1);
  688. temp = 0;
  689. }
  690. if ((status & DMA1) && (devc->audio_mode & PCM_ENABLE_INPUT)) {
  691. DMAbuf_inputintr(devc->record_dev);
  692. temp = 0;
  693. }
  694. if (temp) //default:
  695. printk(KERN_WARNING "waveartist: Unknown interruptn");
  696. }
  697. if (irqstatus & 0x2)
  698. // We do not use SB mode natively...
  699. printk(KERN_WARNING "waveartist: Unexpected SB interrupt...n");
  700. }
  701. /* -------------------------------------------------------------------------
  702.  * Mixer stuff
  703.  */
  704. struct mix_ent {
  705. unsigned char reg_l;
  706. unsigned char reg_r;
  707. unsigned char shift;
  708. unsigned char max;
  709. };
  710. static const struct mix_ent mix_devs[SOUND_MIXER_NRDEVICES] = {
  711. { 2, 6, 1,  7 }, /* SOUND_MIXER_VOLUME   */
  712. { 0, 0, 0,  0 }, /* SOUND_MIXER_BASS     */
  713. { 0, 0, 0,  0 }, /* SOUND_MIXER_TREBLE   */
  714. { 0, 0, 0,  0 }, /* SOUND_MIXER_SYNTH    */
  715. { 0, 0, 0,  0 }, /* SOUND_MIXER_PCM      */
  716. { 0, 0, 0,  0 }, /* SOUND_MIXER_SPEAKER  */
  717. { 0, 4, 6, 31 }, /* SOUND_MIXER_LINE     */
  718. { 2, 6, 4,  3 }, /* SOUND_MIXER_MIC      */
  719. { 0, 0, 0,  0 }, /* SOUND_MIXER_CD       */
  720. { 0, 0, 0,  0 }, /* SOUND_MIXER_IMIX     */
  721. { 0, 0, 0,  0 }, /* SOUND_MIXER_ALTPCM   */
  722. #if 0
  723. { 3, 7, 0, 10 }, /* SOUND_MIXER_RECLEV   */
  724. { 0, 0, 0,  0 }, /* SOUND_MIXER_IGAIN    */
  725. #else
  726. { 0, 0, 0,  0 }, /* SOUND_MIXER_RECLEV   */
  727. { 3, 7, 0,  7 }, /* SOUND_MIXER_IGAIN    */
  728. #endif
  729. { 0, 0, 0,  0 }, /* SOUND_MIXER_OGAIN    */
  730. { 0, 4, 1, 31 }, /* SOUND_MIXER_LINE1    */
  731. { 1, 5, 6, 31 }, /* SOUND_MIXER_LINE2    */
  732. { 0, 0, 0,  0 }, /* SOUND_MIXER_LINE3    */
  733. { 0, 0, 0,  0 }, /* SOUND_MIXER_DIGITAL1 */
  734. { 0, 0, 0,  0 }, /* SOUND_MIXER_DIGITAL2 */
  735. { 0, 0, 0,  0 }, /* SOUND_MIXER_DIGITAL3 */
  736. { 0, 0, 0,  0 }, /* SOUND_MIXER_PHONEIN  */
  737. { 0, 0, 0,  0 }, /* SOUND_MIXER_PHONEOUT */
  738. { 0, 0, 0,  0 }, /* SOUND_MIXER_VIDEO    */
  739. { 0, 0, 0,  0 }, /* SOUND_MIXER_RADIO    */
  740. { 0, 0, 0,  0 }  /* SOUND_MIXER_MONITOR  */
  741. };
  742. static void
  743. waveartist_mixer_update(wavnc_info *devc, int whichDev)
  744. {
  745. unsigned int lev_left, lev_right;
  746. lev_left  = devc->levels[whichDev] & 0xff;
  747. lev_right = devc->levels[whichDev] >> 8;
  748. if (lev_left > 100)
  749. lev_left = 100;
  750. if (lev_right > 100)
  751. lev_right = 100;
  752. #define SCALE(lev,max) ((lev) * (max) / 100)
  753. if (machine_is_netwinder() && whichDev == SOUND_MIXER_PHONEOUT)
  754. whichDev = SOUND_MIXER_VOLUME;
  755. if (mix_devs[whichDev].reg_l || mix_devs[whichDev].reg_r) {
  756. const struct mix_ent *mix = mix_devs + whichDev;
  757. unsigned int mask, left, right;
  758. mask = mix->max << mix->shift;
  759. lev_left  = SCALE(lev_left,  mix->max) << mix->shift;
  760. lev_right = SCALE(lev_right, mix->max) << mix->shift;
  761. /* read left setting */
  762. left  = waveartist_cmd1_r(devc, WACMD_GET_LEVEL |
  763.        mix->reg_l << 8);
  764. /* read right setting */
  765. right = waveartist_cmd1_r(devc, WACMD_GET_LEVEL |
  766. mix->reg_r << 8);
  767. left  = (left  & ~mask) | (lev_left  & mask);
  768. right = (right & ~mask) | (lev_right & mask);
  769. /* write left,right back */
  770. waveartist_cmd3(devc, WACMD_SET_MIXER, left, right);
  771. } else {
  772. switch(whichDev) {
  773. case SOUND_MIXER_PCM:
  774. waveartist_cmd3(devc, WACMD_SET_LEVEL,
  775. SCALE(lev_left,  32767),
  776. SCALE(lev_right, 32767));
  777. break;
  778. case SOUND_MIXER_SYNTH:
  779. waveartist_cmd3(devc, 0x0100 | WACMD_SET_LEVEL,
  780. SCALE(lev_left,  32767),
  781. SCALE(lev_right, 32767));
  782. break;
  783. }
  784. }
  785. }
  786. /*
  787.  * Set the ADC MUX to the specified values.  We do NOT do any
  788.  * checking of the values passed, since we assume that the
  789.  * relevant *_select_input function has done that for us.
  790.  */
  791. static void
  792. waveartist_set_adc_mux(wavnc_info *devc, char left_dev, char right_dev)
  793. {
  794. unsigned int reg_08, reg_09;
  795. reg_08 = waveartist_cmd1_r(devc, WACMD_GET_LEVEL | 0x0800);
  796. reg_09 = waveartist_cmd1_r(devc, WACMD_GET_LEVEL | 0x0900);
  797. reg_08 = (reg_08 & ~0x3f) | right_dev << 3 | left_dev;
  798. waveartist_cmd3(devc, WACMD_SET_MIXER, reg_08, reg_09);
  799. }
  800. /*
  801.  * Decode a recording mask into a mixer selection as follows:
  802.  *
  803.  *     OSS Source WA Source Actual source
  804.  *  SOUND_MASK_IMIX Mixer Mixer output (same as AD1848)
  805.  *  SOUND_MASK_LINE Line Line in
  806.  *  SOUND_MASK_LINE1 Aux 1 Aux 1 in
  807.  *  SOUND_MASK_LINE2 Aux 2 Aux 2 in
  808.  *  SOUND_MASK_MIC Mic Microphone
  809.  */
  810. static unsigned int
  811. waveartist_select_input(wavnc_info *devc, unsigned int recmask,
  812. unsigned char *dev_l, unsigned char *dev_r)
  813. {
  814. unsigned int recdev = ADC_MUX_NONE;
  815. if (recmask & SOUND_MASK_IMIX) {
  816. recmask = SOUND_MASK_IMIX;
  817. recdev = ADC_MUX_MIXER;
  818. } else if (recmask & SOUND_MASK_LINE2) {
  819. recmask = SOUND_MASK_LINE2;
  820. recdev = ADC_MUX_AUX2;
  821. } else if (recmask & SOUND_MASK_LINE1) {
  822. recmask = SOUND_MASK_LINE1;
  823. recdev = ADC_MUX_AUX1;
  824. } else if (recmask & SOUND_MASK_LINE) {
  825. recmask = SOUND_MASK_LINE;
  826. recdev = ADC_MUX_LINE;
  827. } else if (recmask & SOUND_MASK_MIC) {
  828. recmask = SOUND_MASK_MIC;
  829. recdev = ADC_MUX_MIC;
  830. }
  831. *dev_l = *dev_r = recdev;
  832. return recmask;
  833. }
  834. static int
  835. waveartist_decode_mixer(wavnc_info *devc, int dev, unsigned char lev_l,
  836. unsigned char lev_r)
  837. {
  838. switch (dev) {
  839. case SOUND_MIXER_VOLUME:
  840. case SOUND_MIXER_SYNTH:
  841. case SOUND_MIXER_PCM:
  842. case SOUND_MIXER_LINE:
  843. case SOUND_MIXER_MIC:
  844. case SOUND_MIXER_IGAIN:
  845. case SOUND_MIXER_LINE1:
  846. case SOUND_MIXER_LINE2:
  847. devc->levels[dev] = lev_l | lev_r << 8;
  848. break;
  849. case SOUND_MIXER_IMIX:
  850. break;
  851. default:
  852. dev = -EINVAL;
  853. break;
  854. }
  855. return dev;
  856. }
  857. static int waveartist_get_mixer(wavnc_info *devc, int dev)
  858. {
  859. return devc->levels[dev];
  860. }
  861. static const struct waveartist_mixer_info waveartist_mixer = {
  862. supported_devs: SUPPORTED_MIXER_DEVICES | SOUND_MASK_IGAIN,
  863. recording_devs: SOUND_MASK_LINE  | SOUND_MASK_MIC   |
  864. SOUND_MASK_LINE1 | SOUND_MASK_LINE2 |
  865. SOUND_MASK_IMIX,
  866. stereo_devs: (SUPPORTED_MIXER_DEVICES | SOUND_MASK_IGAIN) & ~
  867. (SOUND_MASK_SPEAKER | SOUND_MASK_IMIX),
  868. select_input: waveartist_select_input,
  869. decode_mixer: waveartist_decode_mixer,
  870. get_mixer: waveartist_get_mixer,
  871. };
  872. static void
  873. waveartist_set_recmask(wavnc_info *devc, unsigned int recmask)
  874. {
  875. unsigned char dev_l, dev_r;
  876. recmask &= devc->mix->recording_devs;
  877. /*
  878.  * If more than one recording device selected,
  879.  * disable the device that is currently in use.
  880.  */
  881. if (hweight32(recmask) > 1)
  882. recmask &= ~devc->recmask;
  883. /*
  884.  * Translate the recording device mask into
  885.  * the ADC multiplexer settings.
  886.  */
  887. devc->recmask = devc->mix->select_input(devc, recmask,
  888. &dev_l, &dev_r);
  889. waveartist_set_adc_mux(devc, dev_l, dev_r);
  890. }
  891. static int
  892. waveartist_set_mixer(wavnc_info *devc, int dev, unsigned int level)
  893. {
  894. unsigned int lev_left  = level & 0x00ff;
  895. unsigned int lev_right = (level & 0xff00) >> 8;
  896. if (lev_left > 100)
  897. lev_left = 100;
  898. if (lev_right > 100)
  899. lev_right = 100;
  900. /*
  901.  * Mono devices have their right volume forced to their
  902.  * left volume.  (from ALSA driver OSS emulation).
  903.  */
  904. if (!(devc->mix->stereo_devs & (1 << dev)))
  905. lev_right = lev_left;
  906. dev = devc->mix->decode_mixer(devc, dev, lev_left, lev_right);
  907. if (dev >= 0)
  908. waveartist_mixer_update(devc, dev);
  909. return dev < 0 ? dev : 0;
  910. }
  911. static int
  912. waveartist_mixer_ioctl(int dev, unsigned int cmd, caddr_t arg)
  913. {
  914. wavnc_info *devc = (wavnc_info *)audio_devs[dev]->devc;
  915. int ret = 0, val, nr;
  916. /*
  917.  * All SOUND_MIXER_* ioctls use type 'M'
  918.  */
  919. if (((cmd >> 8) & 255) != 'M')
  920. return -ENOIOCTLCMD;
  921. #ifdef CONFIG_ARCH_NETWINDER
  922. if (machine_is_netwinder()) {
  923. ret = vnc_private_ioctl(dev, cmd, arg);
  924. if (ret != -ENOIOCTLCMD)
  925. return ret;
  926. else
  927. ret = 0;
  928. }
  929. #endif
  930. nr = cmd & 0xff;
  931. if (_SIOC_DIR(cmd) & _SIOC_WRITE) {
  932. if (get_user(val, (int *)arg))
  933. return -EFAULT;
  934. switch (nr) {
  935. case SOUND_MIXER_RECSRC:
  936. waveartist_set_recmask(devc, val);
  937. break;
  938. default:
  939. ret = -EINVAL;
  940. if (nr < SOUND_MIXER_NRDEVICES &&
  941.     devc->mix->supported_devs & (1 << nr))
  942. ret = waveartist_set_mixer(devc, nr, val);
  943. }
  944. }
  945. if (ret == 0 && _SIOC_DIR(cmd) & _SIOC_READ) {
  946. ret = -EINVAL;
  947. switch (nr) {
  948. case SOUND_MIXER_RECSRC:
  949. ret = devc->recmask;
  950. break;
  951. case SOUND_MIXER_DEVMASK:
  952. ret = devc->mix->supported_devs;
  953. break;
  954. case SOUND_MIXER_STEREODEVS:
  955. ret = devc->mix->stereo_devs;
  956. break;
  957. case SOUND_MIXER_RECMASK:
  958. ret = devc->mix->recording_devs;
  959. break;
  960. case SOUND_MIXER_CAPS:
  961. ret = SOUND_CAP_EXCL_INPUT;
  962. break;
  963. default:
  964. if (nr < SOUND_MIXER_NRDEVICES)
  965. ret = devc->mix->get_mixer(devc, nr);
  966. break;
  967. }
  968. if (ret >= 0)
  969. ret = put_user(ret, (int *)arg) ? -EFAULT : 0;
  970. }
  971. return ret;
  972. }
  973. static struct mixer_operations waveartist_mixer_operations =
  974. {
  975. owner: THIS_MODULE,
  976. id: "WaveArtist",
  977. name: "WaveArtist",
  978. ioctl: waveartist_mixer_ioctl
  979. };
  980. static void
  981. waveartist_mixer_reset(wavnc_info *devc)
  982. {
  983. int i;
  984. if (debug_flg & DEBUG_MIXER)
  985. printk("%s: mixer_resetn", devc->hw.name);
  986. /*
  987.  * reset mixer cmd
  988.  */
  989. waveartist_cmd1(devc, WACMD_RST_MIXER);
  990. /*
  991.  * set input for ADC to come from 'quiet'
  992.  * turn on default modes
  993.  */
  994. waveartist_cmd3(devc, WACMD_SET_MIXER, 0x9800, 0xa836);
  995. /*
  996.  * set mixer input select to none, RX filter gains 0 dB
  997.  */
  998. waveartist_cmd3(devc, WACMD_SET_MIXER, 0x4c00, 0x8c00);
  999. /*
  1000.  * set bit 0 reg 2 to 1 - unmute MonoOut
  1001.  */
  1002. waveartist_cmd3(devc, WACMD_SET_MIXER, 0x2801, 0x6800);
  1003. /* set default input device = internal mic
  1004.  * current recording device = none
  1005.  */
  1006. waveartist_set_recmask(devc, 0);
  1007. for (i = 0; i < SOUND_MIXER_NRDEVICES; i++)
  1008. waveartist_mixer_update(devc, i);
  1009. }
  1010. static int __init waveartist_init(wavnc_info *devc)
  1011. {
  1012. wavnc_port_info *portc;
  1013. char rev[3], dev_name[64];
  1014. int my_dev;
  1015. if (waveartist_reset(devc))
  1016. return -ENODEV;
  1017. sprintf(dev_name, "%s (%s", devc->hw.name, devc->chip_name);
  1018. if (waveartist_getrev(devc, rev)) {
  1019. strcat(dev_name, " rev. ");
  1020. strcat(dev_name, rev);
  1021. }
  1022. strcat(dev_name, ")");
  1023. conf_printf2(dev_name, devc->hw.io_base, devc->hw.irq,
  1024.      devc->hw.dma, devc->hw.dma2);
  1025. portc = (wavnc_port_info *)kmalloc(sizeof(wavnc_port_info), GFP_KERNEL);
  1026. if (portc == NULL)
  1027. goto nomem;
  1028. memset(portc, 0, sizeof(wavnc_port_info));
  1029. my_dev = sound_install_audiodrv(AUDIO_DRIVER_VERSION, dev_name,
  1030. &waveartist_audio_driver, sizeof(struct audio_driver),
  1031. devc->audio_flags, AFMT_U8 | AFMT_S16_LE | AFMT_S8,
  1032. devc, devc->hw.dma, devc->hw.dma2);
  1033. if (my_dev < 0)
  1034. goto free;
  1035. audio_devs[my_dev]->portc = portc;
  1036. waveartist_mixer_reset(devc);
  1037. /*
  1038.  * clear any pending interrupt
  1039.  */
  1040. waveartist_iack(devc);
  1041. if (request_irq(devc->hw.irq, waveartist_intr, 0, devc->hw.name, devc) < 0) {
  1042. printk(KERN_ERR "%s: IRQ %d in usen",
  1043. devc->hw.name, devc->hw.irq);
  1044. goto uninstall;
  1045. }
  1046. if (sound_alloc_dma(devc->hw.dma, devc->hw.name)) {
  1047. printk(KERN_ERR "%s: Can't allocate DMA%dn",
  1048. devc->hw.name, devc->hw.dma);
  1049. goto uninstall_irq;
  1050. }
  1051. if (devc->hw.dma != devc->hw.dma2 && devc->hw.dma2 != NO_DMA)
  1052. if (sound_alloc_dma(devc->hw.dma2, devc->hw.name)) {
  1053. printk(KERN_ERR "%s: can't allocate DMA%dn",
  1054. devc->hw.name, devc->hw.dma2);
  1055. goto uninstall_dma;
  1056. }
  1057. waveartist_set_ctlr(&devc->hw, 0, DMA1_IE | DMA0_IE);
  1058. audio_devs[my_dev]->mixer_dev =
  1059. sound_install_mixer(MIXER_DRIVER_VERSION,
  1060. dev_name,
  1061. &waveartist_mixer_operations,
  1062. sizeof(struct mixer_operations),
  1063. devc);
  1064. return my_dev;
  1065. uninstall_dma:
  1066. sound_free_dma(devc->hw.dma);
  1067. uninstall_irq:
  1068. free_irq(devc->hw.irq, devc);
  1069. uninstall:
  1070. sound_unload_audiodev(my_dev);
  1071. free:
  1072. kfree(portc);
  1073. nomem:
  1074. return -1;
  1075. }
  1076. static int __init probe_waveartist(struct address_info *hw_config)
  1077. {
  1078. wavnc_info *devc = &adev_info[nr_waveartist_devs];
  1079. if (nr_waveartist_devs >= MAX_AUDIO_DEV) {
  1080. printk(KERN_WARNING "waveartist: too many audio devicesn");
  1081. return 0;
  1082. }
  1083. if (check_region(hw_config->io_base, 15))  {
  1084. printk(KERN_WARNING "WaveArtist: I/O port conflictn");
  1085. return 0;
  1086. }
  1087. if (hw_config->irq > 15 || hw_config->irq < 0) {
  1088. printk(KERN_WARNING "WaveArtist: Bad IRQ %dn",
  1089.        hw_config->irq);
  1090. return 0;
  1091. }
  1092. if (hw_config->dma != 3) {
  1093. printk(KERN_WARNING "WaveArtist: Bad DMA %dn",
  1094.        hw_config->dma);
  1095. return 0;
  1096. }
  1097. hw_config->name = "WaveArtist";
  1098. devc->hw = *hw_config;
  1099. devc->open_mode = 0;
  1100. devc->chip_name = "RWA-010";
  1101. return 1;
  1102. }
  1103. static void __init
  1104. attach_waveartist(struct address_info *hw, const struct waveartist_mixer_info *mix)
  1105. {
  1106. wavnc_info *devc = &adev_info[nr_waveartist_devs];
  1107. /*
  1108.  * NOTE! If irq < 0, there is another driver which has allocated the
  1109.  *   IRQ so that this driver doesn't need to allocate/deallocate it.
  1110.  *   The actually used IRQ is ABS(irq).
  1111.  */
  1112. devc->hw = *hw;
  1113. devc->hw.irq = (hw->irq > 0) ? hw->irq : 0;
  1114. devc->open_mode = 0;
  1115. devc->playback_dev = 0;
  1116. devc->record_dev = 0;
  1117. devc->audio_flags = DMA_AUTOMODE;
  1118. devc->levels = levels;
  1119. if (hw->dma != hw->dma2 && hw->dma2 != NO_DMA)
  1120. devc->audio_flags |= DMA_DUPLEX;
  1121. request_region(hw->io_base, 15, devc->hw.name);
  1122. devc->mix = mix;
  1123. devc->dev_no = waveartist_init(devc);
  1124. if (devc->dev_no < 0)
  1125. release_region(hw->io_base, 15);
  1126. else {
  1127. #ifdef CONFIG_ARCH_NETWINDER
  1128. if (machine_is_netwinder()) {
  1129. init_timer(&vnc_timer);
  1130. vnc_timer.function = vnc_slider_tick;
  1131. vnc_timer.expires  = jiffies;
  1132. vnc_timer.data     = nr_waveartist_devs;
  1133. add_timer(&vnc_timer);
  1134. vnc_configure_mixer(devc, 0);
  1135. devc->no_autoselect = 1;
  1136. }
  1137. #endif
  1138. nr_waveartist_devs += 1;
  1139. }
  1140. }
  1141. static void __exit unload_waveartist(struct address_info *hw)
  1142. {
  1143. wavnc_info *devc = NULL;
  1144. int i;
  1145. for (i = 0; i < nr_waveartist_devs; i++)
  1146. if (hw->io_base == adev_info[i].hw.io_base) {
  1147. devc = adev_info + i;
  1148. break;
  1149. }
  1150. if (devc != NULL) {
  1151. int mixer;
  1152. #ifdef CONFIG_ARCH_NETWINDER
  1153. if (machine_is_netwinder())
  1154. del_timer(&vnc_timer);
  1155. #endif
  1156. release_region(devc->hw.io_base, 15);
  1157. waveartist_set_ctlr(&devc->hw, DMA1_IE|DMA0_IE, 0);
  1158. if (devc->hw.irq >= 0)
  1159. free_irq(devc->hw.irq, devc);
  1160. sound_free_dma(devc->hw.dma);
  1161. if (devc->hw.dma != devc->hw.dma2 &&
  1162.     devc->hw.dma2 != NO_DMA)
  1163. sound_free_dma(devc->hw.dma2);
  1164. mixer = audio_devs[devc->dev_no]->mixer_dev;
  1165. if (mixer >= 0)
  1166. sound_unload_mixerdev(mixer);
  1167. if (devc->dev_no >= 0)
  1168. sound_unload_audiodev(devc->dev_no);
  1169. nr_waveartist_devs -= 1;
  1170. for (; i < nr_waveartist_devs; i++)
  1171. adev_info[i] = adev_info[i + 1];
  1172. } else
  1173. printk(KERN_WARNING "waveartist: can't find device "
  1174.        "to unloadn");
  1175. }
  1176. #ifdef CONFIG_ARCH_NETWINDER
  1177. /*
  1178.  * Rebel.com Netwinder specifics...
  1179.  */
  1180. #include <asm/hardware/dec21285.h>
  1181.  
  1182. #define VNC_TIMER_PERIOD (HZ/4) //check slider 4 times/sec
  1183. #define MIXER_PRIVATE3_RESET 0x53570000
  1184. #define MIXER_PRIVATE3_READ 0x53570001
  1185. #define MIXER_PRIVATE3_WRITE 0x53570002
  1186. #define VNC_MUTE_INTERNAL_SPKR 0x01 //the sw mute on/off control bit
  1187. #define VNC_MUTE_LINE_OUT 0x10
  1188. #define VNC_PHONE_DETECT 0x20
  1189. #define VNC_HANDSET_DETECT 0x40
  1190. #define VNC_DISABLE_AUTOSWITCH 0x80
  1191. extern spinlock_t gpio_lock;
  1192. static inline void
  1193. vnc_mute_spkr(wavnc_info *devc)
  1194. {
  1195. unsigned long flags;
  1196. spin_lock_irqsave(&gpio_lock, flags);
  1197. cpld_modify(CPLD_UNMUTE, devc->spkr_mute_state ? 0 : CPLD_UNMUTE);
  1198. spin_unlock_irqrestore(&gpio_lock, flags);
  1199. }
  1200. static void
  1201. vnc_mute_lout(wavnc_info *devc)
  1202. {
  1203. unsigned int left, right;
  1204. left  = waveartist_cmd1_r(devc, WACMD_GET_LEVEL);
  1205. right = waveartist_cmd1_r(devc, WACMD_GET_LEVEL | 0x400);
  1206. if (devc->line_mute_state) {
  1207. left &= ~1;
  1208. right &= ~1;
  1209. } else {
  1210. left |= 1;
  1211. right |= 1;
  1212. }
  1213. waveartist_cmd3(devc, WACMD_SET_MIXER, left, right);
  1214. }
  1215. static int
  1216. vnc_volume_slider(wavnc_info *devc)
  1217. {
  1218. static signed int old_slider_volume;
  1219. unsigned long flags;
  1220. signed int volume = 255;
  1221. *CSR_TIMER1_LOAD = 0x00ffffff;
  1222. save_flags(flags);
  1223. cli();
  1224. outb(0xFF, 0x201);
  1225. *CSR_TIMER1_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_DIV1;
  1226. while (volume && (inb(0x201) & 0x01))
  1227. volume--;
  1228. *CSR_TIMER1_CNTL = 0;
  1229. restore_flags(flags);
  1230. volume = 0x00ffffff - *CSR_TIMER1_VALUE;
  1231. #ifndef REVERSE
  1232. volume = 150 - (volume >> 5);
  1233. #else
  1234. volume = (volume >> 6) - 25;
  1235. #endif
  1236. if (volume < 0)
  1237. volume = 0;
  1238. if (volume > 100)
  1239. volume = 100;
  1240. /*
  1241.  * slider quite often reads +-8, so debounce this random noise
  1242.  */
  1243. if (abs(volume - old_slider_volume) > 7) {
  1244. old_slider_volume = volume;
  1245. if (debug_flg & DEBUG_MIXER)
  1246. printk(KERN_DEBUG "Slider volume: %d.n", volume);
  1247. }
  1248. return old_slider_volume;
  1249. }
  1250. /*
  1251.  * Decode a recording mask into a mixer selection on the NetWinder
  1252.  * as follows:
  1253.  *
  1254.  *     OSS Source WA Source Actual source
  1255.  *  SOUND_MASK_IMIX Mixer Mixer output (same as AD1848)
  1256.  *  SOUND_MASK_LINE Line Line in
  1257.  *  SOUND_MASK_LINE1 Left Mic Handset
  1258.  *  SOUND_MASK_PHONEIN Left Aux Telephone microphone
  1259.  *  SOUND_MASK_MIC Right Mic Builtin microphone
  1260.  */
  1261. static unsigned int
  1262. netwinder_select_input(wavnc_info *devc, unsigned int recmask,
  1263.        unsigned char *dev_l, unsigned char *dev_r)
  1264. {
  1265. unsigned int recdev_l = ADC_MUX_NONE, recdev_r = ADC_MUX_NONE;
  1266. if (recmask & SOUND_MASK_IMIX) {
  1267. recmask = SOUND_MASK_IMIX;
  1268. recdev_l = ADC_MUX_MIXER;
  1269. recdev_r = ADC_MUX_MIXER;
  1270. } else if (recmask & SOUND_MASK_LINE) {
  1271. recmask = SOUND_MASK_LINE;
  1272. recdev_l = ADC_MUX_LINE;
  1273. recdev_r = ADC_MUX_LINE;
  1274. } else if (recmask & SOUND_MASK_LINE1) {
  1275. recmask = SOUND_MASK_LINE1;
  1276. waveartist_cmd1(devc, WACMD_SET_MONO); /* left */
  1277. recdev_l = ADC_MUX_MIC;
  1278. recdev_r = ADC_MUX_NONE;
  1279. } else if (recmask & SOUND_MASK_PHONEIN) {
  1280. recmask = SOUND_MASK_PHONEIN;
  1281. waveartist_cmd1(devc, WACMD_SET_MONO); /* left */
  1282. recdev_l = ADC_MUX_AUX1;
  1283. recdev_r = ADC_MUX_NONE;
  1284. } else if (recmask & SOUND_MASK_MIC) {
  1285. recmask = SOUND_MASK_MIC;
  1286. waveartist_cmd1(devc, WACMD_SET_MONO | 0x100); /* right */
  1287. recdev_l = ADC_MUX_NONE;
  1288. recdev_r = ADC_MUX_MIC;
  1289. }
  1290. *dev_l = recdev_l;
  1291. *dev_r = recdev_r;
  1292. return recmask;
  1293. }
  1294. static int
  1295. netwinder_decode_mixer(wavnc_info *devc, int dev, unsigned char lev_l,
  1296.        unsigned char lev_r)
  1297. {
  1298. switch (dev) {
  1299. case SOUND_MIXER_VOLUME:
  1300. case SOUND_MIXER_SYNTH:
  1301. case SOUND_MIXER_PCM:
  1302. case SOUND_MIXER_LINE:
  1303. case SOUND_MIXER_IGAIN:
  1304. devc->levels[dev] = lev_l | lev_r << 8;
  1305. break;
  1306. case SOUND_MIXER_MIC: /* right mic only */
  1307. devc->levels[SOUND_MIXER_MIC] &= 0xff;
  1308. devc->levels[SOUND_MIXER_MIC] |= lev_l << 8;
  1309. break;
  1310. case SOUND_MIXER_LINE1: /* left mic only  */
  1311. devc->levels[SOUND_MIXER_MIC] &= 0xff00;
  1312. devc->levels[SOUND_MIXER_MIC] |= lev_l;
  1313. dev = SOUND_MIXER_MIC;
  1314. break;
  1315. case SOUND_MIXER_PHONEIN: /* left aux only  */
  1316. devc->levels[SOUND_MIXER_LINE1] = lev_l;
  1317. dev = SOUND_MIXER_LINE1;
  1318. break;
  1319. case SOUND_MIXER_IMIX:
  1320. case SOUND_MIXER_PHONEOUT:
  1321. break;
  1322. default:
  1323. dev = -EINVAL;
  1324. break;
  1325. }
  1326. return dev;
  1327. }
  1328. static int netwinder_get_mixer(wavnc_info *devc, int dev)
  1329. {
  1330. int levels;
  1331. switch (dev) {
  1332. case SOUND_MIXER_VOLUME:
  1333. case SOUND_MIXER_SYNTH:
  1334. case SOUND_MIXER_PCM:
  1335. case SOUND_MIXER_LINE:
  1336. case SOUND_MIXER_IGAIN:
  1337. levels = devc->levels[dev];
  1338. break;
  1339. case SOUND_MIXER_MIC: /* builtin mic: right mic only */
  1340. levels = devc->levels[SOUND_MIXER_MIC] >> 8;
  1341. levels |= levels << 8;
  1342. break;
  1343. case SOUND_MIXER_LINE1: /* handset mic: left mic only */
  1344. levels = devc->levels[SOUND_MIXER_MIC] & 0xff;
  1345. levels |= levels << 8;
  1346. break;
  1347. case SOUND_MIXER_PHONEIN: /* phone mic: left aux1 only */
  1348. levels = devc->levels[SOUND_MIXER_LINE1] & 0xff;
  1349. levels |= levels << 8;
  1350. break;
  1351. default:
  1352. levels = 0;
  1353. }
  1354. return levels;
  1355. }
  1356. /*
  1357.  * Waveartist specific mixer information.
  1358.  */
  1359. static const struct waveartist_mixer_info netwinder_mixer = {
  1360. supported_devs: SOUND_MASK_VOLUME  | SOUND_MASK_SYNTH   |
  1361. SOUND_MASK_PCM     | SOUND_MASK_SPEAKER |
  1362. SOUND_MASK_LINE    | SOUND_MASK_MIC     |
  1363. SOUND_MASK_IMIX    | SOUND_MASK_LINE1   |
  1364. SOUND_MASK_PHONEIN | SOUND_MASK_PHONEOUT|
  1365. SOUND_MASK_IGAIN,
  1366. recording_devs: SOUND_MASK_LINE    | SOUND_MASK_MIC     |
  1367. SOUND_MASK_IMIX    | SOUND_MASK_LINE1   |
  1368. SOUND_MASK_PHONEIN,
  1369. stereo_devs: SOUND_MASK_VOLUME  | SOUND_MASK_SYNTH   |
  1370. SOUND_MASK_PCM     | SOUND_MASK_LINE    |
  1371. SOUND_MASK_IMIX    | SOUND_MASK_IGAIN,
  1372. select_input: netwinder_select_input,
  1373. decode_mixer: netwinder_decode_mixer,
  1374. get_mixer: netwinder_get_mixer,
  1375. };
  1376. static void
  1377. vnc_configure_mixer(wavnc_info *devc, unsigned int recmask)
  1378. {
  1379. if (!devc->no_autoselect) {
  1380. if (devc->handset_detect) {
  1381. recmask = SOUND_MASK_LINE1;
  1382. devc->spkr_mute_state = devc->line_mute_state = 1;
  1383. } else if (devc->telephone_detect) {
  1384. recmask = SOUND_MASK_PHONEIN;
  1385. devc->spkr_mute_state = devc->line_mute_state = 1;
  1386. } else {
  1387. /* unless someone has asked for LINE-IN,
  1388.  * we default to MIC
  1389.  */
  1390. if ((devc->recmask & SOUND_MASK_LINE) == 0)
  1391. devc->recmask = SOUND_MASK_MIC;
  1392. devc->spkr_mute_state = devc->line_mute_state = 0;
  1393. }
  1394. vnc_mute_spkr(devc);
  1395. vnc_mute_lout(devc);
  1396. if (recmask != devc->recmask)
  1397. waveartist_set_recmask(devc, recmask);
  1398. }
  1399. }
  1400. static int
  1401. vnc_slider(wavnc_info *devc)
  1402. {
  1403. signed int slider_volume;
  1404. unsigned int temp, old_hs, old_td;
  1405. /*
  1406.  * read the "buttons" state.
  1407.  *  Bit 4 = 0 means handset present
  1408.  *  Bit 5 = 1 means phone offhook
  1409.  */
  1410. temp = inb(0x201);
  1411. old_hs = devc->handset_detect;
  1412. old_td = devc->telephone_detect;
  1413. devc->handset_detect = !(temp & 0x10);
  1414. devc->telephone_detect = !!(temp & 0x20);
  1415. if (!devc->no_autoselect &&
  1416.     (old_hs != devc->handset_detect ||
  1417.      old_td != devc->telephone_detect))
  1418. vnc_configure_mixer(devc, devc->recmask);
  1419. slider_volume = vnc_volume_slider(devc);
  1420. /*
  1421.  * If we're using software controlled volume, and
  1422.  * the slider moves by more than 20%, then we
  1423.  * switch back to slider controlled volume.
  1424.  */
  1425. if (abs(devc->slider_vol - slider_volume) > 20)
  1426. devc->use_slider = 1;
  1427. /*
  1428.  * use only left channel
  1429.  */
  1430. temp = levels[SOUND_MIXER_VOLUME] & 0xFF;
  1431. if (slider_volume != temp && devc->use_slider) {
  1432. devc->slider_vol = slider_volume;
  1433. waveartist_set_mixer(devc, SOUND_MIXER_VOLUME,
  1434. slider_volume | slider_volume << 8);
  1435. return 1;
  1436. }
  1437. return 0;
  1438. }
  1439. static void
  1440. vnc_slider_tick(unsigned long data)
  1441. {
  1442. int next_timeout;
  1443. if (vnc_slider(adev_info + data))
  1444. next_timeout = 5; // mixer reported change
  1445. else
  1446. next_timeout = VNC_TIMER_PERIOD;
  1447. mod_timer(&vnc_timer, jiffies + next_timeout);
  1448. }
  1449. static int
  1450. vnc_private_ioctl(int dev, unsigned int cmd, caddr_t arg)
  1451. {
  1452. wavnc_info *devc = (wavnc_info *)audio_devs[dev]->devc;
  1453. int val;
  1454. switch (cmd) {
  1455. case SOUND_MIXER_PRIVATE1:
  1456. {
  1457. u_int prev_spkr_mute, prev_line_mute, prev_auto_state;
  1458. int val;
  1459. if (get_user(val, (int *)arg))
  1460. return -EFAULT;
  1461. /* check if parameter is logical */
  1462. if (val & ~(VNC_MUTE_INTERNAL_SPKR |
  1463.     VNC_MUTE_LINE_OUT |
  1464.     VNC_DISABLE_AUTOSWITCH))
  1465. return -EINVAL;
  1466. prev_auto_state = devc->no_autoselect;
  1467. prev_spkr_mute  = devc->spkr_mute_state;
  1468. prev_line_mute  = devc->line_mute_state;
  1469. devc->no_autoselect   = (val & VNC_DISABLE_AUTOSWITCH) ? 1 : 0;
  1470. devc->spkr_mute_state = (val & VNC_MUTE_INTERNAL_SPKR) ? 1 : 0;
  1471. devc->line_mute_state = (val & VNC_MUTE_LINE_OUT) ? 1 : 0;
  1472. if (prev_spkr_mute != devc->spkr_mute_state)
  1473. vnc_mute_spkr(devc);
  1474. if (prev_line_mute != devc->line_mute_state)
  1475. vnc_mute_lout(devc);
  1476. if (prev_auto_state != devc->no_autoselect)
  1477. vnc_configure_mixer(devc, devc->recmask);
  1478. return 0;
  1479. }
  1480. case SOUND_MIXER_PRIVATE2:
  1481. if (get_user(val, (int *)arg))
  1482. return -EFAULT;
  1483. switch (val) {
  1484. #define VNC_SOUND_PAUSE         0x53    //to pause the DSP
  1485. #define VNC_SOUND_RESUME        0x57    //to unpause the DSP
  1486. case VNC_SOUND_PAUSE:
  1487. waveartist_cmd1(devc, 0x16);
  1488. break;
  1489. case VNC_SOUND_RESUME:
  1490. waveartist_cmd1(devc, 0x18);
  1491. break;
  1492. default:
  1493. return -EINVAL;
  1494. }
  1495. return 0;
  1496. /* private ioctl to allow bulk access to waveartist */
  1497. case SOUND_MIXER_PRIVATE3:
  1498. {
  1499. unsigned long flags;
  1500. int mixer_reg[15], i, val;
  1501. if (get_user(val, (int *)arg))
  1502. return -EFAULT;
  1503. if (copy_from_user(mixer_reg, (void *)val, sizeof(mixer_reg)))
  1504. return -EFAULT;
  1505. switch (mixer_reg[14]) {
  1506. case MIXER_PRIVATE3_RESET:
  1507. waveartist_mixer_reset(devc);
  1508. break;
  1509. case MIXER_PRIVATE3_WRITE:
  1510. waveartist_cmd3(devc, WACMD_SET_MIXER, mixer_reg[0], mixer_reg[4]);
  1511. waveartist_cmd3(devc, WACMD_SET_MIXER, mixer_reg[1], mixer_reg[5]);
  1512. waveartist_cmd3(devc, WACMD_SET_MIXER, mixer_reg[2], mixer_reg[6]);
  1513. waveartist_cmd3(devc, WACMD_SET_MIXER, mixer_reg[3], mixer_reg[7]);
  1514. waveartist_cmd3(devc, WACMD_SET_MIXER, mixer_reg[8], mixer_reg[9]);
  1515. waveartist_cmd3(devc, WACMD_SET_LEVEL, mixer_reg[10], mixer_reg[11]);
  1516. waveartist_cmd3(devc, WACMD_SET_LEVEL, mixer_reg[12], mixer_reg[13]);
  1517. break;
  1518. case MIXER_PRIVATE3_READ:
  1519. spin_lock_irqsave(&waveartist_lock, flags);
  1520. for (i = 0x30; i < 14 << 8; i += 1 << 8)
  1521. waveartist_cmd(devc, 1, &i, 1, mixer_reg + (i >> 8));
  1522. spin_unlock_irqrestore(&waveartist_lock, flags);
  1523. if (copy_to_user((void *)val, mixer_reg, sizeof(mixer_reg)))
  1524. return -EFAULT;
  1525. break;
  1526. default:
  1527. return -EINVAL;
  1528. }
  1529. return 0;
  1530. }
  1531. /* read back the state from PRIVATE1 */
  1532. case SOUND_MIXER_PRIVATE4:
  1533. val = (devc->spkr_mute_state  ? VNC_MUTE_INTERNAL_SPKR : 0) |
  1534.       (devc->line_mute_state  ? VNC_MUTE_LINE_OUT      : 0) |
  1535.       (devc->handset_detect   ? VNC_HANDSET_DETECT     : 0) |
  1536.       (devc->telephone_detect ? VNC_PHONE_DETECT       : 0) |
  1537.       (devc->no_autoselect    ? VNC_DISABLE_AUTOSWITCH : 0);
  1538. return put_user(val, (int *)arg) ? -EFAULT : 0;
  1539. }
  1540. if (_SIOC_DIR(cmd) & _SIOC_WRITE) {
  1541. /*
  1542.  * special case for master volume: if we
  1543.  * received this call - switch from hw
  1544.  * volume control to a software volume
  1545.  * control, till the hw volume is modified
  1546.  * to signal that user wants to be back in
  1547.  * hardware...
  1548.  */
  1549. if ((cmd & 0xff) == SOUND_MIXER_VOLUME)
  1550. devc->use_slider = 0;
  1551. /* speaker output            */
  1552. if ((cmd & 0xff) == SOUND_MIXER_SPEAKER) {
  1553. unsigned int val, l, r;
  1554. if (get_user(val, (int *)arg))
  1555. return -EFAULT;
  1556. l = val & 0x7f;
  1557. r = (val & 0x7f00) >> 8;
  1558. val = (l + r) / 2;
  1559. devc->levels[SOUND_MIXER_SPEAKER] = val | (val << 8);
  1560. devc->spkr_mute_state = (val <= 50);
  1561. vnc_mute_spkr(devc);
  1562. return 0;
  1563. }
  1564. }
  1565. return -ENOIOCTLCMD;
  1566. }
  1567. #endif
  1568. static struct address_info cfg;
  1569. static int attached;
  1570. static int __initdata io = 0;
  1571. static int __initdata irq = 0;
  1572. static int __initdata dma = 0;
  1573. static int __initdata dma2 = 0;
  1574. static int __init init_waveartist(void)
  1575. {
  1576. const struct waveartist_mixer_info *mix;
  1577. if (!io && machine_is_netwinder()) {
  1578. /*
  1579.  * The NetWinder WaveArtist is at a fixed address.
  1580.  * If the user does not supply an address, use the
  1581.  * well-known parameters.
  1582.  */
  1583. io   = 0x250;
  1584. irq  = 12;
  1585. dma  = 3;
  1586. dma2 = 7;
  1587. }
  1588. mix = &waveartist_mixer;
  1589. #ifdef CONFIG_ARCH_NETWINDER
  1590. if (machine_is_netwinder())
  1591. mix = &netwinder_mixer;
  1592. #endif
  1593. cfg.io_base = io;
  1594. cfg.irq = irq;
  1595. cfg.dma = dma;
  1596. cfg.dma2 = dma2;
  1597. if (!probe_waveartist(&cfg))
  1598. return -ENODEV;
  1599. attach_waveartist(&cfg, mix);
  1600. attached = 1;
  1601. return 0;
  1602. }
  1603. static void __exit cleanup_waveartist(void)
  1604. {
  1605. if (attached)
  1606. unload_waveartist(&cfg);
  1607. }
  1608. module_init(init_waveartist);
  1609. module_exit(cleanup_waveartist);
  1610. #ifndef MODULE
  1611. static int __init setup_waveartist(char *str)
  1612. {
  1613. /* io, irq, dma, dma2 */
  1614. int ints[5];
  1615. str = get_options(str, ARRAY_SIZE(ints), ints);
  1616. io = ints[1];
  1617. irq = ints[2];
  1618. dma = ints[3];
  1619. dma2 = ints[4];
  1620. return 1;
  1621. }
  1622. __setup("waveartist=", setup_waveartist);
  1623. #endif
  1624. MODULE_DESCRIPTION("Rockwell WaveArtist RWA-010 sound driver");
  1625. MODULE_PARM(io, "i"); /* IO base */
  1626. MODULE_PARM(irq, "i"); /* IRQ */
  1627. MODULE_PARM(dma, "i"); /* DMA */
  1628. MODULE_PARM(dma2, "i"); /* DMA2 */
  1629. MODULE_LICENSE("GPL");