]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/net/smc91x.h
edea0732f1454dc0b5ee30a7e02256400dcc70c2
[linux-2.6-omap-h63xx.git] / drivers / net / smc91x.h
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
37 #include <linux/smc91x.h>
38
39 /*
40  * Define your architecture specific bus configuration parameters here.
41  */
42
43 #if defined(CONFIG_ARCH_LUBBOCK) ||\
44     defined(CONFIG_MACH_MAINSTONE) ||\
45     defined(CONFIG_MACH_ZYLONITE) ||\
46     defined(CONFIG_MACH_LITTLETON)
47
48 #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
54 #define SMC_CAN_USE_16BIT       1
55 #define SMC_CAN_USE_32BIT       1
56 #define SMC_NOWAIT              1
57
58 #define SMC_IO_SHIFT            (lp->io_shift)
59
60 #define SMC_inb(a, r)           readb((a) + (r))
61 #define SMC_inw(a, r)           readw((a) + (r))
62 #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))
65 #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)
67 #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)
69 #define SMC_IRQ_FLAGS           (-1)    /* from resource */
70
71 /* We actually can't write halfwords properly if not word aligned */
72 static 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
83 #elif defined(CONFIG_BLACKFIN)
84
85 #define SMC_IRQ_FLAGS           IRQF_TRIGGER_HIGH
86 #define RPC_LSA_DEFAULT         RPC_LED_100_10
87 #define RPC_LSB_DEFAULT         RPC_LED_TX_RX
88
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 */
119 #define SMC_GET_MAC_ADDR(lp, addr)                              \
120         do {                                                    \
121                 unsigned int __v;                               \
122                 __v = SMC_inw(ioaddr, ADDR0_REG(lp));           \
123                 addr[0] = __v; addr[1] = __v >> 8;              \
124                 __v = SMC_inw(ioaddr, ADDR1_REG(lp));           \
125                 addr[2] = __v; addr[3] = __v >> 8;              \
126                 __v = SMC_inw(ioaddr, ADDR2_REG(lp));           \
127                 addr[4] = __v; addr[5] = __v >> 8;              \
128                 if (*(u32 *)(&addr[0]) == 0xFFFFFFFF) {         \
129                         random_ether_addr(addr);                \
130                 }                                               \
131         } while (0)
132 #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)
167 #define SMC_IRQ_FLAGS           (0)
168
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
177 #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)
185
186 #define SMC_IRQ_FLAGS           (-1)
187
188 #elif defined(CONFIG_SA1100_ASSABET)
189
190 #include <mach/neponset.h>
191
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))
205 #define SMC_IRQ_FLAGS           (-1)    /* from resource */
206
207 #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
214
215 #define SMC_inw(a, r)           readw((a) + (r))
216 #define SMC_outw(v, a, r)       writew(v, (a) + (r))
217 #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
220 #elif   defined(CONFIG_ARCH_INNOKOM) || \
221         defined(CONFIG_ARCH_PXA_IDP) || \
222         defined(CONFIG_ARCH_RAMSES) || \
223         defined(CONFIG_ARCH_PCM027)
224
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)
239 #define SMC_IRQ_FLAGS           (-1)    /* from resource */
240
241 /* We actually can't write halfwords properly if not word aligned */
242 static inline void
243 SMC_outw(u16 val, void __iomem *ioaddr, int reg)
244 {
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
263 #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)
267 #define SMC_IRQ_FLAGS           (-1)    /* from resource */
268
269 #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
286 #define SMC_IRQ_FLAGS           (0)
287
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
307 #define SMC_inb(a, r)           inb(((u32)a) + (r))
308 #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)
313
314 #define SMC_IRQ_FLAGS           (0)
315
316 #define RPC_LSA_DEFAULT         RPC_LED_TX_RX
317 #define RPC_LSB_DEFAULT         RPC_LED_100_10
318
319 #elif   defined(CONFIG_MACH_LPD79520) \
320      || defined(CONFIG_MACH_LPD7A400) \
321      || defined(CONFIG_MACH_LPD7A404)
322
323 /* 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
326  * Documentation/arm/Sharp-LH/IOBarrier for details.  The read from
327  * 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.
330  *
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
342 #include <mach/constants.h>     /* IOBARRIER_VIRT */
343
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
348 #define LPD7X_IOBARRIER         readb (IOBARRIER_VIRT)
349
350 #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; })
353
354 #define SMC_insw                LPD7_SMC_insw
355 static 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 }
364
365 #define SMC_outsw               LPD7_SMC_outsw
366 static inline void LPD7_SMC_outsw (unsigned char* a, int r,
367                                    unsigned char* p, int l)
368 {
369         unsigned short* ps = (unsigned short*) p;
370         while (l-- > 0) {
371                 writew (*ps++, a + r);
372                 LPD7X_IOBARRIER;
373         }
374 }
375
376 #define SMC_INTERRUPT_PREAMBLE  LPD7X_IOBARRIER
377
378 #define RPC_LSA_DEFAULT         RPC_LED_TX_RX
379 #define RPC_LSB_DEFAULT         RPC_LED_100_10
380
381 #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
411 #define SMC_IRQ_FLAGS           (0)
412
413 #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)
428 #define SMC_IRQ_FLAGS           (-1)    /* from resource */
429
430 #elif defined(CONFIG_MN10300)
431
432 /*
433  * MN10300/AM33 configuration
434  */
435
436 #include <asm/unit/smc91111.h>
437
438 #else
439
440 /*
441  * Default configuration
442  */
443
444 #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
449 #define SMC_IO_SHIFT            (lp->io_shift)
450
451 #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))
457 #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)
459 #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
467
468 /* store this information for the driver.. */
469 struct 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
503 #ifdef CONFIG_ARCH_PXA
504         /* 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;
510
511         /* the low address lines on some platforms aren't connected... */
512         int     io_shift;
513
514         struct smc91x_platdata cfg;
515 };
516
517 #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)
520
521 #ifdef CONFIG_ARCH_PXA
522 /*
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>
530 #include <mach/pxa-regs.h>
531
532 #ifdef SMC_insl
533 #undef SMC_insl
534 #define SMC_insl(a, r, p, l) \
535         smc_pxa_dma_insl(a, lp, r, dev->dma, p, l)
536 static inline void
537 smc_pxa_dma_insl(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
538                  u_char *buf, int len)
539 {
540         u_long physaddr = lp->physaddr;
541         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;
557         dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
558         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;
567         dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
568 }
569 #endif
570
571 #ifdef SMC_insw
572 #undef SMC_insw
573 #define SMC_insw(a, r, p, l) \
574         smc_pxa_dma_insw(a, lp, r, dev->dma, p, l)
575 static inline void
576 smc_pxa_dma_insw(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
577                  u_char *buf, int len)
578 {
579         u_long physaddr = lp->physaddr;
580         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;
596         dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
597         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;
606         dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
607 }
608 #endif
609
610 static void
611 smc_pxa_dma_irq(int dma, void *dummy)
612 {
613         DCSR(dma) = 0;
614 }
615 #endif  /* CONFIG_ARCH_PXA */
616
617
618 /*
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
683 #ifndef SMC_IO_SHIFT
684 #define SMC_IO_SHIFT    0
685 #endif
686
687 #ifndef SMC_IRQ_FLAGS
688 #define SMC_IRQ_FLAGS           IRQF_TRIGGER_RISING
689 #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 */
697 #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  */
712 #define TCR_REG(lp)     SMC_REG(lp, 0x0000, 0)
713 #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  */
731 #define EPH_STATUS_REG(lp)      SMC_REG(lp, 0x0002, 0)
732 #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  */
750 #define RCR_REG(lp)             SMC_REG(lp, 0x0004, 0)
751 #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  */
767 #define COUNTER_REG(lp) SMC_REG(lp, 0x0006, 0)
768
769
770 // Memory Information Register
771 /* BANK 0  */
772 #define MIR_REG(lp)             SMC_REG(lp, 0x0008, 0)
773
774
775 // Receive/Phy Control Register
776 /* BANK 0  */
777 #define RPC_REG(lp)             SMC_REG(lp, 0x000A, 0)
778 #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 */
811 #define CONFIG_REG(lp)  SMC_REG(lp, 0x0000,     1)
812 #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 */
823 #define BASE_REG(lp)    SMC_REG(lp, 0x0002, 1)
824
825
826 // Individual Address Registers
827 /* BANK 1 */
828 #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)
831
832
833 // General Purpose Register
834 /* BANK 1 */
835 #define GP_REG(lp)              SMC_REG(lp, 0x000A, 1)
836
837
838 // Control Register
839 /* BANK 1 */
840 #define CTL_REG(lp)             SMC_REG(lp, 0x000C, 1)
841 #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 */
853 #define MMU_CMD_REG(lp) SMC_REG(lp, 0x0000, 2)
854 #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 */
867 #define PN_REG(lp)              SMC_REG(lp, 0x0002, 2)
868
869
870 // Allocation Result Register
871 /* BANK 2 */
872 #define AR_REG(lp)              SMC_REG(lp, 0x0003, 2)
873 #define AR_FAILED       0x80    // Alocation Failed
874
875
876 // TX FIFO Ports Register
877 /* BANK 2 */
878 #define TXFIFO_REG(lp)  SMC_REG(lp, 0x0004, 2)
879 #define TXFIFO_TEMPTY   0x80    // TX FIFO Empty
880
881 // RX FIFO Ports Register
882 /* BANK 2 */
883 #define RXFIFO_REG(lp)  SMC_REG(lp, 0x0005, 2)
884 #define RXFIFO_REMPTY   0x80    // RX FIFO Empty
885
886 #define FIFO_REG(lp)    SMC_REG(lp, 0x0004, 2)
887
888 // Pointer Register
889 /* BANK 2 */
890 #define PTR_REG(lp)             SMC_REG(lp, 0x0006, 2)
891 #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 */
898 #define DATA_REG(lp)    SMC_REG(lp, 0x0008, 2)
899
900
901 // Interrupt Status/Acknowledge Register
902 /* BANK 2 */
903 #define INT_REG(lp)             SMC_REG(lp, 0x000C, 2)
904
905
906 // Interrupt Mask Register
907 /* BANK 2 */
908 #define IM_REG(lp)              SMC_REG(lp, 0x000D, 2)
909 #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 */
921 #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)
925
926
927 // Management Interface Register (MII)
928 /* BANK 3 */
929 #define MII_REG(lp)             SMC_REG(lp, 0x0008, 3)
930 #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 # ) */
940 #define REV_REG(lp)             SMC_REG(lp, 0x000A, 3)
941
942
943 // Early RCV Register
944 /* BANK 3 */
945 /* this is NOT on SMC9192 */
946 #define ERCV_REG(lp)    SMC_REG(lp, 0x000C, 3)
947 #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 */
953 #define EXT_REG(lp)             SMC_REG(lp, 0x0000, 7)
954
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
964 static 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 /*
978  . 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).
1069  *
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.
1074  */
1075
1076 #if SMC_DEBUG > 0
1077 #define SMC_REG(lp, reg, bank)                                  \
1078         ({                                                              \
1079                 int __b = SMC_CURRENT_BANK(lp);                 \
1080                 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
1088 #define SMC_REG(lp, reg, bank)  (reg<<SMC_IO_SHIFT)
1089 #endif
1090
1091 /*
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  */
1100 #define SMC_MUST_ALIGN_WRITE(lp)        SMC_32BIT(lp)
1101
1102 #define SMC_GET_PN(lp)                                          \
1103         (SMC_8BIT(lp)   ? (SMC_inb(ioaddr, PN_REG(lp))) \
1104                                 : (SMC_inw(ioaddr, PN_REG(lp)) & 0xFF))
1105
1106 #define SMC_SET_PN(lp, x)                                               \
1107         do {                                                            \
1108                 if (SMC_MUST_ALIGN_WRITE(lp))                           \
1109                         SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 0, 2));   \
1110                 else if (SMC_8BIT(lp))                          \
1111                         SMC_outb(x, ioaddr, PN_REG(lp));                \
1112                 else                                                    \
1113                         SMC_outw(x, ioaddr, PN_REG(lp));                \
1114         } while (0)
1115
1116 #define SMC_GET_AR(lp)                                          \
1117         (SMC_8BIT(lp)   ? (SMC_inb(ioaddr, AR_REG(lp))) \
1118                                 : (SMC_inw(ioaddr, PN_REG(lp)) >> 8))
1119
1120 #define SMC_GET_TXFIFO(lp)                                              \
1121         (SMC_8BIT(lp)   ? (SMC_inb(ioaddr, TXFIFO_REG(lp)))     \
1122                                 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) & 0xFF))
1123
1124 #define SMC_GET_RXFIFO(lp)                                              \
1125         (SMC_8BIT(lp)   ? (SMC_inb(ioaddr, RXFIFO_REG(lp)))     \
1126                                 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) >> 8))
1127
1128 #define SMC_GET_INT(lp)                                         \
1129         (SMC_8BIT(lp)   ? (SMC_inb(ioaddr, INT_REG(lp)))        \
1130                                 : (SMC_inw(ioaddr, INT_REG(lp)) & 0xFF))
1131
1132 #define SMC_ACK_INT(lp, x)                                              \
1133         do {                                                            \
1134                 if (SMC_8BIT(lp))                                       \
1135                         SMC_outb(x, ioaddr, INT_REG(lp));               \
1136                 else {                                                  \
1137                         unsigned long __flags;                          \
1138                         int __mask;                                     \
1139                         local_irq_save(__flags);                        \
1140                         __mask = SMC_inw(ioaddr, INT_REG(lp)) & ~0xff; \
1141                         SMC_outw(__mask | (x), ioaddr, INT_REG(lp));    \
1142                         local_irq_restore(__flags);                     \
1143                 }                                                       \
1144         } while (0)
1145
1146 #define SMC_GET_INT_MASK(lp)                                            \
1147         (SMC_8BIT(lp)   ? (SMC_inb(ioaddr, IM_REG(lp))) \
1148                                 : (SMC_inw(ioaddr, INT_REG(lp)) >> 8))
1149
1150 #define SMC_SET_INT_MASK(lp, x)                                 \
1151         do {                                                            \
1152                 if (SMC_8BIT(lp))                                       \
1153                         SMC_outb(x, ioaddr, IM_REG(lp));                \
1154                 else                                                    \
1155                         SMC_outw((x) << 8, ioaddr, INT_REG(lp));        \
1156         } while (0)
1157
1158 #define SMC_CURRENT_BANK(lp)    SMC_inw(ioaddr, BANK_SELECT)
1159
1160 #define SMC_SELECT_BANK(lp, x)                                  \
1161         do {                                                            \
1162                 if (SMC_MUST_ALIGN_WRITE(lp))                           \
1163                         SMC_outl((x)<<16, ioaddr, 12<<SMC_IO_SHIFT);    \
1164                 else                                                    \
1165                         SMC_outw(x, ioaddr, BANK_SELECT);               \
1166         } while (0)
1167
1168 #define SMC_GET_BASE(lp)                SMC_inw(ioaddr, BASE_REG(lp))
1169
1170 #define SMC_SET_BASE(lp, x)             SMC_outw(x, ioaddr, BASE_REG(lp))
1171
1172 #define SMC_GET_CONFIG(lp)      SMC_inw(ioaddr, CONFIG_REG(lp))
1173
1174 #define SMC_SET_CONFIG(lp, x)   SMC_outw(x, ioaddr, CONFIG_REG(lp))
1175
1176 #define SMC_GET_COUNTER(lp)     SMC_inw(ioaddr, COUNTER_REG(lp))
1177
1178 #define SMC_GET_CTL(lp)         SMC_inw(ioaddr, CTL_REG(lp))
1179
1180 #define SMC_SET_CTL(lp, x)              SMC_outw(x, ioaddr, CTL_REG(lp))
1181
1182 #define SMC_GET_MII(lp)         SMC_inw(ioaddr, MII_REG(lp))
1183
1184 #define SMC_SET_MII(lp, x)              SMC_outw(x, ioaddr, MII_REG(lp))
1185
1186 #define SMC_GET_MIR(lp)         SMC_inw(ioaddr, MIR_REG(lp))
1187
1188 #define SMC_SET_MIR(lp, x)              SMC_outw(x, ioaddr, MIR_REG(lp))
1189
1190 #define SMC_GET_MMU_CMD(lp)     SMC_inw(ioaddr, MMU_CMD_REG(lp))
1191
1192 #define SMC_SET_MMU_CMD(lp, x)  SMC_outw(x, ioaddr, MMU_CMD_REG(lp))
1193
1194 #define SMC_GET_FIFO(lp)                SMC_inw(ioaddr, FIFO_REG(lp))
1195
1196 #define SMC_GET_PTR(lp)         SMC_inw(ioaddr, PTR_REG(lp))
1197
1198 #define SMC_SET_PTR(lp, x)                                              \
1199         do {                                                            \
1200                 if (SMC_MUST_ALIGN_WRITE(lp))                           \
1201                         SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 4, 2));   \
1202                 else                                                    \
1203                         SMC_outw(x, ioaddr, PTR_REG(lp));               \
1204         } while (0)
1205
1206 #define SMC_GET_EPH_STATUS(lp)  SMC_inw(ioaddr, EPH_STATUS_REG(lp))
1207
1208 #define SMC_GET_RCR(lp)         SMC_inw(ioaddr, RCR_REG(lp))
1209
1210 #define SMC_SET_RCR(lp, x)              SMC_outw(x, ioaddr, RCR_REG(lp))
1211
1212 #define SMC_GET_REV(lp)         SMC_inw(ioaddr, REV_REG(lp))
1213
1214 #define SMC_GET_RPC(lp)         SMC_inw(ioaddr, RPC_REG(lp))
1215
1216 #define SMC_SET_RPC(lp, x)                                              \
1217         do {                                                            \
1218                 if (SMC_MUST_ALIGN_WRITE(lp))                           \
1219                         SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 8, 0));   \
1220                 else                                                    \
1221                         SMC_outw(x, ioaddr, RPC_REG(lp));               \
1222         } while (0)
1223
1224 #define SMC_GET_TCR(lp)         SMC_inw(ioaddr, TCR_REG(lp))
1225
1226 #define SMC_SET_TCR(lp, x)              SMC_outw(x, ioaddr, TCR_REG(lp))
1227
1228 #ifndef SMC_GET_MAC_ADDR
1229 #define SMC_GET_MAC_ADDR(lp, addr)                                      \
1230         do {                                                            \
1231                 unsigned int __v;                                       \
1232                 __v = SMC_inw(ioaddr, ADDR0_REG(lp));                   \
1233                 addr[0] = __v; addr[1] = __v >> 8;                      \
1234                 __v = SMC_inw(ioaddr, ADDR1_REG(lp));                   \
1235                 addr[2] = __v; addr[3] = __v >> 8;                      \
1236                 __v = SMC_inw(ioaddr, ADDR2_REG(lp));                   \
1237                 addr[4] = __v; addr[5] = __v >> 8;                      \
1238         } while (0)
1239 #endif
1240
1241 #define SMC_SET_MAC_ADDR(lp, addr)                                      \
1242         do {                                                            \
1243                 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)); \
1246         } while (0)
1247
1248 #define SMC_SET_MCAST(lp, x)                                            \
1249         do {                                                            \
1250                 const unsigned char *mt = (x);                          \
1251                 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)); \
1255         } while (0)
1256
1257 #define SMC_PUT_PKT_HDR(lp, status, length)                             \
1258         do {                                                            \
1259                 if (SMC_32BIT(lp))                                      \
1260                         SMC_outl((status) | (length)<<16, ioaddr,       \
1261                                  DATA_REG(lp));                 \
1262                 else {                                                  \
1263                         SMC_outw(status, ioaddr, DATA_REG(lp)); \
1264                         SMC_outw(length, ioaddr, DATA_REG(lp)); \
1265                 }                                                       \
1266         } while (0)
1267
1268 #define SMC_GET_PKT_HDR(lp, status, length)                             \
1269         do {                                                            \
1270                 if (SMC_32BIT(lp)) {                            \
1271                         unsigned int __val = SMC_inl(ioaddr, DATA_REG(lp)); \
1272                         (status) = __val & 0xffff;                      \
1273                         (length) = __val >> 16;                         \
1274                 } else {                                                \
1275                         (status) = SMC_inw(ioaddr, DATA_REG(lp));       \
1276                         (length) = SMC_inw(ioaddr, DATA_REG(lp));       \
1277                 }                                                       \
1278         } while (0)
1279
1280 #define SMC_PUSH_DATA(lp, p, l)                                 \
1281         do {                                                            \
1282                 if (SMC_32BIT(lp)) {                            \
1283                         void *__ptr = (p);                              \
1284                         int __len = (l);                                \
1285                         void __iomem *__ioaddr = ioaddr;                \
1286                         if (__len >= 2 && (unsigned long)__ptr & 2) {   \
1287                                 __len -= 2;                             \
1288                                 SMC_outw(*(u16 *)__ptr, ioaddr,         \
1289                                         DATA_REG(lp));          \
1290                                 __ptr += 2;                             \
1291                         }                                               \
1292                         if (SMC_CAN_USE_DATACS && lp->datacs)           \
1293                                 __ioaddr = lp->datacs;                  \
1294                         SMC_outsl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
1295                         if (__len & 2) {                                \
1296                                 __ptr += (__len & ~3);                  \
1297                                 SMC_outw(*((u16 *)__ptr), ioaddr,       \
1298                                          DATA_REG(lp));         \
1299                         }                                               \
1300                 } else if (SMC_16BIT(lp))                               \
1301                         SMC_outsw(ioaddr, DATA_REG(lp), p, (l) >> 1);   \
1302                 else if (SMC_8BIT(lp))                          \
1303                         SMC_outsb(ioaddr, DATA_REG(lp), p, l);  \
1304         } while (0)
1305
1306 #define SMC_PULL_DATA(lp, p, l)                                 \
1307         do {                                                            \
1308                 if (SMC_32BIT(lp)) {                            \
1309                         void *__ptr = (p);                              \
1310                         int __len = (l);                                \
1311                         void __iomem *__ioaddr = ioaddr;                \
1312                         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;                             \
1328                                 SMC_SET_PTR(lp,                 \
1329                                         2|PTR_READ|PTR_RCV|PTR_AUTOINC); \
1330                         }                                               \
1331                         if (SMC_CAN_USE_DATACS && lp->datacs)           \
1332                                 __ioaddr = lp->datacs;                  \
1333                         __len += 2;                                     \
1334                         SMC_insl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
1335                 } else if (SMC_16BIT(lp))                               \
1336                         SMC_insw(ioaddr, DATA_REG(lp), p, (l) >> 1);    \
1337                 else if (SMC_8BIT(lp))                          \
1338                         SMC_insb(ioaddr, DATA_REG(lp), p, l);           \
1339         } while (0)
1340
1341 #endif  /* _SMC91X_H_ */