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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*****************************************************************************/
  2. /*
  3.  * sm_wss.c  -- soundcard radio modem driver, WSS (half duplex) driver
  4.  *
  5.  * Copyright (C) 1996  Thomas Sailer (sailer@ife.ee.ethz.ch)
  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 as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  *
  21.  *  Please note that the GPL allows you to use the driver, NOT the radio.
  22.  *  In order to use the radio, you need a license from the communications
  23.  *  authority of your country.
  24.  *
  25.  */
  26. #include <linux/ptrace.h>
  27. #include <linux/sched.h>
  28. #include <linux/interrupt.h>
  29. #include <asm/io.h>
  30. #include <asm/dma.h>
  31. #include <linux/ioport.h>
  32. #include <linux/soundmodem.h>
  33. #include "sm.h"
  34. #include "smdma.h"
  35. /* --------------------------------------------------------------------- */
  36. /*
  37.  * currently this module is supposed to support both module styles, i.e.
  38.  * the old one present up to about 2.1.9, and the new one functioning
  39.  * starting with 2.1.21. The reason is I have a kit allowing to compile
  40.  * this module also under 2.0.x which was requested by several people.
  41.  * This will go in 2.2
  42.  */
  43. #include <linux/version.h>
  44. #include <asm/uaccess.h>
  45. /* --------------------------------------------------------------------- */
  46. struct sc_state_wss {
  47. unsigned char revwss, revid, revv, revcid;
  48. unsigned char fmt[2];
  49. unsigned char crystal;
  50. };
  51. #define SCSTATE ((struct sc_state_wss *)(&sm->hw))
  52. /* --------------------------------------------------------------------- */
  53. #define WSS_CONFIG(iobase)       (iobase+0)
  54. #define WSS_STATUS(iobase)       (iobase+3)
  55. #define WSS_CODEC_IA(iobase)     (iobase+4)
  56. #define WSS_CODEC_ID(iobase)     (iobase+5)
  57. #define WSS_CODEC_STATUS(iobase) (iobase+6)
  58. #define WSS_CODEC_DATA(iobase)   (iobase+7)
  59. #define WSS_EXTENT   8
  60. #define CS423X_HOTFIX
  61. /* --------------------------------------------------------------------- */
  62. static void write_codec(struct net_device *dev, unsigned char idx,
  63. unsigned char data)
  64. {
  65. int timeout = 900000;
  66. /* wait until codec ready */
  67. while (timeout > 0 && inb(WSS_CODEC_IA(dev->base_addr)) & 0x80)
  68. timeout--;
  69. outb(idx, WSS_CODEC_IA(dev->base_addr));
  70. outb(data, WSS_CODEC_ID(dev->base_addr));
  71. }
  72. /* --------------------------------------------------------------------- */
  73. static unsigned char read_codec(struct net_device *dev, unsigned char idx)
  74. {
  75. int timeout = 900000;
  76. /* wait until codec ready */
  77. while (timeout > 0 && inb(WSS_CODEC_IA(dev->base_addr)) & 0x80)
  78. timeout--;
  79. outb(idx & 0x1f, WSS_CODEC_IA(dev->base_addr));
  80. return inb(WSS_CODEC_ID(dev->base_addr));
  81. }
  82. /* --------------------------------------------------------------------- */
  83. extern void inline wss_ack_int(struct net_device *dev)
  84. {
  85. outb(0, WSS_CODEC_STATUS(dev->base_addr));
  86. }
  87. /* --------------------------------------------------------------------- */
  88. static int wss_srate_tab[16] = {
  89. 8000, 5510, 16000, 11025, 27420, 18900, 32000, 22050,
  90. -1, 37800, -1, 44100, 48000, 33075, 9600, 6620
  91. };
  92. static int wss_srate_index(int srate)
  93. {
  94. int i;
  95. for (i = 0; i < (sizeof(wss_srate_tab)/sizeof(wss_srate_tab[0])); i++)
  96. if (srate == wss_srate_tab[i] && wss_srate_tab[i] > 0)
  97. return i;
  98. return -1;
  99. }
  100. /* --------------------------------------------------------------------- */
  101. static int wss_set_codec_fmt(struct net_device *dev, struct sm_state *sm, unsigned char fmt, 
  102.      unsigned char fmt2, char fdx, char fullcalib)
  103. {
  104. unsigned long time;
  105. unsigned long flags;
  106. save_flags(flags);
  107. cli();
  108. /* Clock and data format register */
  109. write_codec(dev, 0x48, fmt);
  110. if (SCSTATE->crystal) {
  111. write_codec(dev, 0x5c, fmt2 & 0xf0);
  112. /* MCE and interface config reg */
  113. write_codec(dev, 0x49, (fdx ? 0 : 0x4) | (fullcalib ? 0x18 : 0));
  114. } else 
  115. /* MCE and interface config reg */
  116. write_codec(dev, 0x49, fdx ? 0x8 : 0xc);
  117. outb(0xb, WSS_CODEC_IA(dev->base_addr)); /* leave MCE */
  118. if (SCSTATE->crystal && !fullcalib) {
  119. restore_flags(flags);
  120. return 0;
  121. }
  122. /*
  123.  * wait for ACI start
  124.  */
  125. time = 1000;
  126. while (!(read_codec(dev, 0x0b) & 0x20))
  127. if (!(--time)) {
  128. printk(KERN_WARNING "%s: ad1848 auto calibration timed out (1)n", 
  129.        sm_drvname);
  130. restore_flags(flags);
  131. return -1;
  132. }
  133. /*
  134.  * wait for ACI end
  135.  */
  136. sti();
  137. time = jiffies + HZ/4;
  138. while ((read_codec(dev, 0x0b) & 0x20) && ((signed)(jiffies - time) < 0));
  139. restore_flags(flags);
  140. if ((signed)(jiffies - time) >= 0) {
  141. printk(KERN_WARNING "%s: ad1848 auto calibration timed out (2)n", 
  142.        sm_drvname);
  143. return -1;
  144. }
  145. return 0;
  146. }
  147. /* --------------------------------------------------------------------- */
  148. static int wss_init_codec(struct net_device *dev, struct sm_state *sm, char fdx, 
  149.   unsigned char src_l, unsigned char src_r, 
  150.   int igain_l, int igain_r,
  151.   int ogain_l, int ogain_r)
  152. {
  153. unsigned char tmp, reg0, reg1, reg6, reg7;
  154. static const signed char irqtab[16] = 
  155. { -1, -1, 0x10, -1, -1, -1, -1, 0x08, -1, 0x10, 0x18, 0x20, -1, -1,
  156.   -1, -1 };
  157. static const signed char dmatab[4] = { 1, 2, -1, 3 };
  158. tmp = inb(WSS_STATUS(dev->base_addr));
  159. if ((tmp & 0x3f) != 0x04 && (tmp & 0x3f) != 0x00 && 
  160.     (tmp & 0x3f) != 0x0f) {
  161. printk(KERN_WARNING "sm: WSS card id register not found, "
  162.        "address 0x%lx, ID register 0x%02xn", 
  163.        dev->base_addr, (int)tmp);
  164. /* return -1; */
  165. SCSTATE->revwss = 0;
  166. } else {
  167. if ((tmp & 0x80) && ((dev->dma == 0) || 
  168.      ((dev->irq >= 8) && (dev->irq != 9)))) {
  169. printk(KERN_ERR "%s: WSS: DMA0 and/or IRQ8..IRQ15 "
  170.        "(except IRQ9) cannot be used on an 8bit "
  171.        "cardn", sm_drvname);
  172. return -1;
  173. }
  174. if (dev->irq > 15 || irqtab[dev->irq] == -1) {
  175. printk(KERN_ERR "%s: WSS: invalid interrupt %dn", 
  176.        sm_drvname, (int)dev->irq);
  177. return -1;
  178. }
  179. if (dev->dma > 3 || dmatab[dev->dma] == -1) {
  180. printk(KERN_ERR "%s: WSS: invalid dma channel %dn", 
  181.        sm_drvname, (int)dev->dma);
  182. return -1;
  183. }
  184. tmp = irqtab[dev->irq] | dmatab[dev->dma];
  185. /* irq probe */
  186. outb((tmp & 0x38) | 0x40, WSS_CONFIG(dev->base_addr));
  187. if (!(inb(WSS_STATUS(dev->base_addr)) & 0x40)) {
  188. outb(0, WSS_CONFIG(dev->base_addr));
  189. printk(KERN_ERR "%s: WSS: IRQ%d is not free!n", 
  190.        sm_drvname, dev->irq);
  191. }
  192. outb(tmp, WSS_CONFIG(dev->base_addr));
  193. SCSTATE->revwss = inb(WSS_STATUS(dev->base_addr)) & 0x3f;
  194. }
  195. /*
  196.  * initialize the codec
  197.  */
  198. if (igain_l < 0)
  199. igain_l = 0;
  200. if (igain_r < 0)
  201. igain_r = 0;
  202. if (ogain_l > 0)
  203. ogain_l = 0;
  204. if (ogain_r > 0)
  205. ogain_r = 0;
  206. reg0 = (src_l << 6) & 0xc0;
  207. reg1 = (src_r << 6) & 0xc0;
  208. if (reg0 == 0x80 && igain_l >= 20) {
  209. reg0 |= 0x20;
  210. igain_l -= 20;
  211. }
  212. if (reg1 == 0x80 && igain_r >= 20) {
  213. reg1 |= 0x20;
  214. igain_r -= 20;
  215. }
  216. if (igain_l > 23)
  217. igain_l = 23;
  218. if (igain_r > 23)
  219. igain_r = 23;
  220. reg0 |= igain_l * 2 / 3;
  221. reg1 |= igain_r * 2 / 3;
  222. reg6 = (ogain_l < -95) ? 0x80 : (ogain_l * (-2) / 3);
  223. reg7 = (ogain_r < -95) ? 0x80 : (ogain_r * (-2) / 3);
  224. write_codec(dev, 9, 0);
  225. write_codec(dev, 0, 0x45);
  226. if (read_codec(dev, 0) != 0x45)
  227. goto codec_err;
  228. write_codec(dev, 0, 0xaa);
  229. if (read_codec(dev, 0) != 0xaa)
  230. goto codec_err;
  231. write_codec(dev, 12, 0x40); /* enable MODE2 */
  232. write_codec(dev, 16, 0);
  233. write_codec(dev, 0, 0x45);
  234. SCSTATE->crystal = (read_codec(dev, 16) != 0x45);
  235. write_codec(dev, 0, 0xaa);
  236. SCSTATE->crystal &= (read_codec(dev, 16) != 0xaa);
  237. if (SCSTATE->crystal) {
  238. SCSTATE->revcid = read_codec(dev, 0x19);
  239. SCSTATE->revv = (SCSTATE->revcid >> 5) & 7;
  240. SCSTATE->revcid &= 7;
  241. write_codec(dev, 0x10, 0x80); /* maximum output level */
  242. write_codec(dev, 0x11, 0x02); /* xtal enable and no HPF */
  243. write_codec(dev, 0x12, 0x80); /* left line input control */
  244. write_codec(dev, 0x13, 0x80); /* right line input control */
  245. write_codec(dev, 0x16, 0); /* disable alternative freq sel */
  246. write_codec(dev, 0x1a, 0xe0); /* mono IO disable */
  247. write_codec(dev, 0x1b, 0x00); /* left out no att */
  248. write_codec(dev, 0x1d, 0x00); /* right out no att */
  249. }
  250. if (wss_set_codec_fmt(dev, sm, SCSTATE->fmt[0], SCSTATE->fmt[0], fdx, 1))
  251. goto codec_err;
  252.         write_codec(dev, 0, reg0); /* left input control */
  253.         write_codec(dev, 1, reg1); /* right input control */
  254.         write_codec(dev, 2, 0x80); /* left aux#1 input control */
  255.         write_codec(dev, 3, 0x80); /* right aux#1 input control */
  256.         write_codec(dev, 4, 0x80); /* left aux#2 input control */
  257.         write_codec(dev, 5, 0x80); /* right aux#2 input control */
  258.         write_codec(dev, 6, reg6); /* left dac control */
  259.         write_codec(dev, 7, reg7); /* right dac control */
  260.         write_codec(dev, 0xa, 0x2); /* pin control register */
  261.         write_codec(dev, 0xd, 0x0); /* digital mix control */
  262. SCSTATE->revid = read_codec(dev, 0xc) & 0xf;
  263. /*
  264.  * print revisions
  265.  */
  266. if (SCSTATE->crystal) 
  267. printk(KERN_INFO "%s: Crystal CODEC ID %d, Chip revision %d, "
  268.        " Chip ID %dn", sm_drvname, (int)SCSTATE->revid,
  269.        (int)SCSTATE->revv, (int)SCSTATE->revcid);
  270. else
  271. printk(KERN_INFO "%s: WSS revision %d, CODEC revision %dn", 
  272.        sm_drvname, (int)SCSTATE->revwss, 
  273.        (int)SCSTATE->revid);
  274. return 0;
  275.  codec_err:
  276. outb(0, WSS_CONFIG(dev->base_addr));
  277. printk(KERN_ERR "%s: no WSS soundcard found at address 0x%lxn", 
  278.        sm_drvname, dev->base_addr);
  279. return -1;
  280. }
  281. /* --------------------------------------------------------------------- */
  282. static void setup_dma_wss(struct net_device *dev, struct sm_state *sm, int send)
  283. {
  284.         unsigned long flags;
  285.         static const unsigned char codecmode[2] = { 0x0e, 0x0d };
  286. unsigned char oldcodecmode;
  287. long abrt;
  288. unsigned char fmt;
  289. unsigned int numsamps;
  290. send = !!send;
  291. fmt = SCSTATE->fmt[send];
  292. save_flags(flags);
  293.         cli();
  294. /*
  295.  * perform the final DMA sequence to disable the codec request
  296.  */
  297. oldcodecmode = read_codec(dev, 9);
  298.         write_codec(dev, 9, 0xc); /* disable codec */
  299. wss_ack_int(dev);
  300. if (read_codec(dev, 11) & 0x10) {
  301. dma_setup(sm, oldcodecmode & 1, dev->dma);
  302. abrt = 0;
  303. while ((read_codec(dev, 11) & 0x10) || ((++abrt) >= 0x10000));
  304. }
  305. #ifdef CS423X_HOTFIX
  306. if (read_codec(dev, 0x8) != fmt || SCSTATE->crystal)
  307. wss_set_codec_fmt(dev, sm, fmt, fmt, 0, 0);
  308. #else /* CS423X_HOTFIX */
  309. if (read_codec(dev, 0x8) != fmt)
  310. wss_set_codec_fmt(dev, sm, fmt, fmt, 0, 0);
  311. #endif /* CS423X_HOTFIX */
  312. numsamps = dma_setup(sm, send, dev->dma) - 1;
  313. write_codec(dev, 15, numsamps & 0xff);
  314. write_codec(dev, 14, numsamps >> 8);
  315. write_codec(dev, 9, codecmode[send]);
  316.         restore_flags(flags);
  317. }
  318. /* --------------------------------------------------------------------- */
  319. static void wss_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  320. {
  321. struct net_device *dev = (struct net_device *)dev_id;
  322. struct sm_state *sm = (struct sm_state *)dev->priv;
  323. unsigned int curfrag;
  324. unsigned int nums;
  325. if (!dev || !sm || !sm->mode_rx || !sm->mode_tx || 
  326.     sm->hdrv.magic != HDLCDRV_MAGIC)
  327. return;
  328. cli();
  329. wss_ack_int(dev);
  330. disable_dma(dev->dma);
  331. clear_dma_ff(dev->dma);
  332. nums = dma_ptr(sm, sm->dma.ptt_cnt > 0, dev->dma, &curfrag) - 1;
  333. write_codec(dev, 15, nums  & 0xff);
  334. write_codec(dev, 14, nums >> 8);
  335. enable_dma(dev->dma);
  336. sm_int_freq(sm);
  337. sti();
  338. if (sm->dma.ptt_cnt <= 0) {
  339. dma_receive(sm, curfrag);
  340. hdlcdrv_arbitrate(dev, &sm->hdrv);
  341. if (hdlcdrv_ptt(&sm->hdrv)) {
  342. /* starting to transmit */
  343. disable_dma(dev->dma);
  344. hdlcdrv_transmitter(dev, &sm->hdrv); /* prefill HDLC buffer */
  345. dma_start_transmit(sm);
  346. setup_dma_wss(dev, sm, 1);
  347. dma_transmit(sm);
  348. }
  349. } else if (dma_end_transmit(sm, curfrag)) {
  350. /* stopping transmission */
  351. disable_dma(dev->dma);
  352. dma_init_receive(sm);
  353. setup_dma_wss(dev, sm, 0);
  354.         } else
  355. dma_transmit(sm);
  356. sm_output_status(sm);
  357. hdlcdrv_transmitter(dev, &sm->hdrv);
  358. hdlcdrv_receiver(dev, &sm->hdrv);
  359. }
  360. /* --------------------------------------------------------------------- */
  361. static int wss_open(struct net_device *dev, struct sm_state *sm) 
  362. {
  363. unsigned int dmasz, u;
  364. if (sizeof(sm->m) < sizeof(struct sc_state_wss)) {
  365. printk(KERN_ERR "sm wss: wss state too big: %d > %dn", 
  366.        sizeof(struct sc_state_wss), sizeof(sm->m));
  367. return -ENODEV;
  368. }
  369. if (!dev || !sm || !sm->mode_rx || !sm->mode_tx)
  370. return -ENXIO;
  371. if (dev->base_addr <= 0 || dev->base_addr > 0x1000-WSS_EXTENT || 
  372.     dev->irq < 2 || dev->irq > 15 || dev->dma > 3)
  373. return -ENXIO;
  374. if (check_region(dev->base_addr, WSS_EXTENT))
  375. return -EACCES;
  376. /*
  377.  * check if a card is available
  378.  */
  379. if (wss_init_codec(dev, sm, 0, 1, 1, 0, 0, -45, -45))
  380. return -ENODEV;
  381. /*
  382.  * initialize some variables
  383.  */
  384. dma_init_receive(sm);
  385. dmasz = (NUM_FRAGMENTS + 1) * sm->dma.ifragsz;
  386. u = NUM_FRAGMENTS * sm->dma.ofragsz;
  387. if (u > dmasz)
  388. dmasz = u;
  389. if (!(sm->dma.ibuf = sm->dma.obuf = kmalloc(dmasz, GFP_KERNEL | GFP_DMA)))
  390. return -ENOMEM;
  391. dma_init_transmit(sm);
  392. dma_init_receive(sm);
  393. memset(&sm->m, 0, sizeof(sm->m));
  394. memset(&sm->d, 0, sizeof(sm->d));
  395. if (sm->mode_tx->init)
  396. sm->mode_tx->init(sm);
  397. if (sm->mode_rx->init)
  398. sm->mode_rx->init(sm);
  399. if (request_dma(dev->dma, sm->hwdrv->hw_name)) {
  400. kfree(sm->dma.obuf);
  401. return -EBUSY;
  402. }
  403. if (request_irq(dev->irq, wss_interrupt, SA_INTERRUPT, 
  404. sm->hwdrv->hw_name, dev)) {
  405. free_dma(dev->dma);
  406. kfree(sm->dma.obuf);
  407. return -EBUSY;
  408. }
  409. request_region(dev->base_addr, WSS_EXTENT, sm->hwdrv->hw_name);
  410. setup_dma_wss(dev, sm, 0);
  411. return 0;
  412. }
  413. /* --------------------------------------------------------------------- */
  414. static int wss_close(struct net_device *dev, struct sm_state *sm) 
  415. {
  416. if (!dev || !sm)
  417. return -EINVAL;
  418. /*
  419.  * disable interrupts
  420.  */
  421. disable_dma(dev->dma);
  422.         write_codec(dev, 9, 0xc); /* disable codec */
  423. free_irq(dev->irq, dev);
  424. free_dma(dev->dma);
  425. release_region(dev->base_addr, WSS_EXTENT);
  426. kfree(sm->dma.obuf);
  427. return 0;
  428. }
  429. /* --------------------------------------------------------------------- */
  430. static int wss_sethw(struct net_device *dev, struct sm_state *sm, char *mode)
  431. {
  432. char *cp = strchr(mode, '.');
  433. const struct modem_tx_info **mtp = sm_modem_tx_table;
  434. const struct modem_rx_info **mrp;
  435. int i, j;
  436. if (!strcmp(mode, "off")) {
  437. sm->mode_tx = NULL;
  438. sm->mode_rx = NULL;
  439. return 0;
  440. }
  441. if (cp)
  442. *cp++ = '';
  443. else
  444. cp = mode;
  445. for (; *mtp; mtp++) {
  446. if ((*mtp)->loc_storage > sizeof(sm->m)) {
  447. printk(KERN_ERR "%s: insufficient storage for modulator %s (%d)n",
  448.        sm_drvname, (*mtp)->name, (*mtp)->loc_storage);
  449. continue;
  450. }
  451. if (!(*mtp)->name || strcmp((*mtp)->name, mode))
  452. continue;
  453. if ((i = wss_srate_index((*mtp)->srate)) < 0) 
  454. continue;
  455. for (mrp = sm_modem_rx_table; *mrp; mrp++) {
  456. if ((*mrp)->loc_storage > sizeof(sm->d)) {
  457. printk(KERN_ERR "%s: insufficient storage for demodulator %s (%d)n",
  458.        sm_drvname, (*mrp)->name, (*mrp)->loc_storage);
  459. continue;
  460. }
  461. if ((*mrp)->name && !strcmp((*mrp)->name, cp) &&
  462.     ((j = wss_srate_index((*mrp)->srate)) >= 0)) {
  463. sm->mode_tx = *mtp;
  464. sm->mode_rx = *mrp;
  465. SCSTATE->fmt[0] = j;
  466. SCSTATE->fmt[1] = i;
  467. sm->dma.ifragsz = (sm->mode_rx->srate + 50)/100;
  468. sm->dma.ofragsz = (sm->mode_tx->srate + 50)/100;
  469. if (sm->dma.ifragsz < sm->mode_rx->overlap)
  470. sm->dma.ifragsz = sm->mode_rx->overlap;
  471. /* prefer same data format if possible to minimize switching times */
  472. sm->dma.i16bit = sm->dma.o16bit = 2;
  473. if (sm->mode_rx->srate == sm->mode_tx->srate) {
  474. if (sm->mode_rx->demodulator_s16 && sm->mode_tx->modulator_s16)
  475. sm->dma.i16bit = sm->dma.o16bit = 1;
  476. else if (sm->mode_rx->demodulator_u8 && sm->mode_tx->modulator_u8)
  477. sm->dma.i16bit = sm->dma.o16bit = 0;
  478. }
  479. if (sm->dma.i16bit == 2) {
  480. if (sm->mode_rx->demodulator_s16)
  481. sm->dma.i16bit = 1;
  482. else if (sm->mode_rx->demodulator_u8)
  483. sm->dma.i16bit = 0;
  484. }
  485. if (sm->dma.o16bit == 2) {
  486. if (sm->mode_tx->modulator_s16)
  487. sm->dma.o16bit = 1;
  488. else if (sm->mode_tx->modulator_u8)
  489. sm->dma.o16bit = 0;
  490. }
  491. if (sm->dma.i16bit == 2 ||  sm->dma.o16bit == 2) {
  492. printk(KERN_INFO "%s: mode %s or %s unusablen", sm_drvname, 
  493.        sm->mode_rx->name, sm->mode_tx->name);
  494. sm->mode_tx = NULL;
  495. sm->mode_rx = NULL;
  496. return -EINVAL;
  497. }
  498. #ifdef __BIG_ENDIAN
  499. /* big endian 16bit only works on crystal cards... */
  500. if (sm->dma.i16bit) {
  501. SCSTATE->fmt[0] |= 0xc0;
  502. sm->dma.ifragsz <<= 1;
  503. }
  504. if (sm->dma.o16bit) {
  505. SCSTATE->fmt[1] |= 0xc0;
  506. sm->dma.ofragsz <<= 1;
  507. }
  508. #else /* __BIG_ENDIAN */
  509. if (sm->dma.i16bit) {
  510. SCSTATE->fmt[0] |= 0x40;
  511. sm->dma.ifragsz <<= 1;
  512. }
  513. if (sm->dma.o16bit) {
  514. SCSTATE->fmt[1] |= 0x40;
  515. sm->dma.ofragsz <<= 1;
  516. }
  517. #endif /* __BIG_ENDIAN */
  518. return 0;
  519. }
  520. }
  521. }
  522. return -EINVAL;
  523. }
  524. /* --------------------------------------------------------------------- */
  525. static int wss_ioctl(struct net_device *dev, struct sm_state *sm, struct ifreq *ifr, 
  526.      struct hdlcdrv_ioctl *hi, int cmd)
  527. {
  528. struct sm_ioctl bi;
  529. int i;
  530. if (cmd != SIOCDEVPRIVATE)
  531. return -ENOIOCTLCMD;
  532. if (hi->cmd == HDLCDRVCTL_MODEMPARMASK)
  533. return HDLCDRV_PARMASK_IOBASE | HDLCDRV_PARMASK_IRQ | 
  534. HDLCDRV_PARMASK_DMA | HDLCDRV_PARMASK_SERIOBASE | 
  535. HDLCDRV_PARMASK_PARIOBASE | HDLCDRV_PARMASK_MIDIIOBASE;
  536. if (copy_from_user(&bi, ifr->ifr_data, sizeof(bi)))
  537. return -EFAULT;
  538. switch (bi.cmd) {
  539. default:
  540. return -ENOIOCTLCMD;
  541. case SMCTL_GETMIXER:
  542. i = 0;
  543. bi.data.mix.sample_rate = sm->mode_rx->srate;
  544. bi.data.mix.bit_rate = sm->hdrv.par.bitrate;
  545. bi.data.mix.mixer_type = SCSTATE->crystal ? 
  546. SM_MIXER_CRYSTAL : SM_MIXER_AD1848;
  547. if (((SCSTATE->crystal ? 0x2c0c20fflu: 0x20fflu) 
  548.      >> bi.data.mix.reg) & 1) {
  549. bi.data.mix.data = read_codec(dev, bi.data.mix.reg);
  550. i = 1;
  551. }
  552. if (copy_to_user(ifr->ifr_data, &bi, sizeof(bi)))
  553. return -EFAULT;
  554. return i;
  555. case SMCTL_SETMIXER:
  556. if (!capable(CAP_SYS_RAWIO))
  557. return -EACCES;
  558. if ((bi.data.mix.mixer_type != SM_MIXER_CRYSTAL || 
  559.      !SCSTATE->crystal) &&
  560.     (bi.data.mix.mixer_type != SM_MIXER_AD1848 ||
  561.      bi.data.mix.reg >= 0x10))
  562. return -EINVAL;
  563. if (!((0x2c0c20fflu >> bi.data.mix.reg) & 1))
  564. return -EACCES;
  565. write_codec(dev, bi.data.mix.reg, bi.data.mix.data);
  566. return 0;
  567. }
  568. if (copy_to_user(ifr->ifr_data, &bi, sizeof(bi)))
  569. return -EFAULT;
  570. return 0;
  571. }
  572. /* --------------------------------------------------------------------- */
  573. const struct hardware_info sm_hw_wss = {
  574. "wss", sizeof(struct sc_state_wss), 
  575. wss_open, wss_close, wss_ioctl, wss_sethw
  576. };
  577. /* --------------------------------------------------------------------- */
  578. static void setup_fdx_dma_wss(struct net_device *dev, struct sm_state *sm)
  579. {
  580.         unsigned long flags;
  581. unsigned char oldcodecmode, codecdma;
  582. long abrt;
  583. unsigned int osamps, isamps;
  584.         save_flags(flags);
  585.         cli();
  586. /*
  587.  * perform the final DMA sequence to disable the codec request
  588.  */
  589. oldcodecmode = read_codec(dev, 9);
  590.         write_codec(dev, 9, 0); /* disable codec DMA */
  591. wss_ack_int(dev);
  592. if ((codecdma = read_codec(dev, 11)) & 0x10) {
  593. dma_setup(sm, 1, dev->dma);
  594. dma_setup(sm, 0, sm->hdrv.ptt_out.dma2);
  595. abrt = 0;
  596. while (((codecdma = read_codec(dev, 11)) & 0x10) || ((++abrt) >= 0x10000));
  597. }
  598.         wss_set_codec_fmt(dev, sm, SCSTATE->fmt[1], SCSTATE->fmt[0], 1, 1);
  599. osamps = dma_setup(sm, 1, dev->dma) - 1;
  600. isamps = dma_setup(sm, 0, sm->hdrv.ptt_out.dma2) - 1;
  601. write_codec(dev, 15, osamps & 0xff);
  602. write_codec(dev, 14, osamps >> 8);
  603. if (SCSTATE->crystal) {
  604. write_codec(dev, 31, isamps & 0xff);
  605. write_codec(dev, 30, isamps >> 8);
  606. }
  607. write_codec(dev, 9, 3);
  608.         restore_flags(flags);
  609. }
  610. /* --------------------------------------------------------------------- */
  611. static void wssfdx_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  612. {
  613. struct net_device *dev = (struct net_device *)dev_id;
  614. struct sm_state *sm = (struct sm_state *)dev->priv;
  615. unsigned long flags;
  616. unsigned char cry_int_src;
  617. unsigned icfrag, ocfrag, isamps, osamps;
  618. if (!dev || !sm || !sm->mode_rx || !sm->mode_tx || 
  619.     sm->hdrv.magic != HDLCDRV_MAGIC)
  620. return;
  621. save_flags(flags);
  622. cli();
  623. if (SCSTATE->crystal) { 
  624. /* Crystal has an essentially different interrupt handler! */
  625. cry_int_src = read_codec(dev, 0x18);
  626. wss_ack_int(dev);
  627. if (cry_int_src & 0x10) {       /* playback interrupt */
  628. disable_dma(dev->dma);
  629. clear_dma_ff(dev->dma);
  630. osamps = dma_ptr(sm, 1, dev->dma, &ocfrag)-1;
  631. write_codec(dev, 15, osamps & 0xff);
  632. write_codec(dev, 14, osamps >> 8);
  633. enable_dma(dev->dma);
  634. }
  635. if (cry_int_src & 0x20) {       /* capture interrupt */
  636. disable_dma(sm->hdrv.ptt_out.dma2);
  637. clear_dma_ff(sm->hdrv.ptt_out.dma2);
  638. isamps = dma_ptr(sm, 0, sm->hdrv.ptt_out.dma2, &icfrag)-1;
  639. write_codec(dev, 31, isamps & 0xff);
  640. write_codec(dev, 30, isamps >> 8);
  641. enable_dma(sm->hdrv.ptt_out.dma2);
  642. }
  643. restore_flags(flags);
  644. sm_int_freq(sm);
  645. sti();
  646. if (cry_int_src & 0x10) {
  647. if (dma_end_transmit(sm, ocfrag))
  648. dma_clear_transmit(sm);
  649. dma_transmit(sm);
  650. }
  651. if (cry_int_src & 0x20) { 
  652. dma_receive(sm, icfrag);
  653. hdlcdrv_arbitrate(dev, &sm->hdrv);
  654. }
  655. sm_output_status(sm);
  656. hdlcdrv_transmitter(dev, &sm->hdrv);
  657. hdlcdrv_receiver(dev, &sm->hdrv);
  658. return;
  659. }
  660. wss_ack_int(dev);
  661. disable_dma(dev->dma);
  662. disable_dma(sm->hdrv.ptt_out.dma2);
  663. clear_dma_ff(dev->dma);
  664. clear_dma_ff(sm->hdrv.ptt_out.dma2);
  665. osamps = dma_ptr(sm, 1, dev->dma, &ocfrag)-1;
  666. isamps = dma_ptr(sm, 0, sm->hdrv.ptt_out.dma2, &icfrag)-1;
  667. write_codec(dev, 15, osamps & 0xff);
  668. write_codec(dev, 14, osamps >> 8);
  669. if (SCSTATE->crystal) {
  670. write_codec(dev, 31, isamps & 0xff);
  671. write_codec(dev, 30, isamps >> 8);
  672. }
  673. enable_dma(dev->dma);
  674. enable_dma(sm->hdrv.ptt_out.dma2);
  675. restore_flags(flags);
  676. sm_int_freq(sm);
  677. sti();
  678. if (dma_end_transmit(sm, ocfrag))
  679. dma_clear_transmit(sm);
  680. dma_transmit(sm);
  681. dma_receive(sm, icfrag);
  682. hdlcdrv_arbitrate(dev, &sm->hdrv);
  683. sm_output_status(sm);
  684. hdlcdrv_transmitter(dev, &sm->hdrv);
  685. hdlcdrv_receiver(dev, &sm->hdrv);
  686. }
  687. /* --------------------------------------------------------------------- */
  688. static int wssfdx_open(struct net_device *dev, struct sm_state *sm) 
  689. {
  690. if (!dev || !sm || !sm->mode_rx || !sm->mode_tx)
  691. return -ENXIO;
  692. if (dev->base_addr <= 0 || dev->base_addr > 0x1000-WSS_EXTENT || 
  693.     dev->irq < 2 || dev->irq > 15 || dev->dma > 3)
  694. return -ENXIO;
  695. if (check_region(dev->base_addr, WSS_EXTENT))
  696. return -EACCES;
  697. /*
  698.  * check if a card is available
  699.  */
  700. if (wss_init_codec(dev, sm, 1, 1, 1, 0, 0, -45, -45))
  701. return -ENODEV;
  702. /*
  703.  * initialize some variables
  704.  */
  705. if (!(sm->dma.ibuf = kmalloc(sm->dma.ifragsz * (NUM_FRAGMENTS+1), GFP_KERNEL | GFP_DMA)))
  706. return -ENOMEM;
  707. if (!(sm->dma.obuf = kmalloc(sm->dma.ofragsz * NUM_FRAGMENTS, GFP_KERNEL | GFP_DMA))) {
  708. kfree(sm->dma.ibuf);
  709. return -ENOMEM;
  710. }
  711. dma_init_transmit(sm);
  712. dma_init_receive(sm);
  713. memset(&sm->m, 0, sizeof(sm->m));
  714. memset(&sm->d, 0, sizeof(sm->d));
  715. if (sm->mode_tx->init)
  716. sm->mode_tx->init(sm);
  717. if (sm->mode_rx->init)
  718. sm->mode_rx->init(sm);
  719. if (request_dma(dev->dma, sm->hwdrv->hw_name)) {
  720. kfree(sm->dma.ibuf);
  721. kfree(sm->dma.obuf);
  722. return -EBUSY;
  723. }
  724. if (request_dma(sm->hdrv.ptt_out.dma2, sm->hwdrv->hw_name)) {
  725. kfree(sm->dma.ibuf);
  726. kfree(sm->dma.obuf);
  727. free_dma(dev->dma);
  728. return -EBUSY;
  729. }
  730. if (request_irq(dev->irq, wssfdx_interrupt, SA_INTERRUPT, 
  731. sm->hwdrv->hw_name, dev)) {
  732. kfree(sm->dma.ibuf);
  733. kfree(sm->dma.obuf);
  734. free_dma(dev->dma);
  735. free_dma(sm->hdrv.ptt_out.dma2);
  736. return -EBUSY;
  737. }
  738. request_region(dev->base_addr, WSS_EXTENT, sm->hwdrv->hw_name);
  739. setup_fdx_dma_wss(dev, sm);
  740. return 0;
  741. }
  742. /* --------------------------------------------------------------------- */
  743. static int wssfdx_close(struct net_device *dev, struct sm_state *sm) 
  744. {
  745. if (!dev || !sm)
  746. return -EINVAL;
  747. /*
  748.  * disable interrupts
  749.  */
  750. disable_dma(dev->dma);
  751. disable_dma(sm->hdrv.ptt_out.dma2);
  752.         write_codec(dev, 9, 0xc); /* disable codec */
  753. free_irq(dev->irq, dev);
  754. free_dma(dev->dma);
  755. free_dma(sm->hdrv.ptt_out.dma2);
  756. release_region(dev->base_addr, WSS_EXTENT);
  757. kfree(sm->dma.ibuf);
  758. kfree(sm->dma.obuf);
  759. return 0;
  760. }
  761. /* --------------------------------------------------------------------- */
  762. static int wssfdx_sethw(struct net_device *dev, struct sm_state *sm, char *mode)
  763. {
  764. char *cp = strchr(mode, '.');
  765. const struct modem_tx_info **mtp = sm_modem_tx_table;
  766. const struct modem_rx_info **mrp;
  767. int i;
  768. if (!strcmp(mode, "off")) {
  769. sm->mode_tx = NULL;
  770. sm->mode_rx = NULL;
  771. return 0;
  772. }
  773. if (cp)
  774. *cp++ = '';
  775. else
  776. cp = mode;
  777. for (; *mtp; mtp++) {
  778. if ((*mtp)->loc_storage > sizeof(sm->m)) {
  779. printk(KERN_ERR "%s: insufficient storage for modulator %s (%d)n",
  780.        sm_drvname, (*mtp)->name, (*mtp)->loc_storage);
  781. continue;
  782. }
  783. if (!(*mtp)->name || strcmp((*mtp)->name, mode))
  784. continue;
  785. if ((i = wss_srate_index((*mtp)->srate)) < 0) 
  786. continue;
  787. for (mrp = sm_modem_rx_table; *mrp; mrp++) {
  788. if ((*mrp)->loc_storage > sizeof(sm->d)) {
  789. printk(KERN_ERR "%s: insufficient storage for demodulator %s (%d)n",
  790.        sm_drvname, (*mrp)->name, (*mrp)->loc_storage);
  791. continue;
  792. }
  793. if ((*mrp)->name && !strcmp((*mrp)->name, cp) &&
  794.     (*mtp)->srate == (*mrp)->srate) {
  795. sm->mode_tx = *mtp;
  796. sm->mode_rx = *mrp;
  797. SCSTATE->fmt[0] = SCSTATE->fmt[1] = i;
  798. sm->dma.ifragsz = sm->dma.ofragsz = (sm->mode_rx->srate + 50)/100;
  799. if (sm->dma.ifragsz < sm->mode_rx->overlap)
  800. sm->dma.ifragsz = sm->mode_rx->overlap;
  801. sm->dma.i16bit = sm->dma.o16bit = 2;
  802. if (sm->mode_rx->demodulator_s16) {
  803. sm->dma.i16bit = 1;
  804. sm->dma.ifragsz <<= 1;
  805. #ifdef __BIG_ENDIAN    /* big endian 16bit only works on crystal cards... */
  806. SCSTATE->fmt[0] |= 0xc0;
  807. #else /* __BIG_ENDIAN */
  808. SCSTATE->fmt[0] |= 0x40;
  809. #endif /* __BIG_ENDIAN */
  810. } else if (sm->mode_rx->demodulator_u8)
  811. sm->dma.i16bit = 0;
  812. if (sm->mode_tx->modulator_s16) {
  813. sm->dma.o16bit = 1;
  814. sm->dma.ofragsz <<= 1;
  815. #ifdef __BIG_ENDIAN    /* big endian 16bit only works on crystal cards... */
  816. SCSTATE->fmt[1] |= 0xc0;
  817. #else /* __BIG_ENDIAN */
  818. SCSTATE->fmt[1] |= 0x40;
  819. #endif /* __BIG_ENDIAN */
  820. } else if (sm->mode_tx->modulator_u8)
  821. sm->dma.o16bit = 0;
  822. if (sm->dma.i16bit == 2 ||  sm->dma.o16bit == 2) {
  823. printk(KERN_INFO "%s: mode %s or %s unusablen", sm_drvname, 
  824.        sm->mode_rx->name, sm->mode_tx->name);
  825. sm->mode_tx = NULL;
  826. sm->mode_rx = NULL;
  827. return -EINVAL;
  828. }
  829. return 0;
  830. }
  831. }
  832. }
  833. return -EINVAL;
  834. }
  835. /* --------------------------------------------------------------------- */
  836. static int wssfdx_ioctl(struct net_device *dev, struct sm_state *sm, struct ifreq *ifr, 
  837. struct hdlcdrv_ioctl *hi, int cmd)
  838. {
  839. if (cmd != SIOCDEVPRIVATE)
  840. return -ENOIOCTLCMD;
  841. if (hi->cmd == HDLCDRVCTL_MODEMPARMASK)
  842. return HDLCDRV_PARMASK_IOBASE | HDLCDRV_PARMASK_IRQ |
  843. HDLCDRV_PARMASK_DMA | HDLCDRV_PARMASK_DMA2 |
  844. HDLCDRV_PARMASK_SERIOBASE | HDLCDRV_PARMASK_PARIOBASE |
  845. HDLCDRV_PARMASK_MIDIIOBASE;
  846. return wss_ioctl(dev, sm, ifr, hi, cmd);
  847. }
  848. /* --------------------------------------------------------------------- */
  849. const struct hardware_info sm_hw_wssfdx = {
  850. "wssfdx", sizeof(struct sc_state_wss), 
  851. wssfdx_open, wssfdx_close, wssfdx_ioctl, wssfdx_sethw
  852. };
  853. /* --------------------------------------------------------------------- */
  854. #undef SCSTATE