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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  Driver for HAL2 sound processors
  3.  *  Copyright (c) 2001, 2002 Ladislav Michl <ladis@psi.cz>
  4.  *  
  5.  *  Based on Ulf Carlsson's code.
  6.  *
  7.  *  This program is free software; you can redistribute it and/or modify
  8.  *  it under the terms of the GNU General Public License version 2 as 
  9.  *  published by the Free Software Foundation.
  10.  *
  11.  *  This program is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; if not, write to the Free Software
  18.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  *  Supported devices:
  21.  *  /dev/dsp    standard dsp device, (mostly) OSS compatible
  22.  *  /dev/mixer standard mixer device, (mostly) OSS compatible
  23.  *
  24.  *  BUGS:
  25.  *  + Driver currently supports indigo mode only.
  26.  *  + Recording doesn't work. I guess that it is caused by PBUS channel
  27.  *    misconfiguration, but until I get relevant info I'm unable to fix it.
  28.  */
  29. #include <linux/module.h>
  30. #include <linux/sched.h>
  31. #include <linux/init.h>
  32. #include <linux/slab.h>
  33. #include <linux/poll.h>
  34. #include <linux/sound.h>
  35. #include <linux/soundcard.h>
  36. #include <asm/io.h>
  37. #include <asm/uaccess.h>
  38. #include <asm/sgi/sgint23.h>
  39. #include "hal2.h"
  40. #if 0
  41. #define DEBUG(args...) printk(args)
  42. #else
  43. #define DEBUG(args...)
  44. #endif
  45. #if 0 
  46. #define DEBUG_MIX(args...) printk(args)
  47. #else
  48. #define DEBUG_MIX(args...)
  49. #endif
  50. #define H2_INDIRECT_WAIT(regs) while (regs->isr & H2_ISR_TSTATUS);
  51. #define H2_READ_ADDR(addr) (addr | (1<<7))
  52. #define H2_WRITE_ADDR(addr) (addr)
  53. static char *hal2str = "HAL2 audio";
  54. static int ibuffers = 32;
  55. static int obuffers = 32;
  56. /* I doubt anyone has a machine with two HAL2 cards. It's possible to
  57.  * have two HPC's, so it is probably possible to have two HAL2 cards.
  58.  * Try to deal with it, but note that it is not tested.
  59.  */
  60. #define MAXCARDS 2
  61. static hal2_card_t* hal2_card[MAXCARDS];
  62. static const struct {
  63. unsigned char idx:4, avail:1;
  64. } mixtable[SOUND_MIXER_NRDEVICES] = {
  65. [SOUND_MIXER_PCM] = { H2_MIX_OUTPUT_ATT, 1 }, /* voice */
  66. [SOUND_MIXER_MIC] = { H2_MIX_INPUT_GAIN, 1 }, /* mic */
  67. };
  68. #define H2_SUPPORTED_FORMATS (AFMT_S16_LE | AFMT_S16_BE)
  69. static inline void hal2_isr_write(hal2_card_t *hal2, u32 val)
  70. {
  71. hal2->ctl_regs->isr = val;
  72. }
  73. static inline u32 hal2_isr_look(hal2_card_t *hal2)
  74. {
  75. return hal2->ctl_regs->isr;
  76. }
  77. static inline u32 hal2_rev_look(hal2_card_t *hal2)
  78. {
  79. return hal2->ctl_regs->rev;
  80. }
  81. #if 0
  82. static u16 hal2_i_look16(hal2_card_t *hal2, u32 addr)
  83. {
  84. hal2_ctl_regs_t *regs = hal2->ctl_regs;
  85. regs->iar = H2_READ_ADDR(addr);
  86. H2_INDIRECT_WAIT(regs);
  87. return (regs->idr0 & 0xffff);
  88. }
  89. #endif
  90. static u32 hal2_i_look32(hal2_card_t *hal2, u32 addr)
  91. {
  92. u32 ret;
  93. hal2_ctl_regs_t *regs = hal2->ctl_regs;
  94. regs->iar = H2_READ_ADDR(addr);
  95. H2_INDIRECT_WAIT(regs);
  96. ret = regs->idr0 & 0xffff;
  97. regs->iar = H2_READ_ADDR(addr | 0x1);
  98. H2_INDIRECT_WAIT(regs);
  99. ret |= (regs->idr0 & 0xffff) << 16;
  100. return ret;
  101. }
  102. static void hal2_i_write16(hal2_card_t *hal2, u32 addr, u16 val)
  103. {
  104. hal2_ctl_regs_t *regs = hal2->ctl_regs;
  105. regs->idr0 = val;
  106. regs->idr1 = 0;
  107. regs->idr2 = 0;
  108. regs->idr3 = 0;
  109. regs->iar = H2_WRITE_ADDR(addr);
  110. H2_INDIRECT_WAIT(regs);
  111. }
  112. static void hal2_i_write32(hal2_card_t *hal2, u32 addr, u32 val)
  113. {
  114. hal2_ctl_regs_t *regs = hal2->ctl_regs;
  115. regs->idr0 = val & 0xffff;
  116. regs->idr1 = val >> 16;
  117. regs->idr2 = 0;
  118. regs->idr3 = 0;
  119. regs->iar = H2_WRITE_ADDR(addr);
  120. H2_INDIRECT_WAIT(regs);
  121. }
  122. static void hal2_i_setbit16(hal2_card_t *hal2, u32 addr, u16 bit)
  123. {
  124. hal2_ctl_regs_t *regs = hal2->ctl_regs;
  125. regs->iar = H2_READ_ADDR(addr);
  126. H2_INDIRECT_WAIT(regs);
  127. regs->idr0 = regs->idr0 | bit;
  128. regs->idr1 = 0;
  129. regs->idr2 = 0;
  130. regs->idr3 = 0;
  131. regs->iar = H2_WRITE_ADDR(addr);
  132. H2_INDIRECT_WAIT(regs);
  133. }
  134. static void hal2_i_setbit32(hal2_card_t *hal2, u32 addr, u32 bit)
  135. {
  136. u32 tmp;
  137. hal2_ctl_regs_t *regs = hal2->ctl_regs;
  138. regs->iar = H2_READ_ADDR(addr);
  139. H2_INDIRECT_WAIT(regs);
  140. tmp = regs->idr0 | (regs->idr1 << 16) | bit;
  141. regs->idr0 = tmp & 0xffff;
  142. regs->idr1 = tmp >> 16;
  143. regs->idr2 = 0;
  144. regs->idr3 = 0;
  145. regs->iar = H2_WRITE_ADDR(addr);
  146. H2_INDIRECT_WAIT(regs);
  147. }
  148. static void hal2_i_clearbit16(hal2_card_t *hal2, u32 addr, u16 bit)
  149. {
  150. hal2_ctl_regs_t *regs = hal2->ctl_regs;
  151. regs->iar = H2_READ_ADDR(addr);
  152. H2_INDIRECT_WAIT(regs);
  153. regs->idr0 = regs->idr0 & ~bit;
  154. regs->idr1 = 0;
  155. regs->idr2 = 0;
  156. regs->idr3 = 0;
  157. regs->iar = H2_WRITE_ADDR(addr);
  158. H2_INDIRECT_WAIT(regs);
  159. }
  160. #if 0
  161. static void hal2_i_clearbit32(hal2_card_t *hal2, u32 addr, u32 bit)
  162. {
  163. u32 tmp;
  164. hal2_ctl_regs_t *regs = hal2->ctl_regs;
  165. regs->iar = H2_READ_ADDR(addr);
  166. H2_INDIRECT_WAIT(regs);
  167. tmp = (regs->idr0 | (regs->idr1 << 16)) & ~bit;
  168. regs->idr0 = tmp & 0xffff;
  169. regs->idr1 = tmp >> 16;
  170. regs->idr2 = 0;
  171. regs->idr3 = 0;
  172. regs->iar = H2_WRITE_ADDR(addr);
  173. H2_INDIRECT_WAIT(regs);
  174. }
  175. #endif
  176. #ifdef HAL2_DEBUG
  177. static void hal2_dump_regs(hal2_card_t *hal2)
  178. {
  179. printk("isr: %08hx ", hal2_isr_look(hal2));
  180. printk("rev: %08hxn", hal2_rev_look(hal2));
  181. printk("relay: %04hxn", hal2_i_look16(hal2, H2I_RELAY_C));
  182. printk("port en: %04hx ", hal2_i_look16(hal2, H2I_DMA_PORT_EN));
  183. printk("dma end: %04hx ", hal2_i_look16(hal2, H2I_DMA_END));
  184. printk("dma drv: %04hxn", hal2_i_look16(hal2, H2I_DMA_DRV));
  185. printk("syn ctl: %04hx ", hal2_i_look16(hal2, H2I_SYNTH_C));
  186. printk("aesrx ctl: %04hx ", hal2_i_look16(hal2, H2I_AESRX_C));
  187. printk("aestx ctl: %04hx ", hal2_i_look16(hal2, H2I_AESTX_C));
  188. printk("dac ctl1: %04hx ", hal2_i_look16(hal2, H2I_ADC_C1));
  189. printk("dac ctl2: %08lx ", hal2_i_look32(hal2, H2I_ADC_C2));
  190. printk("adc ctl1: %04hx ", hal2_i_look16(hal2, H2I_DAC_C1));
  191. printk("adc ctl2: %08lx ", hal2_i_look32(hal2, H2I_DAC_C2));
  192. printk("syn map: %04hxn", hal2_i_look16(hal2, H2I_SYNTH_MAP_C));
  193. printk("bres1 ctl1: %04hx ", hal2_i_look16(hal2, H2I_BRES1_C1));
  194. printk("bres1 ctl2: %04lx ", hal2_i_look32(hal2, H2I_BRES1_C2));
  195. printk("bres2 ctl1: %04hx ", hal2_i_look16(hal2, H2I_BRES2_C1));
  196. printk("bres2 ctl2: %04lx ", hal2_i_look32(hal2, H2I_BRES2_C2));
  197. printk("bres3 ctl1: %04hx ", hal2_i_look16(hal2, H2I_BRES3_C1));
  198. printk("bres3 ctl2: %04lxn", hal2_i_look32(hal2, H2I_BRES3_C2));
  199. }
  200. #endif
  201. static hal2_card_t* hal2_dsp_find_card(int minor)
  202. {
  203. int i;
  204. for (i = 0; i < MAXCARDS; i++)
  205. if (hal2_card[i] != NULL && hal2_card[i]->dev_dsp == minor)
  206. return hal2_card[i];
  207. return NULL;
  208. }
  209. static hal2_card_t* hal2_mixer_find_card(int minor)
  210. {
  211. int i;
  212. for (i = 0; i < MAXCARDS; i++)
  213. if (hal2_card[i] != NULL && hal2_card[i]->dev_mixer == minor)
  214. return hal2_card[i];
  215. return NULL;
  216. }
  217. static void hal2_dac_interrupt(hal2_codec_t *dac)
  218. {
  219. int running;
  220. spin_lock(&dac->lock);
  221. /* if tail buffer contains zero samples DMA stream was already
  222.  * stopped */
  223. running = dac->tail->info.cnt;
  224. dac->tail->info.cnt = 0;
  225. dac->tail->info.desc.cntinfo = HPCDMA_XIE | HPCDMA_EOX;
  226. dma_cache_wback_inv((unsigned long) dac->tail,
  227.     sizeof(struct hpc_dma_desc));
  228. /* we just proccessed empty buffer, don't update tail pointer */
  229. if (running)
  230. dac->tail = dac->tail->info.next;
  231. spin_unlock(&dac->lock);
  232. wake_up(&dac->dma_wait);
  233. }
  234. static void hal2_adc_interrupt(hal2_codec_t *adc)
  235. {
  236. int running;
  237. spin_lock(&adc->lock);
  238. /* if head buffer contains nonzero samples DMA stream was already
  239.  * stopped */
  240. running = !adc->head->info.cnt;
  241. adc->head->info.cnt = H2_BUFFER_SIZE;
  242. adc->head->info.desc.cntinfo = HPCDMA_XIE | HPCDMA_EOX;
  243. dma_cache_wback_inv((unsigned long) adc->head,
  244.     sizeof(struct hpc_dma_desc));
  245. /* we just proccessed empty buffer, don't update head pointer */
  246. if (running) {
  247. dma_cache_inv((unsigned long) adc->head->data, H2_BUFFER_SIZE);
  248. adc->head = adc->head->info.next;
  249. }
  250. spin_unlock(&adc->lock);
  251. wake_up(&adc->dma_wait);
  252. }
  253. static void hal2_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  254. {
  255. hal2_card_t *hal2 = (hal2_card_t*)dev_id;
  256. /* decide what caused this interrupt */
  257. if (hal2->dac.pbus.pbus->pbdma_ctrl & HPC3_PDMACTRL_INT)
  258. hal2_dac_interrupt(&hal2->dac);
  259. if (hal2->adc.pbus.pbus->pbdma_ctrl & HPC3_PDMACTRL_INT)
  260. hal2_adc_interrupt(&hal2->adc);
  261. }
  262. static int hal2_compute_rate(hal2_codec_t *codec, unsigned int rate)
  263. {
  264. unsigned short inc;
  265. /* We default to 44.1 kHz and if it isn't possible to fall back to
  266.  * 48.0 kHz with the needed adjustments of real_rate.
  267.  */
  268. DEBUG("rate: %dn", rate);
  269. /* Refer to CS4216 data sheet */
  270. if (rate < 4000)
  271. rate = 4000;
  272. if (rate > 50000)
  273. rate = 50000;
  274. /* Note: This is NOT the way they set up the bresenham clock generators
  275.  * in the specification. I've tried to implement that method but it
  276.  * doesn't work. It's probably another silly bug in the spec.
  277.  *
  278.  * I accidently discovered this method while I was testing and it seems
  279.  * to work very well with all frequencies, and thee shall follow rule #1
  280.  * of programming :-)
  281.  */
  282. if (44100 % rate == 0) {
  283. inc = 44100 / rate;
  284. if (inc < 1) inc = 1;
  285. codec->master = 44100;
  286. } else {
  287. inc = 48000 / rate;
  288. if (inc < 1) inc = 1;
  289. rate = 48000 / inc;
  290. codec->master = 48000;
  291. }
  292. codec->inc = inc;
  293. codec->mod = 1;
  294. DEBUG("real_rate: %dn", rate);
  295. return rate;
  296. }
  297. static void hal2_set_dac_rate(hal2_card_t *hal2)
  298. {
  299. unsigned int master = hal2->dac.master;
  300. int inc = hal2->dac.inc;
  301. int mod = hal2->dac.mod;
  302. DEBUG("master: %d inc: %d mod: %dn", master, inc, mod);
  303. hal2_i_write16(hal2, H2I_BRES1_C1, (master == 44100) ? 1 : 0);
  304. hal2_i_write32(hal2, H2I_BRES1_C2, ((0xffff & (mod - inc - 1)) << 16) | 1);
  305. }
  306. static void hal2_set_adc_rate(hal2_card_t *hal2)
  307. {
  308. unsigned int master = hal2->adc.master;
  309. int inc = hal2->adc.inc;
  310. int mod = hal2->adc.mod;
  311. DEBUG("master: %d inc: %d mod: %dn", master, inc, mod);
  312. hal2_i_write16(hal2, H2I_BRES2_C1, (master == 44100) ? 1 : 0);
  313. hal2_i_write32(hal2, H2I_BRES2_C2, ((0xffff & (mod - inc - 1)) << 16) | 1);
  314. }
  315. static void hal2_setup_dac(hal2_card_t *hal2)
  316. {
  317. unsigned int fifobeg, fifoend, highwater, sample_size;
  318. hal2_pbus_t *pbus = &hal2->dac.pbus;
  319. DEBUG("hal2_setup_dacn");
  320. /* Now we set up some PBUS information. The PBUS needs information about
  321.  * what portion of the fifo it will use. If it's receiving or
  322.  * transmitting, and finally whether the stream is little endian or big
  323.  * endian. The information is written later, on the start call.
  324.  */
  325. sample_size = 2 * hal2->dac.voices;
  326. /* Fifo should be set to hold exactly four samples. Highwater mark
  327.  * should be set to two samples. */
  328. highwater = (sample_size * 2) >> 1; /* halfwords */
  329. fifobeg = 0; /* playback is first */
  330. fifoend = (sample_size * 4) >> 3; /* doublewords */
  331. pbus->ctrl = HPC3_PDMACTRL_RT | HPC3_PDMACTRL_LD |
  332.      (highwater << 8) | (fifobeg << 16) | (fifoend << 24);
  333. /* We disable everything before we do anything at all */
  334. pbus->pbus->pbdma_ctrl = HPC3_PDMACTRL_LD;
  335. hal2_i_clearbit16(hal2, H2I_DMA_PORT_EN, H2I_DMA_PORT_EN_CODECTX);
  336. hal2_i_clearbit16(hal2, H2I_DMA_DRV, (1 << pbus->pbusnr));
  337. /* Setup the HAL2 for playback */
  338. hal2_set_dac_rate(hal2);
  339. /* We are using 1st Bresenham clock generator for playback */
  340. hal2_i_write16(hal2, H2I_DAC_C1, (pbus->pbusnr << H2I_C1_DMA_SHIFT)
  341. | (1 << H2I_C1_CLKID_SHIFT)
  342. | (hal2->dac.voices << H2I_C1_DATAT_SHIFT));
  343. }
  344. static void hal2_setup_adc(hal2_card_t *hal2)
  345. {
  346. unsigned int fifobeg, fifoend, highwater, sample_size;
  347. hal2_pbus_t *pbus = &hal2->adc.pbus;
  348. DEBUG("hal2_setup_adcn");
  349. sample_size = 2 * hal2->adc.voices;
  350. highwater = (sample_size * 2) >> 1; /* halfwords */
  351. fifobeg = (4 * 4) >> 3; /* record is second */
  352. fifoend = (4 * 4 + sample_size * 4) >> 3; /* doublewords */
  353. pbus->ctrl = HPC3_PDMACTRL_RT | HPC3_PDMACTRL_RCV | HPC3_PDMACTRL_LD | 
  354.      (highwater << 8) | (fifobeg << 16) | (fifoend << 24);
  355. pbus->pbus->pbdma_ctrl = HPC3_PDMACTRL_LD;
  356. hal2_i_clearbit16(hal2, H2I_DMA_PORT_EN, H2I_DMA_PORT_EN_CODECR);
  357. hal2_i_clearbit16(hal2, H2I_DMA_DRV, (1 << pbus->pbusnr));
  358. /* Setup the HAL2 for record */
  359. hal2_set_adc_rate(hal2);
  360. /* We are using 2nd Bresenham clock generator for record */
  361. hal2_i_write16(hal2, H2I_ADC_C1, (pbus->pbusnr << H2I_C1_DMA_SHIFT)
  362. | (2 << H2I_C1_CLKID_SHIFT)
  363. | (hal2->adc.voices << H2I_C1_DATAT_SHIFT));
  364. }
  365. static void hal2_start_dac(hal2_card_t *hal2)
  366. {
  367. hal2_pbus_t *pbus = &hal2->dac.pbus;
  368. DEBUG("hal2_start_dacn");
  369. pbus->pbus->pbdma_dptr = PHYSADDR(hal2->dac.tail);
  370. pbus->pbus->pbdma_ctrl = pbus->ctrl | HPC3_PDMACTRL_ACT;
  371. /* set endianess */
  372. if (hal2->dac.format & AFMT_S16_LE)
  373. hal2_i_setbit16(hal2, H2I_DMA_END, H2I_DMA_END_CODECTX);
  374. else
  375. hal2_i_clearbit16(hal2, H2I_DMA_END, H2I_DMA_END_CODECTX);
  376. /* set DMA bus */
  377. hal2_i_setbit16(hal2, H2I_DMA_DRV, (1 << pbus->pbusnr));
  378. /* enable DAC */
  379. hal2_i_setbit16(hal2, H2I_DMA_PORT_EN, H2I_DMA_PORT_EN_CODECTX);
  380. }
  381. static void hal2_start_adc(hal2_card_t *hal2)
  382. {
  383. hal2_pbus_t *pbus = &hal2->adc.pbus;
  384. DEBUG("hal2_start_adcn");
  385. pbus->pbus->pbdma_dptr = PHYSADDR(hal2->adc.head);
  386. pbus->pbus->pbdma_ctrl = pbus->ctrl | HPC3_PDMACTRL_ACT;
  387. /* set endianess */
  388. if (hal2->adc.format & AFMT_S16_LE)
  389. hal2_i_setbit16(hal2, H2I_DMA_END, H2I_DMA_END_CODECR);
  390. else
  391. hal2_i_clearbit16(hal2, H2I_DMA_END, H2I_DMA_END_CODECR);
  392. /* set DMA bus */
  393. hal2_i_setbit16(hal2, H2I_DMA_DRV, (1 << pbus->pbusnr));
  394. /* enable ADC */
  395. hal2_i_setbit16(hal2, H2I_DMA_PORT_EN, H2I_DMA_PORT_EN_CODECR);
  396. }
  397. static inline void hal2_stop_dac(hal2_card_t *hal2)
  398. {
  399. DEBUG("hal2_stop_dacn");
  400. hal2->dac.pbus.pbus->pbdma_ctrl = HPC3_PDMACTRL_LD;
  401. /* The HAL2 itself may remain enabled safely */
  402. }
  403. static inline void hal2_stop_adc(hal2_card_t *hal2)
  404. {
  405. DEBUG("hal2_stop_adcn");
  406. hal2->adc.pbus.pbus->pbdma_ctrl = HPC3_PDMACTRL_LD;
  407. }
  408. #define hal2_alloc_dac_dmabuf(hal2) hal2_alloc_dmabuf(hal2, 1)
  409. #define hal2_alloc_adc_dmabuf(hal2) hal2_alloc_dmabuf(hal2, 0)
  410. static int hal2_alloc_dmabuf(hal2_card_t *hal2, int is_dac)
  411. {
  412. int buffers, cntinfo;
  413. hal2_buf_t *buf, *prev;
  414. hal2_codec_t *codec;
  415. if (is_dac) {
  416. codec = &hal2->dac;
  417. buffers = obuffers;
  418. cntinfo = HPCDMA_XIE | HPCDMA_EOX;
  419. } else {
  420. codec = &hal2->adc;
  421. buffers = ibuffers;
  422. cntinfo = HPCDMA_XIE | H2_BUFFER_SIZE;
  423. }
  424. DEBUG("allocating %d DMA buffers.n", buffers);
  425. buf = (hal2_buf_t*) get_zeroed_page(GFP_KERNEL);
  426. if (!buf)
  427. return -ENOMEM;
  428. codec->head = buf;
  429. codec->tail = buf;
  430. while (--buffers) {
  431. buf->info.desc.pbuf = PHYSADDR(&buf->data);
  432. buf->info.desc.cntinfo = cntinfo;
  433. buf->info.cnt = 0;
  434. prev = buf;
  435. buf = (hal2_buf_t*) get_zeroed_page(GFP_KERNEL);
  436. if (!buf) {
  437. printk("HAL2: Not enough memory for DMA buffer.n");
  438. buf = codec->head;
  439. while (buf) {
  440. prev = buf;
  441. free_page((unsigned long) buf);
  442. buf = prev->info.next;
  443. }
  444. return -ENOMEM;
  445. }
  446. prev->info.next = buf;
  447. prev->info.desc.pnext = PHYSADDR(buf);
  448. /* The PBUS can prolly not read this stuff when it's in
  449.  * the cache so we have to flush it back to main memory
  450.  */
  451. dma_cache_wback_inv((unsigned long) prev, PAGE_SIZE);
  452. }
  453. buf->info.desc.pbuf = PHYSADDR(&buf->data);
  454. buf->info.desc.cntinfo = cntinfo;
  455. buf->info.cnt = 0;
  456. buf->info.next = codec->head;
  457. buf->info.desc.pnext = PHYSADDR(codec->head);
  458. dma_cache_wback_inv((unsigned long) buf, PAGE_SIZE);
  459. return 0;
  460. }
  461. #define hal2_free_dac_dmabuf(hal2) hal2_free_dmabuf(hal2, 1)
  462. #define hal2_free_adc_dmabuf(hal2) hal2_free_dmabuf(hal2, 0)
  463. static void hal2_free_dmabuf(hal2_card_t *hal2, int is_dac)
  464. {
  465. hal2_buf_t *buf, *next;
  466. hal2_codec_t *codec = (is_dac) ? &hal2->dac : &hal2->adc;
  467. if (!codec->head)
  468. return;
  469. buf = codec->head->info.next;
  470. codec->head->info.next = NULL;
  471. while (buf) {
  472. next = buf->info.next;
  473. free_page((unsigned long) buf);
  474. buf = next;
  475. }
  476. codec->head = codec->tail = NULL;
  477. }
  478. /* 
  479.  * Add 'count' bytes to 'buffer' from DMA ring buffers. Return number of
  480.  * bytes added or -EFAULT if copy_from_user failed.
  481.  */
  482. static int hal2_get_buffer(hal2_card_t *hal2, char *buffer, int count)
  483. {
  484. unsigned long flags;
  485. int size, ret = 0;
  486. hal2_codec_t *adc = &hal2->adc;
  487. spin_lock_irqsave(&adc->lock, flags);
  488. DEBUG("getting %d bytes ", count);
  489. /* enable DMA stream if there are no data */
  490. if (!(adc->pbus.pbus->pbdma_ctrl & HPC3_PDMACTRL_ISACT) &&
  491.     adc->tail->info.cnt == 0)
  492. hal2_start_adc(hal2);
  493. DEBUG("... ");
  494. while (adc->tail->info.cnt > 0 && count > 0) {
  495. size = min(adc->tail->info.cnt, count);
  496. spin_unlock_irqrestore(&adc->lock, flags);
  497. if (copy_to_user(buffer, &adc->tail->data[H2_BUFFER_SIZE-size],
  498.  size)) {
  499. ret = -EFAULT;
  500. goto out;
  501. }
  502. spin_lock_irqsave(&adc->lock, flags);
  503. adc->tail->info.cnt -= size;
  504. /* buffer is empty, update tail pointer */
  505. if (adc->tail->info.cnt == 0) {
  506. adc->tail->info.desc.cntinfo = HPCDMA_XIE |
  507.        H2_BUFFER_SIZE;
  508. dma_cache_wback_inv((unsigned long) adc->tail,
  509.     sizeof(struct hpc_dma_desc));
  510. adc->tail = adc->tail->info.next;
  511. /* enable DMA stream again if needed */
  512. if (!(adc->pbus.pbus->pbdma_ctrl & HPC3_PDMACTRL_ISACT))
  513. hal2_start_adc(hal2);
  514. }
  515. buffer += size;
  516. ret += size;
  517. count -= size;
  518. DEBUG("(%d) ", size);
  519. }
  520. spin_unlock_irqrestore(&adc->lock, flags);
  521. out:
  522. DEBUG("n");
  523. return ret;
  524. /* 
  525.  * Add 'count' bytes from 'buffer' to DMA ring buffers. Return number of
  526.  * bytes added or -EFAULT if copy_from_user failed.
  527.  */
  528. static int hal2_add_buffer(hal2_card_t *hal2, char *buffer, int count)
  529. {
  530. unsigned long flags;
  531. int size, ret = 0;
  532. hal2_codec_t *dac = &hal2->dac;
  533. spin_lock_irqsave(&dac->lock, flags);
  534. DEBUG("adding %d bytes ", count);
  535. while (dac->head->info.cnt == 0 && count > 0) {
  536. size = min((int)H2_BUFFER_SIZE, count);
  537. spin_unlock_irqrestore(&dac->lock, flags);
  538. if (copy_from_user(dac->head->data, buffer, size)) {
  539. ret = -EFAULT;
  540. goto out;
  541. }
  542. spin_lock_irqsave(&dac->lock, flags);
  543. dac->head->info.desc.cntinfo = size | HPCDMA_XIE;
  544. dac->head->info.cnt = size;
  545. dma_cache_wback_inv((unsigned long) dac->head, 
  546.     size + PAGE_SIZE - H2_BUFFER_SIZE);
  547. buffer += size;
  548. ret += size;
  549. count -= size;
  550. dac->head = dac->head->info.next;
  551. DEBUG("(%d) ", size);
  552. }
  553. if (!(dac->pbus.pbus->pbdma_ctrl & HPC3_PDMACTRL_ISACT) && ret > 0)
  554. hal2_start_dac(hal2);
  555. spin_unlock_irqrestore(&dac->lock, flags);
  556. out:
  557. DEBUG("n");
  558. return ret;
  559. }
  560. #define hal2_reset_dac_pointer(hal2) hal2_reset_pointer(hal2, 1)
  561. #define hal2_reset_adc_pointer(hal2) hal2_reset_pointer(hal2, 0)
  562. static void hal2_reset_pointer(hal2_card_t *hal2, int is_dac)
  563. {
  564. hal2_codec_t *codec = (is_dac) ? &hal2->dac : &hal2->adc;
  565. DEBUG("hal2_reset_pointern");
  566. codec->tail = codec->head;
  567. do {
  568. codec->tail->info.desc.cntinfo = HPCDMA_XIE | (is_dac) ? 
  569.  HPCDMA_EOX : H2_BUFFER_SIZE;
  570. codec->tail->info.cnt = 0;
  571. dma_cache_wback_inv((unsigned long) codec->tail, 
  572.     sizeof(struct hpc_dma_desc));
  573. codec->tail = codec->tail->info.next;
  574. } while (codec->tail != codec->head);
  575. }
  576. static int hal2_sync_dac(hal2_card_t *hal2)
  577. {
  578. DECLARE_WAITQUEUE(wait, current);
  579. hal2_codec_t *dac = &hal2->dac;
  580. int ret = 0;
  581. signed long timeout = 1000 * H2_BUFFER_SIZE * 2 * dac->voices *
  582.       HZ / dac->sample_rate / 900;
  583. down(&dac->sem);
  584. while (dac->pbus.pbus->pbdma_ctrl & HPC3_PDMACTRL_ISACT) {
  585. add_wait_queue(&dac->dma_wait, &wait);
  586. set_current_state(TASK_INTERRUPTIBLE);
  587. if (!schedule_timeout(timeout))
  588. /* We may get bogus timeout when system is 
  589.  * heavily loaded */
  590. if (dac->tail->info.cnt) {
  591. printk("HAL2: timeout...n");
  592. ret = -ETIME;
  593. }
  594. if (signal_pending(current))
  595. ret = -ERESTARTSYS;
  596. if (ret) {
  597. hal2_stop_dac(hal2);
  598. hal2_reset_dac_pointer(hal2);
  599. }
  600. remove_wait_queue(&dac->dma_wait, &wait);
  601. }
  602. up(&dac->sem);
  603. return ret;
  604. }
  605. static int hal2_write_mixer(hal2_card_t *hal2, int index, int vol)
  606. {
  607. unsigned int l, r;
  608. DEBUG_MIX("mixer %d writen", index);
  609. if (index >= SOUND_MIXER_NRDEVICES || !mixtable[index].avail)
  610. return -EINVAL;
  611. r = (vol >> 8) & 0xff;
  612. if (r > 100)
  613. r = 100;
  614. l = vol & 0xff;
  615. if (l > 100)
  616. l = 100;
  617. hal2->mixer.volume[mixtable[index].idx] = l | (r << 8);
  618. switch (mixtable[index].idx) {
  619. case H2_MIX_OUTPUT_ATT: {
  620. DEBUG_MIX("output attenuator %d,%dn", l, r);
  621. if (r | l) {
  622. unsigned int tmp = hal2_i_look32(hal2, H2I_DAC_C2); 
  623. tmp &= ~(H2I_C2_L_ATT_M | H2I_C2_R_ATT_M | H2I_C2_MUTE);
  624. /* Attenuator has five bits */
  625. l = (31 * (100 - l) / 99);
  626. r = (31 * (100 - r) / 99);
  627. DEBUG_MIX("left: %d, right %dn", l, r);
  628. tmp |= (l << H2I_C2_L_ATT_SHIFT) & H2I_C2_L_ATT_M;
  629. tmp |= (r << H2I_C2_R_ATT_SHIFT) & H2I_C2_R_ATT_M;
  630. hal2_i_write32(hal2, H2I_DAC_C2, tmp);
  631. } else 
  632. hal2_i_setbit32(hal2, H2I_DAC_C2, H2I_C2_MUTE);
  633. }
  634. case H2_MIX_INPUT_GAIN: {
  635. /* TODO */
  636. }
  637. }
  638. return 0;
  639. }
  640. static void hal2_init_mixer(hal2_card_t *hal2)
  641. {
  642. int i;
  643. for (i = 0; i < SOUND_MIXER_NRDEVICES; i++)
  644. hal2_write_mixer(hal2, i, 100 | (100 << 8));
  645. }
  646. static int hal2_mixer_ioctl(hal2_card_t *hal2, unsigned int cmd, 
  647.     unsigned long arg)
  648. {
  649. int val;
  650.         if (cmd == SOUND_MIXER_INFO) {
  651. mixer_info info;
  652. strncpy(info.id, hal2str, sizeof(info.id));
  653. strncpy(info.name, hal2str, sizeof(info.name));
  654. info.modify_counter = hal2->mixer.modcnt;
  655. if (copy_to_user((void *)arg, &info, sizeof(info)))
  656. return -EFAULT;
  657. return 0;
  658. }
  659. if (cmd == SOUND_OLD_MIXER_INFO) {
  660. _old_mixer_info info;
  661. strncpy(info.id, hal2str, sizeof(info.id));
  662. strncpy(info.name, hal2str, sizeof(info.name));
  663. if (copy_to_user((void *)arg, &info, sizeof(info)))
  664. return -EFAULT;
  665. return 0;
  666. }
  667. if (cmd == OSS_GETVERSION)
  668. return put_user(SOUND_VERSION, (int *)arg);
  669. if (_IOC_TYPE(cmd) != 'M' || _IOC_SIZE(cmd) != sizeof(int))
  670.                 return -EINVAL;
  671.         if (_IOC_DIR(cmd) == _IOC_READ) {
  672.                 switch (_IOC_NR(cmd)) {
  673. /* Give the current record source */
  674. case SOUND_MIXER_RECSRC:
  675. val = 0; /* FIXME */
  676. break;
  677. /* Give the supported mixers, all of them support stereo */
  678.                 case SOUND_MIXER_DEVMASK:
  679.                 case SOUND_MIXER_STEREODEVS: {
  680. int i;
  681. for (val = i = 0; i < SOUND_MIXER_NRDEVICES; i++)
  682. if (mixtable[i].avail)
  683. val |= 1 << i;
  684. break;
  685. }
  686. /* Arg contains a bit for each supported recording source */
  687.                 case SOUND_MIXER_RECMASK:
  688. val = 0;
  689. break;
  690.                 case SOUND_MIXER_CAPS:
  691. val = 0;
  692. break;
  693. /* Read a specific mixer */
  694. default: {
  695. int i = _IOC_NR(cmd);
  696. if (i >= SOUND_MIXER_NRDEVICES || !mixtable[i].avail)
  697. return -EINVAL;
  698. val = hal2->mixer.volume[mixtable[i].idx];
  699. break;
  700. }
  701. }
  702. return put_user(val, (int *)arg);
  703. }
  704.         if (_IOC_DIR(cmd) != (_IOC_WRITE|_IOC_READ))
  705. return -EINVAL;
  706. hal2->mixer.modcnt++;
  707. if (get_user(val, (int *)arg))
  708. return -EFAULT;
  709. switch (_IOC_NR(cmd)) {
  710. /* Arg contains a bit for each recording source */
  711. case SOUND_MIXER_RECSRC:
  712. return 0; /* FIXME */
  713. default:
  714. return hal2_write_mixer(hal2, _IOC_NR(cmd), val);
  715. }
  716. return 0;
  717. }
  718. static int hal2_open_mixdev(struct inode *inode, struct file *file)
  719. {
  720. hal2_card_t *hal2 = hal2_mixer_find_card(MINOR(inode->i_rdev));
  721. if (hal2) {
  722. file->private_data = hal2;
  723. return 0;
  724. }
  725. return -ENODEV;
  726. }
  727. static int hal2_release_mixdev(struct inode *inode, struct file *file)
  728. {
  729. return 0;
  730. }
  731. static int hal2_ioctl_mixdev(struct inode *inode, struct file *file,
  732.      unsigned int cmd, unsigned long arg)
  733. {
  734. return hal2_mixer_ioctl((hal2_card_t *)file->private_data, cmd, arg);
  735. }
  736. static int hal2_ioctl(struct inode *inode, struct file *file, 
  737.       unsigned int cmd, unsigned long arg)
  738. {
  739. int val;
  740. hal2_card_t *hal2 = (hal2_card_t *) file->private_data;
  741. switch (cmd) {
  742. case OSS_GETVERSION:
  743. return put_user(SOUND_VERSION, (int *)arg);
  744. case SNDCTL_DSP_SYNC:
  745. if (file->f_mode & FMODE_WRITE)
  746. return hal2_sync_dac(hal2);
  747. return 0;
  748. case SNDCTL_DSP_SETDUPLEX:
  749. return 0;
  750. case SNDCTL_DSP_GETCAPS:
  751. return put_user(DSP_CAP_DUPLEX | DSP_CAP_MULTI, (int *)arg);
  752. case SNDCTL_DSP_RESET:
  753. if (file->f_mode & FMODE_READ) {
  754. hal2_stop_adc(hal2);
  755. hal2_reset_adc_pointer(hal2);
  756. }
  757. if (file->f_mode & FMODE_WRITE) {
  758. hal2_stop_dac(hal2);
  759. hal2_reset_dac_pointer(hal2);
  760. }
  761. return 0;
  762.   case SNDCTL_DSP_SPEED:
  763. if (get_user(val, (int *)arg))
  764. return -EFAULT;
  765. if (file->f_mode & FMODE_READ) {
  766. hal2_stop_adc(hal2);
  767. val = hal2_compute_rate(&hal2->adc, val);
  768. hal2->adc.sample_rate = val;
  769. hal2_set_adc_rate(hal2);
  770. }
  771. if (file->f_mode & FMODE_WRITE) {
  772. hal2_stop_dac(hal2);
  773. val = hal2_compute_rate(&hal2->dac, val);
  774. hal2->dac.sample_rate = val;
  775. hal2_set_dac_rate(hal2);
  776. }
  777. return put_user(val, (int *)arg);
  778. case SNDCTL_DSP_STEREO:
  779. if (get_user(val, (int *)arg))
  780. return -EFAULT;
  781. if (file->f_mode & FMODE_READ) {
  782. hal2_stop_adc(hal2);
  783. hal2->adc.voices = (val) ? 2 : 1;
  784. hal2_setup_adc(hal2);
  785. }
  786. if (file->f_mode & FMODE_WRITE) {
  787. hal2_stop_dac(hal2);
  788. hal2->dac.voices = (val) ? 2 : 1;
  789. hal2_setup_dac(hal2);
  790.                 }
  791. return 0;
  792. case SNDCTL_DSP_CHANNELS:
  793. if (get_user(val, (int *)arg))
  794. return -EFAULT;
  795. if (val != 0) {
  796. if (file->f_mode & FMODE_READ) {
  797. hal2_stop_adc(hal2);
  798. hal2->adc.voices = (val == 1) ? 1 : 2;
  799. hal2_setup_adc(hal2);
  800. }
  801. if (file->f_mode & FMODE_WRITE) {
  802. hal2_stop_dac(hal2);
  803. hal2->dac.voices = (val == 1) ? 1 : 2;
  804. hal2_setup_dac(hal2);
  805. }
  806. }
  807. val = -EINVAL;
  808. if (file->f_mode & FMODE_READ)
  809. val = hal2->adc.voices;
  810. if (file->f_mode & FMODE_WRITE)
  811. val = hal2->dac.voices;
  812. return put_user(val, (int *)arg);
  813. case SNDCTL_DSP_GETFMTS: /* Returns a mask */
  814.                 return put_user(H2_SUPPORTED_FORMATS, (int *)arg);
  815. case SNDCTL_DSP_SETFMT: /* Selects ONE fmt*/
  816. if (get_user(val, (int *)arg))
  817. return -EFAULT;
  818. if (val != AFMT_QUERY) {
  819. if (!(val & H2_SUPPORTED_FORMATS))
  820. return -EINVAL;
  821. if (file->f_mode & FMODE_READ) {
  822. hal2_stop_adc(hal2);
  823. hal2->adc.format = val;
  824. hal2_setup_adc(hal2);
  825. }
  826. if (file->f_mode & FMODE_WRITE) {
  827. hal2_stop_dac(hal2);
  828. hal2->dac.format = val;
  829. hal2_setup_dac(hal2);
  830. }
  831. } else {
  832. val = -EINVAL;
  833. if (file->f_mode & FMODE_READ)
  834. val = hal2->adc.format;
  835. if (file->f_mode & FMODE_WRITE)
  836. val = hal2->dac.format;
  837. }
  838. return put_user(val, (int *)arg);
  839. case SNDCTL_DSP_POST:
  840. return 0;
  841. case SNDCTL_DSP_GETOSPACE: {
  842. unsigned long flags;
  843. audio_buf_info info;
  844. hal2_buf_t *buf;
  845. hal2_codec_t *dac = &hal2->dac;
  846. if (!(file->f_mode & FMODE_WRITE))
  847. return -EINVAL;
  848. spin_lock_irqsave(&dac->lock, flags);
  849. info.fragments = 0;
  850. buf = dac->head;
  851. while (buf->info.cnt == 0 && buf != dac->tail) {
  852. info.fragments++;
  853. buf = buf->info.next;
  854. }
  855. spin_unlock_irqrestore(&dac->lock, flags);
  856. info.fragstotal = obuffers;
  857. info.fragsize = H2_BUFFER_SIZE;
  858.                 info.bytes = info.fragsize * info.fragments;
  859. return copy_to_user((void *)arg, &info, sizeof(info)) ? -EFAULT : 0;
  860. }
  861.    
  862. case SNDCTL_DSP_GETISPACE: {
  863. unsigned long flags;
  864. audio_buf_info info;
  865. hal2_buf_t *buf;
  866. hal2_codec_t *adc = &hal2->adc;
  867. if (!(file->f_mode & FMODE_READ))
  868. return -EINVAL;
  869. spin_lock_irqsave(&adc->lock, flags);
  870. info.fragments = 0;
  871. info.bytes = 0;
  872. buf = adc->tail;
  873. while (buf->info.cnt > 0 && buf != adc->head) {
  874. info.fragments++;
  875. info.bytes += buf->info.cnt;
  876. buf = buf->info.next;
  877. }
  878. spin_unlock_irqrestore(&adc->lock, flags);
  879. info.fragstotal = ibuffers;
  880. info.fragsize = H2_BUFFER_SIZE;
  881. return copy_to_user((void *)arg, &info, sizeof(info)) ? -EFAULT : 0;
  882. }
  883. case SNDCTL_DSP_NONBLOCK:
  884. file->f_flags |= O_NONBLOCK;
  885. return 0;
  886. case SNDCTL_DSP_GETBLKSIZE:
  887. return put_user(H2_BUFFER_SIZE, (int *)arg);
  888. case SNDCTL_DSP_SETFRAGMENT:
  889. return 0;
  890. case SOUND_PCM_READ_RATE:
  891. val = -EINVAL;
  892. if (file->f_mode & FMODE_READ)
  893. val = hal2->adc.sample_rate;
  894. if (file->f_mode & FMODE_WRITE)
  895. val = hal2->dac.sample_rate;
  896. return put_user(val, (int *)arg);
  897. case SOUND_PCM_READ_CHANNELS:
  898. val = -EINVAL;
  899. if (file->f_mode & FMODE_READ)
  900. val = hal2->adc.voices;
  901. if (file->f_mode & FMODE_WRITE)
  902. val = hal2->dac.voices;
  903. return put_user(val, (int *)arg);
  904. case SOUND_PCM_READ_BITS:
  905. val = 16;
  906. return put_user(val, (int *)arg);
  907. }
  908. return hal2_mixer_ioctl(hal2, cmd, arg);
  909. }
  910. static ssize_t hal2_read(struct file *file, char *buffer,
  911.  size_t count, loff_t *ppos)
  912. {
  913. ssize_t err;
  914. hal2_card_t *hal2 = (hal2_card_t *) file->private_data;
  915. hal2_codec_t *adc = &hal2->adc;
  916. if (count == 0)
  917. return 0;
  918. if (ppos != &file->f_pos)
  919. return -ESPIPE;
  920. down(&adc->sem);
  921. if (file->f_flags & O_NONBLOCK) {
  922. err = hal2_get_buffer(hal2, buffer, count);
  923. err = err == 0 ? -EAGAIN : err;
  924. } else {
  925. do {
  926. /* ~10% longer */
  927. signed long timeout = 1000 * H2_BUFFER_SIZE *
  928. 2 * adc->voices * HZ / adc->sample_rate / 900;
  929. DECLARE_WAITQUEUE(wait, current);
  930. ssize_t cnt = 0;
  931. err = hal2_get_buffer(hal2, buffer, count);
  932. if (err > 0) {
  933. count -= err;
  934. cnt += err;
  935. buffer += err;
  936. err = cnt;
  937. }
  938. if (count > 0 && err >= 0) {
  939. add_wait_queue(&adc->dma_wait, &wait);
  940. set_current_state(TASK_INTERRUPTIBLE);
  941. /* Well, it is possible, that interrupt already
  942.  * arrived. Hmm, shit happens, we have one more
  943.  * buffer filled ;) */
  944. if (!schedule_timeout(timeout))
  945. /* We may get bogus timeout when system
  946.  * is heavily loaded */
  947. if (!adc->tail->info.cnt) {
  948. printk("HAL2: timeout...n");
  949. hal2_stop_adc(hal2);
  950. hal2_reset_adc_pointer(hal2);
  951. err = -EAGAIN;
  952. }
  953. if (signal_pending(current))
  954. err = -ERESTARTSYS;
  955. remove_wait_queue(&adc->dma_wait, &wait);
  956. }
  957. } while (count > 0 && err >= 0);
  958. }
  959. up(&adc->sem);
  960. return err;
  961. }
  962. static ssize_t hal2_write(struct file *file, const char *buffer,
  963.   size_t count, loff_t *ppos)
  964. {
  965. ssize_t err;
  966. char *buf = (char*) buffer;
  967. hal2_card_t *hal2 = (hal2_card_t *) file->private_data;
  968. hal2_codec_t *dac = &hal2->dac;
  969. if (count == 0)
  970. return 0;
  971. if (ppos != &file->f_pos)
  972. return -ESPIPE;
  973. down(&dac->sem);
  974. if (file->f_flags & O_NONBLOCK) {
  975. err = hal2_add_buffer(hal2, buf, count);
  976. err = err == 0 ? -EAGAIN : err;
  977. } else {
  978. do {
  979. /* ~10% longer */
  980. signed long timeout = 1000 * H2_BUFFER_SIZE *
  981. 2 * dac->voices * HZ / dac->sample_rate / 900;
  982. DECLARE_WAITQUEUE(wait, current);
  983. ssize_t cnt = 0;
  984. err = hal2_add_buffer(hal2, buf, count);
  985. if (err > 0) {
  986. count -= err;
  987. cnt += err;
  988. buf += err;
  989. err = cnt;
  990. }
  991. if (count > 0 && err >= 0) {
  992. add_wait_queue(&dac->dma_wait, &wait);
  993. set_current_state(TASK_INTERRUPTIBLE);
  994. /* Well, it is possible, that interrupt already
  995.  * arrived. Hmm, shit happens, we have one more
  996.  * buffer free ;) */
  997. if (!schedule_timeout(timeout))
  998. /* We may get bogus timeout when system
  999.  * is heavily loaded */
  1000. if (dac->head->info.cnt) {
  1001. printk("HAL2: timeout...n");
  1002. hal2_stop_dac(hal2);
  1003. hal2_reset_dac_pointer(hal2);
  1004. err = -EAGAIN;
  1005. }
  1006. if (signal_pending(current))
  1007. err = -ERESTARTSYS;
  1008. remove_wait_queue(&dac->dma_wait, &wait);
  1009. }
  1010. } while (count > 0 && err >= 0);
  1011. }
  1012. up(&dac->sem);
  1013. return err;
  1014. }
  1015. static unsigned int hal2_poll(struct file *file, struct poll_table_struct *wait)
  1016. {
  1017. unsigned long flags;
  1018. unsigned int mask = 0;
  1019. hal2_card_t *hal2 = (hal2_card_t *) file->private_data;
  1020. if (file->f_mode & FMODE_READ) {
  1021. hal2_codec_t *adc = &hal2->adc;
  1022. poll_wait(file, &hal2->adc.dma_wait, wait);
  1023. spin_lock_irqsave(&adc->lock, flags);
  1024. if (adc->tail->info.cnt > 0)
  1025. mask |= POLLIN;
  1026. spin_unlock_irqrestore(&adc->lock, flags);
  1027. }
  1028. if (file->f_mode & FMODE_WRITE) {
  1029. hal2_codec_t *dac = &hal2->dac;
  1030. poll_wait(file, &dac->dma_wait, wait);
  1031. spin_lock_irqsave(&dac->lock, flags);
  1032. if (dac->head->info.cnt == 0)
  1033. mask |= POLLOUT;
  1034. spin_unlock_irqrestore(&dac->lock, flags);
  1035. }
  1036. return mask;
  1037. }
  1038. static int hal2_open(struct inode *inode, struct file *file)
  1039. {
  1040. int err;
  1041. hal2_card_t *hal2 = hal2_dsp_find_card(MINOR(inode->i_rdev));
  1042. DEBUG("opening audio device.n");
  1043. if (!hal2) {
  1044. printk("HAL2: Whee?! Open door and go away!n");
  1045. return -ENODEV;
  1046. }
  1047. file->private_data = hal2;
  1048. if (file->f_mode & FMODE_READ) {
  1049. if (hal2->adc.usecount)
  1050. return -EBUSY;
  1051. /* OSS spec wanted us to use 8 bit, 8 kHz mono by default,
  1052.  * but HAL2 can't do 8bit audio */
  1053. hal2->adc.format = AFMT_S16_BE;
  1054. hal2->adc.voices = 1;
  1055. hal2->adc.sample_rate = hal2_compute_rate(&hal2->adc, 8000);
  1056. hal2_set_adc_rate(hal2);
  1057. /* alloc DMA buffers */
  1058. err = hal2_alloc_adc_dmabuf(hal2);
  1059. if (err)
  1060. return err;
  1061. hal2_setup_adc(hal2);
  1062. hal2->adc.usecount++;
  1063. }
  1064. if (file->f_mode & FMODE_WRITE) {
  1065. if (hal2->dac.usecount)
  1066. return -EBUSY;
  1067. hal2->dac.format = AFMT_S16_BE;
  1068. hal2->dac.voices = 1;
  1069. hal2->dac.sample_rate = hal2_compute_rate(&hal2->dac, 8000);
  1070. hal2_set_dac_rate(hal2);
  1071. /* alloc DMA buffers */
  1072. err = hal2_alloc_dac_dmabuf(hal2);
  1073. if (err)
  1074. return err;
  1075. hal2_setup_dac(hal2);
  1076. hal2->dac.usecount++;
  1077. }
  1078. return 0;
  1079. }
  1080. static int hal2_release(struct inode *inode, struct file *file)
  1081. {
  1082. hal2_card_t *hal2 = (hal2_card_t *) file->private_data;
  1083. if (file->f_mode & FMODE_READ) {
  1084. hal2_stop_adc(hal2);
  1085. hal2_free_adc_dmabuf(hal2);
  1086. hal2->adc.usecount--;
  1087. }
  1088. if (file->f_mode & FMODE_WRITE) {
  1089. hal2_sync_dac(hal2);
  1090. hal2_free_dac_dmabuf(hal2);
  1091. hal2->dac.usecount--;
  1092. }
  1093. return 0;
  1094. }
  1095. static struct file_operations hal2_audio_fops = {
  1096. owner: THIS_MODULE,
  1097. llseek: no_llseek,
  1098. read: hal2_read,
  1099. write: hal2_write,
  1100. poll: hal2_poll,
  1101. ioctl: hal2_ioctl,
  1102. open: hal2_open,
  1103. release: hal2_release,
  1104. };
  1105. static struct file_operations hal2_mixer_fops = {
  1106. owner: THIS_MODULE,
  1107. llseek: no_llseek,
  1108. ioctl: hal2_ioctl_mixdev,
  1109. open: hal2_open_mixdev,
  1110. release: hal2_release_mixdev,
  1111. };
  1112. static int hal2_request_irq(hal2_card_t *hal2, int irq)
  1113. {
  1114. unsigned long flags;
  1115. int ret = 0;
  1116. save_and_cli(flags);
  1117. if (request_irq(irq, hal2_interrupt, SA_SHIRQ, hal2str, hal2)) {
  1118. printk(KERN_ERR "HAL2: Can't get irq %dn", irq);
  1119. ret = -EAGAIN;
  1120. }
  1121. restore_flags(flags);
  1122. return ret;
  1123. }
  1124. static int hal2_alloc_resources(hal2_card_t *hal2, struct hpc3_regs *hpc3)
  1125. {
  1126. hal2_pbus_t *pbus;
  1127. pbus = &hal2->dac.pbus;
  1128. pbus->pbusnr = 0;
  1129. pbus->pbus = &hpc3->pbdma[pbus->pbusnr];
  1130. /* The spec says that we should write 0x08248844 but that's WRONG. HAL2
  1131.  * does 8 bit DMA, not 16 bit even if it generates 16 bit audio. */
  1132. hpc3->pbus_dmacfgs[pbus->pbusnr][0] = 0x08208844; /* Magic :-) */
  1133. pbus = &hal2->adc.pbus;
  1134. pbus->pbusnr = 1;
  1135. pbus->pbus = &hpc3->pbdma[pbus->pbusnr];
  1136. hpc3->pbus_dmacfgs[pbus->pbusnr][0] = 0x08208844; /* Magic :-) */
  1137. return hal2_request_irq(hal2, SGI_HPCDMA_IRQ);
  1138. }
  1139. static void hal2_init_codec(hal2_codec_t *codec)
  1140. {
  1141. init_waitqueue_head(&codec->dma_wait);
  1142. init_MUTEX(&codec->sem);
  1143. spin_lock_init(&codec->lock);
  1144. }
  1145. static void hal2_free_resources(hal2_card_t *hal2)
  1146. {
  1147. free_irq(SGI_HPCDMA_IRQ, hal2);
  1148. }
  1149. static int hal2_detect(hal2_card_t *hal2)
  1150. {
  1151. unsigned short board, major, minor;
  1152. unsigned short rev;
  1153. /* reset HAL2 */
  1154. hal2_isr_write(hal2, 0);
  1155. /* release reset */
  1156. hal2_isr_write(hal2, H2_ISR_GLOBAL_RESET_N | H2_ISR_CODEC_RESET_N);
  1157. hal2_i_write16(hal2, H2I_RELAY_C, H2I_RELAY_C_STATE); 
  1158. if ((rev = hal2_rev_look(hal2)) & H2_REV_AUDIO_PRESENT) {
  1159. DEBUG("HAL2: no device detected, rev: 0x%04hxn", rev);
  1160. return -ENODEV;
  1161. }
  1162. board = (rev & H2_REV_BOARD_M) >> 12;
  1163. major = (rev & H2_REV_MAJOR_CHIP_M) >> 4;
  1164. minor = (rev & H2_REV_MINOR_CHIP_M);
  1165. printk("SGI HAL2 Processor revision %i.%i.%i detectedn",
  1166.        board, major, minor);
  1167. if (board != 4 || major != 1 || minor != 0) 
  1168. printk( "Other revision than 4.1.0 detected. "
  1169. "Your card is probably unsupportedn");
  1170. return 0;
  1171. }
  1172. static int hal2_init_card(hal2_card_t **phal2, struct hpc3_regs *hpc3,
  1173.   unsigned long hpc3_base)
  1174. {
  1175. int ret = 0;
  1176. hal2_card_t *hal2;
  1177. hal2 = (hal2_card_t *) kmalloc(sizeof(hal2_card_t), GFP_KERNEL);
  1178. if (!hal2)
  1179. return -ENOMEM;
  1180. memset(hal2, 0, sizeof(hal2_card_t));
  1181. hal2->ctl_regs = (hal2_ctl_regs_t *) KSEG1ADDR(hpc3_base + H2_CTL_PIO);
  1182. hal2->aes_regs = (hal2_aes_regs_t *) KSEG1ADDR(hpc3_base + H2_AES_PIO);
  1183. hal2->vol_regs = (hal2_vol_regs_t *) KSEG1ADDR(hpc3_base + H2_VOL_PIO);
  1184. hal2->syn_regs = (hal2_syn_regs_t *) KSEG1ADDR(hpc3_base + H2_SYN_PIO);
  1185. if (hal2_detect(hal2) < 0) {
  1186. printk("HAL2 audio processor not foundn");
  1187. ret = -ENODEV;
  1188. goto fail1;
  1189. }
  1190. hal2_init_codec(&hal2->dac);
  1191. hal2_init_codec(&hal2->adc);
  1192. ret = hal2_alloc_resources(hal2, hpc3);
  1193. if (ret)
  1194. goto fail1;
  1195. hal2_init_mixer(hal2);
  1196. hal2->dev_dsp = register_sound_dsp(&hal2_audio_fops, -1);
  1197. if (hal2->dev_dsp < 0) {
  1198. ret = hal2->dev_dsp;
  1199. goto fail2;
  1200. }
  1201. hal2->dev_mixer = register_sound_mixer(&hal2_mixer_fops, -1);
  1202. if (hal2->dev_mixer < 0) {
  1203. ret = hal2->dev_mixer;
  1204. goto fail3;
  1205. }
  1206. *phal2 = hal2;
  1207. return 0;
  1208. fail3:
  1209. unregister_sound_dsp(hal2->dev_dsp);
  1210. fail2:
  1211. hal2_free_resources(hal2);
  1212. fail1:
  1213. kfree(hal2);
  1214. return ret;
  1215. }
  1216. /* 
  1217.  * We are assuming only one HAL2 card. If you ever meet machine with more than
  1218.  * one, tell immediately about it to someone. Preferably to me. --ladis
  1219.  */
  1220. static int __init init_hal2(void)
  1221. {
  1222. int i;
  1223. for (i = 0; i < MAXCARDS; i++)
  1224. hal2_card[i] = NULL;
  1225. return hal2_init_card(&hal2_card[0], hpc3c0, HPC3_CHIP0_PBASE);
  1226. }
  1227. static void __exit exit_hal2(void)
  1228. {
  1229. int i;
  1230. for (i = 0; i < MAXCARDS; i++)
  1231. if (hal2_card[i]) {
  1232. hal2_free_resources(hal2_card[i]);
  1233. unregister_sound_dsp(hal2_card[i]->dev_dsp);
  1234. unregister_sound_mixer(hal2_card[i]->dev_mixer);
  1235. kfree(hal2_card[i]);
  1236. }
  1237. }
  1238. module_init(init_hal2);
  1239. module_exit(exit_hal2);
  1240. MODULE_DESCRIPTION("OSS compatible driver for SGI HAL2 audio");
  1241. MODULE_AUTHOR("Ladislav Michl");
  1242. MODULE_LICENSE("GPL");