[NET] smc91x: prepare SMC_USE_PXA_DMA to be specified in platform data
[deliverable/linux.git] / drivers / net / smc91x.h
CommitLineData
1da177e4
LT
1/*------------------------------------------------------------------------
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
3e947943 37#include <linux/smc91x.h>
1da177e4
LT
38
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)
e7b3dc7e 58#define SMC_IRQ_FLAGS (-1) /* from resource */
1da177e4 59
95af9feb 60#elif defined(CONFIG_BLACKFIN)
0851a284
WB
61
62#define SMC_IRQ_FLAGS IRQF_TRIGGER_HIGH
c5760abd
JCR
63#define RPC_LSA_DEFAULT RPC_LED_100_10
64#define RPC_LSB_DEFAULT RPC_LED_TX_RX
0851a284
WB
65
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 */
7427d8b8 96#define SMC_GET_MAC_ADDR(lp, addr) \
0851a284
WB
97 do { \
98 unsigned int __v; \
7427d8b8 99 __v = SMC_inw(ioaddr, ADDR0_REG(lp)); \
0851a284 100 addr[0] = __v; addr[1] = __v >> 8; \
7427d8b8 101 __v = SMC_inw(ioaddr, ADDR1_REG(lp)); \
0851a284 102 addr[2] = __v; addr[3] = __v >> 8; \
7427d8b8 103 __v = SMC_inw(ioaddr, ADDR2_REG(lp)); \
0851a284
WB
104 addr[4] = __v; addr[5] = __v >> 8; \
105 if (*(u32 *)(&addr[0]) == 0xFFFFFFFF) { \
106 random_ether_addr(addr); \
107 } \
108 } while (0)
1da177e4
LT
109#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)
9ded96f2 144#define SMC_IRQ_FLAGS (0)
1da177e4
LT
145
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
1cf99be5
RK
154#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)
1da177e4 162
e7b3dc7e 163#define SMC_IRQ_FLAGS (-1)
1da177e4
LT
164
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))
e7b3dc7e 182#define SMC_IRQ_FLAGS (-1) /* from resource */
1da177e4 183
b0348b90
LB
184#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
b0348b90 191
b0348b90 192#define SMC_inw(a, r) readw((a) + (r))
b0348b90 193#define SMC_outw(v, a, r) writew(v, (a) + (r))
b0348b90
LB
194#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
1da177e4
LT
197#elif defined(CONFIG_ARCH_INNOKOM) || \
198 defined(CONFIG_MACH_MAINSTONE) || \
199 defined(CONFIG_ARCH_PXA_IDP) || \
4f15a980
RS
200 defined(CONFIG_ARCH_RAMSES) || \
201 defined(CONFIG_ARCH_PCM027)
1da177e4
LT
202
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)
e7b3dc7e 217#define SMC_IRQ_FLAGS (-1) /* from resource */
1da177e4
LT
218
219/* We actually can't write halfwords properly if not word aligned */
220static inline void
eb1d6988 221SMC_outw(u16 val, void __iomem *ioaddr, int reg)
1da177e4
LT
222{
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
7c826a0b 232#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))
e7b3dc7e 246#define SMC_IRQ_FLAGS (-1) /* from resource */
7c826a0b 247
1da177e4
LT
248#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
1da177e4
LT
257#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)
e7b3dc7e 261#define SMC_IRQ_FLAGS (-1) /* from resource */
5f13e7ec 262
1da177e4
LT
263#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
9ded96f2 280#define SMC_IRQ_FLAGS (0)
1da177e4
LT
281
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
59dc76a4 301#define SMC_inb(a, r) inb(((u32)a) + (r))
f3ac9fbf
HT
302#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)
1da177e4 307
9ded96f2 308#define SMC_IRQ_FLAGS (0)
1da177e4
LT
309
310#define RPC_LSA_DEFAULT RPC_LED_TX_RX
311#define RPC_LSB_DEFAULT RPC_LED_100_10
312
d4adcffb
MS
313#elif defined(CONFIG_MACH_LPD79520) \
314 || defined(CONFIG_MACH_LPD7A400) \
315 || defined(CONFIG_MACH_LPD7A404)
1da177e4 316
d4adcffb
MS
317/* 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
1da177e4 320 * Documentation/arm/Sharp-LH/IOBarrier for details. The read from
d4adcffb
MS
321 * 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.
1da177e4
LT
324 *
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
d4adcffb 342#define LPD7X_IOBARRIER readb (IOBARRIER_VIRT)
1da177e4 343
d4adcffb
MS
344#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; })
1da177e4 347
d4adcffb
MS
348#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}
09779c6d 358
d4adcffb
MS
359#define SMC_outsw LPD7_SMC_outsw
360static inline void LPD7_SMC_outsw (unsigned char* a, int r,
361 unsigned char* p, int l)
1da177e4
LT
362{
363 unsigned short* ps = (unsigned short*) p;
364 while (l-- > 0) {
365 writew (*ps++, a + r);
d4adcffb 366 LPD7X_IOBARRIER;
1da177e4
LT
367 }
368}
369
d4adcffb 370#define SMC_INTERRUPT_PREAMBLE LPD7X_IOBARRIER
1da177e4
LT
371
372#define RPC_LSA_DEFAULT RPC_LED_TX_RX
373#define RPC_LSB_DEFAULT RPC_LED_100_10
374
55793455
PP
375#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
9ded96f2 405#define SMC_IRQ_FLAGS (0)
33fee56a
DS
406
407#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)
e7b3dc7e 422#define SMC_IRQ_FLAGS (-1) /* from resource */
55793455 423
b920de1b
DH
424#elif defined(CONFIG_MN10300)
425
426/*
427 * MN10300/AM33 configuration
428 */
429
430#include <asm/unit/smc91111.h>
431
1da177e4
LT
432#else
433
b920de1b
DH
434/*
435 * Default configuration
436 */
437
1da177e4
LT
438#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))
8a214c12
MD
449#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)
1da177e4
LT
451#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
073ac8fd
RK
459
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
52256c0e 495#ifdef CONFIG_ARCH_PXA
073ac8fd
RK
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;
3e947943 502
15919886
EM
503 /* the low address lines on some platforms aren't connected... */
504 int io_shift;
505
3e947943 506 struct smc91x_platdata cfg;
073ac8fd
RK
507};
508
fa6d3be0
EM
509#define SMC_8BIT(p) ((p)->cfg.flags & SMC91X_USE_8BIT)
510#define SMC_16BIT(p) ((p)->cfg.flags & SMC91X_USE_16BIT)
511#define SMC_32BIT(p) ((p)->cfg.flags & SMC91X_USE_32BIT)
073ac8fd 512
52256c0e 513#ifdef CONFIG_ARCH_PXA
1da177e4
LT
514/*
515 * Let's use the DMA engine on the XScale PXA2xx for RX packets. This is
516 * always happening in irq context so no need to worry about races. TX is
517 * different and probably not worth it for that reason, and not as critical
518 * as RX which can overrun memory and lose packets.
519 */
520#include <linux/dma-mapping.h>
521#include <asm/dma.h>
522#include <asm/arch/pxa-regs.h>
523
524#ifdef SMC_insl
525#undef SMC_insl
526#define SMC_insl(a, r, p, l) \
073ac8fd 527 smc_pxa_dma_insl(a, lp, r, dev->dma, p, l)
1da177e4 528static inline void
073ac8fd 529smc_pxa_dma_insl(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
1da177e4
LT
530 u_char *buf, int len)
531{
073ac8fd 532 u_long physaddr = lp->physaddr;
1da177e4
LT
533 dma_addr_t dmabuf;
534
535 /* fallback if no DMA available */
536 if (dma == (unsigned char)-1) {
537 readsl(ioaddr + reg, buf, len);
538 return;
539 }
540
541 /* 64 bit alignment is required for memory to memory DMA */
542 if ((long)buf & 4) {
543 *((u32 *)buf) = SMC_inl(ioaddr, reg);
544 buf += 4;
545 len--;
546 }
547
548 len *= 4;
073ac8fd 549 dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
1da177e4
LT
550 DCSR(dma) = DCSR_NODESC;
551 DTADR(dma) = dmabuf;
552 DSADR(dma) = physaddr + reg;
553 DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
554 DCMD_WIDTH4 | (DCMD_LENGTH & len));
555 DCSR(dma) = DCSR_NODESC | DCSR_RUN;
556 while (!(DCSR(dma) & DCSR_STOPSTATE))
557 cpu_relax();
558 DCSR(dma) = 0;
073ac8fd 559 dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
1da177e4
LT
560}
561#endif
562
563#ifdef SMC_insw
564#undef SMC_insw
565#define SMC_insw(a, r, p, l) \
073ac8fd 566 smc_pxa_dma_insw(a, lp, r, dev->dma, p, l)
1da177e4 567static inline void
073ac8fd 568smc_pxa_dma_insw(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
1da177e4
LT
569 u_char *buf, int len)
570{
073ac8fd 571 u_long physaddr = lp->physaddr;
1da177e4
LT
572 dma_addr_t dmabuf;
573
574 /* fallback if no DMA available */
575 if (dma == (unsigned char)-1) {
576 readsw(ioaddr + reg, buf, len);
577 return;
578 }
579
580 /* 64 bit alignment is required for memory to memory DMA */
581 while ((long)buf & 6) {
582 *((u16 *)buf) = SMC_inw(ioaddr, reg);
583 buf += 2;
584 len--;
585 }
586
587 len *= 2;
073ac8fd 588 dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
1da177e4
LT
589 DCSR(dma) = DCSR_NODESC;
590 DTADR(dma) = dmabuf;
591 DSADR(dma) = physaddr + reg;
592 DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
593 DCMD_WIDTH2 | (DCMD_LENGTH & len));
594 DCSR(dma) = DCSR_NODESC | DCSR_RUN;
595 while (!(DCSR(dma) & DCSR_STOPSTATE))
596 cpu_relax();
597 DCSR(dma) = 0;
073ac8fd 598 dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
1da177e4
LT
599}
600#endif
601
602static void
7d12e780 603smc_pxa_dma_irq(int dma, void *dummy)
1da177e4
LT
604{
605 DCSR(dma) = 0;
606}
52256c0e 607#endif /* CONFIG_ARCH_PXA */
1da177e4
LT
608
609
09779c6d
NP
610/*
611 * Everything a particular hardware setup needs should have been defined
612 * at this point. Add stubs for the undefined cases, mainly to avoid
613 * compilation warnings since they'll be optimized away, or to prevent buggy
614 * use of them.
615 */
616
617#if ! SMC_CAN_USE_32BIT
618#define SMC_inl(ioaddr, reg) ({ BUG(); 0; })
619#define SMC_outl(x, ioaddr, reg) BUG()
620#define SMC_insl(a, r, p, l) BUG()
621#define SMC_outsl(a, r, p, l) BUG()
622#endif
623
624#if !defined(SMC_insl) || !defined(SMC_outsl)
625#define SMC_insl(a, r, p, l) BUG()
626#define SMC_outsl(a, r, p, l) BUG()
627#endif
628
629#if ! SMC_CAN_USE_16BIT
630
631/*
632 * Any 16-bit access is performed with two 8-bit accesses if the hardware
633 * can't do it directly. Most registers are 16-bit so those are mandatory.
634 */
635#define SMC_outw(x, ioaddr, reg) \
636 do { \
637 unsigned int __val16 = (x); \
638 SMC_outb( __val16, ioaddr, reg ); \
639 SMC_outb( __val16 >> 8, ioaddr, reg + (1 << SMC_IO_SHIFT));\
640 } while (0)
641#define SMC_inw(ioaddr, reg) \
642 ({ \
643 unsigned int __val16; \
644 __val16 = SMC_inb( ioaddr, reg ); \
645 __val16 |= SMC_inb( ioaddr, reg + (1 << SMC_IO_SHIFT)) << 8; \
646 __val16; \
647 })
648
649#define SMC_insw(a, r, p, l) BUG()
650#define SMC_outsw(a, r, p, l) BUG()
651
652#endif
653
654#if !defined(SMC_insw) || !defined(SMC_outsw)
655#define SMC_insw(a, r, p, l) BUG()
656#define SMC_outsw(a, r, p, l) BUG()
657#endif
658
659#if ! SMC_CAN_USE_8BIT
660#define SMC_inb(ioaddr, reg) ({ BUG(); 0; })
661#define SMC_outb(x, ioaddr, reg) BUG()
662#define SMC_insb(a, r, p, l) BUG()
663#define SMC_outsb(a, r, p, l) BUG()
664#endif
665
666#if !defined(SMC_insb) || !defined(SMC_outsb)
667#define SMC_insb(a, r, p, l) BUG()
668#define SMC_outsb(a, r, p, l) BUG()
669#endif
670
671#ifndef SMC_CAN_USE_DATACS
672#define SMC_CAN_USE_DATACS 0
673#endif
674
1da177e4
LT
675#ifndef SMC_IO_SHIFT
676#define SMC_IO_SHIFT 0
677#endif
09779c6d
NP
678
679#ifndef SMC_IRQ_FLAGS
1fb9df5d 680#define SMC_IRQ_FLAGS IRQF_TRIGGER_RISING
09779c6d
NP
681#endif
682
683#ifndef SMC_INTERRUPT_PREAMBLE
684#define SMC_INTERRUPT_PREAMBLE
685#endif
686
687
688/* Because of bank switching, the LAN91x uses only 16 I/O ports */
1da177e4
LT
689#define SMC_IO_EXTENT (16 << SMC_IO_SHIFT)
690#define SMC_DATA_EXTENT (4)
691
692/*
693 . Bank Select Register:
694 .
695 . yyyy yyyy 0000 00xx
696 . xx = bank number
697 . yyyy yyyy = 0x33, for identification purposes.
698*/
699#define BANK_SELECT (14 << SMC_IO_SHIFT)
700
701
702// Transmit Control Register
703/* BANK 0 */
cfdfa865 704#define TCR_REG(lp) SMC_REG(lp, 0x0000, 0)
1da177e4
LT
705#define TCR_ENABLE 0x0001 // When 1 we can transmit
706#define TCR_LOOP 0x0002 // Controls output pin LBK
707#define TCR_FORCOL 0x0004 // When 1 will force a collision
708#define TCR_PAD_EN 0x0080 // When 1 will pad tx frames < 64 bytes w/0
709#define TCR_NOCRC 0x0100 // When 1 will not append CRC to tx frames
710#define TCR_MON_CSN 0x0400 // When 1 tx monitors carrier
711#define TCR_FDUPLX 0x0800 // When 1 enables full duplex operation
712#define TCR_STP_SQET 0x1000 // When 1 stops tx if Signal Quality Error
713#define TCR_EPH_LOOP 0x2000 // When 1 enables EPH block loopback
714#define TCR_SWFDUP 0x8000 // When 1 enables Switched Full Duplex mode
715
716#define TCR_CLEAR 0 /* do NOTHING */
717/* the default settings for the TCR register : */
718#define TCR_DEFAULT (TCR_ENABLE | TCR_PAD_EN)
719
720
721// EPH Status Register
722/* BANK 0 */
cfdfa865 723#define EPH_STATUS_REG(lp) SMC_REG(lp, 0x0002, 0)
1da177e4
LT
724#define ES_TX_SUC 0x0001 // Last TX was successful
725#define ES_SNGL_COL 0x0002 // Single collision detected for last tx
726#define ES_MUL_COL 0x0004 // Multiple collisions detected for last tx
727#define ES_LTX_MULT 0x0008 // Last tx was a multicast
728#define ES_16COL 0x0010 // 16 Collisions Reached
729#define ES_SQET 0x0020 // Signal Quality Error Test
730#define ES_LTXBRD 0x0040 // Last tx was a broadcast
731#define ES_TXDEFR 0x0080 // Transmit Deferred
732#define ES_LATCOL 0x0200 // Late collision detected on last tx
733#define ES_LOSTCARR 0x0400 // Lost Carrier Sense
734#define ES_EXC_DEF 0x0800 // Excessive Deferral
735#define ES_CTR_ROL 0x1000 // Counter Roll Over indication
736#define ES_LINK_OK 0x4000 // Driven by inverted value of nLNK pin
737#define ES_TXUNRN 0x8000 // Tx Underrun
738
739
740// Receive Control Register
741/* BANK 0 */
cfdfa865 742#define RCR_REG(lp) SMC_REG(lp, 0x0004, 0)
1da177e4
LT
743#define RCR_RX_ABORT 0x0001 // Set if a rx frame was aborted
744#define RCR_PRMS 0x0002 // Enable promiscuous mode
745#define RCR_ALMUL 0x0004 // When set accepts all multicast frames
746#define RCR_RXEN 0x0100 // IFF this is set, we can receive packets
747#define RCR_STRIP_CRC 0x0200 // When set strips CRC from rx packets
748#define RCR_ABORT_ENB 0x0200 // When set will abort rx on collision
749#define RCR_FILT_CAR 0x0400 // When set filters leading 12 bit s of carrier
750#define RCR_SOFTRST 0x8000 // resets the chip
751
752/* the normal settings for the RCR register : */
753#define RCR_DEFAULT (RCR_STRIP_CRC | RCR_RXEN)
754#define RCR_CLEAR 0x0 // set it to a base state
755
756
757// Counter Register
758/* BANK 0 */
cfdfa865 759#define COUNTER_REG(lp) SMC_REG(lp, 0x0006, 0)
1da177e4
LT
760
761
762// Memory Information Register
763/* BANK 0 */
cfdfa865 764#define MIR_REG(lp) SMC_REG(lp, 0x0008, 0)
1da177e4
LT
765
766
767// Receive/Phy Control Register
768/* BANK 0 */
cfdfa865 769#define RPC_REG(lp) SMC_REG(lp, 0x000A, 0)
1da177e4
LT
770#define RPC_SPEED 0x2000 // When 1 PHY is in 100Mbps mode.
771#define RPC_DPLX 0x1000 // When 1 PHY is in Full-Duplex Mode
772#define RPC_ANEG 0x0800 // When 1 PHY is in Auto-Negotiate Mode
773#define RPC_LSXA_SHFT 5 // Bits to shift LS2A,LS1A,LS0A to lsb
774#define RPC_LSXB_SHFT 2 // Bits to get LS2B,LS1B,LS0B to lsb
775#define RPC_LED_100_10 (0x00) // LED = 100Mbps OR's with 10Mbps link detect
776#define RPC_LED_RES (0x01) // LED = Reserved
777#define RPC_LED_10 (0x02) // LED = 10Mbps link detect
778#define RPC_LED_FD (0x03) // LED = Full Duplex Mode
779#define RPC_LED_TX_RX (0x04) // LED = TX or RX packet occurred
780#define RPC_LED_100 (0x05) // LED = 100Mbps link dectect
781#define RPC_LED_TX (0x06) // LED = TX packet occurred
782#define RPC_LED_RX (0x07) // LED = RX packet occurred
783
784#ifndef RPC_LSA_DEFAULT
785#define RPC_LSA_DEFAULT RPC_LED_100
786#endif
787#ifndef RPC_LSB_DEFAULT
788#define RPC_LSB_DEFAULT RPC_LED_FD
789#endif
790
791#define RPC_DEFAULT (RPC_ANEG | (RPC_LSA_DEFAULT << RPC_LSXA_SHFT) | (RPC_LSB_DEFAULT << RPC_LSXB_SHFT) | RPC_SPEED | RPC_DPLX)
792
793
794/* Bank 0 0x0C is reserved */
795
796// Bank Select Register
797/* All Banks */
798#define BSR_REG 0x000E
799
800
801// Configuration Reg
802/* BANK 1 */
cfdfa865 803#define CONFIG_REG(lp) SMC_REG(lp, 0x0000, 1)
1da177e4
LT
804#define CONFIG_EXT_PHY 0x0200 // 1=external MII, 0=internal Phy
805#define CONFIG_GPCNTRL 0x0400 // Inverse value drives pin nCNTRL
806#define CONFIG_NO_WAIT 0x1000 // When 1 no extra wait states on ISA bus
807#define CONFIG_EPH_POWER_EN 0x8000 // When 0 EPH is placed into low power mode.
808
809// Default is powered-up, Internal Phy, Wait States, and pin nCNTRL=low
810#define CONFIG_DEFAULT (CONFIG_EPH_POWER_EN)
811
812
813// Base Address Register
814/* BANK 1 */
cfdfa865 815#define BASE_REG(lp) SMC_REG(lp, 0x0002, 1)
1da177e4
LT
816
817
818// Individual Address Registers
819/* BANK 1 */
cfdfa865
MD
820#define ADDR0_REG(lp) SMC_REG(lp, 0x0004, 1)
821#define ADDR1_REG(lp) SMC_REG(lp, 0x0006, 1)
822#define ADDR2_REG(lp) SMC_REG(lp, 0x0008, 1)
1da177e4
LT
823
824
825// General Purpose Register
826/* BANK 1 */
cfdfa865 827#define GP_REG(lp) SMC_REG(lp, 0x000A, 1)
1da177e4
LT
828
829
830// Control Register
831/* BANK 1 */
cfdfa865 832#define CTL_REG(lp) SMC_REG(lp, 0x000C, 1)
1da177e4
LT
833#define CTL_RCV_BAD 0x4000 // When 1 bad CRC packets are received
834#define CTL_AUTO_RELEASE 0x0800 // When 1 tx pages are released automatically
835#define CTL_LE_ENABLE 0x0080 // When 1 enables Link Error interrupt
836#define CTL_CR_ENABLE 0x0040 // When 1 enables Counter Rollover interrupt
837#define CTL_TE_ENABLE 0x0020 // When 1 enables Transmit Error interrupt
838#define CTL_EEPROM_SELECT 0x0004 // Controls EEPROM reload & store
839#define CTL_RELOAD 0x0002 // When set reads EEPROM into registers
840#define CTL_STORE 0x0001 // When set stores registers into EEPROM
841
842
843// MMU Command Register
844/* BANK 2 */
cfdfa865 845#define MMU_CMD_REG(lp) SMC_REG(lp, 0x0000, 2)
1da177e4
LT
846#define MC_BUSY 1 // When 1 the last release has not completed
847#define MC_NOP (0<<5) // No Op
848#define MC_ALLOC (1<<5) // OR with number of 256 byte packets
849#define MC_RESET (2<<5) // Reset MMU to initial state
850#define MC_REMOVE (3<<5) // Remove the current rx packet
851#define MC_RELEASE (4<<5) // Remove and release the current rx packet
852#define MC_FREEPKT (5<<5) // Release packet in PNR register
853#define MC_ENQUEUE (6<<5) // Enqueue the packet for transmit
854#define MC_RSTTXFIFO (7<<5) // Reset the TX FIFOs
855
856
857// Packet Number Register
858/* BANK 2 */
cfdfa865 859#define PN_REG(lp) SMC_REG(lp, 0x0002, 2)
1da177e4
LT
860
861
862// Allocation Result Register
863/* BANK 2 */
cfdfa865 864#define AR_REG(lp) SMC_REG(lp, 0x0003, 2)
1da177e4
LT
865#define AR_FAILED 0x80 // Alocation Failed
866
867
868// TX FIFO Ports Register
869/* BANK 2 */
cfdfa865 870#define TXFIFO_REG(lp) SMC_REG(lp, 0x0004, 2)
1da177e4
LT
871#define TXFIFO_TEMPTY 0x80 // TX FIFO Empty
872
873// RX FIFO Ports Register
874/* BANK 2 */
cfdfa865 875#define RXFIFO_REG(lp) SMC_REG(lp, 0x0005, 2)
1da177e4
LT
876#define RXFIFO_REMPTY 0x80 // RX FIFO Empty
877
cfdfa865 878#define FIFO_REG(lp) SMC_REG(lp, 0x0004, 2)
1da177e4
LT
879
880// Pointer Register
881/* BANK 2 */
cfdfa865 882#define PTR_REG(lp) SMC_REG(lp, 0x0006, 2)
1da177e4
LT
883#define PTR_RCV 0x8000 // 1=Receive area, 0=Transmit area
884#define PTR_AUTOINC 0x4000 // Auto increment the pointer on each access
885#define PTR_READ 0x2000 // When 1 the operation is a read
886
887
888// Data Register
889/* BANK 2 */
cfdfa865 890#define DATA_REG(lp) SMC_REG(lp, 0x0008, 2)
1da177e4
LT
891
892
893// Interrupt Status/Acknowledge Register
894/* BANK 2 */
cfdfa865 895#define INT_REG(lp) SMC_REG(lp, 0x000C, 2)
1da177e4
LT
896
897
898// Interrupt Mask Register
899/* BANK 2 */
cfdfa865 900#define IM_REG(lp) SMC_REG(lp, 0x000D, 2)
1da177e4
LT
901#define IM_MDINT 0x80 // PHY MI Register 18 Interrupt
902#define IM_ERCV_INT 0x40 // Early Receive Interrupt
903#define IM_EPH_INT 0x20 // Set by Ethernet Protocol Handler section
904#define IM_RX_OVRN_INT 0x10 // Set by Receiver Overruns
905#define IM_ALLOC_INT 0x08 // Set when allocation request is completed
906#define IM_TX_EMPTY_INT 0x04 // Set if the TX FIFO goes empty
907#define IM_TX_INT 0x02 // Transmit Interrupt
908#define IM_RCV_INT 0x01 // Receive Interrupt
909
910
911// Multicast Table Registers
912/* BANK 3 */
cfdfa865
MD
913#define MCAST_REG1(lp) SMC_REG(lp, 0x0000, 3)
914#define MCAST_REG2(lp) SMC_REG(lp, 0x0002, 3)
915#define MCAST_REG3(lp) SMC_REG(lp, 0x0004, 3)
916#define MCAST_REG4(lp) SMC_REG(lp, 0x0006, 3)
1da177e4
LT
917
918
919// Management Interface Register (MII)
920/* BANK 3 */
cfdfa865 921#define MII_REG(lp) SMC_REG(lp, 0x0008, 3)
1da177e4
LT
922#define MII_MSK_CRS100 0x4000 // Disables CRS100 detection during tx half dup
923#define MII_MDOE 0x0008 // MII Output Enable
924#define MII_MCLK 0x0004 // MII Clock, pin MDCLK
925#define MII_MDI 0x0002 // MII Input, pin MDI
926#define MII_MDO 0x0001 // MII Output, pin MDO
927
928
929// Revision Register
930/* BANK 3 */
931/* ( hi: chip id low: rev # ) */
cfdfa865 932#define REV_REG(lp) SMC_REG(lp, 0x000A, 3)
1da177e4
LT
933
934
935// Early RCV Register
936/* BANK 3 */
937/* this is NOT on SMC9192 */
cfdfa865 938#define ERCV_REG(lp) SMC_REG(lp, 0x000C, 3)
1da177e4
LT
939#define ERCV_RCV_DISCRD 0x0080 // When 1 discards a packet being received
940#define ERCV_THRESHOLD 0x001F // ERCV Threshold Mask
941
942
943// External Register
944/* BANK 7 */
cfdfa865 945#define EXT_REG(lp) SMC_REG(lp, 0x0000, 7)
1da177e4
LT
946
947
948#define CHIP_9192 3
949#define CHIP_9194 4
950#define CHIP_9195 5
951#define CHIP_9196 6
952#define CHIP_91100 7
953#define CHIP_91100FD 8
954#define CHIP_91111FD 9
955
956static const char * chip_ids[ 16 ] = {
957 NULL, NULL, NULL,
958 /* 3 */ "SMC91C90/91C92",
959 /* 4 */ "SMC91C94",
960 /* 5 */ "SMC91C95",
961 /* 6 */ "SMC91C96",
962 /* 7 */ "SMC91C100",
963 /* 8 */ "SMC91C100FD",
964 /* 9 */ "SMC91C11xFD",
965 NULL, NULL, NULL,
966 NULL, NULL, NULL};
967
968
1da177e4
LT
969/*
970 . Receive status bits
971*/
972#define RS_ALGNERR 0x8000
973#define RS_BRODCAST 0x4000
974#define RS_BADCRC 0x2000
975#define RS_ODDFRAME 0x1000
976#define RS_TOOLONG 0x0800
977#define RS_TOOSHORT 0x0400
978#define RS_MULTICAST 0x0001
979#define RS_ERRORS (RS_ALGNERR | RS_BADCRC | RS_TOOLONG | RS_TOOSHORT)
980
981
982/*
983 * PHY IDs
984 * LAN83C183 == LAN91C111 Internal PHY
985 */
986#define PHY_LAN83C183 0x0016f840
987#define PHY_LAN83C180 0x02821c50
988
989/*
990 * PHY Register Addresses (LAN91C111 Internal PHY)
991 *
992 * Generic PHY registers can be found in <linux/mii.h>
993 *
994 * These phy registers are specific to our on-board phy.
995 */
996
997// PHY Configuration Register 1
998#define PHY_CFG1_REG 0x10
999#define PHY_CFG1_LNKDIS 0x8000 // 1=Rx Link Detect Function disabled
1000#define PHY_CFG1_XMTDIS 0x4000 // 1=TP Transmitter Disabled
1001#define PHY_CFG1_XMTPDN 0x2000 // 1=TP Transmitter Powered Down
1002#define PHY_CFG1_BYPSCR 0x0400 // 1=Bypass scrambler/descrambler
1003#define PHY_CFG1_UNSCDS 0x0200 // 1=Unscramble Idle Reception Disable
1004#define PHY_CFG1_EQLZR 0x0100 // 1=Rx Equalizer Disabled
1005#define PHY_CFG1_CABLE 0x0080 // 1=STP(150ohm), 0=UTP(100ohm)
1006#define PHY_CFG1_RLVL0 0x0040 // 1=Rx Squelch level reduced by 4.5db
1007#define PHY_CFG1_TLVL_SHIFT 2 // Transmit Output Level Adjust
1008#define PHY_CFG1_TLVL_MASK 0x003C
1009#define PHY_CFG1_TRF_MASK 0x0003 // Transmitter Rise/Fall time
1010
1011
1012// PHY Configuration Register 2
1013#define PHY_CFG2_REG 0x11
1014#define PHY_CFG2_APOLDIS 0x0020 // 1=Auto Polarity Correction disabled
1015#define PHY_CFG2_JABDIS 0x0010 // 1=Jabber disabled
1016#define PHY_CFG2_MREG 0x0008 // 1=Multiple register access (MII mgt)
1017#define PHY_CFG2_INTMDIO 0x0004 // 1=Interrupt signaled with MDIO pulseo
1018
1019// PHY Status Output (and Interrupt status) Register
1020#define PHY_INT_REG 0x12 // Status Output (Interrupt Status)
1021#define PHY_INT_INT 0x8000 // 1=bits have changed since last read
1022#define PHY_INT_LNKFAIL 0x4000 // 1=Link Not detected
1023#define PHY_INT_LOSSSYNC 0x2000 // 1=Descrambler has lost sync
1024#define PHY_INT_CWRD 0x1000 // 1=Invalid 4B5B code detected on rx
1025#define PHY_INT_SSD 0x0800 // 1=No Start Of Stream detected on rx
1026#define PHY_INT_ESD 0x0400 // 1=No End Of Stream detected on rx
1027#define PHY_INT_RPOL 0x0200 // 1=Reverse Polarity detected
1028#define PHY_INT_JAB 0x0100 // 1=Jabber detected
1029#define PHY_INT_SPDDET 0x0080 // 1=100Base-TX mode, 0=10Base-T mode
1030#define PHY_INT_DPLXDET 0x0040 // 1=Device in Full Duplex
1031
1032// PHY Interrupt/Status Mask Register
1033#define PHY_MASK_REG 0x13 // Interrupt Mask
1034// Uses the same bit definitions as PHY_INT_REG
1035
1036
1037/*
1038 * SMC91C96 ethernet config and status registers.
1039 * These are in the "attribute" space.
1040 */
1041#define ECOR 0x8000
1042#define ECOR_RESET 0x80
1043#define ECOR_LEVEL_IRQ 0x40
1044#define ECOR_WR_ATTRIB 0x04
1045#define ECOR_ENABLE 0x01
1046
1047#define ECSR 0x8002
1048#define ECSR_IOIS8 0x20
1049#define ECSR_PWRDWN 0x04
1050#define ECSR_INT 0x02
1051
1052#define ATTRIB_SIZE ((64*1024) << SMC_IO_SHIFT)
1053
1054
1055/*
1056 * Macros to abstract register access according to the data bus
1057 * capabilities. Please use those and not the in/out primitives.
1058 * Note: the following macros do *not* select the bank -- this must
1059 * be done separately as needed in the main code. The SMC_REG() macro
1060 * only uses the bank argument for debugging purposes (when enabled).
09779c6d
NP
1061 *
1062 * Note: despite inline functions being safer, everything leading to this
1063 * should preferably be macros to let BUG() display the line number in
1064 * the core source code since we're interested in the top call site
1065 * not in any inline function location.
1da177e4
LT
1066 */
1067
1068#if SMC_DEBUG > 0
cfdfa865 1069#define SMC_REG(lp, reg, bank) \
1da177e4 1070 ({ \
cfdfa865 1071 int __b = SMC_CURRENT_BANK(lp); \
1da177e4
LT
1072 if (unlikely((__b & ~0xf0) != (0x3300 | bank))) { \
1073 printk( "%s: bank reg screwed (0x%04x)\n", \
1074 CARDNAME, __b ); \
1075 BUG(); \
1076 } \
1077 reg<<SMC_IO_SHIFT; \
1078 })
1079#else
cfdfa865 1080#define SMC_REG(lp, reg, bank) (reg<<SMC_IO_SHIFT)
1da177e4
LT
1081#endif
1082
09779c6d
NP
1083/*
1084 * Hack Alert: Some setups just can't write 8 or 16 bits reliably when not
1085 * aligned to a 32 bit boundary. I tell you that does exist!
1086 * Fortunately the affected register accesses can be easily worked around
1087 * since we can write zeroes to the preceeding 16 bits without adverse
1088 * effects and use a 32-bit access.
1089 *
1090 * Enforce it on any 32-bit capable setup for now.
1091 */
3e947943 1092#define SMC_MUST_ALIGN_WRITE(lp) SMC_32BIT(lp)
09779c6d 1093
cfdfa865 1094#define SMC_GET_PN(lp) \
3e947943 1095 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, PN_REG(lp))) \
cfdfa865 1096 : (SMC_inw(ioaddr, PN_REG(lp)) & 0xFF))
09779c6d 1097
cfdfa865 1098#define SMC_SET_PN(lp, x) \
09779c6d 1099 do { \
3e947943 1100 if (SMC_MUST_ALIGN_WRITE(lp)) \
cfdfa865 1101 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 0, 2)); \
3e947943 1102 else if (SMC_8BIT(lp)) \
cfdfa865 1103 SMC_outb(x, ioaddr, PN_REG(lp)); \
09779c6d 1104 else \
cfdfa865 1105 SMC_outw(x, ioaddr, PN_REG(lp)); \
09779c6d
NP
1106 } while (0)
1107
cfdfa865 1108#define SMC_GET_AR(lp) \
3e947943 1109 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, AR_REG(lp))) \
cfdfa865 1110 : (SMC_inw(ioaddr, PN_REG(lp)) >> 8))
09779c6d 1111
cfdfa865 1112#define SMC_GET_TXFIFO(lp) \
3e947943 1113 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, TXFIFO_REG(lp))) \
cfdfa865 1114 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) & 0xFF))
09779c6d 1115
cfdfa865 1116#define SMC_GET_RXFIFO(lp) \
3e947943 1117 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, RXFIFO_REG(lp))) \
cfdfa865 1118 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) >> 8))
09779c6d 1119
cfdfa865 1120#define SMC_GET_INT(lp) \
3e947943 1121 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, INT_REG(lp))) \
cfdfa865 1122 : (SMC_inw(ioaddr, INT_REG(lp)) & 0xFF))
09779c6d 1123
cfdfa865 1124#define SMC_ACK_INT(lp, x) \
1da177e4 1125 do { \
3e947943 1126 if (SMC_8BIT(lp)) \
cfdfa865 1127 SMC_outb(x, ioaddr, INT_REG(lp)); \
09779c6d
NP
1128 else { \
1129 unsigned long __flags; \
1130 int __mask; \
1131 local_irq_save(__flags); \
cfdfa865
MD
1132 __mask = SMC_inw(ioaddr, INT_REG(lp)) & ~0xff; \
1133 SMC_outw(__mask | (x), ioaddr, INT_REG(lp)); \
09779c6d
NP
1134 local_irq_restore(__flags); \
1135 } \
1136 } while (0)
1137
cfdfa865 1138#define SMC_GET_INT_MASK(lp) \
3e947943 1139 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, IM_REG(lp))) \
cfdfa865 1140 : (SMC_inw(ioaddr, INT_REG(lp)) >> 8))
09779c6d 1141
cfdfa865 1142#define SMC_SET_INT_MASK(lp, x) \
09779c6d 1143 do { \
3e947943 1144 if (SMC_8BIT(lp)) \
cfdfa865 1145 SMC_outb(x, ioaddr, IM_REG(lp)); \
09779c6d 1146 else \
cfdfa865 1147 SMC_outw((x) << 8, ioaddr, INT_REG(lp)); \
09779c6d
NP
1148 } while (0)
1149
cfdfa865 1150#define SMC_CURRENT_BANK(lp) SMC_inw(ioaddr, BANK_SELECT)
09779c6d 1151
cfdfa865 1152#define SMC_SELECT_BANK(lp, x) \
09779c6d 1153 do { \
3e947943 1154 if (SMC_MUST_ALIGN_WRITE(lp)) \
09779c6d
NP
1155 SMC_outl((x)<<16, ioaddr, 12<<SMC_IO_SHIFT); \
1156 else \
1157 SMC_outw(x, ioaddr, BANK_SELECT); \
1158 } while (0)
1159
cfdfa865 1160#define SMC_GET_BASE(lp) SMC_inw(ioaddr, BASE_REG(lp))
09779c6d 1161
cfdfa865 1162#define SMC_SET_BASE(lp, x) SMC_outw(x, ioaddr, BASE_REG(lp))
09779c6d 1163
cfdfa865 1164#define SMC_GET_CONFIG(lp) SMC_inw(ioaddr, CONFIG_REG(lp))
09779c6d 1165
cfdfa865 1166#define SMC_SET_CONFIG(lp, x) SMC_outw(x, ioaddr, CONFIG_REG(lp))
09779c6d 1167
cfdfa865 1168#define SMC_GET_COUNTER(lp) SMC_inw(ioaddr, COUNTER_REG(lp))
09779c6d 1169
cfdfa865 1170#define SMC_GET_CTL(lp) SMC_inw(ioaddr, CTL_REG(lp))
09779c6d 1171
cfdfa865 1172#define SMC_SET_CTL(lp, x) SMC_outw(x, ioaddr, CTL_REG(lp))
09779c6d 1173
cfdfa865 1174#define SMC_GET_MII(lp) SMC_inw(ioaddr, MII_REG(lp))
09779c6d 1175
cfdfa865 1176#define SMC_SET_MII(lp, x) SMC_outw(x, ioaddr, MII_REG(lp))
09779c6d 1177
cfdfa865 1178#define SMC_GET_MIR(lp) SMC_inw(ioaddr, MIR_REG(lp))
09779c6d 1179
cfdfa865 1180#define SMC_SET_MIR(lp, x) SMC_outw(x, ioaddr, MIR_REG(lp))
09779c6d 1181
cfdfa865 1182#define SMC_GET_MMU_CMD(lp) SMC_inw(ioaddr, MMU_CMD_REG(lp))
09779c6d 1183
cfdfa865 1184#define SMC_SET_MMU_CMD(lp, x) SMC_outw(x, ioaddr, MMU_CMD_REG(lp))
09779c6d 1185
cfdfa865 1186#define SMC_GET_FIFO(lp) SMC_inw(ioaddr, FIFO_REG(lp))
09779c6d 1187
cfdfa865 1188#define SMC_GET_PTR(lp) SMC_inw(ioaddr, PTR_REG(lp))
09779c6d 1189
cfdfa865 1190#define SMC_SET_PTR(lp, x) \
09779c6d 1191 do { \
3e947943 1192 if (SMC_MUST_ALIGN_WRITE(lp)) \
cfdfa865 1193 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 4, 2)); \
09779c6d 1194 else \
cfdfa865 1195 SMC_outw(x, ioaddr, PTR_REG(lp)); \
1da177e4 1196 } while (0)
1da177e4 1197
cfdfa865 1198#define SMC_GET_EPH_STATUS(lp) SMC_inw(ioaddr, EPH_STATUS_REG(lp))
09779c6d 1199
cfdfa865 1200#define SMC_GET_RCR(lp) SMC_inw(ioaddr, RCR_REG(lp))
09779c6d 1201
cfdfa865 1202#define SMC_SET_RCR(lp, x) SMC_outw(x, ioaddr, RCR_REG(lp))
09779c6d 1203
cfdfa865 1204#define SMC_GET_REV(lp) SMC_inw(ioaddr, REV_REG(lp))
09779c6d 1205
cfdfa865 1206#define SMC_GET_RPC(lp) SMC_inw(ioaddr, RPC_REG(lp))
09779c6d 1207
cfdfa865 1208#define SMC_SET_RPC(lp, x) \
09779c6d 1209 do { \
3e947943 1210 if (SMC_MUST_ALIGN_WRITE(lp)) \
cfdfa865 1211 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 8, 0)); \
09779c6d 1212 else \
cfdfa865 1213 SMC_outw(x, ioaddr, RPC_REG(lp)); \
09779c6d
NP
1214 } while (0)
1215
cfdfa865 1216#define SMC_GET_TCR(lp) SMC_inw(ioaddr, TCR_REG(lp))
09779c6d 1217
cfdfa865 1218#define SMC_SET_TCR(lp, x) SMC_outw(x, ioaddr, TCR_REG(lp))
1da177e4
LT
1219
1220#ifndef SMC_GET_MAC_ADDR
cfdfa865 1221#define SMC_GET_MAC_ADDR(lp, addr) \
1da177e4
LT
1222 do { \
1223 unsigned int __v; \
cfdfa865 1224 __v = SMC_inw(ioaddr, ADDR0_REG(lp)); \
1da177e4 1225 addr[0] = __v; addr[1] = __v >> 8; \
cfdfa865 1226 __v = SMC_inw(ioaddr, ADDR1_REG(lp)); \
1da177e4 1227 addr[2] = __v; addr[3] = __v >> 8; \
cfdfa865 1228 __v = SMC_inw(ioaddr, ADDR2_REG(lp)); \
1da177e4
LT
1229 addr[4] = __v; addr[5] = __v >> 8; \
1230 } while (0)
1231#endif
1232
cfdfa865 1233#define SMC_SET_MAC_ADDR(lp, addr) \
1da177e4 1234 do { \
cfdfa865
MD
1235 SMC_outw(addr[0]|(addr[1] << 8), ioaddr, ADDR0_REG(lp)); \
1236 SMC_outw(addr[2]|(addr[3] << 8), ioaddr, ADDR1_REG(lp)); \
1237 SMC_outw(addr[4]|(addr[5] << 8), ioaddr, ADDR2_REG(lp)); \
1da177e4
LT
1238 } while (0)
1239
cfdfa865 1240#define SMC_SET_MCAST(lp, x) \
1da177e4
LT
1241 do { \
1242 const unsigned char *mt = (x); \
cfdfa865
MD
1243 SMC_outw(mt[0] | (mt[1] << 8), ioaddr, MCAST_REG1(lp)); \
1244 SMC_outw(mt[2] | (mt[3] << 8), ioaddr, MCAST_REG2(lp)); \
1245 SMC_outw(mt[4] | (mt[5] << 8), ioaddr, MCAST_REG3(lp)); \
1246 SMC_outw(mt[6] | (mt[7] << 8), ioaddr, MCAST_REG4(lp)); \
1da177e4
LT
1247 } while (0)
1248
cfdfa865 1249#define SMC_PUT_PKT_HDR(lp, status, length) \
1da177e4 1250 do { \
3e947943 1251 if (SMC_32BIT(lp)) \
cfdfa865
MD
1252 SMC_outl((status) | (length)<<16, ioaddr, \
1253 DATA_REG(lp)); \
09779c6d 1254 else { \
cfdfa865
MD
1255 SMC_outw(status, ioaddr, DATA_REG(lp)); \
1256 SMC_outw(length, ioaddr, DATA_REG(lp)); \
09779c6d 1257 } \
1da177e4 1258 } while (0)
1da177e4 1259
cfdfa865 1260#define SMC_GET_PKT_HDR(lp, status, length) \
1da177e4 1261 do { \
3e947943 1262 if (SMC_32BIT(lp)) { \
cfdfa865 1263 unsigned int __val = SMC_inl(ioaddr, DATA_REG(lp)); \
09779c6d
NP
1264 (status) = __val & 0xffff; \
1265 (length) = __val >> 16; \
1266 } else { \
cfdfa865
MD
1267 (status) = SMC_inw(ioaddr, DATA_REG(lp)); \
1268 (length) = SMC_inw(ioaddr, DATA_REG(lp)); \
1da177e4
LT
1269 } \
1270 } while (0)
1da177e4 1271
cfdfa865 1272#define SMC_PUSH_DATA(lp, p, l) \
1da177e4 1273 do { \
3e947943 1274 if (SMC_32BIT(lp)) { \
09779c6d
NP
1275 void *__ptr = (p); \
1276 int __len = (l); \
fbd81976 1277 void __iomem *__ioaddr = ioaddr; \
09779c6d
NP
1278 if (__len >= 2 && (unsigned long)__ptr & 2) { \
1279 __len -= 2; \
cfdfa865
MD
1280 SMC_outw(*(u16 *)__ptr, ioaddr, \
1281 DATA_REG(lp)); \
09779c6d
NP
1282 __ptr += 2; \
1283 } \
1284 if (SMC_CAN_USE_DATACS && lp->datacs) \
1285 __ioaddr = lp->datacs; \
cfdfa865 1286 SMC_outsl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
09779c6d
NP
1287 if (__len & 2) { \
1288 __ptr += (__len & ~3); \
cfdfa865
MD
1289 SMC_outw(*((u16 *)__ptr), ioaddr, \
1290 DATA_REG(lp)); \
09779c6d 1291 } \
3e947943 1292 } else if (SMC_16BIT(lp)) \
cfdfa865 1293 SMC_outsw(ioaddr, DATA_REG(lp), p, (l) >> 1); \
3e947943 1294 else if (SMC_8BIT(lp)) \
cfdfa865 1295 SMC_outsb(ioaddr, DATA_REG(lp), p, l); \
1da177e4 1296 } while (0)
1da177e4 1297
cfdfa865 1298#define SMC_PULL_DATA(lp, p, l) \
09779c6d 1299 do { \
3e947943 1300 if (SMC_32BIT(lp)) { \
09779c6d
NP
1301 void *__ptr = (p); \
1302 int __len = (l); \
fbd81976 1303 void __iomem *__ioaddr = ioaddr; \
09779c6d
NP
1304 if ((unsigned long)__ptr & 2) { \
1305 /* \
1306 * We want 32bit alignment here. \
1307 * Since some buses perform a full \
1308 * 32bit fetch even for 16bit data \
1309 * we can't use SMC_inw() here. \
1310 * Back both source (on-chip) and \
1311 * destination pointers of 2 bytes. \
1312 * This is possible since the call to \
1313 * SMC_GET_PKT_HDR() already advanced \
1314 * the source pointer of 4 bytes, and \
1315 * the skb_reserve(skb, 2) advanced \
1316 * the destination pointer of 2 bytes. \
1317 */ \
1318 __ptr -= 2; \
1319 __len += 2; \
cfdfa865
MD
1320 SMC_SET_PTR(lp, \
1321 2|PTR_READ|PTR_RCV|PTR_AUTOINC); \
09779c6d
NP
1322 } \
1323 if (SMC_CAN_USE_DATACS && lp->datacs) \
1324 __ioaddr = lp->datacs; \
1da177e4 1325 __len += 2; \
cfdfa865 1326 SMC_insl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
3e947943 1327 } else if (SMC_16BIT(lp)) \
cfdfa865 1328 SMC_insw(ioaddr, DATA_REG(lp), p, (l) >> 1); \
3e947943 1329 else if (SMC_8BIT(lp)) \
cfdfa865 1330 SMC_insb(ioaddr, DATA_REG(lp), p, l); \
09779c6d 1331 } while (0)
1da177e4
LT
1332
1333#endif /* _SMC91X_H_ */
This page took 0.470065 seconds and 5 git commands to generate.