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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * sonic.c
  3.  *
  4.  * (C) 1996,1998 by Thomas Bogendoerfer (tsbogend@alpha.franken.de)
  5.  * 
  6.  * This driver is based on work from Andreas Busse, but most of
  7.  * the code is rewritten.
  8.  * 
  9.  * (C) 1995 by Andreas Busse (andy@waldorf-gmbh.de)
  10.  *
  11.  *    Core code included by system sonic drivers
  12.  */
  13. /*
  14.  * Sources: Olivetti M700-10 Risc Personal Computer hardware handbook,
  15.  * National Semiconductors data sheet for the DP83932B Sonic Ethernet
  16.  * controller, and the files "8390.c" and "skeleton.c" in this directory.
  17.  */
  18. /*
  19.  * Open/initialize the SONIC controller.
  20.  *
  21.  * This routine should set everything up anew at each open, even
  22.  *  registers that "should" only need to be set once at boot, so that
  23.  *  there is non-reboot way to recover if something goes wrong.
  24.  */
  25. static int sonic_open(struct net_device *dev)
  26. {
  27. if (sonic_debug > 2)
  28. printk("sonic_open: initializing sonic driver.n");
  29. /*
  30.  * We don't need to deal with auto-irq stuff since we
  31.  * hardwire the sonic interrupt.
  32.  */
  33. /*
  34.  * XXX Horrible work around:  We install sonic_interrupt as fast interrupt.
  35.  * This means that during execution of the handler interrupt are disabled
  36.  * covering another bug otherwise corrupting data.  This doesn't mean
  37.  * this glue works ok under all situations.
  38.  */
  39. //    if (sonic_request_irq(dev->irq, &sonic_interrupt, 0, "sonic", dev)) {
  40. if (sonic_request_irq(dev->irq, &sonic_interrupt, SA_INTERRUPT,
  41.                       "sonic", dev)) {
  42. printk("n%s: unable to get IRQ %d .n", dev->name, dev->irq);
  43. return -EAGAIN;
  44. }
  45. /*
  46.  * Initialize the SONIC
  47.  */
  48. sonic_init(dev);
  49. netif_start_queue(dev);
  50. if (sonic_debug > 2)
  51. printk("sonic_open: Initialization done.n");
  52. return 0;
  53. }
  54. /*
  55.  * Close the SONIC device
  56.  */
  57. static int sonic_close(struct net_device *dev)
  58. {
  59. unsigned int base_addr = dev->base_addr;
  60. if (sonic_debug > 2)
  61. printk("sonic_closen");
  62. netif_stop_queue(dev);
  63. /*
  64.  * stop the SONIC, disable interrupts
  65.  */
  66. SONIC_WRITE(SONIC_ISR, 0x7fff);
  67. SONIC_WRITE(SONIC_IMR, 0);
  68. SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
  69. sonic_free_irq(dev->irq, dev); /* release the IRQ */
  70. return 0;
  71. }
  72. static void sonic_tx_timeout(struct net_device *dev)
  73. {
  74. struct sonic_local *lp = (struct sonic_local *) dev->priv;
  75. printk("%s: transmit timed out.n", dev->name);
  76. /* Try to restart the adaptor. */
  77. sonic_init(dev);
  78. lp->stats.tx_errors++;
  79. dev->trans_start = jiffies;
  80. netif_wake_queue(dev);
  81. }
  82. /*
  83.  * transmit packet
  84.  */
  85. static int sonic_send_packet(struct sk_buff *skb, struct net_device *dev)
  86. {
  87. struct sonic_local *lp = (struct sonic_local *) dev->priv;
  88. unsigned int base_addr = dev->base_addr;
  89. unsigned int laddr;
  90. int entry, length;
  91. netif_stop_queue(dev);
  92. if (sonic_debug > 2)
  93. printk("sonic_send_packet: skb=%p, dev=%pn", skb, dev);
  94. /* 
  95.  * Block a timer-based transmit from overlapping.  This could better be
  96.  * done with atomic_swap(1, dev->tbusy), but set_bit() works as well.
  97.  */
  98. if (test_and_set_bit(0, (void *) &dev->tbusy) != 0) {
  99. printk("%s: Transmitter access conflict.n", dev->name);
  100. return 1;
  101. }
  102. /*
  103.  * Map the packet data into the logical DMA address space
  104.  */
  105. if ((laddr = vdma_alloc(PHYSADDR(skb->data), skb->len)) == ~0UL) {
  106. printk("%s: no VDMA entry for transmit available.n",
  107.        dev->name);
  108. dev_kfree_skb(skb);
  109. netif_start_queue(dev);
  110. return 1;
  111. }
  112. entry = lp->cur_tx & SONIC_TDS_MASK;
  113. lp->tx_laddr[entry] = laddr;
  114. lp->tx_skb[entry] = skb;
  115. length = (skb->len < ETH_ZLEN) ? ETH_ZLEN : skb->len;
  116. flush_cache_all();
  117. /*
  118.  * Setup the transmit descriptor and issue the transmit command.
  119.  */
  120. lp->tda[entry].tx_status = 0; /* clear status */
  121. lp->tda[entry].tx_frag_count = 1; /* single fragment */
  122. lp->tda[entry].tx_pktsize = length; /* length of packet */
  123. lp->tda[entry].tx_frag_ptr_l = laddr & 0xffff;
  124. lp->tda[entry].tx_frag_ptr_h = laddr >> 16;
  125. lp->tda[entry].tx_frag_size = length;
  126. lp->cur_tx++;
  127. lp->stats.tx_bytes += length;
  128. if (sonic_debug > 2)
  129. printk("sonic_send_packet: issueing Tx commandn");
  130. SONIC_WRITE(SONIC_CMD, SONIC_CR_TXP);
  131. dev->trans_start = jiffies;
  132. if (lp->cur_tx < lp->dirty_tx + SONIC_NUM_TDS)
  133. netif_start_queue(dev);
  134. else
  135. lp->tx_full = 1;
  136. return 0;
  137. }
  138. /*
  139.  * The typical workload of the driver:
  140.  * Handle the network interface interrupts.
  141.  */
  142. static void sonic_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  143. {
  144. struct net_device *dev = (struct net_device *) dev_id;
  145. unsigned int base_addr = dev->base_addr;
  146. struct sonic_local *lp;
  147. int status;
  148. if (dev == NULL) {
  149. printk("sonic_interrupt: irq %d for unknown device.n", irq);
  150. return;
  151. }
  152. lp = (struct sonic_local *) dev->priv;
  153. status = SONIC_READ(SONIC_ISR);
  154. SONIC_WRITE(SONIC_ISR, 0x7fff); /* clear all bits */
  155. if (sonic_debug > 2)
  156. printk("sonic_interrupt: ISR=%xn", status);
  157. if (status & SONIC_INT_PKTRX) {
  158. sonic_rx(dev); /* got packet(s) */
  159. }
  160. if (status & SONIC_INT_TXDN) {
  161. int dirty_tx = lp->dirty_tx;
  162. while (dirty_tx < lp->cur_tx) {
  163. int entry = dirty_tx & SONIC_TDS_MASK;
  164. int status = lp->tda[entry].tx_status;
  165. if (sonic_debug > 3)
  166. printk
  167.     ("sonic_interrupt: status %d, cur_tx %d, dirty_tx %dn",
  168.      status, lp->cur_tx, lp->dirty_tx);
  169. if (status == 0) {
  170. /* It still hasn't been Txed, kick the sonic again */
  171. SONIC_WRITE(SONIC_CMD, SONIC_CR_TXP);
  172. break;
  173. }
  174. /* put back EOL and free descriptor */
  175. lp->tda[entry].tx_frag_count = 0;
  176. lp->tda[entry].tx_status = 0;
  177. if (status & 0x0001)
  178. lp->stats.tx_packets++;
  179. else {
  180. lp->stats.tx_errors++;
  181. if (status & 0x0642)
  182. lp->stats.tx_aborted_errors++;
  183. if (status & 0x0180)
  184. lp->stats.tx_carrier_errors++;
  185. if (status & 0x0020)
  186. lp->stats.tx_window_errors++;
  187. if (status & 0x0004)
  188. lp->stats.tx_fifo_errors++;
  189. }
  190. /* We must free the original skb */
  191. if (lp->tx_skb[entry]) {
  192. dev_kfree_skb(lp->tx_skb[entry]);
  193. lp->tx_skb[entry] = 0;
  194. }
  195. /* and the VDMA address */
  196. vdma_free(lp->tx_laddr[entry]);
  197. dirty_tx++;
  198. }
  199. if (lp->tx_full
  200.     && dirty_tx + SONIC_NUM_TDS > lp->cur_tx + 2) {
  201. /* The ring is no longer full, clear tbusy. */
  202. lp->tx_full = 0;
  203. netif_wake_queue(dev);
  204. }
  205. lp->dirty_tx = dirty_tx;
  206. }
  207. /*
  208.  * check error conditions
  209.  */
  210. if (status & SONIC_INT_RFO) {
  211. printk("%s: receive fifo underrunn", dev->name);
  212. lp->stats.rx_fifo_errors++;
  213. }
  214. if (status & SONIC_INT_RDE) {
  215. printk("%s: receive descriptors exhaustedn", dev->name);
  216. lp->stats.rx_dropped++;
  217. }
  218. if (status & SONIC_INT_RBE) {
  219. printk("%s: receive buffer exhaustedn", dev->name);
  220. lp->stats.rx_dropped++;
  221. }
  222. if (status & SONIC_INT_RBAE) {
  223. printk("%s: receive buffer area exhaustedn", dev->name);
  224. lp->stats.rx_dropped++;
  225. }
  226. /* counter overruns; all counters are 16bit wide */
  227. if (status & SONIC_INT_FAE)
  228. lp->stats.rx_frame_errors += 65536;
  229. if (status & SONIC_INT_CRC)
  230. lp->stats.rx_crc_errors += 65536;
  231. if (status & SONIC_INT_MP)
  232. lp->stats.rx_missed_errors += 65536;
  233. /* transmit error */
  234. if (status & SONIC_INT_TXER)
  235. lp->stats.tx_errors++;
  236. /*
  237.  * clear interrupt bits and return
  238.  */
  239. SONIC_WRITE(SONIC_ISR, status);
  240. }
  241. /*
  242.  * We have a good packet(s), get it/them out of the buffers.
  243.  */
  244. static void sonic_rx(struct net_device *dev)
  245. {
  246. unsigned int base_addr = dev->base_addr;
  247. struct sonic_local *lp = (struct sonic_local *) dev->priv;
  248. sonic_rd_t *rd = &lp->rda[lp->cur_rx & SONIC_RDS_MASK];
  249. int status;
  250. while (rd->in_use == 0) {
  251. struct sk_buff *skb;
  252. int pkt_len;
  253. unsigned char *pkt_ptr;
  254. status = rd->rx_status;
  255. if (sonic_debug > 3)
  256. printk("status %x, cur_rx %d, cur_rra %xn",
  257.        status, lp->cur_rx, lp->cur_rra);
  258. if (status & SONIC_RCR_PRX) {
  259. pkt_len = rd->rx_pktlen;
  260. pkt_ptr =
  261.     (char *)
  262.     sonic_chiptomem((rd->rx_pktptr_h << 16) +
  263.     rd->rx_pktptr_l);
  264. if (sonic_debug > 3)
  265. printk
  266.     ("pktptr %p (rba %p) h:%x l:%x, bsize h:%x l:%xn",
  267.      pkt_ptr, lp->rba, rd->rx_pktptr_h,
  268.      rd->rx_pktptr_l,
  269.      SONIC_READ(SONIC_RBWC1),
  270.      SONIC_READ(SONIC_RBWC0));
  271. /* Malloc up new buffer. */
  272. skb = dev_alloc_skb(pkt_len + 2);
  273. if (skb == NULL) {
  274. printk
  275.     ("%s: Memory squeeze, dropping packet.n",
  276.      dev->name);
  277. lp->stats.rx_dropped++;
  278. break;
  279. }
  280. skb->dev = dev;
  281. skb_reserve(skb, 2); /* 16 byte align */
  282. skb_put(skb, pkt_len); /* Make room */
  283. eth_copy_and_sum(skb, pkt_ptr, pkt_len, 0);
  284. skb->protocol = eth_type_trans(skb, dev);
  285. netif_rx(skb); /* pass the packet to upper layers */
  286. dev->last_rx = jiffies;
  287. lp->stats.rx_packets++;
  288. lp->stats.rx_bytes += pkt_len;
  289. } else {
  290. /* This should only happen, if we enable accepting broken packets. */
  291. lp->stats.rx_errors++;
  292. if (status & SONIC_RCR_FAER)
  293. lp->stats.rx_frame_errors++;
  294. if (status & SONIC_RCR_CRCR)
  295. lp->stats.rx_crc_errors++;
  296. }
  297. rd->in_use = 1;
  298. rd = &lp->rda[(++lp->cur_rx) & SONIC_RDS_MASK];
  299. /* now give back the buffer to the receive buffer area */
  300. if (status & SONIC_RCR_LPKT) {
  301. /*
  302.  * this was the last packet out of the current receice buffer
  303.  * give the buffer back to the SONIC
  304.  */
  305. lp->cur_rra += sizeof(sonic_rr_t);
  306. if (lp->cur_rra >
  307.     (lp->rra_laddr +
  308.      (SONIC_NUM_RRS -
  309.       1) * sizeof(sonic_rr_t))) lp->cur_rra =
  310.     lp->rra_laddr;
  311. SONIC_WRITE(SONIC_RWP, lp->cur_rra & 0xffff);
  312. } else
  313. printk
  314.     ("%s: rx desc without RCR_LPKT. Shouldn't happen !?n",
  315.      dev->name);
  316. }
  317. /*
  318.  * If any worth-while packets have been received, dev_rint()
  319.  * has done a mark_bh(NET_BH) for us and will work on them
  320.  * when we get to the bottom-half routine.
  321.  */
  322. }
  323. /*
  324.  * Get the current statistics.
  325.  * This may be called with the device open or closed.
  326.  */
  327. static struct net_device_stats *sonic_get_stats(struct net_device *dev)
  328. {
  329. struct sonic_local *lp = (struct sonic_local *) dev->priv;
  330. unsigned int base_addr = dev->base_addr;
  331. /* read the tally counter from the SONIC and reset them */
  332. lp->stats.rx_crc_errors += SONIC_READ(SONIC_CRCT);
  333. SONIC_WRITE(SONIC_CRCT, 0xffff);
  334. lp->stats.rx_frame_errors += SONIC_READ(SONIC_FAET);
  335. SONIC_WRITE(SONIC_FAET, 0xffff);
  336. lp->stats.rx_missed_errors += SONIC_READ(SONIC_MPT);
  337. SONIC_WRITE(SONIC_MPT, 0xffff);
  338. return &lp->stats;
  339. }
  340. /*
  341.  * Set or clear the multicast filter for this adaptor.
  342.  */
  343. static void sonic_multicast_list(struct net_device *dev)
  344. {
  345. struct sonic_local *lp = (struct sonic_local *) dev->priv;
  346. unsigned int base_addr = dev->base_addr;
  347. unsigned int rcr;
  348. struct dev_mc_list *dmi = dev->mc_list;
  349. unsigned char *addr;
  350. int i;
  351. rcr = SONIC_READ(SONIC_RCR) & ~(SONIC_RCR_PRO | SONIC_RCR_AMC);
  352. rcr |= SONIC_RCR_BRD; /* accept broadcast packets */
  353. if (dev->flags & IFF_PROMISC) { /* set promiscuous mode */
  354. rcr |= SONIC_RCR_PRO;
  355. } else {
  356. if ((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 15)) {
  357. rcr |= SONIC_RCR_AMC;
  358. } else {
  359. if (sonic_debug > 2)
  360. printk
  361.     ("sonic_multicast_list: mc_count %dn",
  362.      dev->mc_count);
  363. lp->cda.cam_enable = 1; /* always enable our own address */
  364. for (i = 1; i <= dev->mc_count; i++) {
  365. addr = dmi->dmi_addr;
  366. dmi = dmi->next;
  367. lp->cda.cam_desc[i].cam_cap0 =
  368.     addr[1] << 8 | addr[0];
  369. lp->cda.cam_desc[i].cam_cap1 =
  370.     addr[3] << 8 | addr[2];
  371. lp->cda.cam_desc[i].cam_cap2 =
  372.     addr[5] << 8 | addr[4];
  373. lp->cda.cam_enable |= (1 << i);
  374. }
  375. SONIC_WRITE(SONIC_CDC, 16);
  376. /* issue Load CAM command */
  377. SONIC_WRITE(SONIC_CDP, lp->cda_laddr & 0xffff);
  378. SONIC_WRITE(SONIC_CMD, SONIC_CR_LCAM);
  379. }
  380. }
  381. if (sonic_debug > 2)
  382. printk("sonic_multicast_list: setting RCR=%xn", rcr);
  383. SONIC_WRITE(SONIC_RCR, rcr);
  384. }
  385. /*
  386.  * Initialize the SONIC ethernet controller.
  387.  */
  388. static int sonic_init(struct net_device *dev)
  389. {
  390. unsigned int base_addr = dev->base_addr;
  391. unsigned int cmd;
  392. struct sonic_local *lp = (struct sonic_local *) dev->priv;
  393. unsigned int rra_start;
  394. unsigned int rra_end;
  395. int i;
  396. /*
  397.  * put the Sonic into software-reset mode and
  398.  * disable all interrupts
  399.  */
  400. SONIC_WRITE(SONIC_ISR, 0x7fff);
  401. SONIC_WRITE(SONIC_IMR, 0);
  402. SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
  403. /*
  404.  * clear software reset flag, disable receiver, clear and
  405.  * enable interrupts, then completely initialize the SONIC
  406.  */
  407. SONIC_WRITE(SONIC_CMD, 0);
  408. SONIC_WRITE(SONIC_CMD, SONIC_CR_RXDIS);
  409. /*
  410.  * initialize the receive resource area
  411.  */
  412. if (sonic_debug > 2)
  413. printk("sonic_init: initialize receive resource arean");
  414. rra_start = lp->rra_laddr & 0xffff;
  415. rra_end =
  416.     (rra_start + (SONIC_NUM_RRS * sizeof(sonic_rr_t))) & 0xffff;
  417. for (i = 0; i < SONIC_NUM_RRS; i++) {
  418. lp->rra[i].rx_bufadr_l =
  419.     (lp->rba_laddr + i * SONIC_RBSIZE) & 0xffff;
  420. lp->rra[i].rx_bufadr_h =
  421.     (lp->rba_laddr + i * SONIC_RBSIZE) >> 16;
  422. lp->rra[i].rx_bufsize_l = SONIC_RBSIZE >> 1;
  423. lp->rra[i].rx_bufsize_h = 0;
  424. }
  425. /* initialize all RRA registers */
  426. SONIC_WRITE(SONIC_RSA, rra_start);
  427. SONIC_WRITE(SONIC_REA, rra_end);
  428. SONIC_WRITE(SONIC_RRP, rra_start);
  429. SONIC_WRITE(SONIC_RWP, rra_end);
  430. SONIC_WRITE(SONIC_URRA, lp->rra_laddr >> 16);
  431. SONIC_WRITE(SONIC_EOBC, (SONIC_RBSIZE - 2) >> 1);
  432. lp->cur_rra =
  433.     lp->rra_laddr + (SONIC_NUM_RRS - 1) * sizeof(sonic_rr_t);
  434. /* load the resource pointers */
  435. if (sonic_debug > 3)
  436. printk("sonic_init: issueing RRRA commandn");
  437. SONIC_WRITE(SONIC_CMD, SONIC_CR_RRRA);
  438. i = 0;
  439. while (i++ < 100) {
  440. if (SONIC_READ(SONIC_CMD) & SONIC_CR_RRRA)
  441. break;
  442. }
  443. if (sonic_debug > 2)
  444. printk("sonic_init: status=%xn", SONIC_READ(SONIC_CMD));
  445. /*
  446.  * Initialize the receive descriptors so that they
  447.  * become a circular linked list, ie. let the last
  448.  * descriptor point to the first again.
  449.  */
  450. if (sonic_debug > 2)
  451. printk("sonic_init: initialize receive descriptorsn");
  452. for (i = 0; i < SONIC_NUM_RDS; i++) {
  453. lp->rda[i].rx_status = 0;
  454. lp->rda[i].rx_pktlen = 0;
  455. lp->rda[i].rx_pktptr_l = 0;
  456. lp->rda[i].rx_pktptr_h = 0;
  457. lp->rda[i].rx_seqno = 0;
  458. lp->rda[i].in_use = 1;
  459. lp->rda[i].link =
  460.     lp->rda_laddr + (i + 1) * sizeof(sonic_rd_t);
  461. }
  462. /* fix last descriptor */
  463. lp->rda[SONIC_NUM_RDS - 1].link = lp->rda_laddr;
  464. lp->cur_rx = 0;
  465. SONIC_WRITE(SONIC_URDA, lp->rda_laddr >> 16);
  466. SONIC_WRITE(SONIC_CRDA, lp->rda_laddr & 0xffff);
  467. /* 
  468.  * initialize transmit descriptors
  469.  */
  470. if (sonic_debug > 2)
  471. printk("sonic_init: initialize transmit descriptorsn");
  472. for (i = 0; i < SONIC_NUM_TDS; i++) {
  473. lp->tda[i].tx_status = 0;
  474. lp->tda[i].tx_config = 0;
  475. lp->tda[i].tx_pktsize = 0;
  476. lp->tda[i].tx_frag_count = 0;
  477. lp->tda[i].link =
  478.     (lp->tda_laddr +
  479.      (i + 1) * sizeof(sonic_td_t)) | SONIC_END_OF_LINKS;
  480. }
  481. lp->tda[SONIC_NUM_TDS - 1].link =
  482.     (lp->tda_laddr & 0xffff) | SONIC_END_OF_LINKS;
  483. SONIC_WRITE(SONIC_UTDA, lp->tda_laddr >> 16);
  484. SONIC_WRITE(SONIC_CTDA, lp->tda_laddr & 0xffff);
  485. lp->cur_tx = lp->dirty_tx = 0;
  486. /*
  487.  * put our own address to CAM desc[0]
  488.  */
  489. lp->cda.cam_desc[0].cam_cap0 =
  490.     dev->dev_addr[1] << 8 | dev->dev_addr[0];
  491. lp->cda.cam_desc[0].cam_cap1 =
  492.     dev->dev_addr[3] << 8 | dev->dev_addr[2];
  493. lp->cda.cam_desc[0].cam_cap2 =
  494.     dev->dev_addr[5] << 8 | dev->dev_addr[4];
  495. lp->cda.cam_enable = 1;
  496. for (i = 0; i < 16; i++)
  497. lp->cda.cam_desc[i].cam_entry_pointer = i;
  498. /*
  499.  * initialize CAM registers
  500.  */
  501. SONIC_WRITE(SONIC_CDP, lp->cda_laddr & 0xffff);
  502. SONIC_WRITE(SONIC_CDC, 16);
  503. /*
  504.  * load the CAM
  505.  */
  506. SONIC_WRITE(SONIC_CMD, SONIC_CR_LCAM);
  507. i = 0;
  508. while (i++ < 100) {
  509. if (SONIC_READ(SONIC_ISR) & SONIC_INT_LCD)
  510. break;
  511. }
  512. if (sonic_debug > 2) {
  513. printk("sonic_init: CMD=%x, ISR=%xn",
  514.        SONIC_READ(SONIC_CMD), SONIC_READ(SONIC_ISR));
  515. }
  516. /*
  517.  * enable receiver, disable loopback
  518.  * and enable all interrupts
  519.  */
  520. SONIC_WRITE(SONIC_CMD, SONIC_CR_RXEN | SONIC_CR_STP);
  521. SONIC_WRITE(SONIC_RCR, SONIC_RCR_DEFAULT);
  522. SONIC_WRITE(SONIC_TCR, SONIC_TCR_DEFAULT);
  523. SONIC_WRITE(SONIC_ISR, 0x7fff);
  524. SONIC_WRITE(SONIC_IMR, SONIC_IMR_DEFAULT);
  525. cmd = SONIC_READ(SONIC_CMD);
  526. if ((cmd & SONIC_CR_RXEN) == 0 || (cmd & SONIC_CR_STP) == 0)
  527. printk("sonic_init: failed, status=%xn", cmd);
  528. if (sonic_debug > 2)
  529. printk("sonic_init: new status=%xn",
  530.        SONIC_READ(SONIC_CMD));
  531. return 0;
  532. }
  533. MODULE_LICENSE("GPL");