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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* New Hydra driver using generic 8390 core */
  2. /* Based on old hydra driver by Topi Kanerva (topi@susanna.oulu.fi) */
  3. /* This file is subject to the terms and conditions of the GNU General      */
  4. /* Public License.  See the file COPYING in the main directory of the       */
  5. /* Linux distribution for more details.                                     */
  6. /* Peter De Schrijver (p2@mind.be) */
  7. /* Oldenburg 2000 */
  8. /* The Amiganet is a Zorro-II board made by Hydra Systems. It contains a    */
  9. /* NS8390 NIC (network interface controller) clone, 16 or 64K on-board RAM  */
  10. /* and 10BASE-2 (thin coax) and AUI connectors.                             */
  11. #include <linux/module.h>
  12. #include <linux/kernel.h>
  13. #include <linux/sched.h>
  14. #include <linux/string.h>
  15. #include <linux/ptrace.h>
  16. #include <linux/errno.h>
  17. #include <linux/ioport.h>
  18. #include <linux/slab.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/netdevice.h>
  21. #include <linux/etherdevice.h>
  22. #include <linux/skbuff.h>
  23. #include <linux/init.h>
  24. #include <asm/bitops.h>
  25. #include <asm/io.h>
  26. #include <asm/irq.h>
  27. #include <asm/amigaints.h>
  28. #include <asm/amigahw.h>
  29. #include <linux/zorro.h>
  30. #include "8390.h"
  31. #define NE_BASE (dev->base_addr)
  32. #define NE_CMD (0x00*2)
  33. #define NE_EN0_ISR      (0x07*2)
  34. #define NE_EN0_DCFG     (0x0e*2)
  35. #define NE_EN0_RSARLO   (0x08*2)
  36. #define NE_EN0_RSARHI   (0x09*2)
  37. #define NE_EN0_RCNTLO   (0x0a*2)
  38. #define NE_EN0_RXCR     (0x0c*2)
  39. #define NE_EN0_TXCR     (0x0d*2)
  40. #define NE_EN0_RCNTHI   (0x0b*2)
  41. #define NE_EN0_IMR      (0x0f*2)
  42. #define NESM_START_PG   0x0    /* First page of TX buffer */
  43. #define NESM_STOP_PG    0x40    /* Last page +1 of RX ring */
  44. #define HYDRA_NIC_BASE 0xffe1
  45. #define HYDRA_ADDRPROM 0xffc0
  46. #define HYDRA_VERSION "v3.0alpha"
  47. #define WORDSWAP(a)     ((((a)>>8)&0xff) | ((a)<<8))
  48. #ifdef MODULE
  49. static struct net_device *root_hydra_dev;
  50. #endif
  51. static int __init hydra_probe(void);
  52. static int hydra_init(unsigned long board);
  53. static int hydra_open(struct net_device *dev);
  54. static int hydra_close(struct net_device *dev);
  55. static void hydra_reset_8390(struct net_device *dev);
  56. static void hydra_get_8390_hdr(struct net_device *dev,
  57.        struct e8390_pkt_hdr *hdr, int ring_page);
  58. static void hydra_block_input(struct net_device *dev, int count,
  59.       struct sk_buff *skb, int ring_offset);
  60. static void hydra_block_output(struct net_device *dev, int count,
  61.        const unsigned char *buf, int start_page);
  62. static void __exit hydra_cleanup(void);
  63. static int __init hydra_probe(void)
  64. {
  65.     struct zorro_dev *z = NULL;
  66.     unsigned long board;
  67.     int err = -ENODEV;
  68.     while ((z = zorro_find_device(ZORRO_PROD_HYDRA_SYSTEMS_AMIGANET, z))) {
  69. board = z->resource.start;
  70. if (!request_mem_region(board, 0x10000, "Hydra"))
  71.     continue;
  72. if ((err = hydra_init(ZTWO_VADDR(board)))) {
  73.     release_mem_region(board, 0x10000);
  74.     return err;
  75. }
  76. err = 0;
  77.     }
  78.     if (err == -ENODEV)
  79. printk("No Hydra ethernet card found.n");
  80.     return err;
  81. }
  82. int __init hydra_init(unsigned long board)
  83. {
  84.     struct net_device *dev;
  85.     unsigned long ioaddr = board+HYDRA_NIC_BASE;
  86.     const char *name = NULL;
  87.     int start_page, stop_page;
  88.     int j;
  89.     static u32 hydra_offsets[16] = {
  90. 0x00, 0x02, 0x04, 0x06, 0x08, 0x0a, 0x0c, 0x0e,
  91. 0x10, 0x12, 0x14, 0x16, 0x18, 0x1a, 0x1c, 0x1e,
  92.     };
  93.     dev = init_etherdev(NULL, 0);
  94.     if (!dev)
  95. return -ENOMEM;
  96.     SET_MODULE_OWNER(dev);
  97.     for(j = 0; j < ETHER_ADDR_LEN; j++)
  98. dev->dev_addr[j] = *((u8 *)(board + HYDRA_ADDRPROM + 2*j));
  99.     /* We must set the 8390 for word mode. */
  100.     z_writeb(0x4b, ioaddr + NE_EN0_DCFG);
  101.     start_page = NESM_START_PG;
  102.     stop_page = NESM_STOP_PG;
  103.     dev->base_addr = ioaddr;
  104.     dev->irq = IRQ_AMIGA_PORTS;
  105.     /* Install the Interrupt handler */
  106.     if (request_irq(IRQ_AMIGA_PORTS, ei_interrupt, SA_SHIRQ, "Hydra Ethernet",
  107.     dev))
  108. return -EAGAIN;
  109.     /* Allocate dev->priv and fill in 8390 specific dev fields. */
  110.     if (ethdev_init(dev)) {
  111. printk("Unable to get memory for dev->priv.n");
  112. return -ENOMEM;
  113.     }
  114.     name = "NE2000";
  115.     printk("%s: hydra at 0x%08lx, address %02x:%02x:%02x:%02x:%02x:%02x (hydra.c " HYDRA_VERSION ")n", dev->name, ZTWO_PADDR(board),
  116. dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2],
  117. dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);
  118.     ei_status.name = name;
  119.     ei_status.tx_start_page = start_page;
  120.     ei_status.stop_page = stop_page;
  121.     ei_status.word16 = 1;
  122.     ei_status.bigendian = 1;
  123.     ei_status.rx_start_page = start_page + TX_PAGES;
  124.     ei_status.reset_8390 = &hydra_reset_8390;
  125.     ei_status.block_input = &hydra_block_input;
  126.     ei_status.block_output = &hydra_block_output;
  127.     ei_status.get_8390_hdr = &hydra_get_8390_hdr;
  128.     ei_status.reg_offset = hydra_offsets;
  129.     dev->open = &hydra_open;
  130.     dev->stop = &hydra_close;
  131. #ifdef MODULE
  132.     ei_status.priv = (unsigned long)root_hydra_dev;
  133.     root_hydra_dev = dev;
  134. #endif
  135.     NS8390_init(dev, 0);
  136.     return 0;
  137. }
  138. static int hydra_open(struct net_device *dev)
  139. {
  140.     ei_open(dev);
  141.     return 0;
  142. }
  143. static int hydra_close(struct net_device *dev)
  144. {
  145.     if (ei_debug > 1)
  146. printk("%s: Shutting down ethercard.n", dev->name);
  147.     ei_close(dev);
  148.     return 0;
  149. }
  150. static void hydra_reset_8390(struct net_device *dev)
  151. {
  152.     printk("Hydra hw reset not theren");
  153. }
  154. static void hydra_get_8390_hdr(struct net_device *dev,
  155.        struct e8390_pkt_hdr *hdr, int ring_page)
  156. {
  157.     int nic_base = dev->base_addr;
  158.     short *ptrs;
  159.     unsigned long hdr_start= (nic_base-HYDRA_NIC_BASE) +
  160.      ((ring_page - NESM_START_PG)<<8);
  161.     ptrs = (short *)hdr;
  162.     *(ptrs++) = z_readw(hdr_start);
  163.     *((short *)hdr) = WORDSWAP(*((short *)hdr));
  164.     hdr_start += 2;
  165.     *(ptrs++) = z_readw(hdr_start);
  166.     *((short *)hdr+1) = WORDSWAP(*((short *)hdr+1));
  167. }
  168. static void hydra_block_input(struct net_device *dev, int count,
  169.       struct sk_buff *skb, int ring_offset)
  170. {
  171.     unsigned long nic_base = dev->base_addr;
  172.     unsigned long mem_base = nic_base - HYDRA_NIC_BASE;
  173.     unsigned long xfer_start = mem_base + ring_offset - (NESM_START_PG<<8);
  174.     if (count&1)
  175. count++;
  176.     if (xfer_start+count >  mem_base + (NESM_STOP_PG<<8)) {
  177. int semi_count = (mem_base + (NESM_STOP_PG<<8)) - xfer_start;
  178. z_memcpy_fromio(skb->data,xfer_start,semi_count);
  179. count -= semi_count;
  180. z_memcpy_fromio(skb->data+semi_count, mem_base, count);
  181.     } else
  182. z_memcpy_fromio(skb->data, xfer_start,count);
  183. }
  184. static void hydra_block_output(struct net_device *dev, int count,
  185.        const unsigned char *buf, int start_page)
  186. {
  187.     unsigned long nic_base = dev->base_addr;
  188.     unsigned long mem_base = nic_base - HYDRA_NIC_BASE;
  189.     if (count&1)
  190. count++;
  191.     z_memcpy_toio(mem_base+((start_page - NESM_START_PG)<<8), buf, count);
  192. }
  193. static void __exit hydra_cleanup(void)
  194. {
  195. #ifdef MODULE
  196.     struct net_device *dev, *next;
  197.     while ((dev = root_hydra_dev)) {
  198. next = (struct net_device *)(ei_status.priv);
  199. unregister_netdev(dev);
  200. free_irq(IRQ_AMIGA_PORTS, dev);
  201. release_mem_region(ZTWO_PADDR(dev->base_addr)-HYDRA_NIC_BASE, 0x10000);
  202. kfree(dev);
  203. root_hydra_dev = next;
  204.     }
  205. #endif
  206. }
  207. module_init(hydra_probe);
  208. module_exit(hydra_cleanup);
  209. MODULE_LICENSE("GPL");