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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* stnic.c : A SH7750 specific part of driver for NS DP83902A ST-NIC.
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Copyright (C) 1999 kaz Kojima
  8.  */
  9. #include <linux/config.h>
  10. #include <linux/module.h>
  11. #include <linux/kernel.h>
  12. #include <linux/sched.h>
  13. #include <linux/errno.h>
  14. #include <linux/ioport.h>
  15. #include <linux/netdevice.h>
  16. #include <linux/etherdevice.h>
  17. #include <linux/init.h>
  18. #include <linux/delay.h>
  19. #include <asm/system.h>
  20. #include <asm/io.h>
  21. #include <asm/hitachi_se.h>
  22. #include <asm/machvec.h>
  23. #ifdef CONFIG_SH_STANDARD_BIOS 
  24. #include <asm/sh_bios.h>
  25. #endif
  26. #include "8390.h"
  27. #define byte unsigned char
  28. #define half unsigned short
  29. #define word unsigned int
  30. #define vbyte volatile unsigned char
  31. #define vhalf volatile unsigned short
  32. #define vword volatile unsigned int
  33. #define STNIC_RUN 0x01 /* 1 == Run, 0 == reset. */
  34. #define START_PG 0 /* First page of TX buffer */
  35. #define STOP_PG 128 /* Last page +1 of RX ring */
  36. /* Alias */
  37. #define STNIC_CR E8390_CMD
  38. #define PG0_RSAR0 EN0_RSARLO
  39. #define PG0_RSAR1 EN0_RSARHI
  40. #define PG0_RBCR0 EN0_RCNTLO
  41. #define PG0_RBCR1 EN0_RCNTHI
  42. #define CR_RRD E8390_RREAD
  43. #define CR_RWR E8390_RWRITE
  44. #define CR_PG0 E8390_PAGE0
  45. #define CR_STA E8390_START
  46. #define CR_RDMA E8390_NODMA
  47. /* FIXME! YOU MUST SET YOUR OWN ETHER ADDRESS.  */
  48. static byte stnic_eadr[6] =
  49. {0x00, 0xc0, 0x6e, 0x00, 0x00, 0x07};
  50. static struct net_device *stnic_dev;
  51. static int stnic_open (struct net_device *dev);
  52. static int stnic_close (struct net_device *dev);
  53. static void stnic_reset (struct net_device *dev);
  54. static void stnic_get_hdr (struct net_device *dev, struct e8390_pkt_hdr *hdr,
  55.    int ring_page);
  56. static void stnic_block_input (struct net_device *dev, int count,
  57.        struct sk_buff *skb , int ring_offset);
  58. static void stnic_block_output (struct net_device *dev, int count,
  59. const unsigned char *buf, int start_page);
  60. static void stnic_init (struct net_device *dev);
  61. /* SH7750 specific read/write io. */
  62. static inline void
  63. STNIC_DELAY (void)
  64. {
  65.   vword trash;
  66.   trash = *(vword *) 0xa0000000;
  67.   trash = *(vword *) 0xa0000000;
  68.   trash = *(vword *) 0xa0000000;
  69. }
  70. static inline byte
  71. STNIC_READ (int reg)
  72. {
  73.   byte val;
  74.   val = (*(vhalf *) (PA_83902 + ((reg) << 1)) >> 8) & 0xff;
  75.   STNIC_DELAY ();
  76.   return val;
  77. }
  78. static inline void
  79. STNIC_WRITE (int reg, byte val)
  80. {
  81.   *(vhalf *) (PA_83902 + ((reg) << 1)) = ((half) (val) << 8);
  82.   STNIC_DELAY ();
  83. }
  84. int __init stnic_probe(void)
  85. {
  86.   struct net_device *dev;
  87.   int i;
  88.   /* If we are not running on a SolutionEngine, give up now */
  89.   if (! MACH_SE)
  90.     return -ENODEV;
  91.   /* New style probing API */
  92.   dev = init_etherdev (NULL, 0);
  93.   if (!dev)
  94.    return -ENOMEM;
  95.   SET_MODULE_OWNER(dev);
  96.   stnic_dev = dev;
  97.   /* Allocate dev->priv and fill in 8390 specific dev fields. */
  98.   if (ethdev_init (dev))
  99.     {
  100.       printk (KERN_EMERG "Unable to get memory for dev->priv.n");
  101.       return -ENOMEM;
  102.     }
  103. #ifdef CONFIG_SH_STANDARD_BIOS 
  104.   sh_bios_get_node_addr (stnic_eadr);
  105. #endif
  106.   for (i = 0; i < ETHER_ADDR_LEN; i++)
  107.     dev->dev_addr[i] = stnic_eadr[i];
  108.   /* Set the base address to point to the NIC, not the "real" base! */
  109.   dev->base_addr = 0x1000;
  110.   dev->irq = IRQ_STNIC;
  111.   dev->open = &stnic_open;
  112.   dev->stop = &stnic_close;
  113.   /* Snarf the interrupt now.  There's no point in waiting since we cannot
  114.      share and the board will usually be enabled. */
  115.   i = request_irq (dev->irq, ei_interrupt, 0, dev->name, dev);
  116.   if (i)  {
  117.       printk (KERN_EMERG " unable to get IRQ %d.n", dev->irq);
  118.       unregister_netdev(dev);
  119.       kfree(dev->priv);
  120.       kfree(dev);
  121.       return i;
  122.     }
  123.   ei_status.name = dev->name;
  124.   ei_status.word16 = 1;
  125. #ifdef __LITTLE_ENDIAN__ 
  126.   ei_status.bigendian = 0;
  127. #else
  128.   ei_status.bigendian = 1;
  129. #endif
  130.   ei_status.tx_start_page = START_PG;
  131.   ei_status.rx_start_page = START_PG + TX_PAGES;
  132.   ei_status.stop_page = STOP_PG;
  133.   ei_status.reset_8390 = &stnic_reset;
  134.   ei_status.get_8390_hdr = &stnic_get_hdr;
  135.   ei_status.block_input = &stnic_block_input;
  136.   ei_status.block_output = &stnic_block_output;
  137.   stnic_init (dev);
  138.   printk (KERN_INFO "NS ST-NIC 83902An");
  139.   return 0;
  140. }
  141. static int
  142. stnic_open (struct net_device *dev)
  143. {
  144. #if 0
  145.   printk (KERN_DEBUG "stnic openn");
  146. #endif
  147.   ei_open (dev);
  148.   return 0;
  149. }
  150. static int
  151. stnic_close (struct net_device *dev)
  152. {
  153.   ei_close (dev);
  154.   return 0;
  155. }
  156. static void
  157. stnic_reset (struct net_device *dev)
  158. {
  159.   *(vhalf *) PA_83902_RST = 0;
  160.   udelay (5);
  161.   if (ei_debug > 1)
  162.     printk (KERN_WARNING "8390 reset done (%ld).n", jiffies);
  163.   *(vhalf *) PA_83902_RST = ~0;
  164.   udelay (5);
  165. }
  166. static void
  167. stnic_get_hdr (struct net_device *dev, struct e8390_pkt_hdr *hdr,
  168.        int ring_page)
  169. {
  170.   half buf[2];
  171.   STNIC_WRITE (PG0_RSAR0, 0);
  172.   STNIC_WRITE (PG0_RSAR1, ring_page);
  173.   STNIC_WRITE (PG0_RBCR0, 4);
  174.   STNIC_WRITE (PG0_RBCR1, 0);
  175.   STNIC_WRITE (STNIC_CR, CR_RRD | CR_PG0 | CR_STA);
  176.   buf[0] = *(vhalf *) PA_83902_IF;
  177.   STNIC_DELAY ();
  178.   buf[1] = *(vhalf *) PA_83902_IF;
  179.   STNIC_DELAY ();
  180.   hdr->next = buf[0] >> 8;
  181.   hdr->status = buf[0] & 0xff;
  182. #ifdef __LITTLE_ENDIAN__
  183.   hdr->count = buf[1];
  184. #else
  185.   hdr->count = ((buf[1] >> 8) & 0xff) | (buf[1] << 8);
  186. #endif
  187.   if (ei_debug > 1)
  188.     printk (KERN_DEBUG "ring %x status %02x next %02x count %04x.n",
  189.     ring_page, hdr->status, hdr->next, hdr->count);
  190.   STNIC_WRITE (STNIC_CR, CR_RDMA | CR_PG0 | CR_STA);
  191. }
  192. /* Block input and output, similar to the Crynwr packet driver. If you are
  193.    porting to a new ethercard look at the packet driver source for hints.
  194.    The HP LAN doesn't use shared memory -- we put the packet
  195.    out through the "remote DMA" dataport. */
  196. static void
  197. stnic_block_input (struct net_device *dev, int length, struct sk_buff *skb,
  198.    int offset)
  199. {
  200.   char *buf = skb->data;
  201.   half val;
  202.   STNIC_WRITE (PG0_RSAR0, offset & 0xff);
  203.   STNIC_WRITE (PG0_RSAR1, offset >> 8);
  204.   STNIC_WRITE (PG0_RBCR0, length & 0xff);
  205.   STNIC_WRITE (PG0_RBCR1, length >> 8);
  206.   STNIC_WRITE (STNIC_CR, CR_RRD | CR_PG0 | CR_STA);
  207.   if (length & 1)
  208.     length++;
  209.   while (length > 0)
  210.     {
  211.       val = *(vhalf *) PA_83902_IF;
  212. #ifdef __LITTLE_ENDIAN__
  213.       *buf++ = val & 0xff;
  214.       *buf++ = val >> 8;
  215. #else
  216.       *buf++ = val >> 8;
  217.       *buf++ = val & 0xff;
  218. #endif
  219.       STNIC_DELAY ();
  220.       length -= sizeof (half);
  221.     }
  222.   STNIC_WRITE (STNIC_CR, CR_RDMA | CR_PG0 | CR_STA);
  223. }
  224. static void
  225. stnic_block_output (struct net_device *dev, int length,
  226.     const unsigned char *buf, int output_page)
  227. {
  228.   STNIC_WRITE (PG0_RBCR0, 1); /* Write non-zero value */
  229.   STNIC_WRITE (STNIC_CR, CR_RRD | CR_PG0 | CR_STA);
  230.   STNIC_DELAY ();
  231.   STNIC_WRITE (PG0_RBCR0, length & 0xff);
  232.   STNIC_WRITE (PG0_RBCR1, length >> 8);
  233.   STNIC_WRITE (PG0_RSAR0, 0);
  234.   STNIC_WRITE (PG0_RSAR1, output_page);
  235.   STNIC_WRITE (STNIC_CR, CR_RWR | CR_PG0 | CR_STA);
  236.   if (length & 1)
  237.     length++;
  238.   while (length > 0)
  239.     {
  240. #ifdef __LITTLE_ENDIAN__
  241.       *(vhalf *) PA_83902_IF = ((half) buf[1] << 8) | buf[0];
  242. #else
  243.       *(vhalf *) PA_83902_IF = ((half) buf[0] << 8) | buf[1];
  244. #endif
  245.       STNIC_DELAY ();
  246.       buf += sizeof (half);
  247.       length -= sizeof (half);
  248.     }
  249.   STNIC_WRITE (STNIC_CR, CR_RDMA | CR_PG0 | CR_STA);
  250. }
  251. /* This function resets the STNIC if something screws up.  */
  252. static void
  253. stnic_init (struct net_device *dev)
  254. {
  255.   stnic_reset (dev);
  256.   NS8390_init (dev, 0);
  257.   return;
  258. }
  259. /* Hardware interrupt handler.  */
  260. extern void ei_interrupt (int irq, void *dev_id, struct pt_regs *regs);
  261. void
  262. do_stnic_intr (int irq, void *dev_id, struct pt_regs *regs)
  263. {
  264.   ei_interrupt (0, stnic_dev, regs);
  265. }
  266. module_init(stnic_probe);
  267. /* No cleanup routine. */
  268. MODULE_LICENSE("GPL");