blob: 8310f1a073d86c68778b2b0e46ce651f96f1bcec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*------------------------------------------------------------------------
2 . smc91x.h - macros for SMSC's 91C9x/91C1xx single-chip Ethernet device.
3 .
4 . Copyright (C) 1996 by Erik Stahlman
5 . Copyright (C) 2001 Standard Microsystems Corporation
6 . Developed by Simple Network Magic Corporation
7 . Copyright (C) 2003 Monta Vista Software, Inc.
8 . Unified SMC91x driver by Nicolas Pitre
9 .
10 . This program is free software; you can redistribute it and/or modify
11 . it under the terms of the GNU General Public License as published by
12 . the Free Software Foundation; either version 2 of the License, or
13 . (at your option) any later version.
14 .
15 . This program is distributed in the hope that it will be useful,
16 . but WITHOUT ANY WARRANTY; without even the implied warranty of
17 . MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 . GNU General Public License for more details.
19 .
20 . You should have received a copy of the GNU General Public License
21 . along with this program; if not, write to the Free Software
22 . Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 .
24 . Information contained in this file was obtained from the LAN91C111
25 . manual from SMC. To get a copy, if you really want one, you can find
26 . information under www.smsc.com.
27 .
28 . Authors
29 . Erik Stahlman <erik@vt.edu>
30 . Daris A Nevil <dnevil@snmc.com>
31 . Nicolas Pitre <nico@cam.org>
32 .
33 ---------------------------------------------------------------------------*/
34#ifndef _SMC91X_H_
35#define _SMC91X_H_
36
Magnus Damm3e947942008-02-22 19:55:15 +090037#include <linux/smc91x.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Define your architecture specific bus configuration parameters here.
41 */
42
43#if defined(CONFIG_ARCH_LUBBOCK)
44
45/* We can only do 16-bit reads and writes in the static memory space. */
46#define SMC_CAN_USE_8BIT 0
47#define SMC_CAN_USE_16BIT 1
48#define SMC_CAN_USE_32BIT 0
49#define SMC_NOWAIT 1
50
51/* The first two address lines aren't connected... */
52#define SMC_IO_SHIFT 2
53
54#define SMC_inw(a, r) readw((a) + (r))
55#define SMC_outw(v, a, r) writew(v, (a) + (r))
56#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
57#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +000058#define SMC_IRQ_FLAGS (-1) /* from resource */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Mike Frysinger95af9fe2007-11-23 17:55:50 +080060#elif defined(CONFIG_BLACKFIN)
Wu, Bryan0851a282007-05-06 14:50:32 -070061
62#define SMC_IRQ_FLAGS IRQF_TRIGGER_HIGH
Jean-Christian de Rivazc5760abd2007-06-11 17:44:14 +080063#define RPC_LSA_DEFAULT RPC_LED_100_10
64#define RPC_LSB_DEFAULT RPC_LED_TX_RX
Wu, Bryan0851a282007-05-06 14:50:32 -070065
66# if defined (CONFIG_BFIN561_EZKIT)
67#define SMC_CAN_USE_8BIT 0
68#define SMC_CAN_USE_16BIT 1
69#define SMC_CAN_USE_32BIT 1
70#define SMC_IO_SHIFT 0
71#define SMC_NOWAIT 1
72#define SMC_USE_BFIN_DMA 0
73
74
75#define SMC_inw(a, r) readw((a) + (r))
76#define SMC_outw(v, a, r) writew(v, (a) + (r))
77#define SMC_inl(a, r) readl((a) + (r))
78#define SMC_outl(v, a, r) writel(v, (a) + (r))
79#define SMC_outsl(a, r, p, l) outsl((unsigned long *)((a) + (r)), p, l)
80#define SMC_insl(a, r, p, l) insl ((unsigned long *)((a) + (r)), p, l)
81# else
82#define SMC_CAN_USE_8BIT 0
83#define SMC_CAN_USE_16BIT 1
84#define SMC_CAN_USE_32BIT 0
85#define SMC_IO_SHIFT 0
86#define SMC_NOWAIT 1
87#define SMC_USE_BFIN_DMA 0
88
89
90#define SMC_inw(a, r) readw((a) + (r))
91#define SMC_outw(v, a, r) writew(v, (a) + (r))
92#define SMC_outsw(a, r, p, l) outsw((unsigned long *)((a) + (r)), p, l)
93#define SMC_insw(a, r, p, l) insw ((unsigned long *)((a) + (r)), p, l)
94# endif
95/* check if the mac in reg is valid */
Bryan Wu7427d8b2008-06-11 12:08:39 +080096#define SMC_GET_MAC_ADDR(lp, addr) \
Wu, Bryan0851a282007-05-06 14:50:32 -070097 do { \
98 unsigned int __v; \
Bryan Wu7427d8b2008-06-11 12:08:39 +080099 __v = SMC_inw(ioaddr, ADDR0_REG(lp)); \
Wu, Bryan0851a282007-05-06 14:50:32 -0700100 addr[0] = __v; addr[1] = __v >> 8; \
Bryan Wu7427d8b2008-06-11 12:08:39 +0800101 __v = SMC_inw(ioaddr, ADDR1_REG(lp)); \
Wu, Bryan0851a282007-05-06 14:50:32 -0700102 addr[2] = __v; addr[3] = __v >> 8; \
Bryan Wu7427d8b2008-06-11 12:08:39 +0800103 __v = SMC_inw(ioaddr, ADDR2_REG(lp)); \
Wu, Bryan0851a282007-05-06 14:50:32 -0700104 addr[4] = __v; addr[5] = __v >> 8; \
105 if (*(u32 *)(&addr[0]) == 0xFFFFFFFF) { \
106 random_ether_addr(addr); \
107 } \
108 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#elif defined(CONFIG_REDWOOD_5) || defined(CONFIG_REDWOOD_6)
110
111/* We can only do 16-bit reads and writes in the static memory space. */
112#define SMC_CAN_USE_8BIT 0
113#define SMC_CAN_USE_16BIT 1
114#define SMC_CAN_USE_32BIT 0
115#define SMC_NOWAIT 1
116
117#define SMC_IO_SHIFT 0
118
119#define SMC_inw(a, r) in_be16((volatile u16 *)((a) + (r)))
120#define SMC_outw(v, a, r) out_be16((volatile u16 *)((a) + (r)), v)
121#define SMC_insw(a, r, p, l) \
122 do { \
123 unsigned long __port = (a) + (r); \
124 u16 *__p = (u16 *)(p); \
125 int __l = (l); \
126 insw(__port, __p, __l); \
127 while (__l > 0) { \
128 *__p = swab16(*__p); \
129 __p++; \
130 __l--; \
131 } \
132 } while (0)
133#define SMC_outsw(a, r, p, l) \
134 do { \
135 unsigned long __port = (a) + (r); \
136 u16 *__p = (u16 *)(p); \
137 int __l = (l); \
138 while (__l > 0) { \
139 /* Believe it or not, the swab isn't needed. */ \
140 outw( /* swab16 */ (*__p++), __port); \
141 __l--; \
142 } \
143 } while (0)
Russell King9ded96f2006-01-08 01:02:07 -0800144#define SMC_IRQ_FLAGS (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146#elif defined(CONFIG_SA1100_PLEB)
147/* We can only do 16-bit reads and writes in the static memory space. */
148#define SMC_CAN_USE_8BIT 1
149#define SMC_CAN_USE_16BIT 1
150#define SMC_CAN_USE_32BIT 0
151#define SMC_IO_SHIFT 0
152#define SMC_NOWAIT 1
153
Russell King1cf99be2005-11-12 21:49:36 +0000154#define SMC_inb(a, r) readb((a) + (r))
155#define SMC_insb(a, r, p, l) readsb((a) + (r), p, (l))
156#define SMC_inw(a, r) readw((a) + (r))
157#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
158#define SMC_outb(v, a, r) writeb(v, (a) + (r))
159#define SMC_outsb(a, r, p, l) writesb((a) + (r), p, (l))
160#define SMC_outw(v, a, r) writew(v, (a) + (r))
161#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Russell Kinge7b3dc72008-01-14 22:30:10 +0000163#define SMC_IRQ_FLAGS (-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165#elif defined(CONFIG_SA1100_ASSABET)
166
167#include <asm/arch/neponset.h>
168
169/* We can only do 8-bit reads and writes in the static memory space. */
170#define SMC_CAN_USE_8BIT 1
171#define SMC_CAN_USE_16BIT 0
172#define SMC_CAN_USE_32BIT 0
173#define SMC_NOWAIT 1
174
175/* The first two address lines aren't connected... */
176#define SMC_IO_SHIFT 2
177
178#define SMC_inb(a, r) readb((a) + (r))
179#define SMC_outb(v, a, r) writeb(v, (a) + (r))
180#define SMC_insb(a, r, p, l) readsb((a) + (r), p, (l))
181#define SMC_outsb(a, r, p, l) writesb((a) + (r), p, (l))
Russell Kinge7b3dc72008-01-14 22:30:10 +0000182#define SMC_IRQ_FLAGS (-1) /* from resource */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200184#elif defined(CONFIG_MACH_LOGICPD_PXA270)
185
186#define SMC_CAN_USE_8BIT 0
187#define SMC_CAN_USE_16BIT 1
188#define SMC_CAN_USE_32BIT 0
189#define SMC_IO_SHIFT 0
190#define SMC_NOWAIT 1
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200191
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200192#define SMC_inw(a, r) readw((a) + (r))
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200193#define SMC_outw(v, a, r) writew(v, (a) + (r))
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200194#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
195#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#elif defined(CONFIG_ARCH_INNOKOM) || \
198 defined(CONFIG_MACH_MAINSTONE) || \
199 defined(CONFIG_ARCH_PXA_IDP) || \
Robert Schwebel4f15a982008-01-08 08:50:02 +0100200 defined(CONFIG_ARCH_RAMSES) || \
201 defined(CONFIG_ARCH_PCM027)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203#define SMC_CAN_USE_8BIT 1
204#define SMC_CAN_USE_16BIT 1
205#define SMC_CAN_USE_32BIT 1
206#define SMC_IO_SHIFT 0
207#define SMC_NOWAIT 1
208#define SMC_USE_PXA_DMA 1
209
210#define SMC_inb(a, r) readb((a) + (r))
211#define SMC_inw(a, r) readw((a) + (r))
212#define SMC_inl(a, r) readl((a) + (r))
213#define SMC_outb(v, a, r) writeb(v, (a) + (r))
214#define SMC_outl(v, a, r) writel(v, (a) + (r))
215#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
216#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +0000217#define SMC_IRQ_FLAGS (-1) /* from resource */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219/* We actually can't write halfwords properly if not word aligned */
220static inline void
Nicolas Pitreeb1d6982005-05-12 20:19:09 -0400221SMC_outw(u16 val, void __iomem *ioaddr, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 if (reg & 2) {
224 unsigned int v = val << 16;
225 v |= readl(ioaddr + (reg & ~2)) & 0xffff;
226 writel(v, ioaddr + (reg & ~2));
227 } else {
228 writew(val, ioaddr + reg);
229 }
230}
231
eric miao7c826a02007-10-30 09:48:41 +0800232#elif defined(CONFIG_MACH_ZYLONITE)
233
234#define SMC_CAN_USE_8BIT 1
235#define SMC_CAN_USE_16BIT 1
236#define SMC_CAN_USE_32BIT 0
237#define SMC_IO_SHIFT 0
238#define SMC_NOWAIT 1
239#define SMC_USE_PXA_DMA 1
240#define SMC_inb(a, r) readb((a) + (r))
241#define SMC_inw(a, r) readw((a) + (r))
242#define SMC_insw(a, r, p, l) insw((a) + (r), p, l)
243#define SMC_outsw(a, r, p, l) outsw((a) + (r), p, l)
244#define SMC_outb(v, a, r) writeb(v, (a) + (r))
245#define SMC_outw(v, a, r) writew(v, (a) + (r))
Russell Kinge7b3dc72008-01-14 22:30:10 +0000246#define SMC_IRQ_FLAGS (-1) /* from resource */
eric miao7c826a02007-10-30 09:48:41 +0800247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248#elif defined(CONFIG_ARCH_OMAP)
249
250/* We can only do 16-bit reads and writes in the static memory space. */
251#define SMC_CAN_USE_8BIT 0
252#define SMC_CAN_USE_16BIT 1
253#define SMC_CAN_USE_32BIT 0
254#define SMC_IO_SHIFT 0
255#define SMC_NOWAIT 1
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257#define SMC_inw(a, r) readw((a) + (r))
258#define SMC_outw(v, a, r) writew(v, (a) + (r))
259#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
260#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +0000261#define SMC_IRQ_FLAGS (-1) /* from resource */
David Brownell5f13e7e2005-05-16 08:53:52 -0700262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263#elif defined(CONFIG_SH_SH4202_MICRODEV)
264
265#define SMC_CAN_USE_8BIT 0
266#define SMC_CAN_USE_16BIT 1
267#define SMC_CAN_USE_32BIT 0
268
269#define SMC_inb(a, r) inb((a) + (r) - 0xa0000000)
270#define SMC_inw(a, r) inw((a) + (r) - 0xa0000000)
271#define SMC_inl(a, r) inl((a) + (r) - 0xa0000000)
272#define SMC_outb(v, a, r) outb(v, (a) + (r) - 0xa0000000)
273#define SMC_outw(v, a, r) outw(v, (a) + (r) - 0xa0000000)
274#define SMC_outl(v, a, r) outl(v, (a) + (r) - 0xa0000000)
275#define SMC_insl(a, r, p, l) insl((a) + (r) - 0xa0000000, p, l)
276#define SMC_outsl(a, r, p, l) outsl((a) + (r) - 0xa0000000, p, l)
277#define SMC_insw(a, r, p, l) insw((a) + (r) - 0xa0000000, p, l)
278#define SMC_outsw(a, r, p, l) outsw((a) + (r) - 0xa0000000, p, l)
279
Russell King9ded96f2006-01-08 01:02:07 -0800280#define SMC_IRQ_FLAGS (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282#elif defined(CONFIG_ISA)
283
284#define SMC_CAN_USE_8BIT 1
285#define SMC_CAN_USE_16BIT 1
286#define SMC_CAN_USE_32BIT 0
287
288#define SMC_inb(a, r) inb((a) + (r))
289#define SMC_inw(a, r) inw((a) + (r))
290#define SMC_outb(v, a, r) outb(v, (a) + (r))
291#define SMC_outw(v, a, r) outw(v, (a) + (r))
292#define SMC_insw(a, r, p, l) insw((a) + (r), p, l)
293#define SMC_outsw(a, r, p, l) outsw((a) + (r), p, l)
294
295#elif defined(CONFIG_M32R)
296
297#define SMC_CAN_USE_8BIT 0
298#define SMC_CAN_USE_16BIT 1
299#define SMC_CAN_USE_32BIT 0
300
Mariusz Kozlowski59dc76a2006-12-04 15:04:56 -0800301#define SMC_inb(a, r) inb(((u32)a) + (r))
Hirokazu Takataf3ac9fb2005-10-30 15:00:06 -0800302#define SMC_inw(a, r) inw(((u32)a) + (r))
303#define SMC_outb(v, a, r) outb(v, ((u32)a) + (r))
304#define SMC_outw(v, a, r) outw(v, ((u32)a) + (r))
305#define SMC_insw(a, r, p, l) insw(((u32)a) + (r), p, l)
306#define SMC_outsw(a, r, p, l) outsw(((u32)a) + (r), p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Russell King9ded96f2006-01-08 01:02:07 -0800308#define SMC_IRQ_FLAGS (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310#define RPC_LSA_DEFAULT RPC_LED_TX_RX
311#define RPC_LSB_DEFAULT RPC_LED_100_10
312
Marc Singerd4adcff2006-05-16 11:41:40 +0100313#elif defined(CONFIG_MACH_LPD79520) \
314 || defined(CONFIG_MACH_LPD7A400) \
315 || defined(CONFIG_MACH_LPD7A404)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Marc Singerd4adcff2006-05-16 11:41:40 +0100317/* The LPD7X_IOBARRIER is necessary to overcome a mismatch between the
318 * way that the CPU handles chip selects and the way that the SMC chip
319 * expects the chip select to operate. Refer to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * Documentation/arm/Sharp-LH/IOBarrier for details. The read from
Marc Singerd4adcff2006-05-16 11:41:40 +0100321 * IOBARRIER is a byte, in order that we read the least-common
322 * denominator. It would be wasteful to read 32 bits from an 8-bit
323 * accessible region.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 *
325 * There is no explicit protection against interrupts intervening
326 * between the writew and the IOBARRIER. In SMC ISR there is a
327 * preamble that performs an IOBARRIER in the extremely unlikely event
328 * that the driver interrupts itself between a writew to the chip an
329 * the IOBARRIER that follows *and* the cache is large enough that the
330 * first off-chip access while handing the interrupt is to the SMC
331 * chip. Other devices in the same address space as the SMC chip must
332 * be aware of the potential for trouble and perform a similar
333 * IOBARRIER on entry to their ISR.
334 */
335
336#include <asm/arch/constants.h> /* IOBARRIER_VIRT */
337
338#define SMC_CAN_USE_8BIT 0
339#define SMC_CAN_USE_16BIT 1
340#define SMC_CAN_USE_32BIT 0
341#define SMC_NOWAIT 0
Marc Singerd4adcff2006-05-16 11:41:40 +0100342#define LPD7X_IOBARRIER readb (IOBARRIER_VIRT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Marc Singerd4adcff2006-05-16 11:41:40 +0100344#define SMC_inw(a,r)\
345 ({ unsigned short v = readw ((void*) ((a) + (r))); LPD7X_IOBARRIER; v; })
346#define SMC_outw(v,a,r) ({ writew ((v), (a) + (r)); LPD7X_IOBARRIER; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Marc Singerd4adcff2006-05-16 11:41:40 +0100348#define SMC_insw LPD7_SMC_insw
349static inline void LPD7_SMC_insw (unsigned char* a, int r,
350 unsigned char* p, int l)
351{
352 unsigned short* ps = (unsigned short*) p;
353 while (l-- > 0) {
354 *ps++ = readw (a + r);
355 LPD7X_IOBARRIER;
356 }
357}
Nicolas Pitre09779c62006-03-20 11:54:27 -0500358
Marc Singerd4adcff2006-05-16 11:41:40 +0100359#define SMC_outsw LPD7_SMC_outsw
360static inline void LPD7_SMC_outsw (unsigned char* a, int r,
361 unsigned char* p, int l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 unsigned short* ps = (unsigned short*) p;
364 while (l-- > 0) {
365 writew (*ps++, a + r);
Marc Singerd4adcff2006-05-16 11:41:40 +0100366 LPD7X_IOBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368}
369
Marc Singerd4adcff2006-05-16 11:41:40 +0100370#define SMC_INTERRUPT_PREAMBLE LPD7X_IOBARRIER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372#define RPC_LSA_DEFAULT RPC_LED_TX_RX
373#define RPC_LSB_DEFAULT RPC_LED_100_10
374
Pete Popov55793452005-11-09 22:46:05 -0500375#elif defined(CONFIG_SOC_AU1X00)
376
377#include <au1xxx.h>
378
379/* We can only do 16-bit reads and writes in the static memory space. */
380#define SMC_CAN_USE_8BIT 0
381#define SMC_CAN_USE_16BIT 1
382#define SMC_CAN_USE_32BIT 0
383#define SMC_IO_SHIFT 0
384#define SMC_NOWAIT 1
385
386#define SMC_inw(a, r) au_readw((unsigned long)((a) + (r)))
387#define SMC_insw(a, r, p, l) \
388 do { \
389 unsigned long _a = (unsigned long)((a) + (r)); \
390 int _l = (l); \
391 u16 *_p = (u16 *)(p); \
392 while (_l-- > 0) \
393 *_p++ = au_readw(_a); \
394 } while(0)
395#define SMC_outw(v, a, r) au_writew(v, (unsigned long)((a) + (r)))
396#define SMC_outsw(a, r, p, l) \
397 do { \
398 unsigned long _a = (unsigned long)((a) + (r)); \
399 int _l = (l); \
400 const u16 *_p = (const u16 *)(p); \
401 while (_l-- > 0) \
402 au_writew(*_p++ , _a); \
403 } while(0)
404
Russell King9ded96f2006-01-08 01:02:07 -0800405#define SMC_IRQ_FLAGS (0)
Pete Popov55793452005-11-09 22:46:05 -0500406
Deepak Saxena8431adf2006-07-11 23:02:48 -0700407#elif defined(CONFIG_ARCH_VERSATILE)
408
409#define SMC_CAN_USE_8BIT 1
410#define SMC_CAN_USE_16BIT 1
411#define SMC_CAN_USE_32BIT 1
412#define SMC_NOWAIT 1
413
414#define SMC_inb(a, r) readb((a) + (r))
415#define SMC_inw(a, r) readw((a) + (r))
416#define SMC_inl(a, r) readl((a) + (r))
417#define SMC_outb(v, a, r) writeb(v, (a) + (r))
418#define SMC_outw(v, a, r) writew(v, (a) + (r))
419#define SMC_outl(v, a, r) writel(v, (a) + (r))
420#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
421#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +0000422#define SMC_IRQ_FLAGS (-1) /* from resource */
Deepak Saxena8431adf2006-07-11 23:02:48 -0700423
David Howellsb920de12008-02-08 04:19:31 -0800424#elif defined(CONFIG_MN10300)
425
426/*
427 * MN10300/AM33 configuration
428 */
429
430#include <asm/unit/smc91111.h>
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432#else
433
David Howellsb920de12008-02-08 04:19:31 -0800434/*
435 * Default configuration
436 */
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438#define SMC_CAN_USE_8BIT 1
439#define SMC_CAN_USE_16BIT 1
440#define SMC_CAN_USE_32BIT 1
441#define SMC_NOWAIT 1
442
443#define SMC_inb(a, r) readb((a) + (r))
444#define SMC_inw(a, r) readw((a) + (r))
445#define SMC_inl(a, r) readl((a) + (r))
446#define SMC_outb(v, a, r) writeb(v, (a) + (r))
447#define SMC_outw(v, a, r) writew(v, (a) + (r))
448#define SMC_outl(v, a, r) writel(v, (a) + (r))
Magnus Damm8a214c12008-02-22 19:55:24 +0900449#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
450#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
452#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
453
454#define RPC_LSA_DEFAULT RPC_LED_100_10
455#define RPC_LSB_DEFAULT RPC_LED_TX_RX
456
457#endif
458
Russell King073ac8f2007-09-01 21:27:18 +0100459
460/* store this information for the driver.. */
461struct smc_local {
462 /*
463 * If I have to wait until memory is available to send a
464 * packet, I will store the skbuff here, until I get the
465 * desired memory. Then, I'll send it out and free it.
466 */
467 struct sk_buff *pending_tx_skb;
468 struct tasklet_struct tx_task;
469
470 /* version/revision of the SMC91x chip */
471 int version;
472
473 /* Contains the current active transmission mode */
474 int tcr_cur_mode;
475
476 /* Contains the current active receive mode */
477 int rcr_cur_mode;
478
479 /* Contains the current active receive/phy mode */
480 int rpc_cur_mode;
481 int ctl_rfduplx;
482 int ctl_rspeed;
483
484 u32 msg_enable;
485 u32 phy_type;
486 struct mii_if_info mii;
487
488 /* work queue */
489 struct work_struct phy_configure;
490 struct net_device *dev;
491 int work_pending;
492
493 spinlock_t lock;
494
495#ifdef SMC_USE_PXA_DMA
496 /* DMA needs the physical address of the chip */
497 u_long physaddr;
498 struct device *device;
499#endif
500 void __iomem *base;
501 void __iomem *datacs;
Magnus Damm3e947942008-02-22 19:55:15 +0900502
503 struct smc91x_platdata cfg;
Russell King073ac8f2007-09-01 21:27:18 +0100504};
505
Eric Miaofa6d3be2008-06-19 17:19:57 +0800506#define SMC_8BIT(p) ((p)->cfg.flags & SMC91X_USE_8BIT)
507#define SMC_16BIT(p) ((p)->cfg.flags & SMC91X_USE_16BIT)
508#define SMC_32BIT(p) ((p)->cfg.flags & SMC91X_USE_32BIT)
Russell King073ac8f2007-09-01 21:27:18 +0100509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510#ifdef SMC_USE_PXA_DMA
511/*
512 * Let's use the DMA engine on the XScale PXA2xx for RX packets. This is
513 * always happening in irq context so no need to worry about races. TX is
514 * different and probably not worth it for that reason, and not as critical
515 * as RX which can overrun memory and lose packets.
516 */
517#include <linux/dma-mapping.h>
518#include <asm/dma.h>
519#include <asm/arch/pxa-regs.h>
520
521#ifdef SMC_insl
522#undef SMC_insl
523#define SMC_insl(a, r, p, l) \
Russell King073ac8f2007-09-01 21:27:18 +0100524 smc_pxa_dma_insl(a, lp, r, dev->dma, p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525static inline void
Russell King073ac8f2007-09-01 21:27:18 +0100526smc_pxa_dma_insl(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 u_char *buf, int len)
528{
Russell King073ac8f2007-09-01 21:27:18 +0100529 u_long physaddr = lp->physaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 dma_addr_t dmabuf;
531
532 /* fallback if no DMA available */
533 if (dma == (unsigned char)-1) {
534 readsl(ioaddr + reg, buf, len);
535 return;
536 }
537
538 /* 64 bit alignment is required for memory to memory DMA */
539 if ((long)buf & 4) {
540 *((u32 *)buf) = SMC_inl(ioaddr, reg);
541 buf += 4;
542 len--;
543 }
544
545 len *= 4;
Russell King073ac8f2007-09-01 21:27:18 +0100546 dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 DCSR(dma) = DCSR_NODESC;
548 DTADR(dma) = dmabuf;
549 DSADR(dma) = physaddr + reg;
550 DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
551 DCMD_WIDTH4 | (DCMD_LENGTH & len));
552 DCSR(dma) = DCSR_NODESC | DCSR_RUN;
553 while (!(DCSR(dma) & DCSR_STOPSTATE))
554 cpu_relax();
555 DCSR(dma) = 0;
Russell King073ac8f2007-09-01 21:27:18 +0100556 dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558#endif
559
560#ifdef SMC_insw
561#undef SMC_insw
562#define SMC_insw(a, r, p, l) \
Russell King073ac8f2007-09-01 21:27:18 +0100563 smc_pxa_dma_insw(a, lp, r, dev->dma, p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564static inline void
Russell King073ac8f2007-09-01 21:27:18 +0100565smc_pxa_dma_insw(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 u_char *buf, int len)
567{
Russell King073ac8f2007-09-01 21:27:18 +0100568 u_long physaddr = lp->physaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 dma_addr_t dmabuf;
570
571 /* fallback if no DMA available */
572 if (dma == (unsigned char)-1) {
573 readsw(ioaddr + reg, buf, len);
574 return;
575 }
576
577 /* 64 bit alignment is required for memory to memory DMA */
578 while ((long)buf & 6) {
579 *((u16 *)buf) = SMC_inw(ioaddr, reg);
580 buf += 2;
581 len--;
582 }
583
584 len *= 2;
Russell King073ac8f2007-09-01 21:27:18 +0100585 dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 DCSR(dma) = DCSR_NODESC;
587 DTADR(dma) = dmabuf;
588 DSADR(dma) = physaddr + reg;
589 DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
590 DCMD_WIDTH2 | (DCMD_LENGTH & len));
591 DCSR(dma) = DCSR_NODESC | DCSR_RUN;
592 while (!(DCSR(dma) & DCSR_STOPSTATE))
593 cpu_relax();
594 DCSR(dma) = 0;
Russell King073ac8f2007-09-01 21:27:18 +0100595 dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597#endif
598
599static void
David Howells7d12e782006-10-05 14:55:46 +0100600smc_pxa_dma_irq(int dma, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 DCSR(dma) = 0;
603}
604#endif /* SMC_USE_PXA_DMA */
605
606
Nicolas Pitre09779c62006-03-20 11:54:27 -0500607/*
608 * Everything a particular hardware setup needs should have been defined
609 * at this point. Add stubs for the undefined cases, mainly to avoid
610 * compilation warnings since they'll be optimized away, or to prevent buggy
611 * use of them.
612 */
613
614#if ! SMC_CAN_USE_32BIT
615#define SMC_inl(ioaddr, reg) ({ BUG(); 0; })
616#define SMC_outl(x, ioaddr, reg) BUG()
617#define SMC_insl(a, r, p, l) BUG()
618#define SMC_outsl(a, r, p, l) BUG()
619#endif
620
621#if !defined(SMC_insl) || !defined(SMC_outsl)
622#define SMC_insl(a, r, p, l) BUG()
623#define SMC_outsl(a, r, p, l) BUG()
624#endif
625
626#if ! SMC_CAN_USE_16BIT
627
628/*
629 * Any 16-bit access is performed with two 8-bit accesses if the hardware
630 * can't do it directly. Most registers are 16-bit so those are mandatory.
631 */
632#define SMC_outw(x, ioaddr, reg) \
633 do { \
634 unsigned int __val16 = (x); \
635 SMC_outb( __val16, ioaddr, reg ); \
636 SMC_outb( __val16 >> 8, ioaddr, reg + (1 << SMC_IO_SHIFT));\
637 } while (0)
638#define SMC_inw(ioaddr, reg) \
639 ({ \
640 unsigned int __val16; \
641 __val16 = SMC_inb( ioaddr, reg ); \
642 __val16 |= SMC_inb( ioaddr, reg + (1 << SMC_IO_SHIFT)) << 8; \
643 __val16; \
644 })
645
646#define SMC_insw(a, r, p, l) BUG()
647#define SMC_outsw(a, r, p, l) BUG()
648
649#endif
650
651#if !defined(SMC_insw) || !defined(SMC_outsw)
652#define SMC_insw(a, r, p, l) BUG()
653#define SMC_outsw(a, r, p, l) BUG()
654#endif
655
656#if ! SMC_CAN_USE_8BIT
657#define SMC_inb(ioaddr, reg) ({ BUG(); 0; })
658#define SMC_outb(x, ioaddr, reg) BUG()
659#define SMC_insb(a, r, p, l) BUG()
660#define SMC_outsb(a, r, p, l) BUG()
661#endif
662
663#if !defined(SMC_insb) || !defined(SMC_outsb)
664#define SMC_insb(a, r, p, l) BUG()
665#define SMC_outsb(a, r, p, l) BUG()
666#endif
667
668#ifndef SMC_CAN_USE_DATACS
669#define SMC_CAN_USE_DATACS 0
670#endif
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672#ifndef SMC_IO_SHIFT
673#define SMC_IO_SHIFT 0
674#endif
Nicolas Pitre09779c62006-03-20 11:54:27 -0500675
676#ifndef SMC_IRQ_FLAGS
Thomas Gleixner1fb9df52006-07-01 19:29:39 -0700677#define SMC_IRQ_FLAGS IRQF_TRIGGER_RISING
Nicolas Pitre09779c62006-03-20 11:54:27 -0500678#endif
679
680#ifndef SMC_INTERRUPT_PREAMBLE
681#define SMC_INTERRUPT_PREAMBLE
682#endif
683
684
685/* Because of bank switching, the LAN91x uses only 16 I/O ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686#define SMC_IO_EXTENT (16 << SMC_IO_SHIFT)
687#define SMC_DATA_EXTENT (4)
688
689/*
690 . Bank Select Register:
691 .
692 . yyyy yyyy 0000 00xx
693 . xx = bank number
694 . yyyy yyyy = 0x33, for identification purposes.
695*/
696#define BANK_SELECT (14 << SMC_IO_SHIFT)
697
698
699// Transmit Control Register
700/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900701#define TCR_REG(lp) SMC_REG(lp, 0x0000, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702#define TCR_ENABLE 0x0001 // When 1 we can transmit
703#define TCR_LOOP 0x0002 // Controls output pin LBK
704#define TCR_FORCOL 0x0004 // When 1 will force a collision
705#define TCR_PAD_EN 0x0080 // When 1 will pad tx frames < 64 bytes w/0
706#define TCR_NOCRC 0x0100 // When 1 will not append CRC to tx frames
707#define TCR_MON_CSN 0x0400 // When 1 tx monitors carrier
708#define TCR_FDUPLX 0x0800 // When 1 enables full duplex operation
709#define TCR_STP_SQET 0x1000 // When 1 stops tx if Signal Quality Error
710#define TCR_EPH_LOOP 0x2000 // When 1 enables EPH block loopback
711#define TCR_SWFDUP 0x8000 // When 1 enables Switched Full Duplex mode
712
713#define TCR_CLEAR 0 /* do NOTHING */
714/* the default settings for the TCR register : */
715#define TCR_DEFAULT (TCR_ENABLE | TCR_PAD_EN)
716
717
718// EPH Status Register
719/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900720#define EPH_STATUS_REG(lp) SMC_REG(lp, 0x0002, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721#define ES_TX_SUC 0x0001 // Last TX was successful
722#define ES_SNGL_COL 0x0002 // Single collision detected for last tx
723#define ES_MUL_COL 0x0004 // Multiple collisions detected for last tx
724#define ES_LTX_MULT 0x0008 // Last tx was a multicast
725#define ES_16COL 0x0010 // 16 Collisions Reached
726#define ES_SQET 0x0020 // Signal Quality Error Test
727#define ES_LTXBRD 0x0040 // Last tx was a broadcast
728#define ES_TXDEFR 0x0080 // Transmit Deferred
729#define ES_LATCOL 0x0200 // Late collision detected on last tx
730#define ES_LOSTCARR 0x0400 // Lost Carrier Sense
731#define ES_EXC_DEF 0x0800 // Excessive Deferral
732#define ES_CTR_ROL 0x1000 // Counter Roll Over indication
733#define ES_LINK_OK 0x4000 // Driven by inverted value of nLNK pin
734#define ES_TXUNRN 0x8000 // Tx Underrun
735
736
737// Receive Control Register
738/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900739#define RCR_REG(lp) SMC_REG(lp, 0x0004, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#define RCR_RX_ABORT 0x0001 // Set if a rx frame was aborted
741#define RCR_PRMS 0x0002 // Enable promiscuous mode
742#define RCR_ALMUL 0x0004 // When set accepts all multicast frames
743#define RCR_RXEN 0x0100 // IFF this is set, we can receive packets
744#define RCR_STRIP_CRC 0x0200 // When set strips CRC from rx packets
745#define RCR_ABORT_ENB 0x0200 // When set will abort rx on collision
746#define RCR_FILT_CAR 0x0400 // When set filters leading 12 bit s of carrier
747#define RCR_SOFTRST 0x8000 // resets the chip
748
749/* the normal settings for the RCR register : */
750#define RCR_DEFAULT (RCR_STRIP_CRC | RCR_RXEN)
751#define RCR_CLEAR 0x0 // set it to a base state
752
753
754// Counter Register
755/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900756#define COUNTER_REG(lp) SMC_REG(lp, 0x0006, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758
759// Memory Information Register
760/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900761#define MIR_REG(lp) SMC_REG(lp, 0x0008, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763
764// Receive/Phy Control Register
765/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900766#define RPC_REG(lp) SMC_REG(lp, 0x000A, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767#define RPC_SPEED 0x2000 // When 1 PHY is in 100Mbps mode.
768#define RPC_DPLX 0x1000 // When 1 PHY is in Full-Duplex Mode
769#define RPC_ANEG 0x0800 // When 1 PHY is in Auto-Negotiate Mode
770#define RPC_LSXA_SHFT 5 // Bits to shift LS2A,LS1A,LS0A to lsb
771#define RPC_LSXB_SHFT 2 // Bits to get LS2B,LS1B,LS0B to lsb
772#define RPC_LED_100_10 (0x00) // LED = 100Mbps OR's with 10Mbps link detect
773#define RPC_LED_RES (0x01) // LED = Reserved
774#define RPC_LED_10 (0x02) // LED = 10Mbps link detect
775#define RPC_LED_FD (0x03) // LED = Full Duplex Mode
776#define RPC_LED_TX_RX (0x04) // LED = TX or RX packet occurred
777#define RPC_LED_100 (0x05) // LED = 100Mbps link dectect
778#define RPC_LED_TX (0x06) // LED = TX packet occurred
779#define RPC_LED_RX (0x07) // LED = RX packet occurred
780
781#ifndef RPC_LSA_DEFAULT
782#define RPC_LSA_DEFAULT RPC_LED_100
783#endif
784#ifndef RPC_LSB_DEFAULT
785#define RPC_LSB_DEFAULT RPC_LED_FD
786#endif
787
788#define RPC_DEFAULT (RPC_ANEG | (RPC_LSA_DEFAULT << RPC_LSXA_SHFT) | (RPC_LSB_DEFAULT << RPC_LSXB_SHFT) | RPC_SPEED | RPC_DPLX)
789
790
791/* Bank 0 0x0C is reserved */
792
793// Bank Select Register
794/* All Banks */
795#define BSR_REG 0x000E
796
797
798// Configuration Reg
799/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900800#define CONFIG_REG(lp) SMC_REG(lp, 0x0000, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801#define CONFIG_EXT_PHY 0x0200 // 1=external MII, 0=internal Phy
802#define CONFIG_GPCNTRL 0x0400 // Inverse value drives pin nCNTRL
803#define CONFIG_NO_WAIT 0x1000 // When 1 no extra wait states on ISA bus
804#define CONFIG_EPH_POWER_EN 0x8000 // When 0 EPH is placed into low power mode.
805
806// Default is powered-up, Internal Phy, Wait States, and pin nCNTRL=low
807#define CONFIG_DEFAULT (CONFIG_EPH_POWER_EN)
808
809
810// Base Address Register
811/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900812#define BASE_REG(lp) SMC_REG(lp, 0x0002, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814
815// Individual Address Registers
816/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900817#define ADDR0_REG(lp) SMC_REG(lp, 0x0004, 1)
818#define ADDR1_REG(lp) SMC_REG(lp, 0x0006, 1)
819#define ADDR2_REG(lp) SMC_REG(lp, 0x0008, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821
822// General Purpose Register
823/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900824#define GP_REG(lp) SMC_REG(lp, 0x000A, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826
827// Control Register
828/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900829#define CTL_REG(lp) SMC_REG(lp, 0x000C, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830#define CTL_RCV_BAD 0x4000 // When 1 bad CRC packets are received
831#define CTL_AUTO_RELEASE 0x0800 // When 1 tx pages are released automatically
832#define CTL_LE_ENABLE 0x0080 // When 1 enables Link Error interrupt
833#define CTL_CR_ENABLE 0x0040 // When 1 enables Counter Rollover interrupt
834#define CTL_TE_ENABLE 0x0020 // When 1 enables Transmit Error interrupt
835#define CTL_EEPROM_SELECT 0x0004 // Controls EEPROM reload & store
836#define CTL_RELOAD 0x0002 // When set reads EEPROM into registers
837#define CTL_STORE 0x0001 // When set stores registers into EEPROM
838
839
840// MMU Command Register
841/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900842#define MMU_CMD_REG(lp) SMC_REG(lp, 0x0000, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843#define MC_BUSY 1 // When 1 the last release has not completed
844#define MC_NOP (0<<5) // No Op
845#define MC_ALLOC (1<<5) // OR with number of 256 byte packets
846#define MC_RESET (2<<5) // Reset MMU to initial state
847#define MC_REMOVE (3<<5) // Remove the current rx packet
848#define MC_RELEASE (4<<5) // Remove and release the current rx packet
849#define MC_FREEPKT (5<<5) // Release packet in PNR register
850#define MC_ENQUEUE (6<<5) // Enqueue the packet for transmit
851#define MC_RSTTXFIFO (7<<5) // Reset the TX FIFOs
852
853
854// Packet Number Register
855/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900856#define PN_REG(lp) SMC_REG(lp, 0x0002, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858
859// Allocation Result Register
860/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900861#define AR_REG(lp) SMC_REG(lp, 0x0003, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862#define AR_FAILED 0x80 // Alocation Failed
863
864
865// TX FIFO Ports Register
866/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900867#define TXFIFO_REG(lp) SMC_REG(lp, 0x0004, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868#define TXFIFO_TEMPTY 0x80 // TX FIFO Empty
869
870// RX FIFO Ports Register
871/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900872#define RXFIFO_REG(lp) SMC_REG(lp, 0x0005, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873#define RXFIFO_REMPTY 0x80 // RX FIFO Empty
874
Magnus Dammcfdfa862008-02-22 19:55:05 +0900875#define FIFO_REG(lp) SMC_REG(lp, 0x0004, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877// Pointer Register
878/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900879#define PTR_REG(lp) SMC_REG(lp, 0x0006, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880#define PTR_RCV 0x8000 // 1=Receive area, 0=Transmit area
881#define PTR_AUTOINC 0x4000 // Auto increment the pointer on each access
882#define PTR_READ 0x2000 // When 1 the operation is a read
883
884
885// Data Register
886/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900887#define DATA_REG(lp) SMC_REG(lp, 0x0008, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889
890// Interrupt Status/Acknowledge Register
891/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900892#define INT_REG(lp) SMC_REG(lp, 0x000C, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894
895// Interrupt Mask Register
896/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900897#define IM_REG(lp) SMC_REG(lp, 0x000D, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898#define IM_MDINT 0x80 // PHY MI Register 18 Interrupt
899#define IM_ERCV_INT 0x40 // Early Receive Interrupt
900#define IM_EPH_INT 0x20 // Set by Ethernet Protocol Handler section
901#define IM_RX_OVRN_INT 0x10 // Set by Receiver Overruns
902#define IM_ALLOC_INT 0x08 // Set when allocation request is completed
903#define IM_TX_EMPTY_INT 0x04 // Set if the TX FIFO goes empty
904#define IM_TX_INT 0x02 // Transmit Interrupt
905#define IM_RCV_INT 0x01 // Receive Interrupt
906
907
908// Multicast Table Registers
909/* BANK 3 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900910#define MCAST_REG1(lp) SMC_REG(lp, 0x0000, 3)
911#define MCAST_REG2(lp) SMC_REG(lp, 0x0002, 3)
912#define MCAST_REG3(lp) SMC_REG(lp, 0x0004, 3)
913#define MCAST_REG4(lp) SMC_REG(lp, 0x0006, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915
916// Management Interface Register (MII)
917/* BANK 3 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900918#define MII_REG(lp) SMC_REG(lp, 0x0008, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919#define MII_MSK_CRS100 0x4000 // Disables CRS100 detection during tx half dup
920#define MII_MDOE 0x0008 // MII Output Enable
921#define MII_MCLK 0x0004 // MII Clock, pin MDCLK
922#define MII_MDI 0x0002 // MII Input, pin MDI
923#define MII_MDO 0x0001 // MII Output, pin MDO
924
925
926// Revision Register
927/* BANK 3 */
928/* ( hi: chip id low: rev # ) */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900929#define REV_REG(lp) SMC_REG(lp, 0x000A, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931
932// Early RCV Register
933/* BANK 3 */
934/* this is NOT on SMC9192 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900935#define ERCV_REG(lp) SMC_REG(lp, 0x000C, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936#define ERCV_RCV_DISCRD 0x0080 // When 1 discards a packet being received
937#define ERCV_THRESHOLD 0x001F // ERCV Threshold Mask
938
939
940// External Register
941/* BANK 7 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900942#define EXT_REG(lp) SMC_REG(lp, 0x0000, 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944
945#define CHIP_9192 3
946#define CHIP_9194 4
947#define CHIP_9195 5
948#define CHIP_9196 6
949#define CHIP_91100 7
950#define CHIP_91100FD 8
951#define CHIP_91111FD 9
952
953static const char * chip_ids[ 16 ] = {
954 NULL, NULL, NULL,
955 /* 3 */ "SMC91C90/91C92",
956 /* 4 */ "SMC91C94",
957 /* 5 */ "SMC91C95",
958 /* 6 */ "SMC91C96",
959 /* 7 */ "SMC91C100",
960 /* 8 */ "SMC91C100FD",
961 /* 9 */ "SMC91C11xFD",
962 NULL, NULL, NULL,
963 NULL, NULL, NULL};
964
965
966/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 . Receive status bits
968*/
969#define RS_ALGNERR 0x8000
970#define RS_BRODCAST 0x4000
971#define RS_BADCRC 0x2000
972#define RS_ODDFRAME 0x1000
973#define RS_TOOLONG 0x0800
974#define RS_TOOSHORT 0x0400
975#define RS_MULTICAST 0x0001
976#define RS_ERRORS (RS_ALGNERR | RS_BADCRC | RS_TOOLONG | RS_TOOSHORT)
977
978
979/*
980 * PHY IDs
981 * LAN83C183 == LAN91C111 Internal PHY
982 */
983#define PHY_LAN83C183 0x0016f840
984#define PHY_LAN83C180 0x02821c50
985
986/*
987 * PHY Register Addresses (LAN91C111 Internal PHY)
988 *
989 * Generic PHY registers can be found in <linux/mii.h>
990 *
991 * These phy registers are specific to our on-board phy.
992 */
993
994// PHY Configuration Register 1
995#define PHY_CFG1_REG 0x10
996#define PHY_CFG1_LNKDIS 0x8000 // 1=Rx Link Detect Function disabled
997#define PHY_CFG1_XMTDIS 0x4000 // 1=TP Transmitter Disabled
998#define PHY_CFG1_XMTPDN 0x2000 // 1=TP Transmitter Powered Down
999#define PHY_CFG1_BYPSCR 0x0400 // 1=Bypass scrambler/descrambler
1000#define PHY_CFG1_UNSCDS 0x0200 // 1=Unscramble Idle Reception Disable
1001#define PHY_CFG1_EQLZR 0x0100 // 1=Rx Equalizer Disabled
1002#define PHY_CFG1_CABLE 0x0080 // 1=STP(150ohm), 0=UTP(100ohm)
1003#define PHY_CFG1_RLVL0 0x0040 // 1=Rx Squelch level reduced by 4.5db
1004#define PHY_CFG1_TLVL_SHIFT 2 // Transmit Output Level Adjust
1005#define PHY_CFG1_TLVL_MASK 0x003C
1006#define PHY_CFG1_TRF_MASK 0x0003 // Transmitter Rise/Fall time
1007
1008
1009// PHY Configuration Register 2
1010#define PHY_CFG2_REG 0x11
1011#define PHY_CFG2_APOLDIS 0x0020 // 1=Auto Polarity Correction disabled
1012#define PHY_CFG2_JABDIS 0x0010 // 1=Jabber disabled
1013#define PHY_CFG2_MREG 0x0008 // 1=Multiple register access (MII mgt)
1014#define PHY_CFG2_INTMDIO 0x0004 // 1=Interrupt signaled with MDIO pulseo
1015
1016// PHY Status Output (and Interrupt status) Register
1017#define PHY_INT_REG 0x12 // Status Output (Interrupt Status)
1018#define PHY_INT_INT 0x8000 // 1=bits have changed since last read
1019#define PHY_INT_LNKFAIL 0x4000 // 1=Link Not detected
1020#define PHY_INT_LOSSSYNC 0x2000 // 1=Descrambler has lost sync
1021#define PHY_INT_CWRD 0x1000 // 1=Invalid 4B5B code detected on rx
1022#define PHY_INT_SSD 0x0800 // 1=No Start Of Stream detected on rx
1023#define PHY_INT_ESD 0x0400 // 1=No End Of Stream detected on rx
1024#define PHY_INT_RPOL 0x0200 // 1=Reverse Polarity detected
1025#define PHY_INT_JAB 0x0100 // 1=Jabber detected
1026#define PHY_INT_SPDDET 0x0080 // 1=100Base-TX mode, 0=10Base-T mode
1027#define PHY_INT_DPLXDET 0x0040 // 1=Device in Full Duplex
1028
1029// PHY Interrupt/Status Mask Register
1030#define PHY_MASK_REG 0x13 // Interrupt Mask
1031// Uses the same bit definitions as PHY_INT_REG
1032
1033
1034/*
1035 * SMC91C96 ethernet config and status registers.
1036 * These are in the "attribute" space.
1037 */
1038#define ECOR 0x8000
1039#define ECOR_RESET 0x80
1040#define ECOR_LEVEL_IRQ 0x40
1041#define ECOR_WR_ATTRIB 0x04
1042#define ECOR_ENABLE 0x01
1043
1044#define ECSR 0x8002
1045#define ECSR_IOIS8 0x20
1046#define ECSR_PWRDWN 0x04
1047#define ECSR_INT 0x02
1048
1049#define ATTRIB_SIZE ((64*1024) << SMC_IO_SHIFT)
1050
1051
1052/*
1053 * Macros to abstract register access according to the data bus
1054 * capabilities. Please use those and not the in/out primitives.
1055 * Note: the following macros do *not* select the bank -- this must
1056 * be done separately as needed in the main code. The SMC_REG() macro
1057 * only uses the bank argument for debugging purposes (when enabled).
Nicolas Pitre09779c62006-03-20 11:54:27 -05001058 *
1059 * Note: despite inline functions being safer, everything leading to this
1060 * should preferably be macros to let BUG() display the line number in
1061 * the core source code since we're interested in the top call site
1062 * not in any inline function location.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 */
1064
1065#if SMC_DEBUG > 0
Magnus Dammcfdfa862008-02-22 19:55:05 +09001066#define SMC_REG(lp, reg, bank) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 ({ \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001068 int __b = SMC_CURRENT_BANK(lp); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (unlikely((__b & ~0xf0) != (0x3300 | bank))) { \
1070 printk( "%s: bank reg screwed (0x%04x)\n", \
1071 CARDNAME, __b ); \
1072 BUG(); \
1073 } \
1074 reg<<SMC_IO_SHIFT; \
1075 })
1076#else
Magnus Dammcfdfa862008-02-22 19:55:05 +09001077#define SMC_REG(lp, reg, bank) (reg<<SMC_IO_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078#endif
1079
Nicolas Pitre09779c62006-03-20 11:54:27 -05001080/*
1081 * Hack Alert: Some setups just can't write 8 or 16 bits reliably when not
1082 * aligned to a 32 bit boundary. I tell you that does exist!
1083 * Fortunately the affected register accesses can be easily worked around
1084 * since we can write zeroes to the preceeding 16 bits without adverse
1085 * effects and use a 32-bit access.
1086 *
1087 * Enforce it on any 32-bit capable setup for now.
1088 */
Magnus Damm3e947942008-02-22 19:55:15 +09001089#define SMC_MUST_ALIGN_WRITE(lp) SMC_32BIT(lp)
Nicolas Pitre09779c62006-03-20 11:54:27 -05001090
Magnus Dammcfdfa862008-02-22 19:55:05 +09001091#define SMC_GET_PN(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001092 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, PN_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001093 : (SMC_inw(ioaddr, PN_REG(lp)) & 0xFF))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001094
Magnus Dammcfdfa862008-02-22 19:55:05 +09001095#define SMC_SET_PN(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001096 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001097 if (SMC_MUST_ALIGN_WRITE(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001098 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 0, 2)); \
Magnus Damm3e947942008-02-22 19:55:15 +09001099 else if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001100 SMC_outb(x, ioaddr, PN_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001101 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001102 SMC_outw(x, ioaddr, PN_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001103 } while (0)
1104
Magnus Dammcfdfa862008-02-22 19:55:05 +09001105#define SMC_GET_AR(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001106 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, AR_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001107 : (SMC_inw(ioaddr, PN_REG(lp)) >> 8))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001108
Magnus Dammcfdfa862008-02-22 19:55:05 +09001109#define SMC_GET_TXFIFO(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001110 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, TXFIFO_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001111 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) & 0xFF))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001112
Magnus Dammcfdfa862008-02-22 19:55:05 +09001113#define SMC_GET_RXFIFO(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001114 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, RXFIFO_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001115 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) >> 8))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001116
Magnus Dammcfdfa862008-02-22 19:55:05 +09001117#define SMC_GET_INT(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001118 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, INT_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001119 : (SMC_inw(ioaddr, INT_REG(lp)) & 0xFF))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001120
Magnus Dammcfdfa862008-02-22 19:55:05 +09001121#define SMC_ACK_INT(lp, x) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001123 if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001124 SMC_outb(x, ioaddr, INT_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001125 else { \
1126 unsigned long __flags; \
1127 int __mask; \
1128 local_irq_save(__flags); \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001129 __mask = SMC_inw(ioaddr, INT_REG(lp)) & ~0xff; \
1130 SMC_outw(__mask | (x), ioaddr, INT_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001131 local_irq_restore(__flags); \
1132 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Magnus Dammcfdfa862008-02-22 19:55:05 +09001135#define SMC_GET_INT_MASK(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001136 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, IM_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001137 : (SMC_inw(ioaddr, INT_REG(lp)) >> 8))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001138
Magnus Dammcfdfa862008-02-22 19:55:05 +09001139#define SMC_SET_INT_MASK(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001140 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001141 if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001142 SMC_outb(x, ioaddr, IM_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001143 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001144 SMC_outw((x) << 8, ioaddr, INT_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001145 } while (0)
1146
Magnus Dammcfdfa862008-02-22 19:55:05 +09001147#define SMC_CURRENT_BANK(lp) SMC_inw(ioaddr, BANK_SELECT)
Nicolas Pitre09779c62006-03-20 11:54:27 -05001148
Magnus Dammcfdfa862008-02-22 19:55:05 +09001149#define SMC_SELECT_BANK(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001150 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001151 if (SMC_MUST_ALIGN_WRITE(lp)) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001152 SMC_outl((x)<<16, ioaddr, 12<<SMC_IO_SHIFT); \
1153 else \
1154 SMC_outw(x, ioaddr, BANK_SELECT); \
1155 } while (0)
1156
Magnus Dammcfdfa862008-02-22 19:55:05 +09001157#define SMC_GET_BASE(lp) SMC_inw(ioaddr, BASE_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001158
Magnus Dammcfdfa862008-02-22 19:55:05 +09001159#define SMC_SET_BASE(lp, x) SMC_outw(x, ioaddr, BASE_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001160
Magnus Dammcfdfa862008-02-22 19:55:05 +09001161#define SMC_GET_CONFIG(lp) SMC_inw(ioaddr, CONFIG_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001162
Magnus Dammcfdfa862008-02-22 19:55:05 +09001163#define SMC_SET_CONFIG(lp, x) SMC_outw(x, ioaddr, CONFIG_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001164
Magnus Dammcfdfa862008-02-22 19:55:05 +09001165#define SMC_GET_COUNTER(lp) SMC_inw(ioaddr, COUNTER_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001166
Magnus Dammcfdfa862008-02-22 19:55:05 +09001167#define SMC_GET_CTL(lp) SMC_inw(ioaddr, CTL_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001168
Magnus Dammcfdfa862008-02-22 19:55:05 +09001169#define SMC_SET_CTL(lp, x) SMC_outw(x, ioaddr, CTL_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001170
Magnus Dammcfdfa862008-02-22 19:55:05 +09001171#define SMC_GET_MII(lp) SMC_inw(ioaddr, MII_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001172
Magnus Dammcfdfa862008-02-22 19:55:05 +09001173#define SMC_SET_MII(lp, x) SMC_outw(x, ioaddr, MII_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001174
Magnus Dammcfdfa862008-02-22 19:55:05 +09001175#define SMC_GET_MIR(lp) SMC_inw(ioaddr, MIR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001176
Magnus Dammcfdfa862008-02-22 19:55:05 +09001177#define SMC_SET_MIR(lp, x) SMC_outw(x, ioaddr, MIR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001178
Magnus Dammcfdfa862008-02-22 19:55:05 +09001179#define SMC_GET_MMU_CMD(lp) SMC_inw(ioaddr, MMU_CMD_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001180
Magnus Dammcfdfa862008-02-22 19:55:05 +09001181#define SMC_SET_MMU_CMD(lp, x) SMC_outw(x, ioaddr, MMU_CMD_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001182
Magnus Dammcfdfa862008-02-22 19:55:05 +09001183#define SMC_GET_FIFO(lp) SMC_inw(ioaddr, FIFO_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001184
Magnus Dammcfdfa862008-02-22 19:55:05 +09001185#define SMC_GET_PTR(lp) SMC_inw(ioaddr, PTR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001186
Magnus Dammcfdfa862008-02-22 19:55:05 +09001187#define SMC_SET_PTR(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001188 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001189 if (SMC_MUST_ALIGN_WRITE(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001190 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 4, 2)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001191 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001192 SMC_outw(x, ioaddr, PTR_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001193 } while (0)
1194
Magnus Dammcfdfa862008-02-22 19:55:05 +09001195#define SMC_GET_EPH_STATUS(lp) SMC_inw(ioaddr, EPH_STATUS_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001196
Magnus Dammcfdfa862008-02-22 19:55:05 +09001197#define SMC_GET_RCR(lp) SMC_inw(ioaddr, RCR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001198
Magnus Dammcfdfa862008-02-22 19:55:05 +09001199#define SMC_SET_RCR(lp, x) SMC_outw(x, ioaddr, RCR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001200
Magnus Dammcfdfa862008-02-22 19:55:05 +09001201#define SMC_GET_REV(lp) SMC_inw(ioaddr, REV_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001202
Magnus Dammcfdfa862008-02-22 19:55:05 +09001203#define SMC_GET_RPC(lp) SMC_inw(ioaddr, RPC_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001204
Magnus Dammcfdfa862008-02-22 19:55:05 +09001205#define SMC_SET_RPC(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001206 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001207 if (SMC_MUST_ALIGN_WRITE(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001208 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 8, 0)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001209 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001210 SMC_outw(x, ioaddr, RPC_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001211 } while (0)
1212
Magnus Dammcfdfa862008-02-22 19:55:05 +09001213#define SMC_GET_TCR(lp) SMC_inw(ioaddr, TCR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001214
Magnus Dammcfdfa862008-02-22 19:55:05 +09001215#define SMC_SET_TCR(lp, x) SMC_outw(x, ioaddr, TCR_REG(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217#ifndef SMC_GET_MAC_ADDR
Magnus Dammcfdfa862008-02-22 19:55:05 +09001218#define SMC_GET_MAC_ADDR(lp, addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 do { \
1220 unsigned int __v; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001221 __v = SMC_inw(ioaddr, ADDR0_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 addr[0] = __v; addr[1] = __v >> 8; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001223 __v = SMC_inw(ioaddr, ADDR1_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 addr[2] = __v; addr[3] = __v >> 8; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001225 __v = SMC_inw(ioaddr, ADDR2_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 addr[4] = __v; addr[5] = __v >> 8; \
1227 } while (0)
1228#endif
1229
Magnus Dammcfdfa862008-02-22 19:55:05 +09001230#define SMC_SET_MAC_ADDR(lp, addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 do { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001232 SMC_outw(addr[0]|(addr[1] << 8), ioaddr, ADDR0_REG(lp)); \
1233 SMC_outw(addr[2]|(addr[3] << 8), ioaddr, ADDR1_REG(lp)); \
1234 SMC_outw(addr[4]|(addr[5] << 8), ioaddr, ADDR2_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 } while (0)
1236
Magnus Dammcfdfa862008-02-22 19:55:05 +09001237#define SMC_SET_MCAST(lp, x) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 do { \
1239 const unsigned char *mt = (x); \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001240 SMC_outw(mt[0] | (mt[1] << 8), ioaddr, MCAST_REG1(lp)); \
1241 SMC_outw(mt[2] | (mt[3] << 8), ioaddr, MCAST_REG2(lp)); \
1242 SMC_outw(mt[4] | (mt[5] << 8), ioaddr, MCAST_REG3(lp)); \
1243 SMC_outw(mt[6] | (mt[7] << 8), ioaddr, MCAST_REG4(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 } while (0)
1245
Magnus Dammcfdfa862008-02-22 19:55:05 +09001246#define SMC_PUT_PKT_HDR(lp, status, length) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001248 if (SMC_32BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001249 SMC_outl((status) | (length)<<16, ioaddr, \
1250 DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001251 else { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001252 SMC_outw(status, ioaddr, DATA_REG(lp)); \
1253 SMC_outw(length, ioaddr, DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001254 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 } while (0)
Nicolas Pitre09779c62006-03-20 11:54:27 -05001256
Magnus Dammcfdfa862008-02-22 19:55:05 +09001257#define SMC_GET_PKT_HDR(lp, status, length) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001259 if (SMC_32BIT(lp)) { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001260 unsigned int __val = SMC_inl(ioaddr, DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001261 (status) = __val & 0xffff; \
1262 (length) = __val >> 16; \
1263 } else { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001264 (status) = SMC_inw(ioaddr, DATA_REG(lp)); \
1265 (length) = SMC_inw(ioaddr, DATA_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 } \
1267 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Magnus Dammcfdfa862008-02-22 19:55:05 +09001269#define SMC_PUSH_DATA(lp, p, l) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001270 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001271 if (SMC_32BIT(lp)) { \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001272 void *__ptr = (p); \
1273 int __len = (l); \
Al Virofbd81972006-05-30 23:58:25 -04001274 void __iomem *__ioaddr = ioaddr; \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001275 if (__len >= 2 && (unsigned long)__ptr & 2) { \
1276 __len -= 2; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001277 SMC_outw(*(u16 *)__ptr, ioaddr, \
1278 DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001279 __ptr += 2; \
1280 } \
1281 if (SMC_CAN_USE_DATACS && lp->datacs) \
1282 __ioaddr = lp->datacs; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001283 SMC_outsl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001284 if (__len & 2) { \
1285 __ptr += (__len & ~3); \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001286 SMC_outw(*((u16 *)__ptr), ioaddr, \
1287 DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001288 } \
Magnus Damm3e947942008-02-22 19:55:15 +09001289 } else if (SMC_16BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001290 SMC_outsw(ioaddr, DATA_REG(lp), p, (l) >> 1); \
Magnus Damm3e947942008-02-22 19:55:15 +09001291 else if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001292 SMC_outsb(ioaddr, DATA_REG(lp), p, l); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001293 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Magnus Dammcfdfa862008-02-22 19:55:05 +09001295#define SMC_PULL_DATA(lp, p, l) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001296 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001297 if (SMC_32BIT(lp)) { \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001298 void *__ptr = (p); \
1299 int __len = (l); \
Al Virofbd81972006-05-30 23:58:25 -04001300 void __iomem *__ioaddr = ioaddr; \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001301 if ((unsigned long)__ptr & 2) { \
1302 /* \
1303 * We want 32bit alignment here. \
1304 * Since some buses perform a full \
1305 * 32bit fetch even for 16bit data \
1306 * we can't use SMC_inw() here. \
1307 * Back both source (on-chip) and \
1308 * destination pointers of 2 bytes. \
1309 * This is possible since the call to \
1310 * SMC_GET_PKT_HDR() already advanced \
1311 * the source pointer of 4 bytes, and \
1312 * the skb_reserve(skb, 2) advanced \
1313 * the destination pointer of 2 bytes. \
1314 */ \
1315 __ptr -= 2; \
1316 __len += 2; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001317 SMC_SET_PTR(lp, \
1318 2|PTR_READ|PTR_RCV|PTR_AUTOINC); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001319 } \
1320 if (SMC_CAN_USE_DATACS && lp->datacs) \
1321 __ioaddr = lp->datacs; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 __len += 2; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001323 SMC_insl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
Magnus Damm3e947942008-02-22 19:55:15 +09001324 } else if (SMC_16BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001325 SMC_insw(ioaddr, DATA_REG(lp), p, (l) >> 1); \
Magnus Damm3e947942008-02-22 19:55:15 +09001326 else if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001327 SMC_insb(ioaddr, DATA_REG(lp), p, l); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001328 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
1330#endif /* _SMC91X_H_ */