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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  Copyright (c) 2001 Vojtech Pavlik
  3.  *
  4.  *  CATC EL1210A NetMate USB Ethernet driver
  5.  *
  6.  *  Sponsored by SuSE
  7.  *
  8.  *  Based on the work of
  9.  * Donald Becker
  10.  * 
  11.  *  Old chipset support added by Simon Evans <spse@secret.org.uk> 2002
  12.  *    - adds support for Belkin F5U011
  13.  */
  14. /*
  15.  * This program is free software; you can redistribute it and/or modify
  16.  * it under the terms of the GNU General Public License as published by
  17.  * the Free Software Foundation; either version 2 of the License, or 
  18.  * (at your option) any later version.
  19.  * 
  20.  * This program is distributed in the hope that it will be useful,
  21.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23.  * GNU General Public License for more details.
  24.  * 
  25.  * You should have received a copy of the GNU General Public License
  26.  * along with this program; if not, write to the Free Software
  27.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  28.  * 
  29.  * Should you need to contact me, the author, you can do so either by
  30.  * e-mail - mail your message to <vojtech@suse.cz>, or by paper mail:
  31.  * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  32.  */
  33. #include <linux/init.h>
  34. #include <linux/module.h>
  35. #include <linux/kernel.h>
  36. #include <linux/string.h>
  37. #include <linux/slab.h>
  38. #include <linux/netdevice.h>
  39. #include <linux/etherdevice.h>
  40. #include <linux/skbuff.h>
  41. #include <linux/spinlock.h>
  42. #include <linux/ethtool.h>
  43. #include <asm/bitops.h>
  44. #include <asm/uaccess.h>
  45. #undef DEBUG
  46. #include <linux/usb.h>
  47. /*
  48.  * Version information.
  49.  */
  50. #define DRIVER_VERSION "v2.8"
  51. #define DRIVER_AUTHOR "Vojtech Pavlik <vojtech@suse.cz>"
  52. #define DRIVER_DESC "CATC EL1210A NetMate USB Ethernet driver"
  53. #define SHORT_DRIVER_DESC "EL1210A NetMate USB Ethernet"
  54. MODULE_AUTHOR(DRIVER_AUTHOR);
  55. MODULE_DESCRIPTION(DRIVER_DESC);
  56. MODULE_LICENSE("GPL");
  57. /*
  58.  * Some defines.
  59.  */ 
  60. #define STATS_UPDATE (HZ) /* Time between stats updates */
  61. #define TX_TIMEOUT (5*HZ) /* Max time the queue can be stopped */
  62. #define PKT_SZ 1536 /* Max Ethernet packet size */
  63. #define RX_MAX_BURST 15 /* Max packets per rx buffer (> 0, < 16) */
  64. #define TX_MAX_BURST 15 /* Max full sized packets per tx buffer (> 0) */
  65. #define CTRL_QUEUE 16 /* Max control requests in flight (power of two) */
  66. #define RX_PKT_SZ 1600 /* Max size of receive packet for F5U011 */
  67. /*
  68.  * Control requests.
  69.  */
  70. enum control_requests {
  71. ReadMem = 0xf1,
  72. GetMac = 0xf2,
  73. Reset = 0xf4,
  74. SetMac = 0xf5,
  75. SetRxMode =     0xf5,  /* F5U011 only */
  76. WriteROM = 0xf8,
  77. SetReg = 0xfa,
  78. GetReg = 0xfb,
  79. WriteMem = 0xfc,
  80. ReadROM = 0xfd,
  81. };
  82. /*
  83.  * Registers.
  84.  */
  85. enum register_offsets {
  86. TxBufCount = 0x20,
  87. RxBufCount = 0x21,
  88. OpModes = 0x22,
  89. TxQed = 0x23,
  90. RxQed = 0x24,
  91. MaxBurst = 0x25,
  92. RxUnit = 0x60,
  93. EthStatus = 0x61,
  94. StationAddr0 = 0x67,
  95. EthStats = 0x69,
  96. LEDCtrl = 0x81,
  97. };
  98. enum eth_stats {
  99. TxSingleColl = 0x00,
  100.         TxMultiColl = 0x02,
  101.         TxExcessColl = 0x04,
  102.         RxFramErr = 0x06,
  103. };
  104. enum op_mode_bits {
  105. Op3MemWaits = 0x03,
  106. OpLenInclude = 0x08,
  107. OpRxMerge = 0x10,
  108. OpTxMerge = 0x20,
  109. OpWin95bugfix = 0x40,
  110. OpLoopback = 0x80,
  111. };
  112. enum rx_filter_bits {
  113. RxEnable = 0x01,
  114. RxPolarity = 0x02,
  115. RxForceOK = 0x04,
  116. RxMultiCast = 0x08,
  117. RxPromisc = 0x10,
  118. AltRxPromisc =  0x20, /* F5U011 uses different bit */
  119. };
  120. enum led_values {
  121. LEDFast =  0x01,
  122. LEDSlow = 0x02,
  123. LEDFlash = 0x03,
  124. LEDPulse = 0x04,
  125. LEDLink = 0x08,
  126. };
  127. enum link_status {
  128. LinkNoChange = 0,
  129. LinkGood     = 1,
  130. LinkBad      = 2
  131. };
  132. /*
  133.  * The catc struct.
  134.  */
  135. #define CTRL_RUNNING 0
  136. #define RX_RUNNING 1
  137. #define TX_RUNNING 2
  138. struct catc {
  139. struct net_device *netdev;
  140. struct usb_device *usbdev;
  141. struct net_device_stats stats;
  142. unsigned long flags;
  143. unsigned int tx_ptr, tx_idx;
  144. unsigned int ctrl_head, ctrl_tail;
  145. spinlock_t tx_lock, ctrl_lock;
  146. u8 tx_buf[2][TX_MAX_BURST * (PKT_SZ + 2)];
  147. u8 rx_buf[RX_MAX_BURST * (PKT_SZ + 2)];
  148. u8 irq_buf[2];
  149. u8 ctrl_buf[64];
  150. struct usb_ctrlrequest ctrl_dr;
  151. struct timer_list timer;
  152. u8 stats_buf[8];
  153. u16 stats_vals[4];
  154. unsigned long last_stats;
  155. u8 multicast[64];
  156. struct ctrl_queue {
  157. u8 dir;
  158. u8 request;
  159. u16 value;
  160. u16 index;
  161. void *buf;
  162. int len;
  163. void (*callback)(struct catc *catc, struct ctrl_queue *q);
  164. } ctrl_queue[CTRL_QUEUE];
  165. struct urb tx_urb, rx_urb, irq_urb, ctrl_urb;
  166. u8 is_f5u011; /* Set if device is an F5U011 */
  167. u8 rxmode[2]; /* Used for F5U011 */
  168. atomic_t recq_sz; /* Used for F5U011 - counter of waiting rx packets */
  169. };
  170. /*
  171.  * Useful macros.
  172.  */
  173. #define catc_get_mac(catc, mac) catc_ctrl_msg(catc, USB_DIR_IN,  GetMac, 0, 0, mac,  6)
  174. #define catc_reset(catc) catc_ctrl_msg(catc, USB_DIR_OUT, Reset, 0, 0, NULL, 0)
  175. #define catc_set_reg(catc, reg, val) catc_ctrl_msg(catc, USB_DIR_OUT, SetReg, val, reg, NULL, 0)
  176. #define catc_get_reg(catc, reg, buf) catc_ctrl_msg(catc, USB_DIR_IN,  GetReg, 0, reg, buf, 1)
  177. #define catc_write_mem(catc, addr, buf, size) catc_ctrl_msg(catc, USB_DIR_OUT, WriteMem, 0, addr, buf, size)
  178. #define catc_read_mem(catc, addr, buf, size) catc_ctrl_msg(catc, USB_DIR_IN,  ReadMem, 0, addr, buf, size)
  179. #define f5u011_rxmode(catc, rxmode) catc_ctrl_msg(catc, USB_DIR_OUT, SetRxMode, 0, 1, rxmode, 2)
  180. #define f5u011_rxmode_async(catc, rxmode) catc_ctrl_async(catc, USB_DIR_OUT, SetRxMode, 0, 1, &rxmode, 2, NULL)
  181. #define f5u011_mchash_async(catc, hash) catc_ctrl_async(catc, USB_DIR_OUT, SetRxMode, 0, 2, &hash, 8, NULL)
  182. #define catc_set_reg_async(catc, reg, val) catc_ctrl_async(catc, USB_DIR_OUT, SetReg, val, reg, NULL, 0, NULL)
  183. #define catc_get_reg_async(catc, reg, cb) catc_ctrl_async(catc, USB_DIR_IN, GetReg, 0, reg, NULL, 1, cb)
  184. #define catc_write_mem_async(catc, addr, buf, size) catc_ctrl_async(catc, USB_DIR_OUT, WriteMem, 0, addr, buf, size, NULL)
  185. /*
  186.  * Receive routines.
  187.  */
  188. static void catc_rx_done(struct urb *urb)
  189. {
  190. struct catc *catc = urb->context;
  191. u8 *pkt_start = urb->transfer_buffer;
  192. struct sk_buff *skb;
  193. int pkt_len, pkt_offset = 0;
  194. if (!catc->is_f5u011) {
  195. clear_bit(RX_RUNNING, &catc->flags);
  196. pkt_offset = 2;
  197. }
  198. if (urb->status) {
  199. dbg("rx_done, status %d, length %d", urb->status, urb->actual_length);
  200. return;
  201. }
  202. do {
  203. if(!catc->is_f5u011) {
  204. pkt_len = le16_to_cpup((u16*)pkt_start);
  205. if (pkt_len > urb->actual_length) {
  206. catc->stats.rx_length_errors++;
  207. catc->stats.rx_errors++;
  208. break;
  209. }
  210. } else {
  211. pkt_len = urb->actual_length;
  212. }
  213. if (!(skb = dev_alloc_skb(pkt_len)))
  214. return;
  215. skb->dev = catc->netdev;
  216. eth_copy_and_sum(skb, pkt_start + pkt_offset, pkt_len, 0);
  217. skb_put(skb, pkt_len);
  218. skb->protocol = eth_type_trans(skb, catc->netdev);
  219. netif_rx(skb);
  220. catc->stats.rx_packets++;
  221. catc->stats.rx_bytes += pkt_len;
  222. /* F5U011 only does one packet per RX */
  223. if (catc->is_f5u011)
  224. break;
  225. pkt_start += (((pkt_len + 1) >> 6) + 1) << 6;
  226. } while (pkt_start - (u8 *) urb->transfer_buffer < urb->actual_length);
  227. catc->netdev->last_rx = jiffies;
  228. if (catc->is_f5u011) {
  229. if (atomic_read(&catc->recq_sz)) {
  230. int status;
  231. atomic_dec(&catc->recq_sz);
  232. dbg("getting extra packet");
  233. urb->dev = catc->usbdev;
  234. if ((status = usb_submit_urb(urb)) < 0) {
  235. dbg("submit(rx_urb) status %d", status);
  236. }
  237. } else {
  238. clear_bit(RX_RUNNING, &catc->flags);
  239. }
  240. }
  241. }
  242. static void catc_irq_done(struct urb *urb)
  243. {
  244. struct catc *catc = urb->context;
  245. u8 *data = urb->transfer_buffer;
  246. int status;
  247. unsigned int hasdata = 0, linksts = LinkNoChange;
  248. if (!catc->is_f5u011) {
  249. hasdata = data[1] & 0x80;
  250. if (data[1] & 0x40)
  251. linksts = LinkGood;
  252. else if (data[1] & 0x20)
  253. linksts = LinkBad;
  254. } else {
  255. hasdata = (unsigned int)(be16_to_cpup((u16*)data) & 0x0fff);
  256. if (data[0] == 0x90)
  257. linksts = LinkGood;
  258. else if (data[0] == 0xA0)
  259. linksts = LinkBad;
  260. }
  261. if (urb->status) {
  262. dbg("irq_done, status %d, data %02x %02x.", urb->status, data[0], data[1]);
  263. return;
  264. }
  265. if (linksts == LinkGood) {
  266. netif_carrier_on(catc->netdev);
  267. dbg("link ok");
  268. }
  269. if (linksts == LinkBad) {
  270. netif_carrier_off(catc->netdev);
  271. dbg("link bad");
  272. }
  273. if (hasdata) {
  274. if (test_and_set_bit(RX_RUNNING, &catc->flags)) {
  275. if (catc->is_f5u011)
  276. atomic_inc(&catc->recq_sz);
  277. } else {
  278. catc->rx_urb.dev = catc->usbdev;
  279. if ((status = usb_submit_urb(&catc->rx_urb)) < 0) {
  280. err("submit(rx_urb) status %d", status);
  281. }
  282. }
  283. }
  284. /*
  285.  * Transmit routines.
  286.  */
  287. static void catc_tx_run(struct catc *catc)
  288. {
  289. int status;
  290. if (catc->is_f5u011)
  291. catc->tx_ptr = (catc->tx_ptr + 63) & ~63;
  292. catc->tx_urb.transfer_buffer_length = catc->tx_ptr;
  293. catc->tx_urb.transfer_buffer = catc->tx_buf[catc->tx_idx];
  294. catc->tx_urb.dev = catc->usbdev;
  295. if ((status = usb_submit_urb(&catc->tx_urb)) < 0)
  296. err("submit(tx_urb), status %d", status);
  297. catc->tx_idx = !catc->tx_idx;
  298. catc->tx_ptr = 0;
  299. catc->netdev->trans_start = jiffies;
  300. }
  301. static void catc_tx_done(struct urb *urb)
  302. {
  303. struct catc *catc = urb->context;
  304. unsigned long flags;
  305. if (urb->status == -ECONNRESET) {
  306. dbg("Tx Reset.");
  307. urb->transfer_flags &= ~USB_ASYNC_UNLINK;
  308. urb->status = 0;
  309. catc->netdev->trans_start = jiffies;
  310. catc->stats.tx_errors++;
  311. clear_bit(TX_RUNNING, &catc->flags);
  312. netif_wake_queue(catc->netdev);
  313. return;
  314. }
  315. if (urb->status) {
  316. dbg("tx_done, status %d, length %d", urb->status, urb->actual_length);
  317. return;
  318. }
  319. spin_lock_irqsave(&catc->tx_lock, flags);
  320. if (catc->tx_ptr)
  321. catc_tx_run(catc);
  322. else
  323. clear_bit(TX_RUNNING, &catc->flags);
  324. netif_wake_queue(catc->netdev);
  325. spin_unlock_irqrestore(&catc->tx_lock, flags);
  326. }
  327. static int catc_hard_start_xmit(struct sk_buff *skb, struct net_device *netdev)
  328. {
  329. struct catc *catc = netdev->priv;
  330. unsigned long flags;
  331. char *tx_buf;
  332. spin_lock_irqsave(&catc->tx_lock, flags);
  333. catc->tx_ptr = (((catc->tx_ptr - 1) >> 6) + 1) << 6;
  334. tx_buf = catc->tx_buf[catc->tx_idx] + catc->tx_ptr;
  335. *((u16*)tx_buf) = (catc->is_f5u011) ? 
  336. cpu_to_be16((u16)skb->len) : cpu_to_le16((u16)skb->len);
  337. memcpy(tx_buf + 2, skb->data, skb->len);
  338. catc->tx_ptr += skb->len + 2;
  339. if (!test_and_set_bit(TX_RUNNING, &catc->flags))
  340. catc_tx_run(catc);
  341. if ((catc->is_f5u011 && catc->tx_ptr)
  342.      || (catc->tx_ptr >= ((TX_MAX_BURST - 1) * (PKT_SZ + 2))))
  343. netif_stop_queue(netdev);
  344. spin_unlock_irqrestore(&catc->tx_lock, flags);
  345. catc->stats.tx_bytes += skb->len;
  346. catc->stats.tx_packets++;
  347. dev_kfree_skb(skb);
  348. return 0;
  349. }
  350. static void catc_tx_timeout(struct net_device *netdev)
  351. {
  352. struct catc *catc = netdev->priv;
  353. warn("Transmit timed out.");
  354. catc->tx_urb.transfer_flags |= USB_ASYNC_UNLINK;
  355. usb_unlink_urb(&catc->tx_urb);
  356. }
  357. /*
  358.  * Control messages.
  359.  */
  360. static int catc_ctrl_msg(struct catc *catc, u8 dir, u8 request, u16 value, u16 index, void *buf, int len)
  361. {
  362.         int retval = usb_control_msg(catc->usbdev,
  363. dir ? usb_rcvctrlpipe(catc->usbdev, 0) : usb_sndctrlpipe(catc->usbdev, 0),
  364.  request, 0x40 | dir, value, index, buf, len, HZ);
  365.         return retval < 0 ? retval : 0;
  366. }
  367. static void catc_ctrl_run(struct catc *catc)
  368. {
  369. struct ctrl_queue *q = catc->ctrl_queue + catc->ctrl_tail;
  370. struct usb_device *usbdev = catc->usbdev;
  371. struct urb *urb = &catc->ctrl_urb;
  372. struct usb_ctrlrequest *dr = &catc->ctrl_dr;
  373. int status;
  374. dr->bRequest = q->request;
  375. dr->bRequestType = 0x40 | q->dir;
  376. dr->wValue = cpu_to_le16(q->value);
  377. dr->wIndex = cpu_to_le16(q->index);
  378. dr->wLength = cpu_to_le16(q->len);
  379.         urb->pipe = q->dir ? usb_rcvctrlpipe(usbdev, 0) : usb_sndctrlpipe(usbdev, 0);
  380. urb->transfer_buffer_length = q->len;
  381. urb->transfer_buffer = catc->ctrl_buf;
  382. urb->setup_packet = (void *) dr;
  383. urb->dev = usbdev;
  384. if (!q->dir && q->buf && q->len)
  385. memcpy(catc->ctrl_buf, q->buf, q->len);
  386. if ((status = usb_submit_urb(&catc->ctrl_urb)))
  387. err("submit(ctrl_urb) status %d", status);
  388. }
  389. static void catc_ctrl_done(struct urb *urb)
  390. {
  391. struct catc *catc = urb->context;
  392. struct ctrl_queue *q;
  393. unsigned long flags;
  394. if (urb->status)
  395. dbg("ctrl_done, status %d, len %d.", urb->status, urb->actual_length);
  396. spin_lock_irqsave(&catc->ctrl_lock, flags);
  397. q = catc->ctrl_queue + catc->ctrl_tail;
  398. if (q->dir) {
  399. if (q->buf && q->len)
  400. memcpy(q->buf, catc->ctrl_buf, q->len);
  401. else
  402. q->buf = catc->ctrl_buf;
  403. }
  404. if (q->callback)
  405. q->callback(catc, q);
  406. catc->ctrl_tail = (catc->ctrl_tail + 1) & (CTRL_QUEUE - 1);
  407. if (catc->ctrl_head != catc->ctrl_tail)
  408. catc_ctrl_run(catc);
  409. else
  410. clear_bit(CTRL_RUNNING, &catc->flags);
  411. spin_unlock_irqrestore(&catc->ctrl_lock, flags);
  412. }
  413. static int catc_ctrl_async(struct catc *catc, u8 dir, u8 request, u16 value,
  414. u16 index, void *buf, int len, void (*callback)(struct catc *catc, struct ctrl_queue *q))
  415. {
  416. struct ctrl_queue *q;
  417. int retval = 0;
  418. unsigned long flags;
  419. spin_lock_irqsave(&catc->ctrl_lock, flags);
  420. q = catc->ctrl_queue + catc->ctrl_head;
  421. q->dir = dir;
  422. q->request = request;
  423. q->value = value;
  424. q->index = index;
  425. q->buf = buf;
  426. q->len = len;
  427. q->callback = callback;
  428. catc->ctrl_head = (catc->ctrl_head + 1) & (CTRL_QUEUE - 1);
  429. if (catc->ctrl_head == catc->ctrl_tail) {
  430. err("ctrl queue full");
  431. catc->ctrl_tail = (catc->ctrl_tail + 1) & (CTRL_QUEUE - 1);
  432. retval = -1;
  433. }
  434. if (!test_and_set_bit(CTRL_RUNNING, &catc->flags))
  435. catc_ctrl_run(catc);
  436. spin_unlock_irqrestore(&catc->ctrl_lock, flags);
  437. return retval;
  438. }
  439. /*
  440.  * Statistics.
  441.  */
  442. static void catc_stats_done(struct catc *catc, struct ctrl_queue *q)
  443. {
  444. int index = q->index - EthStats;
  445. u16 data, last;
  446. catc->stats_buf[index] = *((char *)q->buf);
  447. if (index & 1)
  448. return;
  449. data = ((u16)catc->stats_buf[index] << 8) | catc->stats_buf[index + 1];
  450. last = catc->stats_vals[index >> 1];
  451. switch (index) {
  452. case TxSingleColl:
  453. case TxMultiColl:
  454. catc->stats.collisions += data - last;
  455. break;
  456. case TxExcessColl:
  457. catc->stats.tx_aborted_errors += data - last;
  458. catc->stats.tx_errors += data - last;
  459. break;
  460. case RxFramErr:
  461. catc->stats.rx_frame_errors += data - last;
  462. catc->stats.rx_errors += data - last;
  463. break;
  464. }
  465. catc->stats_vals[index >> 1] = data;
  466. }
  467. static void catc_stats_timer(unsigned long data)
  468. {
  469. struct catc *catc = (void *) data;
  470. int i;
  471. for (i = 0; i < 8; i++)
  472. catc_get_reg_async(catc, EthStats + 7 - i, catc_stats_done);
  473. mod_timer(&catc->timer, jiffies + STATS_UPDATE);
  474. }
  475. static struct net_device_stats *catc_get_stats(struct net_device *netdev)
  476. {
  477. struct catc *catc = netdev->priv;
  478. return &catc->stats;
  479. }
  480. /*
  481.  * Receive modes. Broadcast, Multicast, Promisc.
  482.  */
  483. static inline u32 ether_crc_le(int cnt, unsigned char *addr)
  484. {
  485. unsigned int crc = 0xffffffff;
  486. u8 byte, idx, bit;
  487.         for (idx = 0; idx < cnt; idx++)
  488.                 for (byte = *addr++, bit = 0; bit < 8; bit++, byte >>= 1)
  489.                         crc = (crc >> 1) ^ (((crc ^ byte) & 1) ? 0xedb88320U : 0);
  490. return crc;
  491. }
  492. static void catc_multicast(unsigned char *addr, u8 *multicast)
  493. {
  494. unsigned int crc = ether_crc_le(6, addr);
  495. multicast[(crc >> 3) & 0x3f] |= 1 << (crc & 7);
  496. }
  497. static void catc_set_multicast_list(struct net_device *netdev)
  498. {
  499. struct catc *catc = netdev->priv;
  500. struct dev_mc_list *mc;
  501. u8 broadcast[6];
  502. u8 rx = RxEnable | RxPolarity | RxMultiCast;
  503. int i;
  504. memset(broadcast, 0xff, 6);
  505. memset(catc->multicast, 0, 64);
  506. catc_multicast(broadcast, catc->multicast);
  507. catc_multicast(netdev->dev_addr, catc->multicast);
  508. if (netdev->flags & IFF_PROMISC) {
  509. memset(catc->multicast, 0xff, 64);
  510. rx |= (!catc->is_f5u011) ? RxPromisc : AltRxPromisc;
  511. if (netdev->flags & IFF_ALLMULTI) {
  512. memset(catc->multicast, 0xff, 64);
  513. } else {
  514. for (i = 0, mc = netdev->mc_list; mc && i < netdev->mc_count; i++, mc = mc->next) {
  515. u32 crc = ether_crc_le(6, mc->dmi_addr);
  516. if (!catc->is_f5u011) {
  517. catc->multicast[(crc >> 3) & 0x3f] |= 1 << (crc & 7);
  518. } else {
  519. catc->multicast[7-(crc >> 29)] |= 1 << ((crc >> 26) & 7);
  520. }
  521. }
  522. }
  523. if (!catc->is_f5u011) {
  524. catc_set_reg_async(catc, RxUnit, rx);
  525. catc_write_mem_async(catc, 0xfa80, catc->multicast, 64);
  526. } else {
  527. f5u011_mchash_async(catc, catc->multicast);
  528. if (catc->rxmode[0] != rx) {
  529. catc->rxmode[0] = rx;
  530. dbg("Setting RX mode to %2.2X %2.2X", catc->rxmode[0],
  531.     catc->rxmode[1]);
  532. f5u011_rxmode_async(catc, catc->rxmode);
  533. }
  534. }
  535. }
  536. /*
  537.  * ioctl's
  538.  */
  539. static int netdev_ethtool_ioctl(struct net_device *dev, void *useraddr)
  540. {
  541.         struct catc *catc = dev->priv;
  542.         u32 cmd;
  543. char tmp[40];
  544.         
  545.         if (get_user(cmd, (u32 *)useraddr))
  546.                 return -EFAULT;
  547.         switch (cmd) {
  548.         /* get driver info */
  549.         case ETHTOOL_GDRVINFO: {
  550.                 struct ethtool_drvinfo info = {ETHTOOL_GDRVINFO};
  551.                 strncpy(info.driver, SHORT_DRIVER_DESC, ETHTOOL_BUSINFO_LEN);
  552.                 strncpy(info.version, DRIVER_VERSION, ETHTOOL_BUSINFO_LEN);
  553. sprintf(tmp, "usb%d:%d", catc->usbdev->bus->busnum, catc->usbdev->devnum);
  554.                 strncpy(info.bus_info, tmp,ETHTOOL_BUSINFO_LEN);
  555.                 if (copy_to_user(useraddr, &info, sizeof(info)))
  556.                         return -EFAULT;
  557.                 return 0;
  558.         }
  559. /* get settings */
  560. case ETHTOOL_GSET:
  561. if (catc->is_f5u011) {
  562. struct ethtool_cmd ecmd = { 
  563. ETHTOOL_GSET, 
  564. SUPPORTED_10baseT_Half | SUPPORTED_TP, 
  565. ADVERTISED_10baseT_Half | ADVERTISED_TP, 
  566. SPEED_10, 
  567. DUPLEX_HALF, 
  568. PORT_TP, 
  569. 0, 
  570. XCVR_INTERNAL, 
  571. AUTONEG_DISABLE, 
  572. 1, 
  573. };
  574. if (copy_to_user(useraddr, &ecmd, sizeof(ecmd)))
  575. return -EFAULT;
  576. return 0;
  577. } else {
  578. return -EOPNOTSUPP;
  579. }
  580.         /* get link status */
  581.         case ETHTOOL_GLINK: {
  582.                 struct ethtool_value edata = {ETHTOOL_GLINK};
  583.                 edata.data = netif_carrier_ok(dev);
  584.                 if (copy_to_user(useraddr, &edata, sizeof(edata)))
  585.                         return -EFAULT;
  586.                 return 0;
  587.         }
  588. }
  589.         /* Note that the ethtool user space code requires EOPNOTSUPP */
  590.         return -EOPNOTSUPP;
  591. }
  592. static int catc_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  593. {
  594.         switch(cmd) {
  595.         case SIOCETHTOOL:
  596.        return netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  597.         default:
  598.        return -ENOTTY; /* Apparently this is the standard ioctl errno */
  599.         }
  600. }
  601. /*
  602.  * Open, close.
  603.  */
  604. static int catc_open(struct net_device *netdev)
  605. {
  606. struct catc *catc = netdev->priv;
  607. int status;
  608. catc->irq_urb.dev = catc->usbdev;
  609. if ((status = usb_submit_urb(&catc->irq_urb)) < 0) {
  610. err("submit(irq_urb) status %d", status);
  611. return -1;
  612. }
  613. netif_start_queue(netdev);
  614. if (!catc->is_f5u011)
  615. mod_timer(&catc->timer, jiffies + STATS_UPDATE);
  616. return 0;
  617. }
  618. static int catc_stop(struct net_device *netdev)
  619. {
  620. struct catc *catc = netdev->priv;
  621. netif_stop_queue(netdev);
  622. if (!catc->is_f5u011)
  623. del_timer_sync(&catc->timer);
  624. usb_unlink_urb(&catc->rx_urb);
  625. usb_unlink_urb(&catc->tx_urb);
  626. usb_unlink_urb(&catc->irq_urb);
  627. usb_unlink_urb(&catc->ctrl_urb);
  628. return 0;
  629. }
  630. /*
  631.  * USB probe, disconnect.
  632.  */
  633. static void *catc_probe(struct usb_device *usbdev, unsigned int ifnum, const struct usb_device_id *id)
  634. {
  635. struct net_device *netdev;
  636. struct catc *catc;
  637. u8 broadcast[6];
  638. int i, pktsz;
  639. if (usb_set_interface(usbdev, ifnum, 1)) {
  640.                 err("Can't set altsetting 1.");
  641. return NULL;
  642. }
  643. catc = kmalloc(sizeof(struct catc), GFP_KERNEL);
  644. if (!catc)
  645. return NULL;
  646. memset(catc, 0, sizeof(struct catc));
  647. netdev = init_etherdev(0, 0);
  648. if (!netdev) {
  649. kfree(catc);
  650. return NULL;
  651. }
  652. netdev->open = catc_open;
  653. netdev->hard_start_xmit = catc_hard_start_xmit;
  654. netdev->stop = catc_stop;
  655. netdev->get_stats = catc_get_stats;
  656. netdev->tx_timeout = catc_tx_timeout;
  657. netdev->watchdog_timeo = TX_TIMEOUT;
  658. netdev->set_multicast_list = catc_set_multicast_list;
  659. netdev->do_ioctl = catc_ioctl;
  660. netdev->priv = catc;
  661. catc->usbdev = usbdev;
  662. catc->netdev = netdev;
  663. catc->tx_lock = SPIN_LOCK_UNLOCKED;
  664. catc->ctrl_lock = SPIN_LOCK_UNLOCKED;
  665. init_timer(&catc->timer);
  666. catc->timer.data = (long) catc;
  667. catc->timer.function = catc_stats_timer;
  668. /* The F5U011 has the same vendor/product as the netmate 
  669.  *  but a device version of 0x130
  670.  */
  671. if (usbdev->descriptor.idVendor == 0x0423 && 
  672.     usbdev->descriptor.idProduct == 0xa &&
  673.     catc->usbdev->descriptor.bcdDevice == 0x0130) {
  674. dbg("Testing for f5u011");
  675. catc->is_f5u011 = 1;
  676. atomic_set(&catc->recq_sz, 0);
  677. pktsz = RX_PKT_SZ;
  678. } else {
  679. pktsz = RX_MAX_BURST * (PKT_SZ + 2);
  680. }
  681. FILL_CONTROL_URB(&catc->ctrl_urb, usbdev, usb_sndctrlpipe(usbdev, 0),
  682. NULL, NULL, 0, catc_ctrl_done, catc);
  683. FILL_BULK_URB(&catc->tx_urb, usbdev, usb_sndbulkpipe(usbdev, 1),
  684. NULL, 0, catc_tx_done, catc);
  685. FILL_BULK_URB(&catc->rx_urb, usbdev, usb_rcvbulkpipe(usbdev, 1),
  686. catc->rx_buf, pktsz, catc_rx_done, catc);
  687. FILL_INT_URB(&catc->irq_urb, usbdev, usb_rcvintpipe(usbdev, 2),
  688.                 catc->irq_buf, 2, catc_irq_done, catc, 1);
  689. if (!catc->is_f5u011) {
  690. dbg("Checking memory sizen");
  691. i = 0x12345678;
  692. catc_write_mem(catc, 0x7a80, &i, 4);
  693. i = 0x87654321;
  694. catc_write_mem(catc, 0xfa80, &i, 4);
  695. catc_read_mem(catc, 0x7a80, &i, 4);
  696.   
  697. switch (i) {
  698. case 0x12345678:
  699. catc_set_reg(catc, TxBufCount, 8);
  700. catc_set_reg(catc, RxBufCount, 32);
  701. dbg("64k Memoryn");
  702. break;
  703. default:
  704. warn("Couldn't detect memory size, assuming 32k");
  705. case 0x87654321:
  706. catc_set_reg(catc, TxBufCount, 4);
  707. catc_set_reg(catc, RxBufCount, 16);
  708. dbg("32k Memoryn");
  709. break;
  710. }
  711.   
  712. dbg("Getting MAC from SEEROM.");
  713.   
  714. catc_get_mac(catc, netdev->dev_addr);
  715. dbg("Setting MAC into registers.");
  716.   
  717. for (i = 0; i < 6; i++)
  718. catc_set_reg(catc, StationAddr0 - i, netdev->dev_addr[i]);
  719. dbg("Filling the multicast list.");
  720.   
  721. memset(broadcast, 0xff, 6);
  722. catc_multicast(broadcast, catc->multicast);
  723. catc_multicast(netdev->dev_addr, catc->multicast);
  724. catc_write_mem(catc, 0xfa80, catc->multicast, 64);
  725. dbg("Clearing error counters.");
  726. for (i = 0; i < 8; i++)
  727. catc_set_reg(catc, EthStats + i, 0);
  728. catc->last_stats = jiffies;
  729. dbg("Enabling.");
  730. catc_set_reg(catc, MaxBurst, RX_MAX_BURST);
  731. catc_set_reg(catc, OpModes, OpTxMerge | OpRxMerge | OpLenInclude | Op3MemWaits);
  732. catc_set_reg(catc, LEDCtrl, LEDLink);
  733. catc_set_reg(catc, RxUnit, RxEnable | RxPolarity | RxMultiCast);
  734. } else {
  735. dbg("Performing resetn");
  736. catc_reset(catc);
  737. catc_get_mac(catc, netdev->dev_addr);
  738. dbg("Setting RX Mode");
  739. catc->rxmode[0] = RxEnable | RxPolarity | RxMultiCast;
  740. catc->rxmode[1] = 0;
  741. f5u011_rxmode(catc, catc->rxmode);
  742. }
  743. dbg("Init done.");
  744. printk(KERN_INFO "%s: %s USB Ethernet at usb%d:%d.%d, ",
  745.        netdev->name, (catc->is_f5u011) ? "Belkin F5U011" : "CATC EL1210A NetMate",
  746.        usbdev->bus->busnum, usbdev->devnum, ifnum);
  747. for (i = 0; i < 5; i++) printk("%2.2x:", netdev->dev_addr[i]);
  748. printk("%2.2x.n", netdev->dev_addr[i]);
  749. return catc;
  750. }
  751. static void catc_disconnect(struct usb_device *usbdev, void *dev_ptr)
  752. {
  753. struct catc *catc = dev_ptr;
  754. unregister_netdev(catc->netdev);
  755. kfree(catc->netdev);
  756. kfree(catc);
  757. }
  758. /*
  759.  * Module functions and tables.
  760.  */
  761. static struct usb_device_id catc_id_table [] = {
  762. { USB_DEVICE(0x0423, 0xa) }, /* CATC Netmate, Belkin F5U011 */
  763. { USB_DEVICE(0x0423, 0xc) }, /* CATC Netmate II, Belkin F5U111 */
  764. { USB_DEVICE(0x08d1, 0x1) }, /* smartBridges smartNIC */
  765. { }
  766. };
  767. MODULE_DEVICE_TABLE(usb, catc_id_table);
  768. static struct usb_driver catc_driver = {
  769. name: "catc",
  770. probe: catc_probe,
  771. disconnect: catc_disconnect,
  772. id_table: catc_id_table,
  773. };
  774. static int __init catc_init(void)
  775. {
  776. info(DRIVER_VERSION " " DRIVER_DESC);
  777. usb_register(&catc_driver);
  778. return 0;
  779. }
  780. static void __exit catc_exit(void)
  781. {
  782. usb_deregister(&catc_driver);
  783. }
  784. module_init(catc_init);
  785. module_exit(catc_exit);