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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* mvme147.c  : the  Linux/mvme147/lance ethernet driver
  2.  *
  3.  * Copyright (C) 05/1998 Peter Maydell <pmaydell@chiark.greenend.org.uk>
  4.  * Based on the Sun Lance driver and the NetBSD HP Lance driver
  5.  * Uses the generic 7990.c LANCE code.
  6.  */
  7. #include <linux/module.h>
  8. #include <linux/kernel.h>
  9. #include <linux/sched.h>
  10. #include <linux/types.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/ptrace.h>
  13. #include <linux/ioport.h>
  14. #include <linux/slab.h>
  15. #include <linux/string.h>
  16. #include <linux/delay.h>
  17. #include <linux/init.h>
  18. #include <linux/errno.h>
  19. #include <asm/system.h>
  20. #include <asm/io.h>
  21. #include <asm/pgtable.h>
  22. /* Used for the temporal inet entries and routing */
  23. #include <linux/socket.h>
  24. #include <linux/route.h>
  25. #include <linux/dio.h>
  26. #include <linux/netdevice.h>
  27. #include <linux/etherdevice.h>
  28. #include <linux/skbuff.h>
  29. #include <asm/mvme147hw.h>
  30. /* We have 16834 bytes of RAM for the init block and buffers. This places
  31.  * an upper limit on the number of buffers we can use. NetBSD uses 8 Rx
  32.  * buffers and 2 Tx buffers.
  33.  */
  34. #define LANCE_LOG_TX_BUFFERS 1
  35. #define LANCE_LOG_RX_BUFFERS 3
  36. #include "7990.h"                                 /* use generic LANCE code */
  37. /* Our private data structure */
  38. struct m147lance_private {
  39. struct lance_private lance;
  40. void *base;
  41. void *ram;
  42. };
  43. /* function prototypes... This is easy because all the grot is in the
  44.  * generic LANCE support. All we have to support is probing for boards,
  45.  * plus board-specific init, open and close actions.
  46.  * Oh, and we need to tell the generic code how to read and write LANCE registers...
  47.  */
  48. int mvme147lance_probe(struct net_device *dev);
  49. static int m147lance_open(struct net_device *dev);
  50. static int m147lance_close(struct net_device *dev);
  51. static void m147lance_writerap(struct m147lance_private *lp, unsigned short value);
  52. static void m147lance_writerdp(struct m147lance_private *lp, unsigned short value);
  53. static unsigned short m147lance_readrdp(struct m147lance_private *lp);
  54. typedef void (*writerap_t)(void *, unsigned short);
  55. typedef void (*writerdp_t)(void *, unsigned short);
  56. typedef unsigned short (*readrdp_t)(void *);
  57. #ifdef MODULE
  58. static struct m147lance_private *root_m147lance_dev;
  59. #endif
  60. /* Initialise the one and only on-board 7990 */
  61. int __init mvme147lance_probe(struct net_device *dev)
  62. {
  63. static int called;
  64. static const char name[] = "MVME147 LANCE";
  65. struct m147lance_private *lp;
  66. u_long *addr;
  67. u_long address;
  68. if (!MACH_IS_MVME147 || called)
  69. return -ENODEV;
  70. called++;
  71. SET_MODULE_OWNER(dev);
  72. dev->priv = kmalloc(sizeof(struct m147lance_private), GFP_KERNEL);
  73. if (dev->priv == NULL)
  74. return -ENOMEM;
  75. memset(dev->priv, 0, sizeof(struct m147lance_private));
  76. /* Fill the dev fields */
  77. dev->base_addr = (unsigned long)MVME147_LANCE_BASE;
  78. dev->open = &m147lance_open;
  79. dev->stop = &m147lance_close;
  80. dev->hard_start_xmit = &lance_start_xmit;
  81. dev->get_stats = &lance_get_stats;
  82. dev->set_multicast_list = &lance_set_multicast;
  83. dev->tx_timeout = &lance_tx_timeout;
  84. dev->dma = 0;
  85. addr=(u_long *)ETHERNET_ADDRESS;
  86. address = *addr;
  87. dev->dev_addr[0]=0x08;
  88. dev->dev_addr[1]=0x00;
  89. dev->dev_addr[2]=0x3e;
  90. address=address>>8;
  91. dev->dev_addr[5]=address&0xff;
  92. address=address>>8;
  93. dev->dev_addr[4]=address&0xff;
  94. address=address>>8;
  95. dev->dev_addr[3]=address&0xff;
  96. printk("%s: MVME147 at 0x%08lx, irq %d, Hardware Address %02x:%02x:%02x:%02x:%02x:%02xn",
  97. dev->name, dev->base_addr, MVME147_LANCE_IRQ,
  98. dev->dev_addr[0],
  99. dev->dev_addr[1], dev->dev_addr[2],
  100. dev->dev_addr[3], dev->dev_addr[4],
  101. dev->dev_addr[5]);
  102. lp = (struct m147lance_private *)dev->priv;
  103. lp->ram = (void *)__get_dma_pages(GFP_ATOMIC, 3); /* 16K */
  104. if (!lp->ram)
  105. {
  106. printk("%s: No memory for LANCE buffersn", dev->name);
  107. return -ENODEV;
  108. }
  109. lp->lance.name = (char*)name;                   /* discards const, shut up gcc */
  110. lp->lance.ll = (struct lance_regs *)(dev->base_addr);
  111. lp->lance.init_block = (struct lance_init_block *)(lp->ram); /* CPU addr */
  112. lp->lance.lance_init_block = (struct lance_init_block *)(lp->ram);                 /* LANCE addr of same RAM */
  113. lp->lance.busmaster_regval = LE_C3_BSWP;        /* we're bigendian */
  114. lp->lance.irq = MVME147_LANCE_IRQ;
  115. lp->lance.writerap = (writerap_t)m147lance_writerap;
  116. lp->lance.writerdp = (writerdp_t)m147lance_writerdp;
  117. lp->lance.readrdp = (readrdp_t)m147lance_readrdp;
  118. lp->lance.lance_log_rx_bufs = LANCE_LOG_RX_BUFFERS;
  119. lp->lance.lance_log_tx_bufs = LANCE_LOG_TX_BUFFERS;
  120. lp->lance.rx_ring_mod_mask = RX_RING_MOD_MASK;
  121. lp->lance.tx_ring_mod_mask = TX_RING_MOD_MASK;
  122. ether_setup(dev);
  123. #ifdef MODULE
  124. dev->ifindex = dev_new_index();
  125. lp->next_module = root_m147lance_dev;
  126. root_m147lance_dev = lp;
  127. #endif /* MODULE */
  128. return 0;
  129. }
  130. static void m147lance_writerap(struct m147lance_private *lp, unsigned short value)
  131. {
  132. lp->lance.ll->rap = value;
  133. }
  134. static void m147lance_writerdp(struct m147lance_private *lp, unsigned short value)
  135. {
  136. lp->lance.ll->rdp = value;
  137. }
  138. static unsigned short m147lance_readrdp(struct m147lance_private *lp)
  139. {
  140. return lp->lance.ll->rdp;
  141. }
  142. static int m147lance_open(struct net_device *dev)
  143. {
  144. int status;
  145. status = lance_open(dev);                 /* call generic lance open code */
  146. if (status)
  147. return status;
  148. /* enable interrupts at board level. */
  149. m147_pcc->lan_cntrl=0;       /* clear the interrupts (if any) */
  150. m147_pcc->lan_cntrl=0x08 | 0x04;     /* Enable irq 4 */
  151. return 0;
  152. }
  153. static int m147lance_close(struct net_device *dev)
  154. {
  155. /* disable interrupts at boardlevel */
  156. m147_pcc->lan_cntrl=0x0; /* disable interrupts */
  157. lance_close(dev);
  158. return 0;
  159. }
  160. #ifdef MODULE
  161. MODULE_LICENSE("GPL");
  162. int init_module(void)
  163. {
  164. root_lance_dev = NULL;
  165. return mvme147lance_probe(NULL);
  166. }
  167. void cleanup_module(void)
  168. {
  169. /* Walk the chain of devices, unregistering them */
  170. struct m147lance_private *lp;
  171. while (root_m147lance_dev) {
  172. lp = root_m147lance_dev->next_module;
  173. unregister_netdev(root_lance_dev->dev);
  174. free_pages(lp->ram, 3);
  175. kfree(root_lance_dev->dev);
  176. root_lance_dev = lp;
  177. }
  178. }
  179. #endif /* MODULE */