4 * (C) 1996,1998 by Thomas Bogendoerfer (tsbogend@alpha.franken.de)
6 * This driver is based on work from Andreas Busse, but most of
7 * the code is rewritten.
9 * (C) 1995 by Andreas Busse (andy@waldorf-gmbh.de)
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)
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/fcntl.h>
20 #include <linux/interrupt.h>
21 #include <linux/init.h>
22 #include <linux/ioport.h>
24 #include <linux/slab.h>
25 #include <linux/string.h>
26 #include <linux/delay.h>
27 #include <linux/errno.h>
28 #include <linux/netdevice.h>
29 #include <linux/etherdevice.h>
30 #include <linux/skbuff.h>
31 #include <linux/bitops.h>
32 #include <linux/device.h>
34 #include <asm/bootinfo.h>
35 #include <asm/system.h>
36 #include <asm/pgtable.h>
40 #include <asm/jazzdma.h>
42 static char jazz_sonic_string
[] = "jazzsonic";
43 static struct platform_device
*jazz_sonic_device
;
45 #define SONIC_MEM_SIZE 0x100
47 #define SREGS_PAD(n) u16 n;
52 * Macros to access SONIC registers
54 #define SONIC_READ(reg) (*((volatile unsigned int *)base_addr+reg))
56 #define SONIC_WRITE(reg,val) \
58 *((volatile unsigned int *)base_addr+(reg)) = (val); \
62 /* use 0 for production, 1 for verification, >2 for debug */
64 static unsigned int sonic_debug
= SONIC_DEBUG
;
66 static unsigned int sonic_debug
= 1;
70 * Base address and interrupt of the SONIC controller on JAZZ boards
75 } sonic_portlist
[] = { {JAZZ_ETHERNET_BASE
, JAZZ_ETHERNET_IRQ
}, {0, 0}};
78 * We cannot use station (ethernet) address prefixes to detect the
79 * sonic controller since these are board manufacturer depended.
80 * So we check for known Silicon Revision IDs instead.
82 static unsigned short known_revisions
[] =
84 0x04, /* Mips Magnum 4000 */
85 0xffff /* end of list */
88 static int __init
sonic_probe1(struct net_device
*dev
, unsigned long base_addr
,
91 static unsigned version_printed
;
92 unsigned int silicon_revision
;
94 struct sonic_local
*lp
;
98 if (!request_mem_region(base_addr
, SONIC_MEM_SIZE
, jazz_sonic_string
))
101 * get the Silicon Revision ID. If this is one of the known
102 * one assume that we found a SONIC ethernet controller at
103 * the expected location.
105 silicon_revision
= SONIC_READ(SONIC_SR
);
107 printk("SONIC Silicon Revision = 0x%04x\n",silicon_revision
);
110 while (known_revisions
[i
] != 0xffff
111 && known_revisions
[i
] != silicon_revision
)
114 if (known_revisions
[i
] == 0xffff) {
115 printk("SONIC ethernet controller not found (0x%4x)\n",
120 if (sonic_debug
&& version_printed
++ == 0)
123 printk("%s: Sonic ethernet found at 0x%08lx, ", dev
->name
, base_addr
);
125 /* Fill in the 'dev' fields. */
126 dev
->base_addr
= base_addr
;
130 * Put the sonic into software reset, then
131 * retrieve and print the ethernet address.
133 SONIC_WRITE(SONIC_CMD
,SONIC_CR_RST
);
134 SONIC_WRITE(SONIC_CEP
,0);
135 for (i
=0; i
<3; i
++) {
136 val
= SONIC_READ(SONIC_CAP0
-i
);
137 dev
->dev_addr
[i
*2] = val
;
138 dev
->dev_addr
[i
*2+1] = val
>> 8;
141 printk("HW Address ");
142 for (i
= 0; i
< 6; i
++) {
143 printk("%2.2x", dev
->dev_addr
[i
]);
148 printk(" IRQ %d\n", irq
);
152 /* Initialize the device structure. */
153 if (dev
->priv
== NULL
) {
155 * the memory be located in the same 64kb segment
160 lp
= kmalloc(sizeof(*lp
), GFP_KERNEL
);
161 if ((unsigned long) lp
>> 16
162 != ((unsigned long)lp
+ sizeof(*lp
) ) >> 16) {
163 /* FIXME, free the memory later */
167 } while (lp
== NULL
&& i
++ < 20);
170 printk("%s: couldn't allocate memory for descriptors\n",
175 memset(lp
, 0, sizeof(struct sonic_local
));
177 /* get the virtual dma address */
178 lp
->cda_laddr
= vdma_alloc(CPHYSADDR(lp
),sizeof(*lp
));
179 if (lp
->cda_laddr
== ~0UL) {
180 printk("%s: couldn't get DMA page entry for "
181 "descriptors\n", dev
->name
);
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
);
189 /* allocate receive buffer area */
190 /* FIXME, maybe we should use skbs */
191 lp
->rba
= kmalloc(SONIC_NUM_RRS
* SONIC_RBSIZE
, GFP_KERNEL
);
193 printk("%s: couldn't allocate receive buffers\n",
198 /* get virtual dma address */
199 lp
->rba_laddr
= vdma_alloc(CPHYSADDR(lp
->rba
),
200 SONIC_NUM_RRS
* SONIC_RBSIZE
);
201 if (lp
->rba_laddr
== ~0UL) {
202 printk("%s: couldn't get DMA page entry for receive "
203 "buffers\n",dev
->name
);
207 /* now convert pointer to KSEG1 pointer */
208 lp
->rba
= (char *)KSEG1ADDR(lp
->rba
);
210 dev
->priv
= (struct sonic_local
*)KSEG1ADDR(lp
);
213 lp
= (struct sonic_local
*)dev
->priv
;
214 dev
->open
= sonic_open
;
215 dev
->stop
= sonic_close
;
216 dev
->hard_start_xmit
= sonic_send_packet
;
217 dev
->get_stats
= sonic_get_stats
;
218 dev
->set_multicast_list
= &sonic_multicast_list
;
219 dev
->watchdog_timeo
= TX_TIMEOUT
;
222 * clear tally counter
224 SONIC_WRITE(SONIC_CRCT
,0xffff);
225 SONIC_WRITE(SONIC_FAET
,0xffff);
226 SONIC_WRITE(SONIC_MPT
,0xffff);
232 vdma_free(lp
->cda_laddr
);
236 release_region(base_addr
, SONIC_MEM_SIZE
);
241 * Probe for a SONIC ethernet controller on a Mips Jazz board.
242 * Actually probing is superfluous but we're paranoid.
244 static int __init
jazz_sonic_probe(struct device
*device
)
246 struct net_device
*dev
;
247 struct sonic_local
*lp
;
248 unsigned long base_addr
;
253 * Don't probe if we're not running on a Jazz board.
255 if (mips_machgroup
!= MACH_GROUP_JAZZ
)
258 dev
= alloc_etherdev(0);
262 netdev_boot_setup_check(dev
);
263 base_addr
= dev
->base_addr
;
265 if (base_addr
>= KSEG0
) { /* Check a single specified location. */
266 err
= sonic_probe1(dev
, base_addr
, dev
->irq
);
267 } else if (base_addr
!= 0) { /* Don't probe at all. */
270 for (i
= 0; sonic_portlist
[i
].port
; i
++) {
271 int io
= sonic_portlist
[i
].port
;
272 if (sonic_probe1(dev
, io
, sonic_portlist
[i
].irq
) == 0)
275 if (!sonic_portlist
[i
].port
)
280 err
= register_netdev(dev
);
288 vdma_free(lp
->rba_laddr
);
290 vdma_free(lp
->cda_laddr
);
292 release_region(dev
->base_addr
, SONIC_MEM_SIZE
);
300 * SONIC uses a normal IRQ
302 #define sonic_request_irq request_irq
303 #define sonic_free_irq free_irq
305 #define sonic_chiptomem(x) KSEG1ADDR(vdma_log2phys(x))
309 static int __devexit
jazz_sonic_device_remove (struct device
*device
)
311 struct net_device
*dev
= device
->driver_data
;
313 unregister_netdev (dev
);
314 release_region (dev
->base_addr
, SONIC_MEM_SIZE
);
320 static struct device_driver jazz_sonic_driver
= {
321 .name
= jazz_sonic_string
,
322 .bus
= &platform_bus_type
,
323 .probe
= jazz_sonic_probe
,
324 .remove
= __devexit_p(jazz_sonic_device_remove
),
327 static void jazz_sonic_platform_release (struct device
*device
)
329 struct platform_device
*pldev
;
332 pldev
= to_platform_device (device
);
336 static int __init
jazz_sonic_init_module(void)
338 struct platform_device
*pldev
;
340 if (driver_register(&jazz_sonic_driver
)) {
341 printk(KERN_ERR
"Driver registration failed\n");
345 jazz_sonic_device
= NULL
;
347 if (!(pldev
= kmalloc (sizeof (*pldev
), GFP_KERNEL
))) {
351 memset(pldev
, 0, sizeof (*pldev
));
352 pldev
->name
= jazz_sonic_string
;
354 pldev
->dev
.release
= jazz_sonic_platform_release
;
355 jazz_sonic_device
= pldev
;
357 if (platform_device_register (pldev
)) {
359 jazz_sonic_device
= NULL
;
365 platform_device_unregister(pldev
);
370 static void __exit
jazz_sonic_cleanup_module(void)
372 driver_unregister(&jazz_sonic_driver
);
374 if (jazz_sonic_device
) {
375 platform_device_unregister(jazz_sonic_device
);
376 jazz_sonic_device
= NULL
;
380 module_init(jazz_sonic_init_module
);
381 module_exit(jazz_sonic_cleanup_module
);