blob: 1e1617ef1607a036acabbf7d62d6211d1d929a25 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*------------------------------------------------------------------------
2 . smc91x.h - macros for SMSC's 91C9x/91C1xx single-chip Ethernet device.
3 .
4 . Copyright (C) 1996 by Erik Stahlman
5 . Copyright (C) 2001 Standard Microsystems Corporation
6 . Developed by Simple Network Magic Corporation
7 . Copyright (C) 2003 Monta Vista Software, Inc.
8 . Unified SMC91x driver by Nicolas Pitre
9 .
10 . This program is free software; you can redistribute it and/or modify
11 . it under the terms of the GNU General Public License as published by
12 . the Free Software Foundation; either version 2 of the License, or
13 . (at your option) any later version.
14 .
15 . This program is distributed in the hope that it will be useful,
16 . but WITHOUT ANY WARRANTY; without even the implied warranty of
17 . MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 . GNU General Public License for more details.
19 .
20 . You should have received a copy of the GNU General Public License
21 . along with this program; if not, write to the Free Software
22 . Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 .
24 . Information contained in this file was obtained from the LAN91C111
25 . manual from SMC. To get a copy, if you really want one, you can find
26 . information under www.smsc.com.
27 .
28 . Authors
29 . Erik Stahlman <erik@vt.edu>
30 . Daris A Nevil <dnevil@snmc.com>
Nicolas Pitre2f82af02009-09-14 03:25:28 -040031 . Nicolas Pitre <nico@fluxnic.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 .
33 ---------------------------------------------------------------------------*/
34#ifndef _SMC91X_H_
35#define _SMC91X_H_
36
Magnus Damm3e947942008-02-22 19:55:15 +090037#include <linux/smc91x.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Define your architecture specific bus configuration parameters here.
41 */
42
Eric Miao38fd6c32008-06-24 16:14:26 +080043#if defined(CONFIG_ARCH_LUBBOCK) ||\
Eric Miao88c36eb2008-06-24 16:47:37 +080044 defined(CONFIG_MACH_MAINSTONE) ||\
Eric Miaoe1719da2008-06-24 16:49:41 +080045 defined(CONFIG_MACH_ZYLONITE) ||\
Marc Zyngier175ff202008-07-22 16:59:44 +020046 defined(CONFIG_MACH_LITTLETON) ||\
Eric Miaoa6b993c2009-02-18 16:38:22 +080047 defined(CONFIG_MACH_ZYLONITE2) ||\
Jonathan Cameron80153d12009-05-12 19:37:20 +000048 defined(CONFIG_ARCH_VIPER) ||\
49 defined(CONFIG_MACH_STARGATE2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Eric Miao38fd6c32008-06-24 16:14:26 +080051#include <asm/mach-types.h>
52
53/* Now the bus width is specified in the platform data
54 * pretend here to support all I/O access types
55 */
56#define SMC_CAN_USE_8BIT 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define SMC_CAN_USE_16BIT 1
Eric Miao38fd6c32008-06-24 16:14:26 +080058#define SMC_CAN_USE_32BIT 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define SMC_NOWAIT 1
60
Eric Miao3aed74c2008-06-24 15:51:02 +080061#define SMC_IO_SHIFT (lp->io_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Eric Miao38fd6c32008-06-24 16:14:26 +080063#define SMC_inb(a, r) readb((a) + (r))
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define SMC_inw(a, r) readw((a) + (r))
Eric Miao38fd6c32008-06-24 16:14:26 +080065#define SMC_inl(a, r) readl((a) + (r))
66#define SMC_outb(v, a, r) writeb(v, (a) + (r))
67#define SMC_outl(v, a, r) writel(v, (a) + (r))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
69#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Eric Miao38fd6c32008-06-24 16:14:26 +080070#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
71#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +000072#define SMC_IRQ_FLAGS (-1) /* from resource */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Eric Miao38fd6c32008-06-24 16:14:26 +080074/* We actually can't write halfwords properly if not word aligned */
75static inline void SMC_outw(u16 val, void __iomem *ioaddr, int reg)
76{
Jonathan Cameron80153d12009-05-12 19:37:20 +000077 if ((machine_is_mainstone() || machine_is_stargate2()) && reg & 2) {
Eric Miao38fd6c32008-06-24 16:14:26 +080078 unsigned int v = val << 16;
79 v |= readl(ioaddr + (reg & ~2)) & 0xffff;
80 writel(v, ioaddr + (reg & ~2));
81 } else {
82 writew(val, ioaddr + reg);
83 }
84}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#elif defined(CONFIG_SA1100_PLEB)
87/* We can only do 16-bit reads and writes in the static memory space. */
88#define SMC_CAN_USE_8BIT 1
89#define SMC_CAN_USE_16BIT 1
90#define SMC_CAN_USE_32BIT 0
91#define SMC_IO_SHIFT 0
92#define SMC_NOWAIT 1
93
Russell King1cf99be2005-11-12 21:49:36 +000094#define SMC_inb(a, r) readb((a) + (r))
95#define SMC_insb(a, r, p, l) readsb((a) + (r), p, (l))
96#define SMC_inw(a, r) readw((a) + (r))
97#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
98#define SMC_outb(v, a, r) writeb(v, (a) + (r))
99#define SMC_outsb(a, r, p, l) writesb((a) + (r), p, (l))
100#define SMC_outw(v, a, r) writew(v, (a) + (r))
101#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Russell Kinge7b3dc72008-01-14 22:30:10 +0000103#define SMC_IRQ_FLAGS (-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105#elif defined(CONFIG_SA1100_ASSABET)
106
Russell Kinga09e64f2008-08-05 16:14:15 +0100107#include <mach/neponset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109/* We can only do 8-bit reads and writes in the static memory space. */
110#define SMC_CAN_USE_8BIT 1
111#define SMC_CAN_USE_16BIT 0
112#define SMC_CAN_USE_32BIT 0
113#define SMC_NOWAIT 1
114
115/* The first two address lines aren't connected... */
116#define SMC_IO_SHIFT 2
117
118#define SMC_inb(a, r) readb((a) + (r))
119#define SMC_outb(v, a, r) writeb(v, (a) + (r))
120#define SMC_insb(a, r, p, l) readsb((a) + (r), p, (l))
121#define SMC_outsb(a, r, p, l) writesb((a) + (r), p, (l))
Russell Kinge7b3dc72008-01-14 22:30:10 +0000122#define SMC_IRQ_FLAGS (-1) /* from resource */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Joe Perches8e95a202009-12-03 07:58:21 +0000124#elif defined(CONFIG_MACH_LOGICPD_PXA270) || \
125 defined(CONFIG_MACH_NOMADIK_8815NHK)
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200126
127#define SMC_CAN_USE_8BIT 0
128#define SMC_CAN_USE_16BIT 1
129#define SMC_CAN_USE_32BIT 0
130#define SMC_IO_SHIFT 0
131#define SMC_NOWAIT 1
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200132
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200133#define SMC_inw(a, r) readw((a) + (r))
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200134#define SMC_outw(v, a, r) writew(v, (a) + (r))
Lennert Buytenhekb0348b92006-03-28 17:19:50 +0200135#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
136#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#elif defined(CONFIG_ARCH_INNOKOM) || \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 defined(CONFIG_ARCH_PXA_IDP) || \
Robert Schwebel4f15a982008-01-08 08:50:02 +0100140 defined(CONFIG_ARCH_RAMSES) || \
141 defined(CONFIG_ARCH_PCM027)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143#define SMC_CAN_USE_8BIT 1
144#define SMC_CAN_USE_16BIT 1
145#define SMC_CAN_USE_32BIT 1
146#define SMC_IO_SHIFT 0
147#define SMC_NOWAIT 1
148#define SMC_USE_PXA_DMA 1
149
150#define SMC_inb(a, r) readb((a) + (r))
151#define SMC_inw(a, r) readw((a) + (r))
152#define SMC_inl(a, r) readl((a) + (r))
153#define SMC_outb(v, a, r) writeb(v, (a) + (r))
154#define SMC_outl(v, a, r) writel(v, (a) + (r))
155#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
156#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +0000157#define SMC_IRQ_FLAGS (-1) /* from resource */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159/* We actually can't write halfwords properly if not word aligned */
160static inline void
Nicolas Pitreeb1d6982005-05-12 20:19:09 -0400161SMC_outw(u16 val, void __iomem *ioaddr, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 if (reg & 2) {
164 unsigned int v = val << 16;
165 v |= readl(ioaddr + (reg & ~2)) & 0xffff;
166 writel(v, ioaddr + (reg & ~2));
167 } else {
168 writew(val, ioaddr + reg);
169 }
170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#elif defined(CONFIG_SH_SH4202_MICRODEV)
173
174#define SMC_CAN_USE_8BIT 0
175#define SMC_CAN_USE_16BIT 1
176#define SMC_CAN_USE_32BIT 0
177
178#define SMC_inb(a, r) inb((a) + (r) - 0xa0000000)
179#define SMC_inw(a, r) inw((a) + (r) - 0xa0000000)
180#define SMC_inl(a, r) inl((a) + (r) - 0xa0000000)
181#define SMC_outb(v, a, r) outb(v, (a) + (r) - 0xa0000000)
182#define SMC_outw(v, a, r) outw(v, (a) + (r) - 0xa0000000)
183#define SMC_outl(v, a, r) outl(v, (a) + (r) - 0xa0000000)
184#define SMC_insl(a, r, p, l) insl((a) + (r) - 0xa0000000, p, l)
185#define SMC_outsl(a, r, p, l) outsl((a) + (r) - 0xa0000000, p, l)
186#define SMC_insw(a, r, p, l) insw((a) + (r) - 0xa0000000, p, l)
187#define SMC_outsw(a, r, p, l) outsw((a) + (r) - 0xa0000000, p, l)
188
Russell King9ded96f2006-01-08 01:02:07 -0800189#define SMC_IRQ_FLAGS (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#elif defined(CONFIG_M32R)
192
193#define SMC_CAN_USE_8BIT 0
194#define SMC_CAN_USE_16BIT 1
195#define SMC_CAN_USE_32BIT 0
196
Mariusz Kozlowski59dc76a2006-12-04 15:04:56 -0800197#define SMC_inb(a, r) inb(((u32)a) + (r))
Hirokazu Takataf3ac9fb2005-10-30 15:00:06 -0800198#define SMC_inw(a, r) inw(((u32)a) + (r))
199#define SMC_outb(v, a, r) outb(v, ((u32)a) + (r))
200#define SMC_outw(v, a, r) outw(v, ((u32)a) + (r))
201#define SMC_insw(a, r, p, l) insw(((u32)a) + (r), p, l)
202#define SMC_outsw(a, r, p, l) outsw(((u32)a) + (r), p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Russell King9ded96f2006-01-08 01:02:07 -0800204#define SMC_IRQ_FLAGS (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206#define RPC_LSA_DEFAULT RPC_LED_TX_RX
207#define RPC_LSB_DEFAULT RPC_LED_100_10
208
Deepak Saxena8431adf2006-07-11 23:02:48 -0700209#elif defined(CONFIG_ARCH_VERSATILE)
210
211#define SMC_CAN_USE_8BIT 1
212#define SMC_CAN_USE_16BIT 1
213#define SMC_CAN_USE_32BIT 1
214#define SMC_NOWAIT 1
215
216#define SMC_inb(a, r) readb((a) + (r))
217#define SMC_inw(a, r) readw((a) + (r))
218#define SMC_inl(a, r) readl((a) + (r))
219#define SMC_outb(v, a, r) writeb(v, (a) + (r))
220#define SMC_outw(v, a, r) writew(v, (a) + (r))
221#define SMC_outl(v, a, r) writel(v, (a) + (r))
222#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
223#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
Russell Kinge7b3dc72008-01-14 22:30:10 +0000224#define SMC_IRQ_FLAGS (-1) /* from resource */
Deepak Saxena8431adf2006-07-11 23:02:48 -0700225
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700226#elif defined(CONFIG_ARCH_MSM)
227
228#define SMC_CAN_USE_8BIT 0
229#define SMC_CAN_USE_16BIT 1
230#define SMC_CAN_USE_32BIT 0
231#define SMC_NOWAIT 1
232
233#define SMC_inw(a, r) readw((a) + (r))
234#define SMC_outw(v, a, r) writew(v, (a) + (r))
235#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
236#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
237
238#define SMC_IRQ_FLAGS IRQF_TRIGGER_HIGH
239
David Howellsb920de12008-02-08 04:19:31 -0800240#elif defined(CONFIG_MN10300)
241
242/*
243 * MN10300/AM33 configuration
244 */
245
David Howells2f2a2132009-04-10 14:33:48 +0100246#include <unit/smc91111.h>
David Howellsb920de12008-02-08 04:19:31 -0800247
David Brown4b79a1a2010-03-05 09:12:34 +0000248#elif defined(CONFIG_ARCH_MSM)
249
250#define SMC_CAN_USE_8BIT 0
251#define SMC_CAN_USE_16BIT 1
252#define SMC_CAN_USE_32BIT 0
253#define SMC_NOWAIT 1
254
255#define SMC_inw(a, r) readw((a) + (r))
256#define SMC_outw(v, a, r) writew(v, (a) + (r))
257#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
258#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
259
260#define SMC_IRQ_FLAGS IRQF_TRIGGER_HIGH
261
Greg Ungerer717ea4b2010-03-10 07:37:06 -0800262#elif defined(CONFIG_COLDFIRE)
263
264#define SMC_CAN_USE_8BIT 0
265#define SMC_CAN_USE_16BIT 1
266#define SMC_CAN_USE_32BIT 0
267#define SMC_NOWAIT 1
268
269static inline void mcf_insw(void *a, unsigned char *p, int l)
270{
271 u16 *wp = (u16 *) p;
272 while (l-- > 0)
273 *wp++ = readw(a);
274}
275
276static inline void mcf_outsw(void *a, unsigned char *p, int l)
277{
278 u16 *wp = (u16 *) p;
279 while (l-- > 0)
280 writew(*wp++, a);
281}
282
283#define SMC_inw(a, r) _swapw(readw((a) + (r)))
284#define SMC_outw(v, a, r) writew(_swapw(v), (a) + (r))
285#define SMC_insw(a, r, p, l) mcf_insw(a + r, p, l)
286#define SMC_outsw(a, r, p, l) mcf_outsw(a + r, p, l)
287
288#define SMC_IRQ_FLAGS (IRQF_DISABLED)
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290#else
291
David Howellsb920de12008-02-08 04:19:31 -0800292/*
293 * Default configuration
294 */
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296#define SMC_CAN_USE_8BIT 1
297#define SMC_CAN_USE_16BIT 1
298#define SMC_CAN_USE_32BIT 1
299#define SMC_NOWAIT 1
300
Magnus Dammd1c5ea32008-09-08 14:02:34 +0900301#define SMC_IO_SHIFT (lp->io_shift)
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303#define SMC_inb(a, r) readb((a) + (r))
304#define SMC_inw(a, r) readw((a) + (r))
305#define SMC_inl(a, r) readl((a) + (r))
306#define SMC_outb(v, a, r) writeb(v, (a) + (r))
307#define SMC_outw(v, a, r) writew(v, (a) + (r))
308#define SMC_outl(v, a, r) writel(v, (a) + (r))
Magnus Damm8a214c12008-02-22 19:55:24 +0900309#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
310#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311#define SMC_insl(a, r, p, l) readsl((a) + (r), p, l)
312#define SMC_outsl(a, r, p, l) writesl((a) + (r), p, l)
313
314#define RPC_LSA_DEFAULT RPC_LED_100_10
315#define RPC_LSB_DEFAULT RPC_LED_TX_RX
316
317#endif
318
Russell King073ac8f2007-09-01 21:27:18 +0100319
320/* store this information for the driver.. */
321struct smc_local {
322 /*
323 * If I have to wait until memory is available to send a
324 * packet, I will store the skbuff here, until I get the
325 * desired memory. Then, I'll send it out and free it.
326 */
327 struct sk_buff *pending_tx_skb;
328 struct tasklet_struct tx_task;
329
330 /* version/revision of the SMC91x chip */
331 int version;
332
333 /* Contains the current active transmission mode */
334 int tcr_cur_mode;
335
336 /* Contains the current active receive mode */
337 int rcr_cur_mode;
338
339 /* Contains the current active receive/phy mode */
340 int rpc_cur_mode;
341 int ctl_rfduplx;
342 int ctl_rspeed;
343
344 u32 msg_enable;
345 u32 phy_type;
346 struct mii_if_info mii;
347
348 /* work queue */
349 struct work_struct phy_configure;
350 struct net_device *dev;
351 int work_pending;
352
353 spinlock_t lock;
354
Eric Miao52256c02008-06-24 15:36:05 +0800355#ifdef CONFIG_ARCH_PXA
Russell King073ac8f2007-09-01 21:27:18 +0100356 /* DMA needs the physical address of the chip */
357 u_long physaddr;
358 struct device *device;
359#endif
360 void __iomem *base;
361 void __iomem *datacs;
Magnus Damm3e947942008-02-22 19:55:15 +0900362
Eric Miao15919882008-06-24 13:38:50 +0800363 /* the low address lines on some platforms aren't connected... */
364 int io_shift;
365
Magnus Damm3e947942008-02-22 19:55:15 +0900366 struct smc91x_platdata cfg;
Russell King073ac8f2007-09-01 21:27:18 +0100367};
368
Eric Miaofa6d3be2008-06-19 17:19:57 +0800369#define SMC_8BIT(p) ((p)->cfg.flags & SMC91X_USE_8BIT)
370#define SMC_16BIT(p) ((p)->cfg.flags & SMC91X_USE_16BIT)
371#define SMC_32BIT(p) ((p)->cfg.flags & SMC91X_USE_32BIT)
Russell King073ac8f2007-09-01 21:27:18 +0100372
Eric Miao52256c02008-06-24 15:36:05 +0800373#ifdef CONFIG_ARCH_PXA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/*
375 * Let's use the DMA engine on the XScale PXA2xx for RX packets. This is
376 * always happening in irq context so no need to worry about races. TX is
377 * different and probably not worth it for that reason, and not as critical
378 * as RX which can overrun memory and lose packets.
379 */
380#include <linux/dma-mapping.h>
Russell Kingdcea83a2008-11-29 11:40:28 +0000381#include <mach/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383#ifdef SMC_insl
384#undef SMC_insl
385#define SMC_insl(a, r, p, l) \
Russell King073ac8f2007-09-01 21:27:18 +0100386 smc_pxa_dma_insl(a, lp, r, dev->dma, p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387static inline void
Russell King073ac8f2007-09-01 21:27:18 +0100388smc_pxa_dma_insl(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 u_char *buf, int len)
390{
Russell King073ac8f2007-09-01 21:27:18 +0100391 u_long physaddr = lp->physaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 dma_addr_t dmabuf;
393
394 /* fallback if no DMA available */
395 if (dma == (unsigned char)-1) {
396 readsl(ioaddr + reg, buf, len);
397 return;
398 }
399
400 /* 64 bit alignment is required for memory to memory DMA */
401 if ((long)buf & 4) {
402 *((u32 *)buf) = SMC_inl(ioaddr, reg);
403 buf += 4;
404 len--;
405 }
406
407 len *= 4;
Russell King073ac8f2007-09-01 21:27:18 +0100408 dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 DCSR(dma) = DCSR_NODESC;
410 DTADR(dma) = dmabuf;
411 DSADR(dma) = physaddr + reg;
412 DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
413 DCMD_WIDTH4 | (DCMD_LENGTH & len));
414 DCSR(dma) = DCSR_NODESC | DCSR_RUN;
415 while (!(DCSR(dma) & DCSR_STOPSTATE))
416 cpu_relax();
417 DCSR(dma) = 0;
Russell King073ac8f2007-09-01 21:27:18 +0100418 dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420#endif
421
422#ifdef SMC_insw
423#undef SMC_insw
424#define SMC_insw(a, r, p, l) \
Russell King073ac8f2007-09-01 21:27:18 +0100425 smc_pxa_dma_insw(a, lp, r, dev->dma, p, l)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static inline void
Russell King073ac8f2007-09-01 21:27:18 +0100427smc_pxa_dma_insw(void __iomem *ioaddr, struct smc_local *lp, int reg, int dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 u_char *buf, int len)
429{
Russell King073ac8f2007-09-01 21:27:18 +0100430 u_long physaddr = lp->physaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 dma_addr_t dmabuf;
432
433 /* fallback if no DMA available */
434 if (dma == (unsigned char)-1) {
435 readsw(ioaddr + reg, buf, len);
436 return;
437 }
438
439 /* 64 bit alignment is required for memory to memory DMA */
440 while ((long)buf & 6) {
441 *((u16 *)buf) = SMC_inw(ioaddr, reg);
442 buf += 2;
443 len--;
444 }
445
446 len *= 2;
Russell King073ac8f2007-09-01 21:27:18 +0100447 dmabuf = dma_map_single(lp->device, buf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 DCSR(dma) = DCSR_NODESC;
449 DTADR(dma) = dmabuf;
450 DSADR(dma) = physaddr + reg;
451 DCMD(dma) = (DCMD_INCTRGADDR | DCMD_BURST32 |
452 DCMD_WIDTH2 | (DCMD_LENGTH & len));
453 DCSR(dma) = DCSR_NODESC | DCSR_RUN;
454 while (!(DCSR(dma) & DCSR_STOPSTATE))
455 cpu_relax();
456 DCSR(dma) = 0;
Russell King073ac8f2007-09-01 21:27:18 +0100457 dma_unmap_single(lp->device, dmabuf, len, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459#endif
460
461static void
David Howells7d12e782006-10-05 14:55:46 +0100462smc_pxa_dma_irq(int dma, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 DCSR(dma) = 0;
465}
Eric Miao52256c02008-06-24 15:36:05 +0800466#endif /* CONFIG_ARCH_PXA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468
Nicolas Pitre09779c62006-03-20 11:54:27 -0500469/*
470 * Everything a particular hardware setup needs should have been defined
471 * at this point. Add stubs for the undefined cases, mainly to avoid
472 * compilation warnings since they'll be optimized away, or to prevent buggy
473 * use of them.
474 */
475
476#if ! SMC_CAN_USE_32BIT
477#define SMC_inl(ioaddr, reg) ({ BUG(); 0; })
478#define SMC_outl(x, ioaddr, reg) BUG()
479#define SMC_insl(a, r, p, l) BUG()
480#define SMC_outsl(a, r, p, l) BUG()
481#endif
482
483#if !defined(SMC_insl) || !defined(SMC_outsl)
484#define SMC_insl(a, r, p, l) BUG()
485#define SMC_outsl(a, r, p, l) BUG()
486#endif
487
488#if ! SMC_CAN_USE_16BIT
489
490/*
491 * Any 16-bit access is performed with two 8-bit accesses if the hardware
492 * can't do it directly. Most registers are 16-bit so those are mandatory.
493 */
494#define SMC_outw(x, ioaddr, reg) \
495 do { \
496 unsigned int __val16 = (x); \
497 SMC_outb( __val16, ioaddr, reg ); \
498 SMC_outb( __val16 >> 8, ioaddr, reg + (1 << SMC_IO_SHIFT));\
499 } while (0)
500#define SMC_inw(ioaddr, reg) \
501 ({ \
502 unsigned int __val16; \
503 __val16 = SMC_inb( ioaddr, reg ); \
504 __val16 |= SMC_inb( ioaddr, reg + (1 << SMC_IO_SHIFT)) << 8; \
505 __val16; \
506 })
507
508#define SMC_insw(a, r, p, l) BUG()
509#define SMC_outsw(a, r, p, l) BUG()
510
511#endif
512
513#if !defined(SMC_insw) || !defined(SMC_outsw)
514#define SMC_insw(a, r, p, l) BUG()
515#define SMC_outsw(a, r, p, l) BUG()
516#endif
517
518#if ! SMC_CAN_USE_8BIT
519#define SMC_inb(ioaddr, reg) ({ BUG(); 0; })
520#define SMC_outb(x, ioaddr, reg) BUG()
521#define SMC_insb(a, r, p, l) BUG()
522#define SMC_outsb(a, r, p, l) BUG()
523#endif
524
525#if !defined(SMC_insb) || !defined(SMC_outsb)
526#define SMC_insb(a, r, p, l) BUG()
527#define SMC_outsb(a, r, p, l) BUG()
528#endif
529
530#ifndef SMC_CAN_USE_DATACS
531#define SMC_CAN_USE_DATACS 0
532#endif
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534#ifndef SMC_IO_SHIFT
535#define SMC_IO_SHIFT 0
536#endif
Nicolas Pitre09779c62006-03-20 11:54:27 -0500537
538#ifndef SMC_IRQ_FLAGS
Thomas Gleixner1fb9df52006-07-01 19:29:39 -0700539#define SMC_IRQ_FLAGS IRQF_TRIGGER_RISING
Nicolas Pitre09779c62006-03-20 11:54:27 -0500540#endif
541
542#ifndef SMC_INTERRUPT_PREAMBLE
543#define SMC_INTERRUPT_PREAMBLE
544#endif
545
546
547/* Because of bank switching, the LAN91x uses only 16 I/O ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#define SMC_IO_EXTENT (16 << SMC_IO_SHIFT)
549#define SMC_DATA_EXTENT (4)
550
551/*
552 . Bank Select Register:
553 .
554 . yyyy yyyy 0000 00xx
555 . xx = bank number
556 . yyyy yyyy = 0x33, for identification purposes.
557*/
558#define BANK_SELECT (14 << SMC_IO_SHIFT)
559
560
561// Transmit Control Register
562/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900563#define TCR_REG(lp) SMC_REG(lp, 0x0000, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#define TCR_ENABLE 0x0001 // When 1 we can transmit
565#define TCR_LOOP 0x0002 // Controls output pin LBK
566#define TCR_FORCOL 0x0004 // When 1 will force a collision
567#define TCR_PAD_EN 0x0080 // When 1 will pad tx frames < 64 bytes w/0
568#define TCR_NOCRC 0x0100 // When 1 will not append CRC to tx frames
569#define TCR_MON_CSN 0x0400 // When 1 tx monitors carrier
570#define TCR_FDUPLX 0x0800 // When 1 enables full duplex operation
571#define TCR_STP_SQET 0x1000 // When 1 stops tx if Signal Quality Error
572#define TCR_EPH_LOOP 0x2000 // When 1 enables EPH block loopback
573#define TCR_SWFDUP 0x8000 // When 1 enables Switched Full Duplex mode
574
575#define TCR_CLEAR 0 /* do NOTHING */
576/* the default settings for the TCR register : */
577#define TCR_DEFAULT (TCR_ENABLE | TCR_PAD_EN)
578
579
580// EPH Status Register
581/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900582#define EPH_STATUS_REG(lp) SMC_REG(lp, 0x0002, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583#define ES_TX_SUC 0x0001 // Last TX was successful
584#define ES_SNGL_COL 0x0002 // Single collision detected for last tx
585#define ES_MUL_COL 0x0004 // Multiple collisions detected for last tx
586#define ES_LTX_MULT 0x0008 // Last tx was a multicast
587#define ES_16COL 0x0010 // 16 Collisions Reached
588#define ES_SQET 0x0020 // Signal Quality Error Test
589#define ES_LTXBRD 0x0040 // Last tx was a broadcast
590#define ES_TXDEFR 0x0080 // Transmit Deferred
591#define ES_LATCOL 0x0200 // Late collision detected on last tx
592#define ES_LOSTCARR 0x0400 // Lost Carrier Sense
593#define ES_EXC_DEF 0x0800 // Excessive Deferral
594#define ES_CTR_ROL 0x1000 // Counter Roll Over indication
595#define ES_LINK_OK 0x4000 // Driven by inverted value of nLNK pin
596#define ES_TXUNRN 0x8000 // Tx Underrun
597
598
599// Receive Control Register
600/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900601#define RCR_REG(lp) SMC_REG(lp, 0x0004, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602#define RCR_RX_ABORT 0x0001 // Set if a rx frame was aborted
603#define RCR_PRMS 0x0002 // Enable promiscuous mode
604#define RCR_ALMUL 0x0004 // When set accepts all multicast frames
605#define RCR_RXEN 0x0100 // IFF this is set, we can receive packets
606#define RCR_STRIP_CRC 0x0200 // When set strips CRC from rx packets
607#define RCR_ABORT_ENB 0x0200 // When set will abort rx on collision
608#define RCR_FILT_CAR 0x0400 // When set filters leading 12 bit s of carrier
609#define RCR_SOFTRST 0x8000 // resets the chip
610
611/* the normal settings for the RCR register : */
612#define RCR_DEFAULT (RCR_STRIP_CRC | RCR_RXEN)
613#define RCR_CLEAR 0x0 // set it to a base state
614
615
616// Counter Register
617/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900618#define COUNTER_REG(lp) SMC_REG(lp, 0x0006, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620
621// Memory Information Register
622/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900623#define MIR_REG(lp) SMC_REG(lp, 0x0008, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625
626// Receive/Phy Control Register
627/* BANK 0 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900628#define RPC_REG(lp) SMC_REG(lp, 0x000A, 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629#define RPC_SPEED 0x2000 // When 1 PHY is in 100Mbps mode.
630#define RPC_DPLX 0x1000 // When 1 PHY is in Full-Duplex Mode
631#define RPC_ANEG 0x0800 // When 1 PHY is in Auto-Negotiate Mode
632#define RPC_LSXA_SHFT 5 // Bits to shift LS2A,LS1A,LS0A to lsb
633#define RPC_LSXB_SHFT 2 // Bits to get LS2B,LS1B,LS0B to lsb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635#ifndef RPC_LSA_DEFAULT
636#define RPC_LSA_DEFAULT RPC_LED_100
637#endif
638#ifndef RPC_LSB_DEFAULT
639#define RPC_LSB_DEFAULT RPC_LED_FD
640#endif
641
Russell Kingb0dbcf52008-09-04 21:13:37 +0100642#define RPC_DEFAULT (RPC_ANEG | RPC_SPEED | RPC_DPLX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644
645/* Bank 0 0x0C is reserved */
646
647// Bank Select Register
648/* All Banks */
649#define BSR_REG 0x000E
650
651
652// Configuration Reg
653/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900654#define CONFIG_REG(lp) SMC_REG(lp, 0x0000, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#define CONFIG_EXT_PHY 0x0200 // 1=external MII, 0=internal Phy
656#define CONFIG_GPCNTRL 0x0400 // Inverse value drives pin nCNTRL
657#define CONFIG_NO_WAIT 0x1000 // When 1 no extra wait states on ISA bus
658#define CONFIG_EPH_POWER_EN 0x8000 // When 0 EPH is placed into low power mode.
659
660// Default is powered-up, Internal Phy, Wait States, and pin nCNTRL=low
661#define CONFIG_DEFAULT (CONFIG_EPH_POWER_EN)
662
663
664// Base Address Register
665/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900666#define BASE_REG(lp) SMC_REG(lp, 0x0002, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668
669// Individual Address Registers
670/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900671#define ADDR0_REG(lp) SMC_REG(lp, 0x0004, 1)
672#define ADDR1_REG(lp) SMC_REG(lp, 0x0006, 1)
673#define ADDR2_REG(lp) SMC_REG(lp, 0x0008, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675
676// General Purpose Register
677/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900678#define GP_REG(lp) SMC_REG(lp, 0x000A, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680
681// Control Register
682/* BANK 1 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900683#define CTL_REG(lp) SMC_REG(lp, 0x000C, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684#define CTL_RCV_BAD 0x4000 // When 1 bad CRC packets are received
685#define CTL_AUTO_RELEASE 0x0800 // When 1 tx pages are released automatically
686#define CTL_LE_ENABLE 0x0080 // When 1 enables Link Error interrupt
687#define CTL_CR_ENABLE 0x0040 // When 1 enables Counter Rollover interrupt
688#define CTL_TE_ENABLE 0x0020 // When 1 enables Transmit Error interrupt
689#define CTL_EEPROM_SELECT 0x0004 // Controls EEPROM reload & store
690#define CTL_RELOAD 0x0002 // When set reads EEPROM into registers
691#define CTL_STORE 0x0001 // When set stores registers into EEPROM
692
693
694// MMU Command Register
695/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900696#define MMU_CMD_REG(lp) SMC_REG(lp, 0x0000, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697#define MC_BUSY 1 // When 1 the last release has not completed
698#define MC_NOP (0<<5) // No Op
699#define MC_ALLOC (1<<5) // OR with number of 256 byte packets
700#define MC_RESET (2<<5) // Reset MMU to initial state
701#define MC_REMOVE (3<<5) // Remove the current rx packet
702#define MC_RELEASE (4<<5) // Remove and release the current rx packet
703#define MC_FREEPKT (5<<5) // Release packet in PNR register
704#define MC_ENQUEUE (6<<5) // Enqueue the packet for transmit
705#define MC_RSTTXFIFO (7<<5) // Reset the TX FIFOs
706
707
708// Packet Number Register
709/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900710#define PN_REG(lp) SMC_REG(lp, 0x0002, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712
713// Allocation Result Register
714/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900715#define AR_REG(lp) SMC_REG(lp, 0x0003, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716#define AR_FAILED 0x80 // Alocation Failed
717
718
719// TX FIFO Ports Register
720/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900721#define TXFIFO_REG(lp) SMC_REG(lp, 0x0004, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722#define TXFIFO_TEMPTY 0x80 // TX FIFO Empty
723
724// RX FIFO Ports Register
725/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900726#define RXFIFO_REG(lp) SMC_REG(lp, 0x0005, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727#define RXFIFO_REMPTY 0x80 // RX FIFO Empty
728
Magnus Dammcfdfa862008-02-22 19:55:05 +0900729#define FIFO_REG(lp) SMC_REG(lp, 0x0004, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731// Pointer Register
732/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900733#define PTR_REG(lp) SMC_REG(lp, 0x0006, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734#define PTR_RCV 0x8000 // 1=Receive area, 0=Transmit area
735#define PTR_AUTOINC 0x4000 // Auto increment the pointer on each access
736#define PTR_READ 0x2000 // When 1 the operation is a read
737
738
739// Data Register
740/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900741#define DATA_REG(lp) SMC_REG(lp, 0x0008, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743
744// Interrupt Status/Acknowledge Register
745/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900746#define INT_REG(lp) SMC_REG(lp, 0x000C, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748
749// Interrupt Mask Register
750/* BANK 2 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900751#define IM_REG(lp) SMC_REG(lp, 0x000D, 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752#define IM_MDINT 0x80 // PHY MI Register 18 Interrupt
753#define IM_ERCV_INT 0x40 // Early Receive Interrupt
754#define IM_EPH_INT 0x20 // Set by Ethernet Protocol Handler section
755#define IM_RX_OVRN_INT 0x10 // Set by Receiver Overruns
756#define IM_ALLOC_INT 0x08 // Set when allocation request is completed
757#define IM_TX_EMPTY_INT 0x04 // Set if the TX FIFO goes empty
758#define IM_TX_INT 0x02 // Transmit Interrupt
759#define IM_RCV_INT 0x01 // Receive Interrupt
760
761
762// Multicast Table Registers
763/* BANK 3 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900764#define MCAST_REG1(lp) SMC_REG(lp, 0x0000, 3)
765#define MCAST_REG2(lp) SMC_REG(lp, 0x0002, 3)
766#define MCAST_REG3(lp) SMC_REG(lp, 0x0004, 3)
767#define MCAST_REG4(lp) SMC_REG(lp, 0x0006, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769
770// Management Interface Register (MII)
771/* BANK 3 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900772#define MII_REG(lp) SMC_REG(lp, 0x0008, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773#define MII_MSK_CRS100 0x4000 // Disables CRS100 detection during tx half dup
774#define MII_MDOE 0x0008 // MII Output Enable
775#define MII_MCLK 0x0004 // MII Clock, pin MDCLK
776#define MII_MDI 0x0002 // MII Input, pin MDI
777#define MII_MDO 0x0001 // MII Output, pin MDO
778
779
780// Revision Register
781/* BANK 3 */
782/* ( hi: chip id low: rev # ) */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900783#define REV_REG(lp) SMC_REG(lp, 0x000A, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785
786// Early RCV Register
787/* BANK 3 */
788/* this is NOT on SMC9192 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900789#define ERCV_REG(lp) SMC_REG(lp, 0x000C, 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790#define ERCV_RCV_DISCRD 0x0080 // When 1 discards a packet being received
791#define ERCV_THRESHOLD 0x001F // ERCV Threshold Mask
792
793
794// External Register
795/* BANK 7 */
Magnus Dammcfdfa862008-02-22 19:55:05 +0900796#define EXT_REG(lp) SMC_REG(lp, 0x0000, 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798
799#define CHIP_9192 3
800#define CHIP_9194 4
801#define CHIP_9195 5
802#define CHIP_9196 6
803#define CHIP_91100 7
804#define CHIP_91100FD 8
805#define CHIP_91111FD 9
806
807static const char * chip_ids[ 16 ] = {
808 NULL, NULL, NULL,
809 /* 3 */ "SMC91C90/91C92",
810 /* 4 */ "SMC91C94",
811 /* 5 */ "SMC91C95",
812 /* 6 */ "SMC91C96",
813 /* 7 */ "SMC91C100",
814 /* 8 */ "SMC91C100FD",
815 /* 9 */ "SMC91C11xFD",
816 NULL, NULL, NULL,
817 NULL, NULL, NULL};
818
819
820/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 . Receive status bits
822*/
823#define RS_ALGNERR 0x8000
824#define RS_BRODCAST 0x4000
825#define RS_BADCRC 0x2000
826#define RS_ODDFRAME 0x1000
827#define RS_TOOLONG 0x0800
828#define RS_TOOSHORT 0x0400
829#define RS_MULTICAST 0x0001
830#define RS_ERRORS (RS_ALGNERR | RS_BADCRC | RS_TOOLONG | RS_TOOSHORT)
831
832
833/*
834 * PHY IDs
835 * LAN83C183 == LAN91C111 Internal PHY
836 */
837#define PHY_LAN83C183 0x0016f840
838#define PHY_LAN83C180 0x02821c50
839
840/*
841 * PHY Register Addresses (LAN91C111 Internal PHY)
842 *
843 * Generic PHY registers can be found in <linux/mii.h>
844 *
845 * These phy registers are specific to our on-board phy.
846 */
847
848// PHY Configuration Register 1
849#define PHY_CFG1_REG 0x10
850#define PHY_CFG1_LNKDIS 0x8000 // 1=Rx Link Detect Function disabled
851#define PHY_CFG1_XMTDIS 0x4000 // 1=TP Transmitter Disabled
852#define PHY_CFG1_XMTPDN 0x2000 // 1=TP Transmitter Powered Down
853#define PHY_CFG1_BYPSCR 0x0400 // 1=Bypass scrambler/descrambler
854#define PHY_CFG1_UNSCDS 0x0200 // 1=Unscramble Idle Reception Disable
855#define PHY_CFG1_EQLZR 0x0100 // 1=Rx Equalizer Disabled
856#define PHY_CFG1_CABLE 0x0080 // 1=STP(150ohm), 0=UTP(100ohm)
857#define PHY_CFG1_RLVL0 0x0040 // 1=Rx Squelch level reduced by 4.5db
858#define PHY_CFG1_TLVL_SHIFT 2 // Transmit Output Level Adjust
859#define PHY_CFG1_TLVL_MASK 0x003C
860#define PHY_CFG1_TRF_MASK 0x0003 // Transmitter Rise/Fall time
861
862
863// PHY Configuration Register 2
864#define PHY_CFG2_REG 0x11
865#define PHY_CFG2_APOLDIS 0x0020 // 1=Auto Polarity Correction disabled
866#define PHY_CFG2_JABDIS 0x0010 // 1=Jabber disabled
867#define PHY_CFG2_MREG 0x0008 // 1=Multiple register access (MII mgt)
868#define PHY_CFG2_INTMDIO 0x0004 // 1=Interrupt signaled with MDIO pulseo
869
870// PHY Status Output (and Interrupt status) Register
871#define PHY_INT_REG 0x12 // Status Output (Interrupt Status)
872#define PHY_INT_INT 0x8000 // 1=bits have changed since last read
873#define PHY_INT_LNKFAIL 0x4000 // 1=Link Not detected
874#define PHY_INT_LOSSSYNC 0x2000 // 1=Descrambler has lost sync
875#define PHY_INT_CWRD 0x1000 // 1=Invalid 4B5B code detected on rx
876#define PHY_INT_SSD 0x0800 // 1=No Start Of Stream detected on rx
877#define PHY_INT_ESD 0x0400 // 1=No End Of Stream detected on rx
878#define PHY_INT_RPOL 0x0200 // 1=Reverse Polarity detected
879#define PHY_INT_JAB 0x0100 // 1=Jabber detected
880#define PHY_INT_SPDDET 0x0080 // 1=100Base-TX mode, 0=10Base-T mode
881#define PHY_INT_DPLXDET 0x0040 // 1=Device in Full Duplex
882
883// PHY Interrupt/Status Mask Register
884#define PHY_MASK_REG 0x13 // Interrupt Mask
885// Uses the same bit definitions as PHY_INT_REG
886
887
888/*
889 * SMC91C96 ethernet config and status registers.
890 * These are in the "attribute" space.
891 */
892#define ECOR 0x8000
893#define ECOR_RESET 0x80
894#define ECOR_LEVEL_IRQ 0x40
895#define ECOR_WR_ATTRIB 0x04
896#define ECOR_ENABLE 0x01
897
898#define ECSR 0x8002
899#define ECSR_IOIS8 0x20
900#define ECSR_PWRDWN 0x04
901#define ECSR_INT 0x02
902
903#define ATTRIB_SIZE ((64*1024) << SMC_IO_SHIFT)
904
905
906/*
907 * Macros to abstract register access according to the data bus
908 * capabilities. Please use those and not the in/out primitives.
909 * Note: the following macros do *not* select the bank -- this must
910 * be done separately as needed in the main code. The SMC_REG() macro
911 * only uses the bank argument for debugging purposes (when enabled).
Nicolas Pitre09779c62006-03-20 11:54:27 -0500912 *
913 * Note: despite inline functions being safer, everything leading to this
914 * should preferably be macros to let BUG() display the line number in
915 * the core source code since we're interested in the top call site
916 * not in any inline function location.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 */
918
919#if SMC_DEBUG > 0
Magnus Dammcfdfa862008-02-22 19:55:05 +0900920#define SMC_REG(lp, reg, bank) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 ({ \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900922 int __b = SMC_CURRENT_BANK(lp); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (unlikely((__b & ~0xf0) != (0x3300 | bank))) { \
924 printk( "%s: bank reg screwed (0x%04x)\n", \
925 CARDNAME, __b ); \
926 BUG(); \
927 } \
928 reg<<SMC_IO_SHIFT; \
929 })
930#else
Magnus Dammcfdfa862008-02-22 19:55:05 +0900931#define SMC_REG(lp, reg, bank) (reg<<SMC_IO_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932#endif
933
Nicolas Pitre09779c62006-03-20 11:54:27 -0500934/*
935 * Hack Alert: Some setups just can't write 8 or 16 bits reliably when not
936 * aligned to a 32 bit boundary. I tell you that does exist!
937 * Fortunately the affected register accesses can be easily worked around
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300938 * since we can write zeroes to the preceding 16 bits without adverse
Nicolas Pitre09779c62006-03-20 11:54:27 -0500939 * effects and use a 32-bit access.
940 *
941 * Enforce it on any 32-bit capable setup for now.
942 */
Magnus Damm3e947942008-02-22 19:55:15 +0900943#define SMC_MUST_ALIGN_WRITE(lp) SMC_32BIT(lp)
Nicolas Pitre09779c62006-03-20 11:54:27 -0500944
Magnus Dammcfdfa862008-02-22 19:55:05 +0900945#define SMC_GET_PN(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +0900946 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, PN_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900947 : (SMC_inw(ioaddr, PN_REG(lp)) & 0xFF))
Nicolas Pitre09779c62006-03-20 11:54:27 -0500948
Magnus Dammcfdfa862008-02-22 19:55:05 +0900949#define SMC_SET_PN(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -0500950 do { \
Magnus Damm3e947942008-02-22 19:55:15 +0900951 if (SMC_MUST_ALIGN_WRITE(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900952 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 0, 2)); \
Magnus Damm3e947942008-02-22 19:55:15 +0900953 else if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900954 SMC_outb(x, ioaddr, PN_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -0500955 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900956 SMC_outw(x, ioaddr, PN_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -0500957 } while (0)
958
Magnus Dammcfdfa862008-02-22 19:55:05 +0900959#define SMC_GET_AR(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +0900960 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, AR_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900961 : (SMC_inw(ioaddr, PN_REG(lp)) >> 8))
Nicolas Pitre09779c62006-03-20 11:54:27 -0500962
Magnus Dammcfdfa862008-02-22 19:55:05 +0900963#define SMC_GET_TXFIFO(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +0900964 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, TXFIFO_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900965 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) & 0xFF))
Nicolas Pitre09779c62006-03-20 11:54:27 -0500966
Magnus Dammcfdfa862008-02-22 19:55:05 +0900967#define SMC_GET_RXFIFO(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +0900968 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, RXFIFO_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900969 : (SMC_inw(ioaddr, TXFIFO_REG(lp)) >> 8))
Nicolas Pitre09779c62006-03-20 11:54:27 -0500970
Magnus Dammcfdfa862008-02-22 19:55:05 +0900971#define SMC_GET_INT(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +0900972 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, INT_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900973 : (SMC_inw(ioaddr, INT_REG(lp)) & 0xFF))
Nicolas Pitre09779c62006-03-20 11:54:27 -0500974
Magnus Dammcfdfa862008-02-22 19:55:05 +0900975#define SMC_ACK_INT(lp, x) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 do { \
Magnus Damm3e947942008-02-22 19:55:15 +0900977 if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900978 SMC_outb(x, ioaddr, INT_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -0500979 else { \
980 unsigned long __flags; \
981 int __mask; \
982 local_irq_save(__flags); \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900983 __mask = SMC_inw(ioaddr, INT_REG(lp)) & ~0xff; \
984 SMC_outw(__mask | (x), ioaddr, INT_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -0500985 local_irq_restore(__flags); \
986 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Magnus Dammcfdfa862008-02-22 19:55:05 +0900989#define SMC_GET_INT_MASK(lp) \
Magnus Damm3e947942008-02-22 19:55:15 +0900990 (SMC_8BIT(lp) ? (SMC_inb(ioaddr, IM_REG(lp))) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900991 : (SMC_inw(ioaddr, INT_REG(lp)) >> 8))
Nicolas Pitre09779c62006-03-20 11:54:27 -0500992
Magnus Dammcfdfa862008-02-22 19:55:05 +0900993#define SMC_SET_INT_MASK(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -0500994 do { \
Magnus Damm3e947942008-02-22 19:55:15 +0900995 if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900996 SMC_outb(x, ioaddr, IM_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -0500997 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +0900998 SMC_outw((x) << 8, ioaddr, INT_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -0500999 } while (0)
1000
Magnus Dammcfdfa862008-02-22 19:55:05 +09001001#define SMC_CURRENT_BANK(lp) SMC_inw(ioaddr, BANK_SELECT)
Nicolas Pitre09779c62006-03-20 11:54:27 -05001002
Magnus Dammcfdfa862008-02-22 19:55:05 +09001003#define SMC_SELECT_BANK(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001004 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001005 if (SMC_MUST_ALIGN_WRITE(lp)) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001006 SMC_outl((x)<<16, ioaddr, 12<<SMC_IO_SHIFT); \
1007 else \
1008 SMC_outw(x, ioaddr, BANK_SELECT); \
1009 } while (0)
1010
Magnus Dammcfdfa862008-02-22 19:55:05 +09001011#define SMC_GET_BASE(lp) SMC_inw(ioaddr, BASE_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001012
Magnus Dammcfdfa862008-02-22 19:55:05 +09001013#define SMC_SET_BASE(lp, x) SMC_outw(x, ioaddr, BASE_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001014
Magnus Dammcfdfa862008-02-22 19:55:05 +09001015#define SMC_GET_CONFIG(lp) SMC_inw(ioaddr, CONFIG_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001016
Magnus Dammcfdfa862008-02-22 19:55:05 +09001017#define SMC_SET_CONFIG(lp, x) SMC_outw(x, ioaddr, CONFIG_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001018
Magnus Dammcfdfa862008-02-22 19:55:05 +09001019#define SMC_GET_COUNTER(lp) SMC_inw(ioaddr, COUNTER_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001020
Magnus Dammcfdfa862008-02-22 19:55:05 +09001021#define SMC_GET_CTL(lp) SMC_inw(ioaddr, CTL_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001022
Magnus Dammcfdfa862008-02-22 19:55:05 +09001023#define SMC_SET_CTL(lp, x) SMC_outw(x, ioaddr, CTL_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001024
Magnus Dammcfdfa862008-02-22 19:55:05 +09001025#define SMC_GET_MII(lp) SMC_inw(ioaddr, MII_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001026
Vernon Sauder357fe2c2009-01-16 13:23:19 +00001027#define SMC_GET_GP(lp) SMC_inw(ioaddr, GP_REG(lp))
1028
1029#define SMC_SET_GP(lp, x) \
1030 do { \
1031 if (SMC_MUST_ALIGN_WRITE(lp)) \
1032 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 8, 1)); \
1033 else \
1034 SMC_outw(x, ioaddr, GP_REG(lp)); \
1035 } while (0)
1036
Magnus Dammcfdfa862008-02-22 19:55:05 +09001037#define SMC_SET_MII(lp, x) SMC_outw(x, ioaddr, MII_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001038
Magnus Dammcfdfa862008-02-22 19:55:05 +09001039#define SMC_GET_MIR(lp) SMC_inw(ioaddr, MIR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001040
Magnus Dammcfdfa862008-02-22 19:55:05 +09001041#define SMC_SET_MIR(lp, x) SMC_outw(x, ioaddr, MIR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001042
Magnus Dammcfdfa862008-02-22 19:55:05 +09001043#define SMC_GET_MMU_CMD(lp) SMC_inw(ioaddr, MMU_CMD_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001044
Magnus Dammcfdfa862008-02-22 19:55:05 +09001045#define SMC_SET_MMU_CMD(lp, x) SMC_outw(x, ioaddr, MMU_CMD_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001046
Magnus Dammcfdfa862008-02-22 19:55:05 +09001047#define SMC_GET_FIFO(lp) SMC_inw(ioaddr, FIFO_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001048
Magnus Dammcfdfa862008-02-22 19:55:05 +09001049#define SMC_GET_PTR(lp) SMC_inw(ioaddr, PTR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001050
Magnus Dammcfdfa862008-02-22 19:55:05 +09001051#define SMC_SET_PTR(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001052 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001053 if (SMC_MUST_ALIGN_WRITE(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001054 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 4, 2)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001055 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001056 SMC_outw(x, ioaddr, PTR_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001057 } while (0)
1058
Magnus Dammcfdfa862008-02-22 19:55:05 +09001059#define SMC_GET_EPH_STATUS(lp) SMC_inw(ioaddr, EPH_STATUS_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001060
Magnus Dammcfdfa862008-02-22 19:55:05 +09001061#define SMC_GET_RCR(lp) SMC_inw(ioaddr, RCR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001062
Magnus Dammcfdfa862008-02-22 19:55:05 +09001063#define SMC_SET_RCR(lp, x) SMC_outw(x, ioaddr, RCR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001064
Magnus Dammcfdfa862008-02-22 19:55:05 +09001065#define SMC_GET_REV(lp) SMC_inw(ioaddr, REV_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001066
Magnus Dammcfdfa862008-02-22 19:55:05 +09001067#define SMC_GET_RPC(lp) SMC_inw(ioaddr, RPC_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001068
Magnus Dammcfdfa862008-02-22 19:55:05 +09001069#define SMC_SET_RPC(lp, x) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001070 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001071 if (SMC_MUST_ALIGN_WRITE(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001072 SMC_outl((x)<<16, ioaddr, SMC_REG(lp, 8, 0)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001073 else \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001074 SMC_outw(x, ioaddr, RPC_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001075 } while (0)
1076
Magnus Dammcfdfa862008-02-22 19:55:05 +09001077#define SMC_GET_TCR(lp) SMC_inw(ioaddr, TCR_REG(lp))
Nicolas Pitre09779c62006-03-20 11:54:27 -05001078
Magnus Dammcfdfa862008-02-22 19:55:05 +09001079#define SMC_SET_TCR(lp, x) SMC_outw(x, ioaddr, TCR_REG(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081#ifndef SMC_GET_MAC_ADDR
Magnus Dammcfdfa862008-02-22 19:55:05 +09001082#define SMC_GET_MAC_ADDR(lp, addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 do { \
1084 unsigned int __v; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001085 __v = SMC_inw(ioaddr, ADDR0_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 addr[0] = __v; addr[1] = __v >> 8; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001087 __v = SMC_inw(ioaddr, ADDR1_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 addr[2] = __v; addr[3] = __v >> 8; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001089 __v = SMC_inw(ioaddr, ADDR2_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 addr[4] = __v; addr[5] = __v >> 8; \
1091 } while (0)
1092#endif
1093
Magnus Dammcfdfa862008-02-22 19:55:05 +09001094#define SMC_SET_MAC_ADDR(lp, addr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 do { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001096 SMC_outw(addr[0]|(addr[1] << 8), ioaddr, ADDR0_REG(lp)); \
1097 SMC_outw(addr[2]|(addr[3] << 8), ioaddr, ADDR1_REG(lp)); \
1098 SMC_outw(addr[4]|(addr[5] << 8), ioaddr, ADDR2_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 } while (0)
1100
Magnus Dammcfdfa862008-02-22 19:55:05 +09001101#define SMC_SET_MCAST(lp, x) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 do { \
1103 const unsigned char *mt = (x); \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001104 SMC_outw(mt[0] | (mt[1] << 8), ioaddr, MCAST_REG1(lp)); \
1105 SMC_outw(mt[2] | (mt[3] << 8), ioaddr, MCAST_REG2(lp)); \
1106 SMC_outw(mt[4] | (mt[5] << 8), ioaddr, MCAST_REG3(lp)); \
1107 SMC_outw(mt[6] | (mt[7] << 8), ioaddr, MCAST_REG4(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 } while (0)
1109
Magnus Dammcfdfa862008-02-22 19:55:05 +09001110#define SMC_PUT_PKT_HDR(lp, status, length) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001112 if (SMC_32BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001113 SMC_outl((status) | (length)<<16, ioaddr, \
1114 DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001115 else { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001116 SMC_outw(status, ioaddr, DATA_REG(lp)); \
1117 SMC_outw(length, ioaddr, DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001118 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 } while (0)
Nicolas Pitre09779c62006-03-20 11:54:27 -05001120
Magnus Dammcfdfa862008-02-22 19:55:05 +09001121#define SMC_GET_PKT_HDR(lp, status, length) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001123 if (SMC_32BIT(lp)) { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001124 unsigned int __val = SMC_inl(ioaddr, DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001125 (status) = __val & 0xffff; \
1126 (length) = __val >> 16; \
1127 } else { \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001128 (status) = SMC_inw(ioaddr, DATA_REG(lp)); \
1129 (length) = SMC_inw(ioaddr, DATA_REG(lp)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 } \
1131 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Magnus Dammcfdfa862008-02-22 19:55:05 +09001133#define SMC_PUSH_DATA(lp, p, l) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001134 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001135 if (SMC_32BIT(lp)) { \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001136 void *__ptr = (p); \
1137 int __len = (l); \
Al Virofbd81972006-05-30 23:58:25 -04001138 void __iomem *__ioaddr = ioaddr; \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001139 if (__len >= 2 && (unsigned long)__ptr & 2) { \
1140 __len -= 2; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001141 SMC_outw(*(u16 *)__ptr, ioaddr, \
1142 DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001143 __ptr += 2; \
1144 } \
1145 if (SMC_CAN_USE_DATACS && lp->datacs) \
1146 __ioaddr = lp->datacs; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001147 SMC_outsl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001148 if (__len & 2) { \
1149 __ptr += (__len & ~3); \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001150 SMC_outw(*((u16 *)__ptr), ioaddr, \
1151 DATA_REG(lp)); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001152 } \
Magnus Damm3e947942008-02-22 19:55:15 +09001153 } else if (SMC_16BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001154 SMC_outsw(ioaddr, DATA_REG(lp), p, (l) >> 1); \
Magnus Damm3e947942008-02-22 19:55:15 +09001155 else if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001156 SMC_outsb(ioaddr, DATA_REG(lp), p, l); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001157 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Magnus Dammcfdfa862008-02-22 19:55:05 +09001159#define SMC_PULL_DATA(lp, p, l) \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001160 do { \
Magnus Damm3e947942008-02-22 19:55:15 +09001161 if (SMC_32BIT(lp)) { \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001162 void *__ptr = (p); \
1163 int __len = (l); \
Al Virofbd81972006-05-30 23:58:25 -04001164 void __iomem *__ioaddr = ioaddr; \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001165 if ((unsigned long)__ptr & 2) { \
1166 /* \
1167 * We want 32bit alignment here. \
1168 * Since some buses perform a full \
1169 * 32bit fetch even for 16bit data \
1170 * we can't use SMC_inw() here. \
1171 * Back both source (on-chip) and \
1172 * destination pointers of 2 bytes. \
1173 * This is possible since the call to \
1174 * SMC_GET_PKT_HDR() already advanced \
1175 * the source pointer of 4 bytes, and \
1176 * the skb_reserve(skb, 2) advanced \
1177 * the destination pointer of 2 bytes. \
1178 */ \
1179 __ptr -= 2; \
1180 __len += 2; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001181 SMC_SET_PTR(lp, \
1182 2|PTR_READ|PTR_RCV|PTR_AUTOINC); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001183 } \
1184 if (SMC_CAN_USE_DATACS && lp->datacs) \
1185 __ioaddr = lp->datacs; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 __len += 2; \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001187 SMC_insl(__ioaddr, DATA_REG(lp), __ptr, __len>>2); \
Magnus Damm3e947942008-02-22 19:55:15 +09001188 } else if (SMC_16BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001189 SMC_insw(ioaddr, DATA_REG(lp), p, (l) >> 1); \
Magnus Damm3e947942008-02-22 19:55:15 +09001190 else if (SMC_8BIT(lp)) \
Magnus Dammcfdfa862008-02-22 19:55:05 +09001191 SMC_insb(ioaddr, DATA_REG(lp), p, l); \
Nicolas Pitre09779c62006-03-20 11:54:27 -05001192 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194#endif /* _SMC91X_H_ */