stir4200.c 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172
  1. /*****************************************************************************
  2. *
  3. * Filename: stir4200.c
  4. * Version: 0.4
  5. * Description: Irda SigmaTel USB Dongle
  6. * Status: Experimental
  7. * Author: Stephen Hemminger <shemminger@osdl.org>
  8. *
  9. * Based on earlier driver by Paul Stewart <stewart@parc.com>
  10. *
  11. * Copyright (C) 2000, Roman Weissgaerber <weissg@vienna.at>
  12. * Copyright (C) 2001, Dag Brattli <dag@brattli.net>
  13. * Copyright (C) 2001, Jean Tourrilhes <jt@hpl.hp.com>
  14. * Copyright (C) 2004, Stephen Hemminger <shemminger@osdl.org>
  15. *
  16. * This program is free software; you can redistribute it and/or modify
  17. * it under the terms of the GNU General Public License as published by
  18. * the Free Software Foundation; either version 2 of the License, or
  19. * (at your option) any later version.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program; if not, write to the Free Software
  28. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  29. *
  30. *****************************************************************************/
  31. /*
  32. * This dongle does no framing, and requires polling to receive the
  33. * data. The STIr4200 has bulk in and out endpoints just like
  34. * usr-irda devices, but the data it sends and receives is raw; like
  35. * irtty, it needs to call the wrap and unwrap functions to add and
  36. * remove SOF/BOF and escape characters to/from the frame.
  37. */
  38. #include <linux/module.h>
  39. #include <linux/moduleparam.h>
  40. #include <linux/kernel.h>
  41. #include <linux/types.h>
  42. #include <linux/init.h>
  43. #include <linux/time.h>
  44. #include <linux/skbuff.h>
  45. #include <linux/netdevice.h>
  46. #include <linux/slab.h>
  47. #include <linux/delay.h>
  48. #include <linux/usb.h>
  49. #include <linux/crc32.h>
  50. #include <linux/kthread.h>
  51. #include <net/irda/irda.h>
  52. #include <net/irda/irlap.h>
  53. #include <net/irda/irda_device.h>
  54. #include <net/irda/wrapper.h>
  55. #include <net/irda/crc.h>
  56. #include <asm/byteorder.h>
  57. #include <asm/unaligned.h>
  58. MODULE_AUTHOR("Stephen Hemminger <shemminger@osdl.org>");
  59. MODULE_DESCRIPTION("IrDA-USB Dongle Driver for SigmaTel STIr4200");
  60. MODULE_LICENSE("GPL");
  61. static int qos_mtt_bits = 0x07; /* 1 ms or more */
  62. module_param(qos_mtt_bits, int, 0);
  63. MODULE_PARM_DESC(qos_mtt_bits, "Minimum Turn Time");
  64. static int rx_sensitivity = 1; /* FIR 0..4, SIR 0..6 */
  65. module_param(rx_sensitivity, int, 0);
  66. MODULE_PARM_DESC(rx_sensitivity, "Set Receiver sensitivity (0-6, 0 is most sensitive)");
  67. static int tx_power = 0; /* 0 = highest ... 3 = lowest */
  68. module_param(tx_power, int, 0);
  69. MODULE_PARM_DESC(tx_power, "Set Transmitter power (0-3, 0 is highest power)");
  70. #define STIR_IRDA_HEADER 4
  71. #define CTRL_TIMEOUT 100 /* milliseconds */
  72. #define TRANSMIT_TIMEOUT 200 /* milliseconds */
  73. #define STIR_FIFO_SIZE 4096
  74. #define FIFO_REGS_SIZE 3
  75. enum FirChars {
  76. FIR_CE = 0x7d,
  77. FIR_XBOF = 0x7f,
  78. FIR_EOF = 0x7e,
  79. };
  80. enum StirRequests {
  81. REQ_WRITE_REG = 0x00,
  82. REQ_READ_REG = 0x01,
  83. REQ_READ_ROM = 0x02,
  84. REQ_WRITE_SINGLE = 0x03,
  85. };
  86. /* Register offsets */
  87. enum StirRegs {
  88. REG_RSVD=0,
  89. REG_MODE,
  90. REG_PDCLK,
  91. REG_CTRL1,
  92. REG_CTRL2,
  93. REG_FIFOCTL,
  94. REG_FIFOLSB,
  95. REG_FIFOMSB,
  96. REG_DPLL,
  97. REG_IRDIG,
  98. REG_TEST=15,
  99. };
  100. enum StirModeMask {
  101. MODE_FIR = 0x80,
  102. MODE_SIR = 0x20,
  103. MODE_ASK = 0x10,
  104. MODE_FASTRX = 0x08,
  105. MODE_FFRSTEN = 0x04,
  106. MODE_NRESET = 0x02,
  107. MODE_2400 = 0x01,
  108. };
  109. enum StirPdclkMask {
  110. PDCLK_4000000 = 0x02,
  111. PDCLK_115200 = 0x09,
  112. PDCLK_57600 = 0x13,
  113. PDCLK_38400 = 0x1D,
  114. PDCLK_19200 = 0x3B,
  115. PDCLK_9600 = 0x77,
  116. PDCLK_2400 = 0xDF,
  117. };
  118. enum StirCtrl1Mask {
  119. CTRL1_SDMODE = 0x80,
  120. CTRL1_RXSLOW = 0x40,
  121. CTRL1_TXPWD = 0x10,
  122. CTRL1_RXPWD = 0x08,
  123. CTRL1_SRESET = 0x01,
  124. };
  125. enum StirCtrl2Mask {
  126. CTRL2_SPWIDTH = 0x08,
  127. CTRL2_REVID = 0x03,
  128. };
  129. enum StirFifoCtlMask {
  130. FIFOCTL_EOF = 0x80,
  131. FIFOCTL_UNDER = 0x40,
  132. FIFOCTL_OVER = 0x20,
  133. FIFOCTL_DIR = 0x10,
  134. FIFOCTL_CLR = 0x08,
  135. FIFOCTL_EMPTY = 0x04,
  136. FIFOCTL_RXERR = 0x02,
  137. FIFOCTL_TXERR = 0x01,
  138. };
  139. enum StirDiagMask {
  140. IRDIG_RXHIGH = 0x80,
  141. IRDIG_RXLOW = 0x40,
  142. };
  143. enum StirTestMask {
  144. TEST_PLLDOWN = 0x80,
  145. TEST_LOOPIR = 0x40,
  146. TEST_LOOPUSB = 0x20,
  147. TEST_TSTENA = 0x10,
  148. TEST_TSTOSC = 0x0F,
  149. };
  150. struct stir_cb {
  151. struct usb_device *usbdev; /* init: probe_irda */
  152. struct net_device *netdev; /* network layer */
  153. struct irlap_cb *irlap; /* The link layer we are binded to */
  154. struct net_device_stats stats; /* network statistics */
  155. struct qos_info qos;
  156. unsigned speed; /* Current speed */
  157. struct task_struct *thread; /* transmit thread */
  158. struct sk_buff *tx_pending;
  159. void *io_buf; /* transmit/receive buffer */
  160. __u8 *fifo_status;
  161. iobuff_t rx_buff; /* receive unwrap state machine */
  162. struct timeval rx_time;
  163. int receiving;
  164. struct urb *rx_urb;
  165. };
  166. /* These are the currently known USB ids */
  167. static struct usb_device_id dongles[] = {
  168. /* SigmaTel, Inc, STIr4200 IrDA/USB Bridge */
  169. { USB_DEVICE(0x066f, 0x4200) },
  170. { }
  171. };
  172. MODULE_DEVICE_TABLE(usb, dongles);
  173. /* Send control message to set dongle register */
  174. static int write_reg(struct stir_cb *stir, __u16 reg, __u8 value)
  175. {
  176. struct usb_device *dev = stir->usbdev;
  177. pr_debug("%s: write reg %d = 0x%x\n",
  178. stir->netdev->name, reg, value);
  179. return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
  180. REQ_WRITE_SINGLE,
  181. USB_DIR_OUT|USB_TYPE_VENDOR|USB_RECIP_DEVICE,
  182. value, reg, NULL, 0,
  183. CTRL_TIMEOUT);
  184. }
  185. /* Send control message to read multiple registers */
  186. static inline int read_reg(struct stir_cb *stir, __u16 reg,
  187. __u8 *data, __u16 count)
  188. {
  189. struct usb_device *dev = stir->usbdev;
  190. return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  191. REQ_READ_REG,
  192. USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
  193. 0, reg, data, count,
  194. CTRL_TIMEOUT);
  195. }
  196. static inline int isfir(u32 speed)
  197. {
  198. return (speed == 4000000);
  199. }
  200. /*
  201. * Prepare a FIR IrDA frame for transmission to the USB dongle. The
  202. * FIR transmit frame is documented in the datasheet. It consists of
  203. * a two byte 0x55 0xAA sequence, two little-endian length bytes, a
  204. * sequence of exactly 16 XBOF bytes of 0x7E, two BOF bytes of 0x7E,
  205. * then the data escaped as follows:
  206. *
  207. * 0x7D -> 0x7D 0x5D
  208. * 0x7E -> 0x7D 0x5E
  209. * 0x7F -> 0x7D 0x5F
  210. *
  211. * Then, 4 bytes of little endian (stuffed) FCS follow, then two
  212. * trailing EOF bytes of 0x7E.
  213. */
  214. static inline __u8 *stuff_fir(__u8 *p, __u8 c)
  215. {
  216. switch(c) {
  217. case 0x7d:
  218. case 0x7e:
  219. case 0x7f:
  220. *p++ = 0x7d;
  221. c ^= IRDA_TRANS;
  222. /* fall through */
  223. default:
  224. *p++ = c;
  225. }
  226. return p;
  227. }
  228. /* Take raw data in skb and put it wrapped into buf */
  229. static unsigned wrap_fir_skb(const struct sk_buff *skb, __u8 *buf)
  230. {
  231. __u8 *ptr = buf;
  232. __u32 fcs = ~(crc32_le(~0, skb->data, skb->len));
  233. __u16 wraplen;
  234. int i;
  235. /* Header */
  236. buf[0] = 0x55;
  237. buf[1] = 0xAA;
  238. ptr = buf + STIR_IRDA_HEADER;
  239. memset(ptr, 0x7f, 16);
  240. ptr += 16;
  241. /* BOF */
  242. *ptr++ = 0x7e;
  243. *ptr++ = 0x7e;
  244. /* Address / Control / Information */
  245. for (i = 0; i < skb->len; i++)
  246. ptr = stuff_fir(ptr, skb->data[i]);
  247. /* FCS */
  248. ptr = stuff_fir(ptr, fcs & 0xff);
  249. ptr = stuff_fir(ptr, (fcs >> 8) & 0xff);
  250. ptr = stuff_fir(ptr, (fcs >> 16) & 0xff);
  251. ptr = stuff_fir(ptr, (fcs >> 24) & 0xff);
  252. /* EOFs */
  253. *ptr++ = 0x7e;
  254. *ptr++ = 0x7e;
  255. /* Total length, minus the header */
  256. wraplen = (ptr - buf) - STIR_IRDA_HEADER;
  257. buf[2] = wraplen & 0xff;
  258. buf[3] = (wraplen >> 8) & 0xff;
  259. return wraplen + STIR_IRDA_HEADER;
  260. }
  261. static unsigned wrap_sir_skb(struct sk_buff *skb, __u8 *buf)
  262. {
  263. __u16 wraplen;
  264. wraplen = async_wrap_skb(skb, buf + STIR_IRDA_HEADER,
  265. STIR_FIFO_SIZE - STIR_IRDA_HEADER);
  266. buf[0] = 0x55;
  267. buf[1] = 0xAA;
  268. buf[2] = wraplen & 0xff;
  269. buf[3] = (wraplen >> 8) & 0xff;
  270. return wraplen + STIR_IRDA_HEADER;
  271. }
  272. /*
  273. * Frame is fully formed in the rx_buff so check crc
  274. * and pass up to irlap
  275. * setup for next receive
  276. */
  277. static void fir_eof(struct stir_cb *stir)
  278. {
  279. iobuff_t *rx_buff = &stir->rx_buff;
  280. int len = rx_buff->len - 4;
  281. struct sk_buff *skb, *nskb;
  282. __u32 fcs;
  283. if (unlikely(len <= 0)) {
  284. pr_debug("%s: short frame len %d\n",
  285. stir->netdev->name, len);
  286. ++stir->stats.rx_errors;
  287. ++stir->stats.rx_length_errors;
  288. return;
  289. }
  290. fcs = ~(crc32_le(~0, rx_buff->data, len));
  291. if (fcs != le32_to_cpu(get_unaligned((u32 *)(rx_buff->data+len)))) {
  292. pr_debug("crc error calc 0x%x len %d\n", fcs, len);
  293. stir->stats.rx_errors++;
  294. stir->stats.rx_crc_errors++;
  295. return;
  296. }
  297. /* if frame is short then just copy it */
  298. if (len < IRDA_RX_COPY_THRESHOLD) {
  299. nskb = dev_alloc_skb(len + 1);
  300. if (unlikely(!nskb)) {
  301. ++stir->stats.rx_dropped;
  302. return;
  303. }
  304. skb_reserve(nskb, 1);
  305. skb = nskb;
  306. memcpy(nskb->data, rx_buff->data, len);
  307. } else {
  308. nskb = dev_alloc_skb(rx_buff->truesize);
  309. if (unlikely(!nskb)) {
  310. ++stir->stats.rx_dropped;
  311. return;
  312. }
  313. skb_reserve(nskb, 1);
  314. skb = rx_buff->skb;
  315. rx_buff->skb = nskb;
  316. rx_buff->head = nskb->data;
  317. }
  318. skb_put(skb, len);
  319. skb->mac.raw = skb->data;
  320. skb->protocol = htons(ETH_P_IRDA);
  321. skb->dev = stir->netdev;
  322. netif_rx(skb);
  323. stir->stats.rx_packets++;
  324. stir->stats.rx_bytes += len;
  325. rx_buff->data = rx_buff->head;
  326. rx_buff->len = 0;
  327. }
  328. /* Unwrap FIR stuffed data and bump it to IrLAP */
  329. static void stir_fir_chars(struct stir_cb *stir,
  330. const __u8 *bytes, int len)
  331. {
  332. iobuff_t *rx_buff = &stir->rx_buff;
  333. int i;
  334. for (i = 0; i < len; i++) {
  335. __u8 byte = bytes[i];
  336. switch(rx_buff->state) {
  337. case OUTSIDE_FRAME:
  338. /* ignore garbage till start of frame */
  339. if (unlikely(byte != FIR_EOF))
  340. continue;
  341. /* Now receiving frame */
  342. rx_buff->state = BEGIN_FRAME;
  343. /* Time to initialize receive buffer */
  344. rx_buff->data = rx_buff->head;
  345. rx_buff->len = 0;
  346. continue;
  347. case LINK_ESCAPE:
  348. if (byte == FIR_EOF) {
  349. pr_debug("%s: got EOF after escape\n",
  350. stir->netdev->name);
  351. goto frame_error;
  352. }
  353. rx_buff->state = INSIDE_FRAME;
  354. byte ^= IRDA_TRANS;
  355. break;
  356. case BEGIN_FRAME:
  357. /* ignore multiple BOF/EOF */
  358. if (byte == FIR_EOF)
  359. continue;
  360. rx_buff->state = INSIDE_FRAME;
  361. rx_buff->in_frame = TRUE;
  362. /* fall through */
  363. case INSIDE_FRAME:
  364. switch(byte) {
  365. case FIR_CE:
  366. rx_buff->state = LINK_ESCAPE;
  367. continue;
  368. case FIR_XBOF:
  369. /* 0x7f is not used in this framing */
  370. pr_debug("%s: got XBOF without escape\n",
  371. stir->netdev->name);
  372. goto frame_error;
  373. case FIR_EOF:
  374. rx_buff->state = OUTSIDE_FRAME;
  375. rx_buff->in_frame = FALSE;
  376. fir_eof(stir);
  377. continue;
  378. }
  379. break;
  380. }
  381. /* add byte to rx buffer */
  382. if (unlikely(rx_buff->len >= rx_buff->truesize)) {
  383. pr_debug("%s: fir frame exceeds %d\n",
  384. stir->netdev->name, rx_buff->truesize);
  385. ++stir->stats.rx_over_errors;
  386. goto error_recovery;
  387. }
  388. rx_buff->data[rx_buff->len++] = byte;
  389. continue;
  390. frame_error:
  391. ++stir->stats.rx_frame_errors;
  392. error_recovery:
  393. ++stir->stats.rx_errors;
  394. rx_buff->state = OUTSIDE_FRAME;
  395. rx_buff->in_frame = FALSE;
  396. }
  397. }
  398. /* Unwrap SIR stuffed data and bump it up to IrLAP */
  399. static void stir_sir_chars(struct stir_cb *stir,
  400. const __u8 *bytes, int len)
  401. {
  402. int i;
  403. for (i = 0; i < len; i++)
  404. async_unwrap_char(stir->netdev, &stir->stats,
  405. &stir->rx_buff, bytes[i]);
  406. }
  407. static inline void unwrap_chars(struct stir_cb *stir,
  408. const __u8 *bytes, int length)
  409. {
  410. if (isfir(stir->speed))
  411. stir_fir_chars(stir, bytes, length);
  412. else
  413. stir_sir_chars(stir, bytes, length);
  414. }
  415. /* Mode parameters for each speed */
  416. static const struct {
  417. unsigned speed;
  418. __u8 pdclk;
  419. } stir_modes[] = {
  420. { 2400, PDCLK_2400 },
  421. { 9600, PDCLK_9600 },
  422. { 19200, PDCLK_19200 },
  423. { 38400, PDCLK_38400 },
  424. { 57600, PDCLK_57600 },
  425. { 115200, PDCLK_115200 },
  426. { 4000000, PDCLK_4000000 },
  427. };
  428. /*
  429. * Setup chip for speed.
  430. * Called at startup to initialize the chip
  431. * and on speed changes.
  432. *
  433. * Note: Write multiple registers doesn't appear to work
  434. */
  435. static int change_speed(struct stir_cb *stir, unsigned speed)
  436. {
  437. int i, err;
  438. __u8 mode;
  439. for (i = 0; i < ARRAY_SIZE(stir_modes); ++i) {
  440. if (speed == stir_modes[i].speed)
  441. goto found;
  442. }
  443. warn("%s: invalid speed %d", stir->netdev->name, speed);
  444. return -EINVAL;
  445. found:
  446. pr_debug("speed change from %d to %d\n", stir->speed, speed);
  447. /* Reset modulator */
  448. err = write_reg(stir, REG_CTRL1, CTRL1_SRESET);
  449. if (err)
  450. goto out;
  451. /* Undocumented magic to tweak the DPLL */
  452. err = write_reg(stir, REG_DPLL, 0x15);
  453. if (err)
  454. goto out;
  455. /* Set clock */
  456. err = write_reg(stir, REG_PDCLK, stir_modes[i].pdclk);
  457. if (err)
  458. goto out;
  459. mode = MODE_NRESET | MODE_FASTRX;
  460. if (isfir(speed))
  461. mode |= MODE_FIR | MODE_FFRSTEN;
  462. else
  463. mode |= MODE_SIR;
  464. if (speed == 2400)
  465. mode |= MODE_2400;
  466. err = write_reg(stir, REG_MODE, mode);
  467. if (err)
  468. goto out;
  469. /* This resets TEMIC style transceiver if any. */
  470. err = write_reg(stir, REG_CTRL1,
  471. CTRL1_SDMODE | (tx_power & 3) << 1);
  472. if (err)
  473. goto out;
  474. err = write_reg(stir, REG_CTRL1, (tx_power & 3) << 1);
  475. if (err)
  476. goto out;
  477. /* Reset sensitivity */
  478. err = write_reg(stir, REG_CTRL2, (rx_sensitivity & 7) << 5);
  479. out:
  480. stir->speed = speed;
  481. return err;
  482. }
  483. /*
  484. * Called from net/core when new frame is available.
  485. */
  486. static int stir_hard_xmit(struct sk_buff *skb, struct net_device *netdev)
  487. {
  488. struct stir_cb *stir = netdev_priv(netdev);
  489. netif_stop_queue(netdev);
  490. /* the IRDA wrapping routines don't deal with non linear skb */
  491. SKB_LINEAR_ASSERT(skb);
  492. skb = xchg(&stir->tx_pending, skb);
  493. wake_up_process(stir->thread);
  494. /* this should never happen unless stop/wakeup problem */
  495. if (unlikely(skb)) {
  496. WARN_ON(1);
  497. dev_kfree_skb(skb);
  498. }
  499. return 0;
  500. }
  501. /*
  502. * Wait for the transmit FIFO to have space for next data
  503. *
  504. * If space < 0 then wait till FIFO completely drains.
  505. * FYI: can take up to 13 seconds at 2400baud.
  506. */
  507. static int fifo_txwait(struct stir_cb *stir, int space)
  508. {
  509. int err;
  510. unsigned long count, status;
  511. /* Read FIFO status and count */
  512. for(;;) {
  513. err = read_reg(stir, REG_FIFOCTL, stir->fifo_status,
  514. FIFO_REGS_SIZE);
  515. if (unlikely(err != FIFO_REGS_SIZE)) {
  516. warn("%s: FIFO register read error: %d",
  517. stir->netdev->name, err);
  518. return err;
  519. }
  520. status = stir->fifo_status[0];
  521. count = (unsigned)(stir->fifo_status[2] & 0x1f) << 8
  522. | stir->fifo_status[1];
  523. pr_debug("fifo status 0x%lx count %lu\n", status, count);
  524. /* error when receive/transmit fifo gets confused */
  525. if (status & FIFOCTL_RXERR) {
  526. stir->stats.rx_fifo_errors++;
  527. stir->stats.rx_errors++;
  528. break;
  529. }
  530. if (status & FIFOCTL_TXERR) {
  531. stir->stats.tx_fifo_errors++;
  532. stir->stats.tx_errors++;
  533. break;
  534. }
  535. /* is fifo receiving already, or empty */
  536. if (!(status & FIFOCTL_DIR)
  537. || (status & FIFOCTL_EMPTY))
  538. return 0;
  539. if (signal_pending(current))
  540. return -EINTR;
  541. /* shutting down? */
  542. if (!netif_running(stir->netdev)
  543. || !netif_device_present(stir->netdev))
  544. return -ESHUTDOWN;
  545. /* only waiting for some space */
  546. if (space >= 0 && STIR_FIFO_SIZE - 4 > space + count)
  547. return 0;
  548. /* estimate transfer time for remaining chars */
  549. msleep((count * 8000) / stir->speed);
  550. }
  551. err = write_reg(stir, REG_FIFOCTL, FIFOCTL_CLR);
  552. if (err)
  553. return err;
  554. err = write_reg(stir, REG_FIFOCTL, 0);
  555. if (err)
  556. return err;
  557. return 0;
  558. }
  559. /* Wait for turnaround delay before starting transmit. */
  560. static void turnaround_delay(const struct stir_cb *stir, long us)
  561. {
  562. long ticks;
  563. struct timeval now;
  564. if (us <= 0)
  565. return;
  566. do_gettimeofday(&now);
  567. if (now.tv_sec - stir->rx_time.tv_sec > 0)
  568. us -= USEC_PER_SEC;
  569. us -= now.tv_usec - stir->rx_time.tv_usec;
  570. if (us < 10)
  571. return;
  572. ticks = us / (1000000 / HZ);
  573. if (ticks > 0)
  574. schedule_timeout_interruptible(1 + ticks);
  575. else
  576. udelay(us);
  577. }
  578. /*
  579. * Start receiver by submitting a request to the receive pipe.
  580. * If nothing is available it will return after rx_interval.
  581. */
  582. static int receive_start(struct stir_cb *stir)
  583. {
  584. /* reset state */
  585. stir->receiving = 1;
  586. stir->rx_buff.in_frame = FALSE;
  587. stir->rx_buff.state = OUTSIDE_FRAME;
  588. stir->rx_urb->status = 0;
  589. return usb_submit_urb(stir->rx_urb, GFP_KERNEL);
  590. }
  591. /* Stop all pending receive Urb's */
  592. static void receive_stop(struct stir_cb *stir)
  593. {
  594. stir->receiving = 0;
  595. usb_kill_urb(stir->rx_urb);
  596. if (stir->rx_buff.in_frame)
  597. stir->stats.collisions++;
  598. }
  599. /*
  600. * Wrap data in socket buffer and send it.
  601. */
  602. static void stir_send(struct stir_cb *stir, struct sk_buff *skb)
  603. {
  604. unsigned wraplen;
  605. int first_frame = 0;
  606. /* if receiving, need to turnaround */
  607. if (stir->receiving) {
  608. receive_stop(stir);
  609. turnaround_delay(stir, irda_get_mtt(skb));
  610. first_frame = 1;
  611. }
  612. if (isfir(stir->speed))
  613. wraplen = wrap_fir_skb(skb, stir->io_buf);
  614. else
  615. wraplen = wrap_sir_skb(skb, stir->io_buf);
  616. /* check for space available in fifo */
  617. if (!first_frame)
  618. fifo_txwait(stir, wraplen);
  619. stir->stats.tx_packets++;
  620. stir->stats.tx_bytes += skb->len;
  621. stir->netdev->trans_start = jiffies;
  622. pr_debug("send %d (%d)\n", skb->len, wraplen);
  623. if (usb_bulk_msg(stir->usbdev, usb_sndbulkpipe(stir->usbdev, 1),
  624. stir->io_buf, wraplen,
  625. NULL, TRANSMIT_TIMEOUT))
  626. stir->stats.tx_errors++;
  627. }
  628. /*
  629. * Transmit state machine thread
  630. */
  631. static int stir_transmit_thread(void *arg)
  632. {
  633. struct stir_cb *stir = arg;
  634. struct net_device *dev = stir->netdev;
  635. struct sk_buff *skb;
  636. while (!kthread_should_stop()) {
  637. #ifdef CONFIG_PM
  638. /* if suspending, then power off and wait */
  639. if (unlikely(freezing(current))) {
  640. if (stir->receiving)
  641. receive_stop(stir);
  642. else
  643. fifo_txwait(stir, -1);
  644. write_reg(stir, REG_CTRL1, CTRL1_TXPWD|CTRL1_RXPWD);
  645. refrigerator();
  646. if (change_speed(stir, stir->speed))
  647. break;
  648. }
  649. #endif
  650. /* if something to send? */
  651. skb = xchg(&stir->tx_pending, NULL);
  652. if (skb) {
  653. unsigned new_speed = irda_get_next_speed(skb);
  654. netif_wake_queue(dev);
  655. if (skb->len > 0)
  656. stir_send(stir, skb);
  657. dev_kfree_skb(skb);
  658. if ((new_speed != -1) && (stir->speed != new_speed)) {
  659. if (fifo_txwait(stir, -1) ||
  660. change_speed(stir, new_speed))
  661. break;
  662. }
  663. continue;
  664. }
  665. /* nothing to send? start receiving */
  666. if (!stir->receiving
  667. && irda_device_txqueue_empty(dev)) {
  668. /* Wait otherwise chip gets confused. */
  669. if (fifo_txwait(stir, -1))
  670. break;
  671. if (unlikely(receive_start(stir))) {
  672. if (net_ratelimit())
  673. info("%s: receive usb submit failed",
  674. stir->netdev->name);
  675. stir->receiving = 0;
  676. msleep(10);
  677. continue;
  678. }
  679. }
  680. /* sleep if nothing to send */
  681. set_current_state(TASK_INTERRUPTIBLE);
  682. schedule();
  683. }
  684. return 0;
  685. }
  686. /*
  687. * USB bulk receive completion callback.
  688. * Wakes up every ms (usb round trip) with wrapped
  689. * data.
  690. */
  691. static void stir_rcv_irq(struct urb *urb, struct pt_regs *regs)
  692. {
  693. struct stir_cb *stir = urb->context;
  694. int err;
  695. /* in process of stopping, just drop data */
  696. if (!netif_running(stir->netdev))
  697. return;
  698. /* unlink, shutdown, unplug, other nasties */
  699. if (urb->status != 0)
  700. return;
  701. if (urb->actual_length > 0) {
  702. pr_debug("receive %d\n", urb->actual_length);
  703. unwrap_chars(stir, urb->transfer_buffer,
  704. urb->actual_length);
  705. stir->netdev->last_rx = jiffies;
  706. do_gettimeofday(&stir->rx_time);
  707. }
  708. /* kernel thread is stopping receiver don't resubmit */
  709. if (!stir->receiving)
  710. return;
  711. /* resubmit existing urb */
  712. err = usb_submit_urb(urb, GFP_ATOMIC);
  713. /* in case of error, the kernel thread will restart us */
  714. if (err) {
  715. warn("%s: usb receive submit error: %d",
  716. stir->netdev->name, err);
  717. stir->receiving = 0;
  718. wake_up_process(stir->thread);
  719. }
  720. }
  721. /*
  722. * Function stir_net_open (dev)
  723. *
  724. * Network device is taken up. Usually this is done by "ifconfig irda0 up"
  725. */
  726. static int stir_net_open(struct net_device *netdev)
  727. {
  728. struct stir_cb *stir = netdev_priv(netdev);
  729. int err;
  730. char hwname[16];
  731. err = usb_clear_halt(stir->usbdev, usb_sndbulkpipe(stir->usbdev, 1));
  732. if (err)
  733. goto err_out1;
  734. err = usb_clear_halt(stir->usbdev, usb_rcvbulkpipe(stir->usbdev, 2));
  735. if (err)
  736. goto err_out1;
  737. err = change_speed(stir, 9600);
  738. if (err)
  739. goto err_out1;
  740. err = -ENOMEM;
  741. /* Initialize for SIR/FIR to copy data directly into skb. */
  742. stir->receiving = 0;
  743. stir->rx_buff.truesize = IRDA_SKB_MAX_MTU;
  744. stir->rx_buff.skb = dev_alloc_skb(IRDA_SKB_MAX_MTU);
  745. if (!stir->rx_buff.skb)
  746. goto err_out1;
  747. skb_reserve(stir->rx_buff.skb, 1);
  748. stir->rx_buff.head = stir->rx_buff.skb->data;
  749. do_gettimeofday(&stir->rx_time);
  750. stir->rx_urb = usb_alloc_urb(0, GFP_KERNEL);
  751. if (!stir->rx_urb)
  752. goto err_out2;
  753. stir->io_buf = kmalloc(STIR_FIFO_SIZE, GFP_KERNEL);
  754. if (!stir->io_buf)
  755. goto err_out3;
  756. usb_fill_bulk_urb(stir->rx_urb, stir->usbdev,
  757. usb_rcvbulkpipe(stir->usbdev, 2),
  758. stir->io_buf, STIR_FIFO_SIZE,
  759. stir_rcv_irq, stir);
  760. stir->fifo_status = kmalloc(FIFO_REGS_SIZE, GFP_KERNEL);
  761. if (!stir->fifo_status)
  762. goto err_out4;
  763. /*
  764. * Now that everything should be initialized properly,
  765. * Open new IrLAP layer instance to take care of us...
  766. * Note : will send immediately a speed change...
  767. */
  768. sprintf(hwname, "usb#%d", stir->usbdev->devnum);
  769. stir->irlap = irlap_open(netdev, &stir->qos, hwname);
  770. if (!stir->irlap) {
  771. err("stir4200: irlap_open failed");
  772. goto err_out5;
  773. }
  774. /** Start kernel thread for transmit. */
  775. stir->thread = kthread_run(stir_transmit_thread, stir,
  776. "%s", stir->netdev->name);
  777. if (IS_ERR(stir->thread)) {
  778. err = PTR_ERR(stir->thread);
  779. err("stir4200: unable to start kernel thread");
  780. goto err_out6;
  781. }
  782. netif_start_queue(netdev);
  783. return 0;
  784. err_out6:
  785. irlap_close(stir->irlap);
  786. err_out5:
  787. kfree(stir->fifo_status);
  788. err_out4:
  789. kfree(stir->io_buf);
  790. err_out3:
  791. usb_free_urb(stir->rx_urb);
  792. err_out2:
  793. kfree_skb(stir->rx_buff.skb);
  794. err_out1:
  795. return err;
  796. }
  797. /*
  798. * Function stir_net_close (stir)
  799. *
  800. * Network device is taken down. Usually this is done by
  801. * "ifconfig irda0 down"
  802. */
  803. static int stir_net_close(struct net_device *netdev)
  804. {
  805. struct stir_cb *stir = netdev_priv(netdev);
  806. /* Stop transmit processing */
  807. netif_stop_queue(netdev);
  808. /* Kill transmit thread */
  809. kthread_stop(stir->thread);
  810. kfree(stir->fifo_status);
  811. /* Mop up receive urb's */
  812. usb_kill_urb(stir->rx_urb);
  813. kfree(stir->io_buf);
  814. usb_free_urb(stir->rx_urb);
  815. kfree_skb(stir->rx_buff.skb);
  816. /* Stop and remove instance of IrLAP */
  817. if (stir->irlap)
  818. irlap_close(stir->irlap);
  819. stir->irlap = NULL;
  820. return 0;
  821. }
  822. /*
  823. * IOCTLs : Extra out-of-band network commands...
  824. */
  825. static int stir_net_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd)
  826. {
  827. struct if_irda_req *irq = (struct if_irda_req *) rq;
  828. struct stir_cb *stir = netdev_priv(netdev);
  829. int ret = 0;
  830. switch (cmd) {
  831. case SIOCSBANDWIDTH: /* Set bandwidth */
  832. if (!capable(CAP_NET_ADMIN))
  833. return -EPERM;
  834. /* Check if the device is still there */
  835. if (netif_device_present(stir->netdev))
  836. ret = change_speed(stir, irq->ifr_baudrate);
  837. break;
  838. case SIOCSMEDIABUSY: /* Set media busy */
  839. if (!capable(CAP_NET_ADMIN))
  840. return -EPERM;
  841. /* Check if the IrDA stack is still there */
  842. if (netif_running(stir->netdev))
  843. irda_device_set_media_busy(stir->netdev, TRUE);
  844. break;
  845. case SIOCGRECEIVING:
  846. /* Only approximately true */
  847. irq->ifr_receiving = stir->receiving;
  848. break;
  849. default:
  850. ret = -EOPNOTSUPP;
  851. }
  852. return ret;
  853. }
  854. /*
  855. * Get device stats (for /proc/net/dev and ifconfig)
  856. */
  857. static struct net_device_stats *stir_net_get_stats(struct net_device *netdev)
  858. {
  859. struct stir_cb *stir = netdev_priv(netdev);
  860. return &stir->stats;
  861. }
  862. /*
  863. * This routine is called by the USB subsystem for each new device
  864. * in the system. We need to check if the device is ours, and in
  865. * this case start handling it.
  866. * Note : it might be worth protecting this function by a global
  867. * spinlock... Or not, because maybe USB already deal with that...
  868. */
  869. static int stir_probe(struct usb_interface *intf,
  870. const struct usb_device_id *id)
  871. {
  872. struct usb_device *dev = interface_to_usbdev(intf);
  873. struct stir_cb *stir = NULL;
  874. struct net_device *net;
  875. int ret = -ENOMEM;
  876. /* Allocate network device container. */
  877. net = alloc_irdadev(sizeof(*stir));
  878. if(!net)
  879. goto err_out1;
  880. SET_MODULE_OWNER(net);
  881. SET_NETDEV_DEV(net, &intf->dev);
  882. stir = netdev_priv(net);
  883. stir->netdev = net;
  884. stir->usbdev = dev;
  885. ret = usb_reset_configuration(dev);
  886. if (ret != 0) {
  887. err("stir4200: usb reset configuration failed");
  888. goto err_out2;
  889. }
  890. printk(KERN_INFO "SigmaTel STIr4200 IRDA/USB found at address %d, "
  891. "Vendor: %x, Product: %x\n",
  892. dev->devnum, le16_to_cpu(dev->descriptor.idVendor),
  893. le16_to_cpu(dev->descriptor.idProduct));
  894. /* Initialize QoS for this device */
  895. irda_init_max_qos_capabilies(&stir->qos);
  896. /* That's the Rx capability. */
  897. stir->qos.baud_rate.bits &= IR_2400 | IR_9600 | IR_19200 |
  898. IR_38400 | IR_57600 | IR_115200 |
  899. (IR_4000000 << 8);
  900. stir->qos.min_turn_time.bits &= qos_mtt_bits;
  901. irda_qos_bits_to_value(&stir->qos);
  902. /* Override the network functions we need to use */
  903. net->hard_start_xmit = stir_hard_xmit;
  904. net->open = stir_net_open;
  905. net->stop = stir_net_close;
  906. net->get_stats = stir_net_get_stats;
  907. net->do_ioctl = stir_net_ioctl;
  908. ret = register_netdev(net);
  909. if (ret != 0)
  910. goto err_out2;
  911. info("IrDA: Registered SigmaTel device %s", net->name);
  912. usb_set_intfdata(intf, stir);
  913. return 0;
  914. err_out2:
  915. free_netdev(net);
  916. err_out1:
  917. return ret;
  918. }
  919. /*
  920. * The current device is removed, the USB layer tell us to shut it down...
  921. */
  922. static void stir_disconnect(struct usb_interface *intf)
  923. {
  924. struct stir_cb *stir = usb_get_intfdata(intf);
  925. if (!stir)
  926. return;
  927. unregister_netdev(stir->netdev);
  928. free_netdev(stir->netdev);
  929. usb_set_intfdata(intf, NULL);
  930. }
  931. #ifdef CONFIG_PM
  932. /* USB suspend, so power off the transmitter/receiver */
  933. static int stir_suspend(struct usb_interface *intf, pm_message_t message)
  934. {
  935. struct stir_cb *stir = usb_get_intfdata(intf);
  936. netif_device_detach(stir->netdev);
  937. return 0;
  938. }
  939. /* Coming out of suspend, so reset hardware */
  940. static int stir_resume(struct usb_interface *intf)
  941. {
  942. struct stir_cb *stir = usb_get_intfdata(intf);
  943. netif_device_attach(stir->netdev);
  944. /* receiver restarted when send thread wakes up */
  945. return 0;
  946. }
  947. #endif
  948. /*
  949. * USB device callbacks
  950. */
  951. static struct usb_driver irda_driver = {
  952. .name = "stir4200",
  953. .probe = stir_probe,
  954. .disconnect = stir_disconnect,
  955. .id_table = dongles,
  956. #ifdef CONFIG_PM
  957. .suspend = stir_suspend,
  958. .resume = stir_resume,
  959. #endif
  960. };
  961. /*
  962. * Module insertion
  963. */
  964. static int __init stir_init(void)
  965. {
  966. return usb_register(&irda_driver);
  967. }
  968. module_init(stir_init);
  969. /*
  970. * Module removal
  971. */
  972. static void __exit stir_cleanup(void)
  973. {
  974. /* Deregister the driver and remove all pending instances */
  975. usb_deregister(&irda_driver);
  976. }
  977. module_exit(stir_cleanup);