incomplete Gumstix support
[openwrt/openwrt.git] / target / linux / pxa / patches-2.6.21 / 014-ethernet-config.patch
1 Index: linux-2.6.21gum/drivers/net/smc91x.h
2 ===================================================================
3 --- linux-2.6.21gum.orig/drivers/net/smc91x.h
4 +++ linux-2.6.21gum/drivers/net/smc91x.h
5 @@ -55,6 +55,21 @@
6 #define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
7 #define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
8
9 +#elif defined(CONFIG_ARCH_GUMSTIX)
10 +#define SMC_CAN_USE_8BIT 0
11 +#define SMC_CAN_USE_16BIT 1
12 +#define SMC_CAN_USE_32BIT 0
13 +#define SMC_NOWAIT 1
14 +#define SMC_USE_PXA_DMA 1
15 +#define SMC_IO_SHIFT 0
16 +#define SMC_inw(a, r) readw((a) + (r))
17 +#define SMC_outw(v, a, r) writew(v, (a) + (r))
18 +#define SMC_insw(a, r, p, l) readsw((a) + (r), p, l)
19 +#define SMC_outsw(a, r, p, l) writesw((a) + (r), p, l)
20 +#define RPC_LSA_DEFAULT RPC_LED_100_10
21 +#define RPC_LSB_DEFAULT RPC_LED_TX_RX
22 +
23 +
24 #elif defined(CONFIG_REDWOOD_5) || defined(CONFIG_REDWOOD_6)
25
26 /* We can only do 16-bit reads and writes in the static memory space. */