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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. ** Pegasus: USB 10/100Mbps/HomePNA (1Mbps) Controller
  3. **
  4. ** Copyright (c) 1999-2001 Petko Manolov (pmanolov@lnxw.com)
  5. **
  6. **
  7. ** ChangeLog:
  8. ** .... Most of the time spend reading sources & docs.
  9. ** v0.2.x First official release for the Linux kernel.
  10. ** v0.3.0 Beutified and structured, some bugs fixed.
  11. ** v0.3.x URBifying bulk requests and bugfixing. First relatively
  12. ** stable release. Still can touch device's registers only
  13. ** from top-halves.
  14. ** v0.4.0 Control messages remained unurbified are now URBs.
  15. ** Now we can touch the HW at any time.
  16. ** v0.4.9 Control urbs again use process context to wait. Argh...
  17. ** Some long standing bugs (enable_net_traffic) fixed.
  18. ** Also nasty trick about resubmiting control urb from
  19. ** interrupt context used. Please let me know how it
  20. ** behaves. Pegasus II support added since this version.
  21. ** TODO: suppressing HCD warnings spewage on disconnect.
  22. ** v0.4.13 Ethernet address is now set at probe(), not at open()
  23. ** time as this seems to break dhcpd. 
  24. */
  25. /*
  26.  * This program is free software; you can redistribute it and/or modify
  27.  * it under the terms of the GNU General Public License as published by
  28.  * the Free Software Foundation; either version 2 of the License, or
  29.  * (at your option) any later version.
  30.  *
  31.  * This program is distributed in the hope that it will be useful,
  32.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  33.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  34.  * GNU General Public License for more details.
  35.  *
  36.  * You should have received a copy of the GNU General Public License
  37.  * along with this program; if not, write to the Free Software
  38.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  39.  */
  40. #include <linux/sched.h>
  41. #include <linux/slab.h>
  42. #include <linux/init.h>
  43. #include <linux/delay.h>
  44. #include <linux/netdevice.h>
  45. #include <linux/etherdevice.h>
  46. #include <linux/usb.h>
  47. #include <linux/module.h>
  48. #include "pegasus.h"
  49. /*
  50.  * Version Information
  51.  */
  52. #define DRIVER_VERSION "v0.4.22 (2001/12/07)"
  53. #define DRIVER_AUTHOR "Petko Manolov <pmanolov@lnxw.com>"
  54. #define DRIVER_DESC "Pegasus/Pegasus II USB Ethernet driver"
  55. #define PEGASUS_USE_INTR
  56. #define PEGASUS_WRITE_EEPROM
  57. static int loopback = 0;
  58. static int mii_mode = 0;
  59. static int multicast_filter_limit = 32;
  60. static struct usb_eth_dev usb_dev_id[] = {
  61. #define PEGASUS_DEV(pn, vid, pid, flags)
  62. {name:pn, vendor:vid, device:pid, private:flags},
  63. #include "pegasus.h"
  64. #undef PEGASUS_DEV
  65. {NULL, 0, 0, 0}
  66. };
  67. static struct usb_device_id pegasus_ids[] = {
  68. #define PEGASUS_DEV(pn, vid, pid, flags) 
  69. {match_flags: USB_DEVICE_ID_MATCH_DEVICE, idVendor:vid, idProduct:pid},
  70. #include "pegasus.h"
  71. #undef PEGASUS_DEV
  72. { }
  73. };
  74. MODULE_AUTHOR( DRIVER_AUTHOR );
  75. MODULE_DESCRIPTION( DRIVER_DESC );
  76. MODULE_LICENSE("GPL");
  77. MODULE_PARM(loopback, "i");
  78. MODULE_PARM(mii_mode, "i");
  79. MODULE_PARM_DESC(loopback, "Enable MAC loopback mode (bit 0)");
  80. MODULE_PARM_DESC(mii_mode, "Enable HomePNA mode (bit 0),default=MII mode = 0");
  81. MODULE_DEVICE_TABLE (usb, pegasus_ids);
  82. static int update_eth_regs_async( pegasus_t * );
  83. /* Aargh!!! I _really_ hate such tweaks */
  84. static void ctrl_callback( urb_t *urb )
  85. {
  86. pegasus_t *pegasus = urb->context;
  87. if ( !pegasus )
  88. return;
  89. switch ( urb->status ) {
  90. case USB_ST_NOERROR:
  91. if ( pegasus->flags & ETH_REGS_CHANGE ) {
  92. pegasus->flags &= ~ETH_REGS_CHANGE;
  93. pegasus->flags |= ETH_REGS_CHANGED;
  94. update_eth_regs_async( pegasus );
  95. return;
  96. }
  97. break;
  98. case USB_ST_URB_PENDING:
  99. return;
  100. case USB_ST_URB_KILLED:
  101. break;
  102. default:
  103. warn( __FUNCTION__ " status %d", urb->status);
  104. }
  105. pegasus->flags &= ~ETH_REGS_CHANGED;
  106. wake_up(&pegasus->ctrl_wait );
  107. }
  108. static int get_registers(pegasus_t *pegasus, __u16 indx, __u16 size, void *data)
  109. {
  110. int ret;
  111. unsigned char *buffer;
  112. DECLARE_WAITQUEUE(wait, current);
  113. buffer = kmalloc(size,GFP_KERNEL);
  114. if (!buffer) {
  115. err("unable to allocate memory for configuration descriptors");
  116. return 0;
  117. }
  118. memcpy(buffer,data,size);
  119. add_wait_queue(&pegasus->ctrl_wait, &wait);
  120. set_current_state(TASK_UNINTERRUPTIBLE);
  121. while ( pegasus->flags & ETH_REGS_CHANGED )
  122. schedule();
  123. remove_wait_queue(&pegasus->ctrl_wait, &wait);
  124. set_current_state(TASK_RUNNING);
  125. pegasus->dr.requesttype = PEGASUS_REQT_READ;
  126. pegasus->dr.request = PEGASUS_REQ_GET_REGS;
  127. pegasus->dr.value = cpu_to_le16 (0);
  128. pegasus->dr.index = cpu_to_le16p(&indx);
  129. pegasus->dr.length = cpu_to_le16p(&size);
  130. pegasus->ctrl_urb.transfer_buffer_length = size;
  131. FILL_CONTROL_URB( &pegasus->ctrl_urb, pegasus->usb,
  132.   usb_rcvctrlpipe(pegasus->usb,0),
  133.   (char *)&pegasus->dr,
  134.   buffer, size, ctrl_callback, pegasus );
  135. add_wait_queue( &pegasus->ctrl_wait, &wait );
  136. set_current_state( TASK_UNINTERRUPTIBLE );
  137. if ( (ret = usb_submit_urb( &pegasus->ctrl_urb )) ) {
  138. err( __FUNCTION__ " BAD CTRLs %d", ret);
  139. goto out;
  140. }
  141. schedule();
  142. out:
  143. remove_wait_queue( &pegasus->ctrl_wait, &wait );
  144. memcpy(data,buffer,size);
  145. kfree(buffer);
  146. return ret;
  147. }
  148. static int set_registers(pegasus_t *pegasus, __u16 indx, __u16 size, void *data)
  149. {
  150. int ret;
  151. unsigned char *buffer;
  152. DECLARE_WAITQUEUE(wait, current);
  153. buffer = kmalloc(size, GFP_KERNEL);
  154. if (!buffer) {
  155. err("unable to allocate memory for configuration descriptors");
  156. return 0;
  157. }
  158. memcpy(buffer, data, size);
  159. add_wait_queue(&pegasus->ctrl_wait, &wait);
  160. set_current_state(TASK_UNINTERRUPTIBLE);
  161. while ( pegasus->flags & ETH_REGS_CHANGED )
  162. schedule();
  163. remove_wait_queue(&pegasus->ctrl_wait, &wait);
  164. set_current_state(TASK_RUNNING);
  165. pegasus->dr.requesttype = PEGASUS_REQT_WRITE;
  166. pegasus->dr.request = PEGASUS_REQ_SET_REGS;
  167. pegasus->dr.value = cpu_to_le16 (0);
  168. pegasus->dr.index = cpu_to_le16p( &indx );
  169. pegasus->dr.length = cpu_to_le16p( &size );
  170. pegasus->ctrl_urb.transfer_buffer_length = size;
  171. FILL_CONTROL_URB( &pegasus->ctrl_urb, pegasus->usb,
  172.   usb_sndctrlpipe(pegasus->usb,0),
  173.   (char *)&pegasus->dr,
  174.   buffer, size, ctrl_callback, pegasus );
  175.   
  176. add_wait_queue( &pegasus->ctrl_wait, &wait );
  177. set_current_state( TASK_UNINTERRUPTIBLE );
  178. if ( (ret = usb_submit_urb( &pegasus->ctrl_urb )) ) {
  179. err( __FUNCTION__ " BAD CTRL %d", ret);
  180. goto out;
  181. }
  182. schedule();
  183. out:
  184. remove_wait_queue( &pegasus->ctrl_wait, &wait );
  185. kfree(buffer);
  186. return ret;
  187. }
  188. static int set_register( pegasus_t *pegasus, __u16 indx, __u8 data )
  189. {
  190. int ret;
  191. unsigned char *buffer;
  192. __u16 dat = data;
  193. DECLARE_WAITQUEUE(wait, current);
  194. buffer = kmalloc(1, GFP_KERNEL);
  195. if (!buffer) {
  196. err("unable to allocate memory for configuration descriptors");
  197. return 0;
  198. }
  199. memcpy(buffer, &data, 1);
  200. add_wait_queue(&pegasus->ctrl_wait, &wait);
  201. set_current_state(TASK_UNINTERRUPTIBLE);
  202. while ( pegasus->flags & ETH_REGS_CHANGED )
  203. schedule();
  204. remove_wait_queue(&pegasus->ctrl_wait, &wait);
  205. set_current_state(TASK_RUNNING);
  206. pegasus->dr.requesttype = PEGASUS_REQT_WRITE;
  207. pegasus->dr.request = PEGASUS_REQ_SET_REG;
  208. pegasus->dr.value = cpu_to_le16p( &dat);
  209. pegasus->dr.index = cpu_to_le16p( &indx );
  210. pegasus->dr.length = cpu_to_le16( 1 );
  211. pegasus->ctrl_urb.transfer_buffer_length = 1;
  212. FILL_CONTROL_URB( &pegasus->ctrl_urb, pegasus->usb,
  213.   usb_sndctrlpipe(pegasus->usb,0),
  214.   (char *)&pegasus->dr,
  215.   buffer, 1, ctrl_callback, pegasus );
  216. add_wait_queue( &pegasus->ctrl_wait, &wait );
  217. set_current_state( TASK_UNINTERRUPTIBLE );
  218. if ( (ret = usb_submit_urb( &pegasus->ctrl_urb )) ) {
  219. err( __FUNCTION__ " BAD CTRL %d", ret);
  220. goto out;
  221. }
  222. schedule();
  223. out:
  224. remove_wait_queue( &pegasus->ctrl_wait, &wait );
  225. kfree(buffer);
  226. return ret;
  227. }
  228. static int update_eth_regs_async( pegasus_t *pegasus )
  229. {
  230. int ret;
  231. pegasus->dr.requesttype = PEGASUS_REQT_WRITE;
  232. pegasus->dr.request = PEGASUS_REQ_SET_REGS;
  233. pegasus->dr.value = 0;
  234. pegasus->dr.index =  cpu_to_le16(EthCtrl0);
  235. pegasus->dr.length = cpu_to_le16(3);
  236. pegasus->ctrl_urb.transfer_buffer_length = 3;
  237. FILL_CONTROL_URB( &pegasus->ctrl_urb, pegasus->usb,
  238.   usb_sndctrlpipe(pegasus->usb,0),
  239.   (char *)&pegasus->dr,
  240.   pegasus->eth_regs, 3, ctrl_callback, pegasus );
  241. if ( (ret = usb_submit_urb( &pegasus->ctrl_urb )) )
  242. err( __FUNCTION__ " BAD CTRL %d, flags %x",ret,pegasus->flags );
  243. return ret;
  244. }
  245. static int read_mii_word( pegasus_t *pegasus, __u8 phy, __u8 indx, __u16 *regd )
  246. {
  247. int i;
  248. __u8 data[4] = { phy, 0, 0, indx };
  249. __u16  regdi;
  250. set_register( pegasus, PhyCtrl, 0 );
  251. set_registers( pegasus, PhyAddr, sizeof(data), data );
  252. set_register( pegasus, PhyCtrl, (indx | PHY_READ) );
  253. for (i = 0; i < REG_TIMEOUT; i++) {
  254. get_registers(pegasus, PhyCtrl, 1, data);
  255. if ( data[0] & PHY_DONE ) 
  256. break;
  257. }
  258. if ( i < REG_TIMEOUT ) {
  259. get_registers( pegasus, PhyData, 2, &regdi );
  260. *regd = le16_to_cpu(regdi);
  261. return 0;
  262. }
  263. warn( __FUNCTION__ " failed" );
  264. return 1;
  265. }
  266. static int write_mii_word( pegasus_t *pegasus, __u8 phy, __u8 indx, __u16 regd )
  267. {
  268. int i;
  269. __u8 data[4] = { phy, 0, 0, indx };
  270. *(data + 1) = cpu_to_le16p( &regd );
  271. set_register( pegasus, PhyCtrl, 0 );
  272. set_registers( pegasus, PhyAddr, 4, data );
  273. set_register( pegasus, PhyCtrl, (indx | PHY_WRITE) );
  274. for (i = 0; i < REG_TIMEOUT; i++) {
  275. get_registers(pegasus, PhyCtrl, 1, data);
  276. if ( data[0] & PHY_DONE ) 
  277. break;
  278. }
  279. if ( i < REG_TIMEOUT )
  280. return 0;
  281. warn( __FUNCTION__ " failed" );
  282. return 1;
  283. }
  284. static int read_eprom_word( pegasus_t *pegasus, __u8 index, __u16 *retdata )
  285. {
  286. int i;
  287. __u8 tmp;
  288. __u16 retdatai;
  289. set_register( pegasus, EpromCtrl, 0 );
  290. set_register( pegasus, EpromOffset, index );
  291. set_register( pegasus, EpromCtrl, EPROM_READ); 
  292. for ( i=0; i < REG_TIMEOUT; i++ ) {
  293. get_registers( pegasus, EpromCtrl, 1, &tmp );
  294. if ( tmp & EPROM_DONE )
  295. break;
  296. }
  297. if ( i < REG_TIMEOUT ) {
  298. get_registers( pegasus, EpromData, 2, &retdatai );
  299. *retdata = le16_to_cpu (retdatai);
  300. return 0;
  301. }
  302. warn( __FUNCTION__ " failed" );
  303. return -1;
  304. }
  305. #ifdef PEGASUS_WRITE_EEPROM
  306. static inline void enable_eprom_write( pegasus_t *pegasus )
  307. {
  308. __u8 tmp;
  309. get_registers( pegasus, EthCtrl2, 1, &tmp );
  310. set_register( pegasus, EthCtrl2, tmp | EPROM_WR_ENABLE );
  311. }
  312. static inline void disable_eprom_write( pegasus_t *pegasus )
  313. {
  314. __u8  tmp;
  315. get_registers( pegasus, EthCtrl2, 1, &tmp );
  316. set_register( pegasus, EpromCtrl, 0 );
  317. set_register( pegasus, EthCtrl2, tmp & ~EPROM_WR_ENABLE );
  318. }
  319. static int write_eprom_word( pegasus_t *pegasus, __u8 index, __u16 data )
  320. {
  321. int i, tmp;
  322. __u8 d[4] = {0x3f, 0, 0, EPROM_WRITE};
  323. set_registers( pegasus, EpromOffset, 4, d );
  324. enable_eprom_write( pegasus );
  325. set_register( pegasus, EpromOffset, index );
  326. set_registers( pegasus, EpromData, 2, &data );
  327. set_register( pegasus, EpromCtrl, EPROM_WRITE );
  328. for ( i=0; i < REG_TIMEOUT; i++ ) {
  329. get_registers( pegasus, EpromCtrl, 1, &tmp );
  330. if ( tmp & EPROM_DONE )
  331. break;
  332. }
  333. disable_eprom_write( pegasus );
  334. if ( i < REG_TIMEOUT )
  335. return 0;
  336. warn( __FUNCTION__ " failed" );
  337. return -1;
  338. }
  339. #endif /* PEGASUS_WRITE_EEPROM */
  340. static inline void get_node_id( pegasus_t *pegasus, __u8 *id )
  341. {
  342. int i;
  343. __u16 w16;
  344. for (i = 0; i < 3; i++) {
  345. read_eprom_word( pegasus, i, &w16);
  346. ((__u16 *) id)[i] = cpu_to_le16p (&w16);
  347. }
  348. }
  349. static void set_ethernet_addr( pegasus_t *pegasus )
  350. {
  351. __u8 node_id[6];
  352. get_node_id(pegasus, node_id);
  353. set_registers( pegasus, EthID, sizeof(node_id), node_id );
  354. memcpy( pegasus->net->dev_addr, node_id, sizeof(node_id) );
  355. }
  356. static inline int reset_mac( pegasus_t *pegasus )
  357. {
  358. __u8 data = 0x8;
  359. int i;
  360. set_register(pegasus, EthCtrl1, data);
  361. for (i = 0; i < REG_TIMEOUT; i++) {
  362. get_registers(pegasus, EthCtrl1, 1, &data);
  363. if (~data & 0x08) {
  364. if (loopback & 1) 
  365. break;
  366. if ( mii_mode && (pegasus->features & HAS_HOME_PNA) )
  367. set_register( pegasus, Gpio1, 0x34 );
  368. else
  369. set_register( pegasus, Gpio1, 0x26 );
  370. set_register( pegasus, Gpio0, pegasus->features );
  371. set_register( pegasus, Gpio0, DEFAULT_GPIO_SET );
  372. break;
  373. }
  374. }
  375. if ( i == REG_TIMEOUT )
  376. return 1;
  377. if ( usb_dev_id[pegasus->dev_index].vendor == VENDOR_LINKSYS ||
  378.      usb_dev_id[pegasus->dev_index].vendor == VENDOR_DLINK ) {
  379. __u16 auxmode;
  380. read_mii_word( pegasus, 0, 0x1b, &auxmode );
  381. write_mii_word( pegasus, 0, 0x1b, auxmode | 4 );
  382. }
  383. return 0;
  384. }
  385. static int enable_net_traffic( struct net_device *dev, struct usb_device *usb )
  386. {
  387. __u16 linkpart, bmsr;
  388. __u8 data[4];
  389. pegasus_t *pegasus = dev->priv;
  390. if ( read_mii_word(pegasus, pegasus->phy, MII_BMSR, &bmsr) ) 
  391. return 1;
  392. if ( !(bmsr & 0x20) && !loopback ) 
  393. warn( "%s: link NOT established (0x%x) - check the cable.",
  394. dev->name, bmsr );
  395. if ( read_mii_word(pegasus, pegasus->phy, MII_ANLPA, &linkpart) )
  396. return 2;
  397. if ( !(linkpart & 1) )
  398. warn( "link partner stat %x", linkpart );
  399. data[0] = 0xc9;
  400. data[1] = 0;
  401. if ( linkpart & (ANLPA_100TX_FD | ANLPA_10T_FD) )
  402. data[1] |= 0x20; /* set full duplex */
  403. if ( linkpart & (ANLPA_100TX_FD | ANLPA_100TX_HD) )
  404. data[1] |= 0x10; /* set 100 Mbps */
  405. if ( mii_mode )
  406. data[1] = 0;
  407. data[2] = (loopback & 1) ? 0x09 : 0x01;
  408. memcpy( pegasus->eth_regs, data, sizeof(data) );
  409. set_registers( pegasus, EthCtrl0, 3, data );
  410. return 0;
  411. }
  412. static void read_bulk_callback( struct urb *urb )
  413. {
  414. pegasus_t *pegasus = urb->context;
  415. struct net_device *net;
  416. int count = urb->actual_length, res;
  417. int rx_status;
  418. struct sk_buff *skb;
  419. __u16 pkt_len;
  420. if ( !pegasus || !(pegasus->flags & PEGASUS_RUNNING) )
  421. return;
  422. net = pegasus->net;
  423. if ( !netif_device_present(net) )
  424. return;
  425. if ( pegasus->flags & PEGASUS_RX_BUSY ) {
  426. pegasus->stats.rx_errors++;
  427. dbg("pegasus Rx busy");
  428. return;
  429. }
  430. pegasus->flags |= PEGASUS_RX_BUSY;
  431. switch ( urb->status ) {
  432. case USB_ST_NOERROR:
  433. break;
  434. case USB_ST_NORESPONSE:
  435. dbg( "reset MAC" );
  436. pegasus->flags &= ~PEGASUS_RX_BUSY;
  437. break;
  438. default:
  439. dbg( "%s: RX status %d", net->name, urb->status );
  440. goto goon;
  441. }
  442. if ( !count )
  443. goto goon;
  444. rx_status = le32_to_cpu(*(int *)(pegasus->rx_buff + count - 4));
  445. if ( rx_status & 0x000e0000 ) {
  446. dbg("%s: RX packet error %x", net->name, rx_status & 0xe0000);
  447. pegasus->stats.rx_errors++;
  448. if ( rx_status & 0x060000 )
  449. pegasus->stats.rx_length_errors++;
  450. if ( rx_status & 0x080000 )
  451. pegasus->stats.rx_crc_errors++;
  452. if ( rx_status & 0x100000 )
  453. pegasus->stats.rx_frame_errors++;
  454. goto goon;
  455. }
  456. pkt_len = (rx_status & 0xfff) - 8;
  457. if ( !(skb = dev_alloc_skb(pkt_len+2)) )
  458. goto goon;
  459. skb->dev = net;
  460. skb_reserve(skb, 2);
  461. eth_copy_and_sum(skb, pegasus->rx_buff, pkt_len, 0);
  462. skb_put(skb, pkt_len);
  463. skb->protocol = eth_type_trans(skb, net);
  464. netif_rx(skb);
  465. pegasus->stats.rx_packets++;
  466. pegasus->stats.rx_bytes += pkt_len;
  467. goon:
  468. FILL_BULK_URB( &pegasus->rx_urb, pegasus->usb,
  469. usb_rcvbulkpipe(pegasus->usb, 1),
  470. pegasus->rx_buff, PEGASUS_MAX_MTU, 
  471. read_bulk_callback, pegasus );
  472. if ( (res = usb_submit_urb(&pegasus->rx_urb)) )
  473. warn( __FUNCTION__ " failed submint rx_urb %d", res);
  474. pegasus->flags &= ~PEGASUS_RX_BUSY;
  475. }
  476. static void write_bulk_callback( struct urb *urb )
  477. {
  478. pegasus_t *pegasus = urb->context;
  479. if ( !pegasus || !(pegasus->flags & PEGASUS_RUNNING) )
  480. return;
  481. if ( !netif_device_present(pegasus->net) )
  482. return;
  483. if ( urb->status )
  484. info("%s: TX status %d", pegasus->net->name, urb->status);
  485. pegasus->net->trans_start = jiffies;
  486. netif_wake_queue( pegasus->net );
  487. }
  488. #ifdef PEGASUS_USE_INTR
  489. static void intr_callback( struct urb *urb )
  490. {
  491. pegasus_t *pegasus = urb->context;
  492. struct net_device *net;
  493. __u8 *d;
  494. if ( !pegasus )
  495. return;
  496. switch ( urb->status ) {
  497. case USB_ST_NOERROR:
  498. break;
  499. case USB_ST_URB_KILLED:
  500. return;
  501. default:
  502. info("intr status %d", urb->status);
  503. }
  504. d = urb->transfer_buffer;
  505. net = pegasus->net;
  506. if ( d[0] & 0xfc ) {
  507. pegasus->stats.tx_errors++;
  508. if ( d[0] & TX_UNDERRUN )
  509. pegasus->stats.tx_fifo_errors++;
  510. if ( d[0] & (EXCESSIVE_COL | JABBER_TIMEOUT) )
  511. pegasus->stats.tx_aborted_errors++;
  512. if ( d[0] & LATE_COL )
  513. pegasus->stats.tx_window_errors++;
  514. if ( d[0] & (NO_CARRIER | LOSS_CARRIER) )
  515. pegasus->stats.tx_carrier_errors++;
  516. }
  517. }
  518. #endif
  519. static void pegasus_tx_timeout( struct net_device *net )
  520. {
  521. pegasus_t *pegasus = net->priv;
  522. if ( !pegasus )
  523. return;
  524. warn("%s: Tx timed out.", net->name);
  525. pegasus->tx_urb.transfer_flags |= USB_ASYNC_UNLINK;
  526. usb_unlink_urb( &pegasus->tx_urb );
  527. pegasus->stats.tx_errors++;
  528. }
  529. static int pegasus_start_xmit( struct sk_buff *skb, struct net_device *net )
  530. {
  531. pegasus_t *pegasus = net->priv;
  532. int  count = ((skb->len+2) & 0x3f) ? skb->len+2 : skb->len+3;
  533. int  res;
  534. __u16 l16 = skb->len;
  535. netif_stop_queue( net );
  536. ((__u16 *)pegasus->tx_buff)[0] = cpu_to_le16( l16 );
  537. memcpy(pegasus->tx_buff+2, skb->data, skb->len);
  538. FILL_BULK_URB( &pegasus->tx_urb, pegasus->usb,
  539. usb_sndbulkpipe(pegasus->usb, 2),
  540. pegasus->tx_buff, PEGASUS_MAX_MTU, 
  541. write_bulk_callback, pegasus );
  542. pegasus->tx_urb.transfer_buffer_length = count;
  543. if ((res = usb_submit_urb(&pegasus->tx_urb))) {
  544. warn("failed tx_urb %d", res);
  545. pegasus->stats.tx_errors++;
  546. netif_start_queue( net );
  547. } else {
  548. pegasus->stats.tx_packets++;
  549. pegasus->stats.tx_bytes += skb->len;
  550. net->trans_start = jiffies;
  551. }
  552. dev_kfree_skb(skb);
  553. return 0;
  554. }
  555. static struct net_device_stats *pegasus_netdev_stats( struct net_device *dev )
  556. {
  557. return &((pegasus_t *)dev->priv)->stats;
  558. }
  559. static inline void disable_net_traffic( pegasus_t *pegasus )
  560. {
  561. int  tmp=0;
  562. set_registers( pegasus, EthCtrl0, 2, &tmp );
  563. }
  564. static inline void get_interrupt_interval( pegasus_t *pegasus )
  565. {
  566. __u8 data[2];
  567. read_eprom_word( pegasus, 4, (__u16 *)data );
  568. if ( data[1] < 0x80 ) {
  569. info( "intr interval will be changed from %ums to %ums",
  570.      data[1], 0x80 );
  571. data[1] = 0x80;
  572. #ifdef PEGASUS_WRITE_EEPROM
  573. write_eprom_word( pegasus, 4, *(__u16 *)data );
  574. #endif
  575. }
  576. pegasus->intr_interval = data[1];
  577. }
  578. static int pegasus_open(struct net_device *net)
  579. {
  580. pegasus_t *pegasus = (pegasus_t *)net->priv;
  581. int res;
  582. if ( (res = enable_net_traffic(net, pegasus->usb)) ) {
  583. err("can't enable_net_traffic() - %d", res);
  584. return -EIO;
  585. }
  586. FILL_BULK_URB( &pegasus->rx_urb, pegasus->usb,
  587. usb_rcvbulkpipe(pegasus->usb, 1),
  588. pegasus->rx_buff, PEGASUS_MAX_MTU, 
  589. read_bulk_callback, pegasus );
  590. if ( (res = usb_submit_urb(&pegasus->rx_urb)) )
  591. warn( __FUNCTION__ " failed rx_urb %d", res );
  592. #ifdef PEGASUS_USE_INTR
  593. FILL_INT_URB( &pegasus->intr_urb, pegasus->usb,
  594. usb_rcvintpipe(pegasus->usb, 3),
  595. pegasus->intr_buff, sizeof(pegasus->intr_buff),
  596. intr_callback, pegasus, pegasus->intr_interval );
  597. if ( (res = usb_submit_urb(&pegasus->intr_urb)) )
  598. warn( __FUNCTION__ " failed intr_urb %d", res);
  599. #endif
  600. netif_start_queue( net );
  601. pegasus->flags |= PEGASUS_RUNNING;
  602. return 0;
  603. }
  604. static int pegasus_close( struct net_device *net )
  605. {
  606. pegasus_t *pegasus = net->priv;
  607. pegasus->flags &= ~PEGASUS_RUNNING;
  608. netif_stop_queue( net );
  609. if ( !(pegasus->flags & PEGASUS_UNPLUG) )
  610. disable_net_traffic( pegasus );
  611. usb_unlink_urb( &pegasus->rx_urb );
  612. usb_unlink_urb( &pegasus->tx_urb );
  613. usb_unlink_urb( &pegasus->ctrl_urb );
  614. #ifdef PEGASUS_USE_INTR
  615. usb_unlink_urb( &pegasus->intr_urb );
  616. #endif
  617. return 0;
  618. }
  619. static int pegasus_ioctl( struct net_device *net, struct ifreq *rq, int cmd )
  620. {
  621. __u16 *data = (__u16 *)&rq->ifr_data;
  622. pegasus_t *pegasus = net->priv;
  623. switch(cmd) {
  624. case SIOCDEVPRIVATE:
  625. data[0] = pegasus->phy;
  626. case SIOCDEVPRIVATE+1:
  627. read_mii_word(pegasus, data[0], data[1]&0x1f, &data[3]);
  628. return 0;
  629. case SIOCDEVPRIVATE+2:
  630. if ( !capable(CAP_NET_ADMIN) )
  631. return -EPERM;
  632. write_mii_word(pegasus, pegasus->phy, data[1] & 0x1f, data[2]);
  633. return 0;
  634. default:
  635. return -EOPNOTSUPP;
  636. }
  637. }
  638. static void pegasus_set_multicast( struct net_device *net )
  639. {
  640. pegasus_t *pegasus = net->priv;
  641. netif_stop_queue(net);
  642. if (net->flags & IFF_PROMISC) {
  643. pegasus->eth_regs[EthCtrl2] |= RX_PROMISCUOUS;
  644. info("%s: Promiscuous mode enabled", net->name);
  645. } else if ((net->mc_count > multicast_filter_limit) ||
  646. (net->flags & IFF_ALLMULTI)) {
  647. pegasus->eth_regs[EthCtrl0] |= RX_MULTICAST;
  648. pegasus->eth_regs[EthCtrl2] &= ~RX_PROMISCUOUS;
  649. info("%s set allmulti", net->name);
  650. } else {
  651. pegasus->eth_regs[EthCtrl0] &= ~RX_MULTICAST;
  652. pegasus->eth_regs[EthCtrl2] &= ~RX_PROMISCUOUS;
  653. }
  654. pegasus->flags |= ETH_REGS_CHANGE;
  655. ctrl_callback( &pegasus->ctrl_urb );
  656. netif_wake_queue(net);
  657. }
  658. static __u8 mii_phy_probe( pegasus_t *pegasus )
  659. {
  660. int i;
  661. __u16 tmp;
  662. for ( i=0; i < 32; i++ ) {
  663. read_mii_word( pegasus, i, MII_BMSR, &tmp );
  664. if ( tmp == 0 || tmp == 0xffff || (tmp & BMSR_MEDIA) == 0 )
  665. continue;
  666. else
  667. return i;
  668. }
  669. return 0xff;
  670. }
  671. static inline void setup_pegasus_II( pegasus_t *pegasus )
  672. {
  673. set_register( pegasus, Reg1d, 0 );
  674. set_register( pegasus, Reg7b, 2 );
  675. if ( pegasus->features & HAS_HOME_PNA  && mii_mode )
  676. set_register( pegasus, Reg81, 6 );
  677. else
  678. set_register( pegasus, Reg81, 2 );
  679. }
  680. static void * pegasus_probe( struct usb_device *dev, unsigned int ifnum,
  681.      const struct usb_device_id *id)
  682. {
  683. struct net_device *net;
  684. pegasus_t *pegasus;
  685. int dev_index = id - pegasus_ids;
  686. if (usb_set_configuration(dev, dev->config[0].bConfigurationValue)) {
  687. err("usb_set_configuration() failed");
  688. return NULL;
  689. }
  690. if(!(pegasus = kmalloc(sizeof(struct pegasus), GFP_KERNEL))) {
  691. err("out of memory allocating device structure");
  692. return NULL;
  693. }
  694. usb_inc_dev_use( dev );
  695. memset(pegasus, 0, sizeof(struct pegasus));
  696. pegasus->dev_index = dev_index;
  697. init_waitqueue_head( &pegasus->ctrl_wait );
  698. net = init_etherdev( NULL, 0 );
  699. if ( !net ) {
  700. kfree( pegasus );
  701. return NULL;
  702. }
  703. pegasus->usb = dev;
  704. pegasus->net = net;
  705. SET_MODULE_OWNER(net);
  706. net->priv = pegasus;
  707. net->open = pegasus_open;
  708. net->stop = pegasus_close;
  709. net->watchdog_timeo = PEGASUS_TX_TIMEOUT;
  710. net->tx_timeout = pegasus_tx_timeout;
  711. net->do_ioctl = pegasus_ioctl;
  712. net->hard_start_xmit = pegasus_start_xmit;
  713. net->set_multicast_list = pegasus_set_multicast;
  714. net->get_stats = pegasus_netdev_stats;
  715. net->mtu = PEGASUS_MTU;
  716. pegasus->features = usb_dev_id[dev_index].private;
  717. #ifdef PEGASUS_USE_INTR
  718. get_interrupt_interval( pegasus );
  719. #endif
  720. if ( reset_mac(pegasus) ) {
  721. err("can't reset MAC");
  722. unregister_netdev( pegasus->net );
  723. kfree(pegasus->net);
  724. kfree(pegasus);
  725. pegasus = NULL;
  726. return NULL;
  727. }
  728. info( "%s: %s", net->name, usb_dev_id[dev_index].name );
  729. set_ethernet_addr( pegasus );
  730. if ( pegasus->features & PEGASUS_II ) {
  731. info( "setup Pegasus II specific registers" );
  732. setup_pegasus_II( pegasus );
  733. }
  734. pegasus->phy = mii_phy_probe( pegasus );
  735. if ( pegasus->phy == 0xff ) {
  736. warn( "can't locate MII phy, using default" );
  737. pegasus->phy = 1;
  738. }
  739. return pegasus;
  740. }
  741. static void pegasus_disconnect( struct usb_device *dev, void *ptr )
  742. {
  743. struct pegasus *pegasus = ptr;
  744. if ( !pegasus ) {
  745. warn("unregistering non-existant device");
  746. return;
  747. }
  748. pegasus->flags |= PEGASUS_UNPLUG;
  749. unregister_netdev( pegasus->net );
  750. usb_dec_dev_use( dev );
  751. kfree( pegasus->net );
  752. kfree( pegasus );
  753. pegasus = NULL;
  754. }
  755. static struct usb_driver pegasus_driver = {
  756. name: "pegasus",
  757. probe: pegasus_probe,
  758. disconnect: pegasus_disconnect,
  759. id_table: pegasus_ids,
  760. };
  761. int __init pegasus_init(void)
  762. {
  763. info(DRIVER_VERSION ":" DRIVER_DESC);
  764. return usb_register( &pegasus_driver );
  765. }
  766. void __exit pegasus_exit(void)
  767. {
  768. usb_deregister( &pegasus_driver );
  769. }
  770. module_init( pegasus_init );
  771. module_exit( pegasus_exit );