blob: edea0732f1454dc0b5ee30a7e02256400dcc70c2 [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
Eric Miao38fd6c32008-06-24 16:14:26 +080043#if defined(CONFIG_ARCH_LUBBOCK) ||\
Eric Miao88c36eb2008-06-24 16:47:37 +080044 defined(CONFIG_MACH_MAINSTONE) ||\
Eric Miaoe1719da2008-06-24 16:49:41 +080045 defined(CONFIG_MACH_ZYLONITE) ||\
46 defined(CONFIG_MACH_LITTLETON)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Eric Miao38fd6c32008-06-24 16:14:26 +080048#include <asm/mach-types.h>
49
50/* Now the bus width is specified in the platform data
51 * pretend here to support all I/O access types
52 */
53#define SMC_CAN_USE_8BIT 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define SMC_CAN_USE_16BIT 1
Eric Miao38fd6c32008-06-24 16:14:26 +080055#define SMC_CAN_USE_32BIT 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define SMC_NOWAIT 1
57
Eric Miao3aed74c2008-06-24 15:51:02 +080058#define SMC_IO_SHIFT (lp->io_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Eric Miao38fd6c32008-06-24 16:14:26 +080060#define SMC_inb(a, r) readb((a) + (r))
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define SMC_inw(a, r) readw((a) + (r))
Eric Miao38fd6c32008-06-24 16:14:26 +080062#define SMC_inl(a, r) readl((a) + (r))
63#define SMC_outb(v, a, r) writeb(v, (a) + (r))
64#define SMC_outl(v, a, r) writel(v, (a) + (r))
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
66#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Eric Miao38fd6c32008-06-24 16:14:26 +080067#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
68#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +000069#define SMC_IRQ_FLAGS (-1) /* from resource */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Eric Miao38fd6c32008-06-24 16:14:26 +080071/* We actually can't write halfwords properly if not word aligned */
72static inline void SMC_outw(u16 val, void __iomem *ioaddr, int reg)
73{
74 if (machine_is_mainstone() && reg & 2) {
75 unsigned int v = val << 16;
76 v |= readl(ioaddr + (reg & ~2)) & 0xffff;
77 writel(v, ioaddr + (reg & ~2));
78 } else {
79 writew(val, ioaddr + reg);
80 }
81}
82
Mike Frysinger95af9fe2007-11-23 17:55:50 +080083#elif defined(CONFIG_BLACKFIN)
Wu, Bryan0851a282007-05-06 14:50:32 -070084
85#define SMC_IRQ_FLAGS IRQF_TRIGGER_HIGH
Jean-Christian de Rivazc5760abd2007-06-11 17:44:14 +080086#define RPC_LSA_DEFAULT RPC_LED_100_10
87#define RPC_LSB_DEFAULT RPC_LED_TX_RX
Wu, Bryan0851a282007-05-06 14:50:32 -070088
89# if defined (CONFIG_BFIN561_EZKIT)
90#define SMC_CAN_USE_8BIT 0
91#define SMC_CAN_USE_16BIT 1
92#define SMC_CAN_USE_32BIT 1
93#define SMC_IO_SHIFT 0
94#define SMC_NOWAIT 1
95#define SMC_USE_BFIN_DMA 0
96
97
98#define SMC_inw(a, r) readw((a) + (r))
99#define SMC_outw(v, a, r) writew(v, (a) + (r))
100#define SMC_inl(a, r) readl((a) + (r))
101#define SMC_outl(v, a, r) writel(v, (a) + (r))
102#define SMC_outsl(a, r, p, l) outsl((unsigned long *)((a) + (r)), p, l)
103#define SMC_insl(a, r, p, l) insl ((unsigned long *)((a) + (r)), p, l)
104# else
105#define SMC_CAN_USE_8BIT 0
106#define SMC_CAN_USE_16BIT 1
107#define SMC_CAN_USE_32BIT 0
108#define SMC_IO_SHIFT 0
109#define SMC_NOWAIT 1
110#define SMC_USE_BFIN_DMA 0
111
112
113#define SMC_inw(a, r) readw((a) + (r))
114#define SMC_outw(v, a, r) writew(v, (a) + (r))
115#define SMC_outsw(a, r, p, l) outsw((unsigned long *)((a) + (r)), p, l)
116#define SMC_insw(a, r, p, l) insw ((unsigned long *)((a) + (r)), p, l)
117# endif
118/* check if the mac in reg is valid */
Bryan Wu7427d8b2008-06-11 12:08:39 +0800119#define SMC_GET_MAC_ADDR(lp, addr) \
Wu, Bryan0851a282007-05-06 14:50:32 -0700120 do { \
121 unsigned int __v; \
Bryan Wu7427d8b2008-06-11 12:08:39 +0800122 __v = SMC_inw(ioaddr, ADDR0_REG(lp)); \
Wu, Bryan0851a282007-05-06 14:50:32 -0700123 addr[0] = __v; addr[1] = __v >> 8; \
Bryan Wu7427d8b2008-06-11 12:08:39 +0800124 __v = SMC_inw(ioaddr, ADDR1_REG(lp)); \
Wu, Bryan0851a282007-05-06 14:50:32 -0700125 addr[2] = __v; addr[3] = __v >> 8; \
Bryan Wu7427d8b2008-06-11 12:08:39 +0800126 __v = SMC_inw(ioaddr, ADDR2_REG(lp)); \
Wu, Bryan0851a282007-05-06 14:50:32 -0700127 addr[4] = __v; addr[5] = __v >> 8; \
128 if (*(u32 *)(&addr[0]) == 0xFFFFFFFF) { \
129 random_ether_addr(addr); \
130 } \
131 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#elif defined(CONFIG_REDWOOD_5) || defined(CONFIG_REDWOOD_6)
133
134/* We can only do 16-bit reads and writes in the static memory space. */
135#define SMC_CAN_USE_8BIT 0
136#define SMC_CAN_USE_16BIT 1
137#define SMC_CAN_USE_32BIT 0
138#define SMC_NOWAIT 1
139
140#define SMC_IO_SHIFT 0
141
142#define SMC_inw(a, r) in_be16((volatile u16 *)((a) + (r)))
143#define SMC_outw(v, a, r) out_be16((volatile u16 *)((a) + (r)), v)
144#define SMC_insw(a, r, p, l) \
145 do { \
146 unsigned long __port = (a) + (r); \
147 u16 *__p = (u16 *)(p); \
148 int __l = (l); \
149 insw(__port, __p, __l); \
150 while (__l > 0) { \
151 *__p = swab16(*__p); \
152 __p++; \
153 __l--; \
154 } \
155 } while (0)
156#define SMC_outsw(a, r, p, l) \
157 do { \
158 unsigned long __port = (a) + (r); \
159 u16 *__p = (u16 *)(p); \
160 int __l = (l); \
161 while (__l > 0) { \
162 /* Believe it or not, the swab isn't needed. */ \
163 outw( /* swab16 */ (*__p++), __port); \
164 __l--; \
165 } \
166 } while (0)
Russell King9ded96f2006-01-08 01:02:07 -0800167#define SMC_IRQ_FLAGS (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169#elif defined(CONFIG_SA1100_PLEB)
170/* We can only do 16-bit reads and writes in the static memory space. */
171#define SMC_CAN_USE_8BIT 1
172#define SMC_CAN_USE_16BIT 1
173#define SMC_CAN_USE_32BIT 0
174#define SMC_IO_SHIFT 0
175#define SMC_NOWAIT 1
176
Russell King1cf99be2005-11-12 21:49:36 +0000177#define SMC_inb(a, r) readb((a) + (r))
178#define SMC_insb(a, r, p, l) readsb((a) + (r), p, (l))
179#define SMC_inw(a, r) readw((a) + (r))
180#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
181#define SMC_outb(v, a, r) writeb(v, (a) + (r))
182#define SMC_outsb(a, r, p, l) writesb((a) + (r), p, (l))
183#define SMC_outw(v, a, r) writew(v, (a) + (r))
184#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Russell Kinge7b3dc72008-01-14 22:30:10 +0000186#define SMC_IRQ_FLAGS (-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188#elif defined(CONFIG_SA1100_ASSABET)
189
Russell Kinga09e64f2008-08-05 16:14:15 +0100190#include <mach/neponset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192/* We can only do 8-bit reads and writes in the static memory space. */
193#define SMC_CAN_USE_8BIT 1
194#define SMC_CAN_USE_16BIT 0
195#define SMC_CAN_USE_32BIT 0
196#define SMC_NOWAIT 1
197
198/* The first two address lines aren't connected... */
199#define SMC_IO_SHIFT 2
200
201#define SMC_inb(a, r) readb((a) + (r))
202#define SMC_outb(v, a, r) writeb(v, (a) + (r))
203#define SMC_insb(a, r, p, l) readsb((a) + (r), p, (l))
204#define SMC_outsb(a, r, p, l) writesb((a) + (r), p, (l))
Russell Kinge7b3dc72008-01-14 22:30:10 +0000205#define SMC_IRQ_FLAGS (-1) /* from resource */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200207#elif defined(CONFIG_MACH_LOGICPD_PXA270)
208
209#define SMC_CAN_USE_8BIT 0
210#define SMC_CAN_USE_16BIT 1
211#define SMC_CAN_USE_32BIT 0
212#define SMC_IO_SHIFT 0
213#define SMC_NOWAIT 1
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200214
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200215#define SMC_inw(a, r) readw((a) + (r))
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200216#define SMC_outw(v, a, r) writew(v, (a) + (r))
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200217#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
218#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#elif defined(CONFIG_ARCH_INNOKOM) || \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 defined(CONFIG_ARCH_PXA_IDP) || \
Robert Schwebel4f15a982008-01-08 08:50:02 +0100222 defined(CONFIG_ARCH_RAMSES) || \
223 defined(CONFIG_ARCH_PCM027)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225#define SMC_CAN_USE_8BIT 1
226#define SMC_CAN_USE_16BIT 1
227#define SMC_CAN_USE_32BIT 1
228#define SMC_IO_SHIFT 0
229#define SMC_NOWAIT 1
230#define SMC_USE_PXA_DMA 1
231
232#define SMC_inb(a, r) readb((a) + (r))
233#define SMC_inw(a, r) readw((a) + (r))
234#define SMC_inl(a, r) readl((a) + (r))
235#define SMC_outb(v, a, r) writeb(v, (a) + (r))
236#define SMC_outl(v, a, r) writel(v, (a) + (r))
237#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
238#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +0000239#define SMC_IRQ_FLAGS (-1) /* from resource */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241/* We actually can't write halfwords properly if not word aligned */
242static inline void
Nicolas Pitreeb1d6982005-05-12 20:19:09 -0400243SMC_outw(u16 val, void __iomem *ioaddr, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 if (reg & 2) {
246 unsigned int v = val << 16;
247 v |= readl(ioaddr + (reg & ~2)) & 0xffff;
248 writel(v, ioaddr + (reg & ~2));
249 } else {
250 writew(val, ioaddr + reg);
251 }
252}
253
254#elif defined(CONFIG_ARCH_OMAP)
255
256/* We can only do 16-bit reads and writes in the static memory space. */
257#define SMC_CAN_USE_8BIT 0
258#define SMC_CAN_USE_16BIT 1
259#define SMC_CAN_USE_32BIT 0
260#define SMC_IO_SHIFT 0
261#define SMC_NOWAIT 1
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263#define SMC_inw(a, r) readw((a) + (r))
264#define SMC_outw(v, a, r) writew(v, (a) + (r))
265#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
266#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +0000267#define SMC_IRQ_FLAGS (-1) /* from resource */
David Brownell5f13e7e2005-05-16 08:53:52 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269#elif defined(CONFIG_SH_SH4202_MICRODEV)
270
271#define SMC_CAN_USE_8BIT 0
272#define SMC_CAN_USE_16BIT 1
273#define SMC_CAN_USE_32BIT 0
274
275#define SMC_inb(a, r) inb((a) + (r) - 0xa0000000)
276#define SMC_inw(a, r) inw((a) + (r) - 0xa0000000)
277#define SMC_inl(a, r) inl((a) + (r) - 0xa0000000)
278#define SMC_outb(v, a, r) outb(v, (a) + (r) - 0xa0000000)
279#define SMC_outw(v, a, r) outw(v, (a) + (r) - 0xa0000000)
280#define SMC_outl(v, a, r) outl(v, (a) + (r) - 0xa0000000)
281#define SMC_insl(a, r, p, l) insl((a) + (r) - 0xa0000000, p, l)
282#define SMC_outsl(a, r, p, l) outsl((a) + (r) - 0xa0000000, p, l)
283#define SMC_insw(a, r, p, l) insw((a) + (r) - 0xa0000000, p, l)
284#define SMC_outsw(a, r, p, l) outsw((a) + (r) - 0xa0000000, p, l)
285
Russell King9ded96f2006-01-08 01:02:07 -0800286#define SMC_IRQ_FLAGS (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288#elif defined(CONFIG_ISA)
289
290#define SMC_CAN_USE_8BIT 1
291#define SMC_CAN_USE_16BIT 1
292#define SMC_CAN_USE_32BIT 0
293
294#define SMC_inb(a, r) inb((a) + (r))
295#define SMC_inw(a, r) inw((a) + (r))
296#define SMC_outb(v, a, r) outb(v, (a) + (r))
297#define SMC_outw(v, a, r) outw(v, (a) + (r))
298#define SMC_insw(a, r, p, l) insw((a) + (r), p, l)
299#define SMC_outsw(a, r, p, l) outsw((a) + (r), p, l)
300
301#elif defined(CONFIG_M32R)
302
303#define SMC_CAN_USE_8BIT 0
304#define SMC_CAN_USE_16BIT 1
305#define SMC_CAN_USE_32BIT 0
306
Mariusz Kozlowski59dc76a2006-12-04 15:04:56 -0800307#define SMC_inb(a, r) inb(((u32)a) + (r))
Hirokazu Takataf3ac9fb2005-10-30 15:00:06 -0800308#define SMC_inw(a, r) inw(((u32)a) + (r))
309#define SMC_outb(v, a, r) outb(v, ((u32)a) + (r))
310#define SMC_outw(v, a, r) outw(v, ((u32)a) + (r))
311#define SMC_insw(a, r, p, l) insw(((u32)a) + (r), p, l)
312#define SMC_outsw(a, r, p, l) outsw(((u32)a) + (r), p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Russell King9ded96f2006-01-08 01:02:07 -0800314#define SMC_IRQ_FLAGS (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316#define RPC_LSA_DEFAULT RPC_LED_TX_RX
317#define RPC_LSB_DEFAULT RPC_LED_100_10
318
Marc Singerd4adcff2006-05-16 11:41:40 +0100319#elif defined(CONFIG_MACH_LPD79520) \
320 || defined(CONFIG_MACH_LPD7A400) \
321 || defined(CONFIG_MACH_LPD7A404)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Marc Singerd4adcff2006-05-16 11:41:40 +0100323/* The LPD7X_IOBARRIER is necessary to overcome a mismatch between the
324 * way that the CPU handles chip selects and the way that the SMC chip
325 * expects the chip select to operate. Refer to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 * Documentation/arm/Sharp-LH/IOBarrier for details. The read from
Marc Singerd4adcff2006-05-16 11:41:40 +0100327 * IOBARRIER is a byte, in order that we read the least-common
328 * denominator. It would be wasteful to read 32 bits from an 8-bit
329 * accessible region.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 *
331 * There is no explicit protection against interrupts intervening
332 * between the writew and the IOBARRIER. In SMC ISR there is a
333 * preamble that performs an IOBARRIER in the extremely unlikely event
334 * that the driver interrupts itself between a writew to the chip an
335 * the IOBARRIER that follows *and* the cache is large enough that the
336 * first off-chip access while handing the interrupt is to the SMC
337 * chip. Other devices in the same address space as the SMC chip must
338 * be aware of the potential for trouble and perform a similar
339 * IOBARRIER on entry to their ISR.
340 */
341
Russell Kinga09e64f2008-08-05 16:14:15 +0100342#include <mach/constants.h> /* IOBARRIER_VIRT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344#define SMC_CAN_USE_8BIT 0
345#define SMC_CAN_USE_16BIT 1
346#define SMC_CAN_USE_32BIT 0
347#define SMC_NOWAIT 0
Marc Singerd4adcff2006-05-16 11:41:40 +0100348#define LPD7X_IOBARRIER readb (IOBARRIER_VIRT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Marc Singerd4adcff2006-05-16 11:41:40 +0100350#define SMC_inw(a,r)\
351 ({ unsigned short v = readw ((void*) ((a) + (r))); LPD7X_IOBARRIER; v; })
352#define SMC_outw(v,a,r) ({ writew ((v), (a) + (r)); LPD7X_IOBARRIER; })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Marc Singerd4adcff2006-05-16 11:41:40 +0100354#define SMC_insw LPD7_SMC_insw
355static inline void LPD7_SMC_insw (unsigned char* a, int r,
356 unsigned char* p, int l)
357{
358 unsigned short* ps = (unsigned short*) p;
359 while (l-- > 0) {
360 *ps++ = readw (a + r);
361 LPD7X_IOBARRIER;
362 }
363}
Nicolas Pitre09779c62006-03-20 11:54:27 -0500364
Marc Singerd4adcff2006-05-16 11:41:40 +0100365#define SMC_outsw LPD7_SMC_outsw
366static inline void LPD7_SMC_outsw (unsigned char* a, int r,
367 unsigned char* p, int l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
369 unsigned short* ps = (unsigned short*) p;
370 while (l-- > 0) {
371 writew (*ps++, a + r);
Marc Singerd4adcff2006-05-16 11:41:40 +0100372 LPD7X_IOBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374}
375
Marc Singerd4adcff2006-05-16 11:41:40 +0100376#define SMC_INTERRUPT_PREAMBLE LPD7X_IOBARRIER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378#define RPC_LSA_DEFAULT RPC_LED_TX_RX
379#define RPC_LSB_DEFAULT RPC_LED_100_10
380
Pete Popov55793452005-11-09 22:46:05 -0500381#elif defined(CONFIG_SOC_AU1X00)
382
383#include <au1xxx.h>
384
385/* We can only do 16-bit reads and writes in the static memory space. */
386#define SMC_CAN_USE_8BIT 0
387#define SMC_CAN_USE_16BIT 1
388#define SMC_CAN_USE_32BIT 0
389#define SMC_IO_SHIFT 0
390#define SMC_NOWAIT 1
391
392#define SMC_inw(a, r) au_readw((unsigned long)((a) + (r)))
393#define SMC_insw(a, r, p, l) \
394 do { \
395 unsigned long _a = (unsigned long)((a) + (r)); \
396 int _l = (l); \
397 u16 *_p = (u16 *)(p); \
398 while (_l-- > 0) \
399 *_p++ = au_readw(_a); \
400 } while(0)
401#define SMC_outw(v, a, r) au_writew(v, (unsigned long)((a) + (r)))
402#define SMC_outsw(a, r, p, l) \
403 do { \
404 unsigned long _a = (unsigned long)((a) + (r)); \
405 int _l = (l); \
406 const u16 *_p = (const u16 *)(p); \
407 while (_l-- > 0) \
408 au_writew(*_p++ , _a); \
409 } while(0)
410
Russell King9ded96f2006-01-08 01:02:07 -0800411#define SMC_IRQ_FLAGS (0)
Pete Popov55793452005-11-09 22:46:05 -0500412
Deepak Saxena8431adf2006-07-11 23:02:48 -0700413#elif defined(CONFIG_ARCH_VERSATILE)
414
415#define SMC_CAN_USE_8BIT 1
416#define SMC_CAN_USE_16BIT 1
417#define SMC_CAN_USE_32BIT 1
418#define SMC_NOWAIT 1
419
420#define SMC_inb(a, r) readb((a) + (r))
421#define SMC_inw(a, r) readw((a) + (r))
422#define SMC_inl(a, r) readl((a) + (r))
423#define SMC_outb(v, a, r) writeb(v, (a) + (r))
424#define SMC_outw(v, a, r) writew(v, (a) + (r))
425#define SMC_outl(v, a, r) writel(v, (a) + (r))
426#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
427#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +0000428#define SMC_IRQ_FLAGS (-1) /* from resource */
Deepak Saxena8431adf2006-07-11 23:02:48 -0700429
David Howellsb920de12008-02-08 04:19:31 -0800430#elif defined(CONFIG_MN10300)
431
432/*
433 * MN10300/AM33 configuration
434 */
435
436#include <asm/unit/smc91111.h>
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438#else
439
David Howellsb920de12008-02-08 04:19:31 -0800440/*
441 * Default configuration
442 */
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#define SMC_CAN_USE_8BIT 1
445#define SMC_CAN_USE_16BIT 1
446#define SMC_CAN_USE_32BIT 1
447#define SMC_NOWAIT 1
448
Magnus Dammd1c5ea32008-09-08 14:02:34 +0900449#define SMC_IO_SHIFT (lp->io_shift)
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451#define SMC_inb(a, r) readb((a) + (r))
452#define SMC_inw(a, r) readw((a) + (r))
453#define SMC_inl(a, r) readl((a) + (r))
454#define SMC_outb(v, a, r) writeb(v, (a) + (r))
455#define SMC_outw(v, a, r) writew(v, (a) + (r))
456#define SMC_outl(v, a, r) writel(v, (a) + (r))
Magnus Damm8a214c12008-02-22 19:55:24 +0900457#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
458#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
460#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
461
462#define RPC_LSA_DEFAULT RPC_LED_100_10
463#define RPC_LSB_DEFAULT RPC_LED_TX_RX
464
465#endif
466
Russell King073ac8f2007-09-01 21:27:18 +0100467
468/* store this information for the driver.. */
469struct smc_local {
470 /*
471 * If I have to wait until memory is available to send a
472 * packet, I will store the skbuff here, until I get the
473 * desired memory. Then, I'll send it out and free it.
474 */
475 struct sk_buff *pending_tx_skb;
476 struct tasklet_struct tx_task;
477
478 /* version/revision of the SMC91x chip */
479 int version;
480
481 /* Contains the current active transmission mode */
482 int tcr_cur_mode;
483
484 /* Contains the current active receive mode */
485 int rcr_cur_mode;
486
487 /* Contains the current active receive/phy mode */
488 int rpc_cur_mode;
489 int ctl_rfduplx;
490 int ctl_rspeed;
491
492 u32 msg_enable;
493 u32 phy_type;
494 struct mii_if_info mii;
495
496 /* work queue */
497 struct work_struct phy_configure;
498 struct net_device *dev;
499 int work_pending;
500
501 spinlock_t lock;
502
Eric Miao52256c02008-06-24 15:36:05 +0800503#ifdef CONFIG_ARCH_PXA
Russell King073ac8f2007-09-01 21:27:18 +0100504 /* DMA needs the physical address of the chip */
505 u_long physaddr;
506 struct device *device;
507#endif
508 void __iomem *base;
509 void __iomem *datacs;
Magnus Damm3e947942008-02-22 19:55:15 +0900510
Eric Miao15919882008-06-24 13:38:50 +0800511 /* the low address lines on some platforms aren't connected... */
512 int io_shift;
513
Magnus Damm3e947942008-02-22 19:55:15 +0900514 struct smc91x_platdata cfg;
Russell King073ac8f2007-09-01 21:27:18 +0100515};
516
Eric Miaofa6d3be2008-06-19 17:19:57 +0800517#define SMC_8BIT(p) ((p)->cfg.flags & SMC91X_USE_8BIT)
518#define SMC_16BIT(p) ((p)->cfg.flags & SMC91X_USE_16BIT)
519#define SMC_32BIT(p) ((p)->cfg.flags & SMC91X_USE_32BIT)
Russell King073ac8f2007-09-01 21:27:18 +0100520
Eric Miao52256c02008-06-24 15:36:05 +0800521#ifdef CONFIG_ARCH_PXA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522/*
523 * Let's use the DMA engine on the XScale PXA2xx for RX packets. This is
524 * always happening in irq context so no need to worry about races. TX is
525 * different and probably not worth it for that reason, and not as critical
526 * as RX which can overrun memory and lose packets.
527 */
528#include <linux/dma-mapping.h>
529#include <asm/dma.h>
Russell Kinga09e64f2008-08-05 16:14:15 +0100530#include <mach/pxa-regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532#ifdef SMC_insl
533#undef SMC_insl
534#define SMC_insl(a, r, p, l) \
Russell King073ac8f2007-09-01 21:27:18 +0100535 smc_pxa_dma_insl(a, lp, r, dev->dma, p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536static inline void
Russell King073ac8f2007-09-01 21:27:18 +0100537smc_pxa_dma_insl(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 u_char *buf, int len)
539{
Russell King073ac8f2007-09-01 21:27:18 +0100540 u_long physaddr = lp->physaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 dma_addr_t dmabuf;
542
543 /* fallback if no DMA available */
544 if (dma == (unsigned char)-1) {
545 readsl(ioaddr + reg, buf, len);
546 return;
547 }
548
549 /* 64 bit alignment is required for memory to memory DMA */
550 if ((long)buf & 4) {
551 *((u32 *)buf) = SMC_inl(ioaddr, reg);
552 buf += 4;
553 len--;
554 }
555
556 len *= 4;
Russell King073ac8f2007-09-01 21:27:18 +0100557 dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 DCSR(dma) = DCSR_NODESC;
559 DTADR(dma) = dmabuf;
560 DSADR(dma) = physaddr + reg;
561 DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
562 DCMD_WIDTH4 | (DCMD_LENGTH & len));
563 DCSR(dma) = DCSR_NODESC | DCSR_RUN;
564 while (!(DCSR(dma) & DCSR_STOPSTATE))
565 cpu_relax();
566 DCSR(dma) = 0;
Russell King073ac8f2007-09-01 21:27:18 +0100567 dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569#endif
570
571#ifdef SMC_insw
572#undef SMC_insw
573#define SMC_insw(a, r, p, l) \
Russell King073ac8f2007-09-01 21:27:18 +0100574 smc_pxa_dma_insw(a, lp, r, dev->dma, p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575static inline void
Russell King073ac8f2007-09-01 21:27:18 +0100576smc_pxa_dma_insw(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 u_char *buf, int len)
578{
Russell King073ac8f2007-09-01 21:27:18 +0100579 u_long physaddr = lp->physaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 dma_addr_t dmabuf;
581
582 /* fallback if no DMA available */
583 if (dma == (unsigned char)-1) {
584 readsw(ioaddr + reg, buf, len);
585 return;
586 }
587
588 /* 64 bit alignment is required for memory to memory DMA */
589 while ((long)buf & 6) {
590 *((u16 *)buf) = SMC_inw(ioaddr, reg);
591 buf += 2;
592 len--;
593 }
594
595 len *= 2;
Russell King073ac8f2007-09-01 21:27:18 +0100596 dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 DCSR(dma) = DCSR_NODESC;
598 DTADR(dma) = dmabuf;
599 DSADR(dma) = physaddr + reg;
600 DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
601 DCMD_WIDTH2 | (DCMD_LENGTH & len));
602 DCSR(dma) = DCSR_NODESC | DCSR_RUN;
603 while (!(DCSR(dma) & DCSR_STOPSTATE))
604 cpu_relax();
605 DCSR(dma) = 0;
Russell King073ac8f2007-09-01 21:27:18 +0100606 dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608#endif
609
610static void
David Howells7d12e782006-10-05 14:55:46 +0100611smc_pxa_dma_irq(int dma, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 DCSR(dma) = 0;
614}
Eric Miao52256c02008-06-24 15:36:05 +0800615#endif /* CONFIG_ARCH_PXA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617
Nicolas Pitre09779c62006-03-20 11:54:27 -0500618/*
619 * Everything a particular hardware setup needs should have been defined
620 * at this point. Add stubs for the undefined cases, mainly to avoid
621 * compilation warnings since they'll be optimized away, or to prevent buggy
622 * use of them.
623 */
624
625#if ! SMC_CAN_USE_32BIT
626#define SMC_inl(ioaddr, reg) ({ BUG(); 0; })
627#define SMC_outl(x, ioaddr, reg) BUG()
628#define SMC_insl(a, r, p, l) BUG()
629#define SMC_outsl(a, r, p, l) BUG()
630#endif
631
632#if !defined(SMC_insl) || !defined(SMC_outsl)
633#define SMC_insl(a, r, p, l) BUG()
634#define SMC_outsl(a, r, p, l) BUG()
635#endif
636
637#if ! SMC_CAN_USE_16BIT
638
639/*
640 * Any 16-bit access is performed with two 8-bit accesses if the hardware
641 * can't do it directly. Most registers are 16-bit so those are mandatory.
642 */
643#define SMC_outw(x, ioaddr, reg) \
644 do { \
645 unsigned int __val16 = (x); \
646 SMC_outb( __val16, ioaddr, reg ); \
647 SMC_outb( __val16 >> 8, ioaddr, reg + (1 << SMC_IO_SHIFT));\
648 } while (0)
649#define SMC_inw(ioaddr, reg) \
650 ({ \
651 unsigned int __val16; \
652 __val16 = SMC_inb( ioaddr, reg ); \
653 __val16 |= SMC_inb( ioaddr, reg + (1 << SMC_IO_SHIFT)) << 8; \
654 __val16; \
655 })
656
657#define SMC_insw(a, r, p, l) BUG()
658#define SMC_outsw(a, r, p, l) BUG()
659
660#endif
661
662#if !defined(SMC_insw) || !defined(SMC_outsw)
663#define SMC_insw(a, r, p, l) BUG()
664#define SMC_outsw(a, r, p, l) BUG()
665#endif
666
667#if ! SMC_CAN_USE_8BIT
668#define SMC_inb(ioaddr, reg) ({ BUG(); 0; })
669#define SMC_outb(x, ioaddr, reg) BUG()
670#define SMC_insb(a, r, p, l) BUG()
671#define SMC_outsb(a, r, p, l) BUG()
672#endif
673
674#if !defined(SMC_insb) || !defined(SMC_outsb)
675#define SMC_insb(a, r, p, l) BUG()
676#define SMC_outsb(a, r, p, l) BUG()
677#endif
678
679#ifndef SMC_CAN_USE_DATACS
680#define SMC_CAN_USE_DATACS 0
681#endif
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#ifndef SMC_IO_SHIFT
684#define SMC_IO_SHIFT 0
685#endif
Nicolas Pitre09779c62006-03-20 11:54:27 -0500686
687#ifndef SMC_IRQ_FLAGS
Thomas Gleixner1fb9df52006-07-01 19:29:39 -0700688#define SMC_IRQ_FLAGS IRQF_TRIGGER_RISING
Nicolas Pitre09779c62006-03-20 11:54:27 -0500689#endif
690
691#ifndef SMC_INTERRUPT_PREAMBLE
692#define SMC_INTERRUPT_PREAMBLE
693#endif
694
695
696/* Because of bank switching, the LAN91x uses only 16 I/O ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697#define SMC_IO_EXTENT (16 << SMC_IO_SHIFT)
698#define SMC_DATA_EXTENT (4)
699
700/*
701 . Bank Select Register:
702 .
703 . yyyy yyyy 0000 00xx
704 . xx = bank number
705 . yyyy yyyy = 0x33, for identification purposes.
706*/
707#define BANK_SELECT (14 << SMC_IO_SHIFT)
708
709
710// Transmit Control Register
711/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900712#define TCR_REG(lp) SMC_REG(lp, 0x0000, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713#define TCR_ENABLE 0x0001 // When 1 we can transmit
714#define TCR_LOOP 0x0002 // Controls output pin LBK
715#define TCR_FORCOL 0x0004 // When 1 will force a collision
716#define TCR_PAD_EN 0x0080 // When 1 will pad tx frames < 64 bytes w/0
717#define TCR_NOCRC 0x0100 // When 1 will not append CRC to tx frames
718#define TCR_MON_CSN 0x0400 // When 1 tx monitors carrier
719#define TCR_FDUPLX 0x0800 // When 1 enables full duplex operation
720#define TCR_STP_SQET 0x1000 // When 1 stops tx if Signal Quality Error
721#define TCR_EPH_LOOP 0x2000 // When 1 enables EPH block loopback
722#define TCR_SWFDUP 0x8000 // When 1 enables Switched Full Duplex mode
723
724#define TCR_CLEAR 0 /* do NOTHING */
725/* the default settings for the TCR register : */
726#define TCR_DEFAULT (TCR_ENABLE | TCR_PAD_EN)
727
728
729// EPH Status Register
730/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900731#define EPH_STATUS_REG(lp) SMC_REG(lp, 0x0002, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#define ES_TX_SUC 0x0001 // Last TX was successful
733#define ES_SNGL_COL 0x0002 // Single collision detected for last tx
734#define ES_MUL_COL 0x0004 // Multiple collisions detected for last tx
735#define ES_LTX_MULT 0x0008 // Last tx was a multicast
736#define ES_16COL 0x0010 // 16 Collisions Reached
737#define ES_SQET 0x0020 // Signal Quality Error Test
738#define ES_LTXBRD 0x0040 // Last tx was a broadcast
739#define ES_TXDEFR 0x0080 // Transmit Deferred
740#define ES_LATCOL 0x0200 // Late collision detected on last tx
741#define ES_LOSTCARR 0x0400 // Lost Carrier Sense
742#define ES_EXC_DEF 0x0800 // Excessive Deferral
743#define ES_CTR_ROL 0x1000 // Counter Roll Over indication
744#define ES_LINK_OK 0x4000 // Driven by inverted value of nLNK pin
745#define ES_TXUNRN 0x8000 // Tx Underrun
746
747
748// Receive Control Register
749/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900750#define RCR_REG(lp) SMC_REG(lp, 0x0004, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751#define RCR_RX_ABORT 0x0001 // Set if a rx frame was aborted
752#define RCR_PRMS 0x0002 // Enable promiscuous mode
753#define RCR_ALMUL 0x0004 // When set accepts all multicast frames
754#define RCR_RXEN 0x0100 // IFF this is set, we can receive packets
755#define RCR_STRIP_CRC 0x0200 // When set strips CRC from rx packets
756#define RCR_ABORT_ENB 0x0200 // When set will abort rx on collision
757#define RCR_FILT_CAR 0x0400 // When set filters leading 12 bit s of carrier
758#define RCR_SOFTRST 0x8000 // resets the chip
759
760/* the normal settings for the RCR register : */
761#define RCR_DEFAULT (RCR_STRIP_CRC | RCR_RXEN)
762#define RCR_CLEAR 0x0 // set it to a base state
763
764
765// Counter Register
766/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900767#define COUNTER_REG(lp) SMC_REG(lp, 0x0006, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769
770// Memory Information Register
771/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900772#define MIR_REG(lp) SMC_REG(lp, 0x0008, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774
775// Receive/Phy Control Register
776/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900777#define RPC_REG(lp) SMC_REG(lp, 0x000A, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778#define RPC_SPEED 0x2000 // When 1 PHY is in 100Mbps mode.
779#define RPC_DPLX 0x1000 // When 1 PHY is in Full-Duplex Mode
780#define RPC_ANEG 0x0800 // When 1 PHY is in Auto-Negotiate Mode
781#define RPC_LSXA_SHFT 5 // Bits to shift LS2A,LS1A,LS0A to lsb
782#define RPC_LSXB_SHFT 2 // Bits to get LS2B,LS1B,LS0B to lsb
783#define RPC_LED_100_10 (0x00) // LED = 100Mbps OR's with 10Mbps link detect
784#define RPC_LED_RES (0x01) // LED = Reserved
785#define RPC_LED_10 (0x02) // LED = 10Mbps link detect
786#define RPC_LED_FD (0x03) // LED = Full Duplex Mode
787#define RPC_LED_TX_RX (0x04) // LED = TX or RX packet occurred
788#define RPC_LED_100 (0x05) // LED = 100Mbps link dectect
789#define RPC_LED_TX (0x06) // LED = TX packet occurred
790#define RPC_LED_RX (0x07) // LED = RX packet occurred
791
792#ifndef RPC_LSA_DEFAULT
793#define RPC_LSA_DEFAULT RPC_LED_100
794#endif
795#ifndef RPC_LSB_DEFAULT
796#define RPC_LSB_DEFAULT RPC_LED_FD
797#endif
798
799#define RPC_DEFAULT (RPC_ANEG | (RPC_LSA_DEFAULT << RPC_LSXA_SHFT) | (RPC_LSB_DEFAULT << RPC_LSXB_SHFT) | RPC_SPEED | RPC_DPLX)
800
801
802/* Bank 0 0x0C is reserved */
803
804// Bank Select Register
805/* All Banks */
806#define BSR_REG 0x000E
807
808
809// Configuration Reg
810/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900811#define CONFIG_REG(lp) SMC_REG(lp, 0x0000, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812#define CONFIG_EXT_PHY 0x0200 // 1=external MII, 0=internal Phy
813#define CONFIG_GPCNTRL 0x0400 // Inverse value drives pin nCNTRL
814#define CONFIG_NO_WAIT 0x1000 // When 1 no extra wait states on ISA bus
815#define CONFIG_EPH_POWER_EN 0x8000 // When 0 EPH is placed into low power mode.
816
817// Default is powered-up, Internal Phy, Wait States, and pin nCNTRL=low
818#define CONFIG_DEFAULT (CONFIG_EPH_POWER_EN)
819
820
821// Base Address Register
822/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900823#define BASE_REG(lp) SMC_REG(lp, 0x0002, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825
826// Individual Address Registers
827/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900828#define ADDR0_REG(lp) SMC_REG(lp, 0x0004, 1)
829#define ADDR1_REG(lp) SMC_REG(lp, 0x0006, 1)
830#define ADDR2_REG(lp) SMC_REG(lp, 0x0008, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832
833// General Purpose Register
834/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900835#define GP_REG(lp) SMC_REG(lp, 0x000A, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837
838// Control Register
839/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900840#define CTL_REG(lp) SMC_REG(lp, 0x000C, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841#define CTL_RCV_BAD 0x4000 // When 1 bad CRC packets are received
842#define CTL_AUTO_RELEASE 0x0800 // When 1 tx pages are released automatically
843#define CTL_LE_ENABLE 0x0080 // When 1 enables Link Error interrupt
844#define CTL_CR_ENABLE 0x0040 // When 1 enables Counter Rollover interrupt
845#define CTL_TE_ENABLE 0x0020 // When 1 enables Transmit Error interrupt
846#define CTL_EEPROM_SELECT 0x0004 // Controls EEPROM reload & store
847#define CTL_RELOAD 0x0002 // When set reads EEPROM into registers
848#define CTL_STORE 0x0001 // When set stores registers into EEPROM
849
850
851// MMU Command Register
852/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900853#define MMU_CMD_REG(lp) SMC_REG(lp, 0x0000, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854#define MC_BUSY 1 // When 1 the last release has not completed
855#define MC_NOP (0<<5) // No Op
856#define MC_ALLOC (1<<5) // OR with number of 256 byte packets
857#define MC_RESET (2<<5) // Reset MMU to initial state
858#define MC_REMOVE (3<<5) // Remove the current rx packet
859#define MC_RELEASE (4<<5) // Remove and release the current rx packet
860#define MC_FREEPKT (5<<5) // Release packet in PNR register
861#define MC_ENQUEUE (6<<5) // Enqueue the packet for transmit
862#define MC_RSTTXFIFO (7<<5) // Reset the TX FIFOs
863
864
865// Packet Number Register
866/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900867#define PN_REG(lp) SMC_REG(lp, 0x0002, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869
870// Allocation Result Register
871/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900872#define AR_REG(lp) SMC_REG(lp, 0x0003, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873#define AR_FAILED 0x80 // Alocation Failed
874
875
876// TX FIFO Ports Register
877/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900878#define TXFIFO_REG(lp) SMC_REG(lp, 0x0004, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879#define TXFIFO_TEMPTY 0x80 // TX FIFO Empty
880
881// RX FIFO Ports Register
882/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900883#define RXFIFO_REG(lp) SMC_REG(lp, 0x0005, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884#define RXFIFO_REMPTY 0x80 // RX FIFO Empty
885
Magnus Dammcfdfa862008-02-22 19:55:05 +0900886#define FIFO_REG(lp) SMC_REG(lp, 0x0004, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888// Pointer Register
889/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900890#define PTR_REG(lp) SMC_REG(lp, 0x0006, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891#define PTR_RCV 0x8000 // 1=Receive area, 0=Transmit area
892#define PTR_AUTOINC 0x4000 // Auto increment the pointer on each access
893#define PTR_READ 0x2000 // When 1 the operation is a read
894
895
896// Data Register
897/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900898#define DATA_REG(lp) SMC_REG(lp, 0x0008, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900
901// Interrupt Status/Acknowledge Register
902/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900903#define INT_REG(lp) SMC_REG(lp, 0x000C, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905
906// Interrupt Mask Register
907/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900908#define IM_REG(lp) SMC_REG(lp, 0x000D, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909#define IM_MDINT 0x80 // PHY MI Register 18 Interrupt
910#define IM_ERCV_INT 0x40 // Early Receive Interrupt
911#define IM_EPH_INT 0x20 // Set by Ethernet Protocol Handler section
912#define IM_RX_OVRN_INT 0x10 // Set by Receiver Overruns
913#define IM_ALLOC_INT 0x08 // Set when allocation request is completed
914#define IM_TX_EMPTY_INT 0x04 // Set if the TX FIFO goes empty
915#define IM_TX_INT 0x02 // Transmit Interrupt
916#define IM_RCV_INT 0x01 // Receive Interrupt
917
918
919// Multicast Table Registers
920/* BANK 3 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900921#define MCAST_REG1(lp) SMC_REG(lp, 0x0000, 3)
922#define MCAST_REG2(lp) SMC_REG(lp, 0x0002, 3)
923#define MCAST_REG3(lp) SMC_REG(lp, 0x0004, 3)
924#define MCAST_REG4(lp) SMC_REG(lp, 0x0006, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926
927// Management Interface Register (MII)
928/* BANK 3 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900929#define MII_REG(lp) SMC_REG(lp, 0x0008, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930#define MII_MSK_CRS100 0x4000 // Disables CRS100 detection during tx half dup
931#define MII_MDOE 0x0008 // MII Output Enable
932#define MII_MCLK 0x0004 // MII Clock, pin MDCLK
933#define MII_MDI 0x0002 // MII Input, pin MDI
934#define MII_MDO 0x0001 // MII Output, pin MDO
935
936
937// Revision Register
938/* BANK 3 */
939/* ( hi: chip id low: rev # ) */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900940#define REV_REG(lp) SMC_REG(lp, 0x000A, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942
943// Early RCV Register
944/* BANK 3 */
945/* this is NOT on SMC9192 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900946#define ERCV_REG(lp) SMC_REG(lp, 0x000C, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947#define ERCV_RCV_DISCRD 0x0080 // When 1 discards a packet being received
948#define ERCV_THRESHOLD 0x001F // ERCV Threshold Mask
949
950
951// External Register
952/* BANK 7 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900953#define EXT_REG(lp) SMC_REG(lp, 0x0000, 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955
956#define CHIP_9192 3
957#define CHIP_9194 4
958#define CHIP_9195 5
959#define CHIP_9196 6
960#define CHIP_91100 7
961#define CHIP_91100FD 8
962#define CHIP_91111FD 9
963
964static const char * chip_ids[ 16 ] = {
965 NULL, NULL, NULL,
966 /* 3 */ "SMC91C90/91C92",
967 /* 4 */ "SMC91C94",
968 /* 5 */ "SMC91C95",
969 /* 6 */ "SMC91C96",
970 /* 7 */ "SMC91C100",
971 /* 8 */ "SMC91C100FD",
972 /* 9 */ "SMC91C11xFD",
973 NULL, NULL, NULL,
974 NULL, NULL, NULL};
975
976
977/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 . Receive status bits
979*/
980#define RS_ALGNERR 0x8000
981#define RS_BRODCAST 0x4000
982#define RS_BADCRC 0x2000
983#define RS_ODDFRAME 0x1000
984#define RS_TOOLONG 0x0800
985#define RS_TOOSHORT 0x0400
986#define RS_MULTICAST 0x0001
987#define RS_ERRORS (RS_ALGNERR | RS_BADCRC | RS_TOOLONG | RS_TOOSHORT)
988
989
990/*
991 * PHY IDs
992 * LAN83C183 == LAN91C111 Internal PHY
993 */
994#define PHY_LAN83C183 0x0016f840
995#define PHY_LAN83C180 0x02821c50
996
997/*
998 * PHY Register Addresses (LAN91C111 Internal PHY)
999 *
1000 * Generic PHY registers can be found in <linux/mii.h>
1001 *
1002 * These phy registers are specific to our on-board phy.
1003 */
1004
1005// PHY Configuration Register 1
1006#define PHY_CFG1_REG 0x10
1007#define PHY_CFG1_LNKDIS 0x8000 // 1=Rx Link Detect Function disabled
1008#define PHY_CFG1_XMTDIS 0x4000 // 1=TP Transmitter Disabled
1009#define PHY_CFG1_XMTPDN 0x2000 // 1=TP Transmitter Powered Down
1010#define PHY_CFG1_BYPSCR 0x0400 // 1=Bypass scrambler/descrambler
1011#define PHY_CFG1_UNSCDS 0x0200 // 1=Unscramble Idle Reception Disable
1012#define PHY_CFG1_EQLZR 0x0100 // 1=Rx Equalizer Disabled
1013#define PHY_CFG1_CABLE 0x0080 // 1=STP(150ohm), 0=UTP(100ohm)
1014#define PHY_CFG1_RLVL0 0x0040 // 1=Rx Squelch level reduced by 4.5db
1015#define PHY_CFG1_TLVL_SHIFT 2 // Transmit Output Level Adjust
1016#define PHY_CFG1_TLVL_MASK 0x003C
1017#define PHY_CFG1_TRF_MASK 0x0003 // Transmitter Rise/Fall time
1018
1019
1020// PHY Configuration Register 2
1021#define PHY_CFG2_REG 0x11
1022#define PHY_CFG2_APOLDIS 0x0020 // 1=Auto Polarity Correction disabled
1023#define PHY_CFG2_JABDIS 0x0010 // 1=Jabber disabled
1024#define PHY_CFG2_MREG 0x0008 // 1=Multiple register access (MII mgt)
1025#define PHY_CFG2_INTMDIO 0x0004 // 1=Interrupt signaled with MDIO pulseo
1026
1027// PHY Status Output (and Interrupt status) Register
1028#define PHY_INT_REG 0x12 // Status Output (Interrupt Status)
1029#define PHY_INT_INT 0x8000 // 1=bits have changed since last read
1030#define PHY_INT_LNKFAIL 0x4000 // 1=Link Not detected
1031#define PHY_INT_LOSSSYNC 0x2000 // 1=Descrambler has lost sync
1032#define PHY_INT_CWRD 0x1000 // 1=Invalid 4B5B code detected on rx
1033#define PHY_INT_SSD 0x0800 // 1=No Start Of Stream detected on rx
1034#define PHY_INT_ESD 0x0400 // 1=No End Of Stream detected on rx
1035#define PHY_INT_RPOL 0x0200 // 1=Reverse Polarity detected
1036#define PHY_INT_JAB 0x0100 // 1=Jabber detected
1037#define PHY_INT_SPDDET 0x0080 // 1=100Base-TX mode, 0=10Base-T mode
1038#define PHY_INT_DPLXDET 0x0040 // 1=Device in Full Duplex
1039
1040// PHY Interrupt/Status Mask Register
1041#define PHY_MASK_REG 0x13 // Interrupt Mask
1042// Uses the same bit definitions as PHY_INT_REG
1043
1044
1045/*
1046 * SMC91C96 ethernet config and status registers.
1047 * These are in the "attribute" space.
1048 */
1049#define ECOR 0x8000
1050#define ECOR_RESET 0x80
1051#define ECOR_LEVEL_IRQ 0x40
1052#define ECOR_WR_ATTRIB 0x04
1053#define ECOR_ENABLE 0x01
1054
1055#define ECSR 0x8002
1056#define ECSR_IOIS8 0x20
1057#define ECSR_PWRDWN 0x04
1058#define ECSR_INT 0x02
1059
1060#define ATTRIB_SIZE ((64*1024) << SMC_IO_SHIFT)
1061
1062
1063/*
1064 * Macros to abstract register access according to the data bus
1065 * capabilities. Please use those and not the in/out primitives.
1066 * Note: the following macros do *not* select the bank -- this must
1067 * be done separately as needed in the main code. The SMC_REG() macro
1068 * only uses the bank argument for debugging purposes (when enabled).
Nicolas Pitre09779c62006-03-20 11:54:27 -05001069 *
1070 * Note: despite inline functions being safer, everything leading to this
1071 * should preferably be macros to let BUG() display the line number in
1072 * the core source code since we're interested in the top call site
1073 * not in any inline function location.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 */
1075
1076#if SMC_DEBUG > 0
Magnus Dammcfdfa862008-02-22 19:55:05 +09001077#define SMC_REG(lp, reg, bank) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 ({ \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001079 int __b = SMC_CURRENT_BANK(lp); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (unlikely((__b & ~0xf0) != (0x3300 | bank))) { \
1081 printk( "%s: bank reg screwed (0x%04x)\n", \
1082 CARDNAME, __b ); \
1083 BUG(); \
1084 } \
1085 reg<<SMC_IO_SHIFT; \
1086 })
1087#else
Magnus Dammcfdfa862008-02-22 19:55:05 +09001088#define SMC_REG(lp, reg, bank) (reg<<SMC_IO_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089#endif
1090
Nicolas Pitre09779c62006-03-20 11:54:27 -05001091/*
1092 * Hack Alert: Some setups just can't write 8 or 16 bits reliably when not
1093 * aligned to a 32 bit boundary. I tell you that does exist!
1094 * Fortunately the affected register accesses can be easily worked around
1095 * since we can write zeroes to the preceeding 16 bits without adverse
1096 * effects and use a 32-bit access.
1097 *
1098 * Enforce it on any 32-bit capable setup for now.
1099 */
Magnus Damm3e947942008-02-22 19:55:15 +09001100#define SMC_MUST_ALIGN_WRITE(lp) SMC_32BIT(lp)
Nicolas Pitre09779c62006-03-20 11:54:27 -05001101
Magnus Dammcfdfa862008-02-22 19:55:05 +09001102#define SMC_GET_PN(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001103 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, PN_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001104 : (SMC_inw(ioaddr, PN_REG(lp)) & 0xFF))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001105
Magnus Dammcfdfa862008-02-22 19:55:05 +09001106#define SMC_SET_PN(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001107 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001108 if (SMC_MUST_ALIGN_WRITE(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001109 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 0, 2)); \
Magnus Damm3e947942008-02-22 19:55:15 +09001110 else if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001111 SMC_outb(x, ioaddr, PN_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001112 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001113 SMC_outw(x, ioaddr, PN_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001114 } while (0)
1115
Magnus Dammcfdfa862008-02-22 19:55:05 +09001116#define SMC_GET_AR(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001117 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, AR_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001118 : (SMC_inw(ioaddr, PN_REG(lp)) >> 8))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001119
Magnus Dammcfdfa862008-02-22 19:55:05 +09001120#define SMC_GET_TXFIFO(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001121 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, TXFIFO_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001122 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) & 0xFF))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001123
Magnus Dammcfdfa862008-02-22 19:55:05 +09001124#define SMC_GET_RXFIFO(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001125 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, RXFIFO_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001126 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) >> 8))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001127
Magnus Dammcfdfa862008-02-22 19:55:05 +09001128#define SMC_GET_INT(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001129 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, INT_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001130 : (SMC_inw(ioaddr, INT_REG(lp)) & 0xFF))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001131
Magnus Dammcfdfa862008-02-22 19:55:05 +09001132#define SMC_ACK_INT(lp, x) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001134 if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001135 SMC_outb(x, ioaddr, INT_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001136 else { \
1137 unsigned long __flags; \
1138 int __mask; \
1139 local_irq_save(__flags); \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001140 __mask = SMC_inw(ioaddr, INT_REG(lp)) & ~0xff; \
1141 SMC_outw(__mask | (x), ioaddr, INT_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001142 local_irq_restore(__flags); \
1143 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Magnus Dammcfdfa862008-02-22 19:55:05 +09001146#define SMC_GET_INT_MASK(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +09001147 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, IM_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001148 : (SMC_inw(ioaddr, INT_REG(lp)) >> 8))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001149
Magnus Dammcfdfa862008-02-22 19:55:05 +09001150#define SMC_SET_INT_MASK(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001151 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001152 if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001153 SMC_outb(x, ioaddr, IM_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001154 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001155 SMC_outw((x) << 8, ioaddr, INT_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001156 } while (0)
1157
Magnus Dammcfdfa862008-02-22 19:55:05 +09001158#define SMC_CURRENT_BANK(lp) SMC_inw(ioaddr, BANK_SELECT)
Nicolas Pitre09779c62006-03-20 11:54:27 -05001159
Magnus Dammcfdfa862008-02-22 19:55:05 +09001160#define SMC_SELECT_BANK(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001161 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001162 if (SMC_MUST_ALIGN_WRITE(lp)) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001163 SMC_outl((x)<<16, ioaddr, 12<<SMC_IO_SHIFT); \
1164 else \
1165 SMC_outw(x, ioaddr, BANK_SELECT); \
1166 } while (0)
1167
Magnus Dammcfdfa862008-02-22 19:55:05 +09001168#define SMC_GET_BASE(lp) SMC_inw(ioaddr, BASE_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001169
Magnus Dammcfdfa862008-02-22 19:55:05 +09001170#define SMC_SET_BASE(lp, x) SMC_outw(x, ioaddr, BASE_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001171
Magnus Dammcfdfa862008-02-22 19:55:05 +09001172#define SMC_GET_CONFIG(lp) SMC_inw(ioaddr, CONFIG_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001173
Magnus Dammcfdfa862008-02-22 19:55:05 +09001174#define SMC_SET_CONFIG(lp, x) SMC_outw(x, ioaddr, CONFIG_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001175
Magnus Dammcfdfa862008-02-22 19:55:05 +09001176#define SMC_GET_COUNTER(lp) SMC_inw(ioaddr, COUNTER_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001177
Magnus Dammcfdfa862008-02-22 19:55:05 +09001178#define SMC_GET_CTL(lp) SMC_inw(ioaddr, CTL_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001179
Magnus Dammcfdfa862008-02-22 19:55:05 +09001180#define SMC_SET_CTL(lp, x) SMC_outw(x, ioaddr, CTL_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001181
Magnus Dammcfdfa862008-02-22 19:55:05 +09001182#define SMC_GET_MII(lp) SMC_inw(ioaddr, MII_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001183
Magnus Dammcfdfa862008-02-22 19:55:05 +09001184#define SMC_SET_MII(lp, x) SMC_outw(x, ioaddr, MII_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001185
Magnus Dammcfdfa862008-02-22 19:55:05 +09001186#define SMC_GET_MIR(lp) SMC_inw(ioaddr, MIR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001187
Magnus Dammcfdfa862008-02-22 19:55:05 +09001188#define SMC_SET_MIR(lp, x) SMC_outw(x, ioaddr, MIR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001189
Magnus Dammcfdfa862008-02-22 19:55:05 +09001190#define SMC_GET_MMU_CMD(lp) SMC_inw(ioaddr, MMU_CMD_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001191
Magnus Dammcfdfa862008-02-22 19:55:05 +09001192#define SMC_SET_MMU_CMD(lp, x) SMC_outw(x, ioaddr, MMU_CMD_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001193
Magnus Dammcfdfa862008-02-22 19:55:05 +09001194#define SMC_GET_FIFO(lp) SMC_inw(ioaddr, FIFO_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001195
Magnus Dammcfdfa862008-02-22 19:55:05 +09001196#define SMC_GET_PTR(lp) SMC_inw(ioaddr, PTR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001197
Magnus Dammcfdfa862008-02-22 19:55:05 +09001198#define SMC_SET_PTR(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001199 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001200 if (SMC_MUST_ALIGN_WRITE(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001201 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 4, 2)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001202 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001203 SMC_outw(x, ioaddr, PTR_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001204 } while (0)
1205
Magnus Dammcfdfa862008-02-22 19:55:05 +09001206#define SMC_GET_EPH_STATUS(lp) SMC_inw(ioaddr, EPH_STATUS_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001207
Magnus Dammcfdfa862008-02-22 19:55:05 +09001208#define SMC_GET_RCR(lp) SMC_inw(ioaddr, RCR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001209
Magnus Dammcfdfa862008-02-22 19:55:05 +09001210#define SMC_SET_RCR(lp, x) SMC_outw(x, ioaddr, RCR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001211
Magnus Dammcfdfa862008-02-22 19:55:05 +09001212#define SMC_GET_REV(lp) SMC_inw(ioaddr, REV_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001213
Magnus Dammcfdfa862008-02-22 19:55:05 +09001214#define SMC_GET_RPC(lp) SMC_inw(ioaddr, RPC_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001215
Magnus Dammcfdfa862008-02-22 19:55:05 +09001216#define SMC_SET_RPC(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001217 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001218 if (SMC_MUST_ALIGN_WRITE(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001219 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 8, 0)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001220 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001221 SMC_outw(x, ioaddr, RPC_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001222 } while (0)
1223
Magnus Dammcfdfa862008-02-22 19:55:05 +09001224#define SMC_GET_TCR(lp) SMC_inw(ioaddr, TCR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001225
Magnus Dammcfdfa862008-02-22 19:55:05 +09001226#define SMC_SET_TCR(lp, x) SMC_outw(x, ioaddr, TCR_REG(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228#ifndef SMC_GET_MAC_ADDR
Magnus Dammcfdfa862008-02-22 19:55:05 +09001229#define SMC_GET_MAC_ADDR(lp, addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 do { \
1231 unsigned int __v; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001232 __v = SMC_inw(ioaddr, ADDR0_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 addr[0] = __v; addr[1] = __v >> 8; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001234 __v = SMC_inw(ioaddr, ADDR1_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 addr[2] = __v; addr[3] = __v >> 8; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001236 __v = SMC_inw(ioaddr, ADDR2_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 addr[4] = __v; addr[5] = __v >> 8; \
1238 } while (0)
1239#endif
1240
Magnus Dammcfdfa862008-02-22 19:55:05 +09001241#define SMC_SET_MAC_ADDR(lp, addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 do { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001243 SMC_outw(addr[0]|(addr[1] << 8), ioaddr, ADDR0_REG(lp)); \
1244 SMC_outw(addr[2]|(addr[3] << 8), ioaddr, ADDR1_REG(lp)); \
1245 SMC_outw(addr[4]|(addr[5] << 8), ioaddr, ADDR2_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 } while (0)
1247
Magnus Dammcfdfa862008-02-22 19:55:05 +09001248#define SMC_SET_MCAST(lp, x) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 do { \
1250 const unsigned char *mt = (x); \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001251 SMC_outw(mt[0] | (mt[1] << 8), ioaddr, MCAST_REG1(lp)); \
1252 SMC_outw(mt[2] | (mt[3] << 8), ioaddr, MCAST_REG2(lp)); \
1253 SMC_outw(mt[4] | (mt[5] << 8), ioaddr, MCAST_REG3(lp)); \
1254 SMC_outw(mt[6] | (mt[7] << 8), ioaddr, MCAST_REG4(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 } while (0)
1256
Magnus Dammcfdfa862008-02-22 19:55:05 +09001257#define SMC_PUT_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 SMC_outl((status) | (length)<<16, ioaddr, \
1261 DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001262 else { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001263 SMC_outw(status, ioaddr, DATA_REG(lp)); \
1264 SMC_outw(length, ioaddr, DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001265 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 } while (0)
Nicolas Pitre09779c62006-03-20 11:54:27 -05001267
Magnus Dammcfdfa862008-02-22 19:55:05 +09001268#define SMC_GET_PKT_HDR(lp, status, length) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001270 if (SMC_32BIT(lp)) { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001271 unsigned int __val = SMC_inl(ioaddr, DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001272 (status) = __val & 0xffff; \
1273 (length) = __val >> 16; \
1274 } else { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001275 (status) = SMC_inw(ioaddr, DATA_REG(lp)); \
1276 (length) = SMC_inw(ioaddr, DATA_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 } \
1278 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Magnus Dammcfdfa862008-02-22 19:55:05 +09001280#define SMC_PUSH_DATA(lp, p, l) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001281 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001282 if (SMC_32BIT(lp)) { \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001283 void *__ptr = (p); \
1284 int __len = (l); \
Al Virofbd81972006-05-30 23:58:25 -04001285 void __iomem *__ioaddr = ioaddr; \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001286 if (__len >= 2 && (unsigned long)__ptr & 2) { \
1287 __len -= 2; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001288 SMC_outw(*(u16 *)__ptr, ioaddr, \
1289 DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001290 __ptr += 2; \
1291 } \
1292 if (SMC_CAN_USE_DATACS && lp->datacs) \
1293 __ioaddr = lp->datacs; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001294 SMC_outsl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001295 if (__len & 2) { \
1296 __ptr += (__len & ~3); \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001297 SMC_outw(*((u16 *)__ptr), ioaddr, \
1298 DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001299 } \
Magnus Damm3e947942008-02-22 19:55:15 +09001300 } else if (SMC_16BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001301 SMC_outsw(ioaddr, DATA_REG(lp), p, (l) >> 1); \
Magnus Damm3e947942008-02-22 19:55:15 +09001302 else if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001303 SMC_outsb(ioaddr, DATA_REG(lp), p, l); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001304 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Magnus Dammcfdfa862008-02-22 19:55:05 +09001306#define SMC_PULL_DATA(lp, p, l) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001307 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001308 if (SMC_32BIT(lp)) { \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001309 void *__ptr = (p); \
1310 int __len = (l); \
Al Virofbd81972006-05-30 23:58:25 -04001311 void __iomem *__ioaddr = ioaddr; \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001312 if ((unsigned long)__ptr & 2) { \
1313 /* \
1314 * We want 32bit alignment here. \
1315 * Since some buses perform a full \
1316 * 32bit fetch even for 16bit data \
1317 * we can't use SMC_inw() here. \
1318 * Back both source (on-chip) and \
1319 * destination pointers of 2 bytes. \
1320 * This is possible since the call to \
1321 * SMC_GET_PKT_HDR() already advanced \
1322 * the source pointer of 4 bytes, and \
1323 * the skb_reserve(skb, 2) advanced \
1324 * the destination pointer of 2 bytes. \
1325 */ \
1326 __ptr -= 2; \
1327 __len += 2; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001328 SMC_SET_PTR(lp, \
1329 2|PTR_READ|PTR_RCV|PTR_AUTOINC); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001330 } \
1331 if (SMC_CAN_USE_DATACS && lp->datacs) \
1332 __ioaddr = lp->datacs; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 __len += 2; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001334 SMC_insl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
Magnus Damm3e947942008-02-22 19:55:15 +09001335 } else if (SMC_16BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001336 SMC_insw(ioaddr, DATA_REG(lp), p, (l) >> 1); \
Magnus Damm3e947942008-02-22 19:55:15 +09001337 else if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001338 SMC_insb(ioaddr, DATA_REG(lp), p, l); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001339 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341#endif /* _SMC91X_H_ */