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

嵌入式Linux

开发平台:

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.  * A driver for the onboard Sonic ethernet controller on Mips Jazz
  12.  * systems (Acer Pica-61, Mips Magnum 4000, Olivetti M700 and
  13.  * perhaps others, too)
  14.  */
  15. #include <linux/kernel.h>
  16. #include <linux/sched.h>
  17. #include <linux/types.h>
  18. #include <linux/fcntl.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/ptrace.h>
  21. #include <linux/init.h>
  22. #include <linux/ioport.h>
  23. #include <linux/in.h>
  24. #include <linux/slab.h>
  25. #include <linux/string.h>
  26. #include <linux/delay.h>
  27. #include <asm/bootinfo.h>
  28. #include <asm/system.h>
  29. #include <asm/bitops.h>
  30. #include <asm/pgtable.h>
  31. #include <asm/segment.h>
  32. #include <asm/io.h>
  33. #include <asm/dma.h>
  34. #include <asm/jazz.h>
  35. #include <asm/jazzdma.h>
  36. #include <linux/errno.h>
  37. #include <linux/netdevice.h>
  38. #include <linux/etherdevice.h>
  39. #include <linux/skbuff.h>
  40. #define SREGS_PAD(n)    u16 n;
  41. #include "sonic.h"
  42. /*
  43.  * Macros to access SONIC registers
  44.  */
  45. #define SONIC_READ(reg) (*((volatile unsigned int *)base_addr+reg))
  46. #define SONIC_WRITE(reg,val)
  47. do {
  48. *((volatile unsigned int *)base_addr+reg) = val;
  49. }
  50. /* use 0 for production, 1 for verification, >2 for debug */
  51. #ifdef SONIC_DEBUG
  52. static unsigned int sonic_debug = SONIC_DEBUG;
  53. #else 
  54. static unsigned int sonic_debug = 1;
  55. #endif
  56. /*
  57.  * Base address and interrupt of the SONIC controller on JAZZ boards
  58.  */
  59. static struct {
  60. unsigned int port;
  61. unsigned int irq;
  62. } sonic_portlist[] = { {JAZZ_ETHERNET_BASE, JAZZ_ETHERNET_IRQ}, {0, 0}};
  63. /*
  64.  * We cannot use station (ethernet) address prefixes to detect the
  65.  * sonic controller since these are board manufacturer depended.
  66.  * So we check for known Silicon Revision IDs instead. 
  67.  */
  68. static unsigned short known_revisions[] =
  69. {
  70. 0x04, /* Mips Magnum 4000 */
  71. 0xffff /* end of list */
  72. };
  73. /* Index to functions, as function prototypes. */
  74. extern int sonic_probe(struct net_device *dev);
  75. static int sonic_probe1(struct net_device *dev, unsigned int base_addr,
  76.                         unsigned int irq);
  77. /*
  78.  * Probe for a SONIC ethernet controller on a Mips Jazz board.
  79.  * Actually probing is superfluous but we're paranoid.
  80.  */
  81. int __init sonic_probe(struct net_device *dev)
  82. {
  83. unsigned int base_addr = dev ? dev->base_addr : 0;
  84. int i;
  85. /*
  86.  * Don't probe if we're not running on a Jazz board.
  87.  */
  88. if (mips_machgroup != MACH_GROUP_JAZZ)
  89. return -ENODEV;
  90. if (base_addr >= KSEG0) /* Check a single specified location. */
  91. return sonic_probe1(dev, base_addr, dev->irq);
  92. else if (base_addr != 0) /* Don't probe at all. */
  93. return -ENXIO;
  94. for (i = 0; sonic_portlist[i].port; i++) {
  95. int base_addr = sonic_portlist[i].port;
  96. if (check_region(base_addr, 0x100))
  97. continue;
  98. if (sonic_probe1(dev, base_addr, sonic_portlist[i].irq) == 0)
  99. return 0;
  100. }
  101. return -ENODEV;
  102. }
  103. static int __init sonic_probe1(struct net_device *dev, unsigned int base_addr,
  104.                                unsigned int irq)
  105. {
  106. static unsigned version_printed;
  107. unsigned int silicon_revision;
  108. unsigned int val;
  109. struct sonic_local *lp;
  110. int i;
  111. /*
  112.  * get the Silicon Revision ID. If this is one of the known
  113.  * one assume that we found a SONIC ethernet controller at
  114.  * the expected location.
  115.  */
  116. silicon_revision = SONIC_READ(SONIC_SR);
  117. if (sonic_debug > 1)
  118. printk("SONIC Silicon Revision = 0x%04xn",silicon_revision);
  119. i = 0;
  120. while (known_revisions[i] != 0xffff
  121.        && known_revisions[i] != silicon_revision)
  122. i++;
  123. if (known_revisions[i] == 0xffff) {
  124. printk("SONIC ethernet controller not found (0x%4x)n",
  125.        silicon_revision);
  126. return -ENODEV;
  127. }
  128.     
  129. if (!request_region(base_addr, 0x100, dev->name))
  130. return -EBUSY;
  131. if (sonic_debug  &&  version_printed++ == 0)
  132. printk(version);
  133. printk("%s: Sonic ethernet found at 0x%08lx, ", dev->name, base_addr);
  134. /* Fill in the 'dev' fields. */
  135. dev->base_addr = base_addr;
  136. dev->irq = irq;
  137. /*
  138.  * Put the sonic into software reset, then
  139.  * retrieve and print the ethernet address.
  140.  */
  141. SONIC_WRITE(SONIC_CMD,SONIC_CR_RST);
  142. SONIC_WRITE(SONIC_CEP,0);
  143. for (i=0; i<3; i++) {
  144. val = SONIC_READ(SONIC_CAP0-i);
  145. dev->dev_addr[i*2] = val;
  146. dev->dev_addr[i*2+1] = val >> 8;
  147. }
  148. printk("HW Address ");
  149. for (i = 0; i < 6; i++) {
  150. printk("%2.2x", dev->dev_addr[i]);
  151. if (i<5)
  152. printk(":");
  153. }
  154. printk(" IRQ %dn", irq);
  155.     
  156. /* Initialize the device structure. */
  157. if (dev->priv == NULL) {
  158. /*
  159.  * the memory be located in the same 64kb segment
  160.  */
  161. lp = NULL;
  162. i = 0;
  163. do {
  164. lp = kmalloc(sizeof(*lp), GFP_KERNEL);
  165. if ((unsigned long) lp >> 16
  166.     != ((unsigned long)lp + sizeof(*lp) ) >> 16) {
  167. /* FIXME, free the memory later */
  168. kfree(lp);
  169. lp = NULL;
  170. }
  171. } while (lp == NULL && i++ < 20);
  172. if (lp == NULL) {
  173. printk("%s: couldn't allocate memory for descriptorsn",
  174.        dev->name);
  175. return -ENOMEM;
  176. }
  177. memset(lp, 0, sizeof(struct sonic_local));
  178. /* get the virtual dma address */
  179. lp->cda_laddr = vdma_alloc(PHYSADDR(lp),sizeof(*lp));
  180. if (lp->cda_laddr == ~0UL) {
  181. printk("%s: couldn't get DMA page entry for "
  182.        "descriptorsn", dev->name);
  183. return -ENOMEM;
  184. }
  185. lp->tda_laddr = lp->cda_laddr + sizeof (lp->cda);
  186. lp->rra_laddr = lp->tda_laddr + sizeof (lp->tda);
  187. lp->rda_laddr = lp->rra_laddr + sizeof (lp->rra);
  188. /* allocate receive buffer area */
  189. /* FIXME, maybe we should use skbs */
  190. lp->rba = kmalloc(SONIC_NUM_RRS * SONIC_RBSIZE, GFP_KERNEL);
  191. if (!lp->rba) {
  192. printk("%s: couldn't allocate receive buffersn",
  193.        dev->name);
  194. return -ENOMEM;
  195. }
  196. /* get virtual dma address */
  197. lp->rba_laddr = vdma_alloc(PHYSADDR(lp->rba),
  198.                            SONIC_NUM_RRS * SONIC_RBSIZE);
  199. if (lp->rba_laddr == ~0UL) {
  200. printk("%s: couldn't get DMA page entry for receive "
  201.        "buffersn",dev->name);
  202. return -ENOMEM;
  203. }
  204. /* now convert pointer to KSEG1 pointer */
  205. lp->rba = (char *)KSEG1ADDR(lp->rba);
  206. flush_cache_all();
  207. dev->priv = (struct sonic_local *)KSEG1ADDR(lp);
  208. }
  209. lp = (struct sonic_local *)dev->priv;
  210. dev->open = sonic_open;
  211. dev->stop = sonic_close;
  212. dev->hard_start_xmit = sonic_send_packet;
  213. dev->get_stats = sonic_get_stats;
  214. dev->set_multicast_list = &sonic_multicast_list;
  215. dev->watchdog_timeo = TX_TIMEOUT;
  216. /*
  217.  * clear tally counter
  218.  */
  219. SONIC_WRITE(SONIC_CRCT,0xffff);
  220. SONIC_WRITE(SONIC_FAET,0xffff);
  221. SONIC_WRITE(SONIC_MPT,0xffff);
  222. /* Fill in the fields of the device structure with ethernet values. */
  223. ether_setup(dev);
  224. return 0;
  225. }
  226. /*
  227.  *      SONIC uses a normal IRQ
  228.  */
  229. #define sonic_request_irq       request_irq
  230. #define sonic_free_irq          free_irq
  231. #define sonic_chiptomem(x)      KSEG1ADDR(vdma_log2phys(x))
  232. #include "sonic.c"