aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/cs89x0.c
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
commitc71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch)
treeecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/cs89x0.c
parentea53c912f8a86a8567697115b6a0d8152beee5c8 (diff)
parent6a00f206debf8a5c8899055726ad127dbeeed098 (diff)
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts: litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/cs89x0.c')
-rw-r--r--drivers/net/cs89x0.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/drivers/net/cs89x0.c b/drivers/net/cs89x0.c
index d325e01a53e0..537a4b2e2020 100644
--- a/drivers/net/cs89x0.c
+++ b/drivers/net/cs89x0.c
@@ -95,6 +95,9 @@
95 Dmitry Pervushin : dpervushin@ru.mvista.com 95 Dmitry Pervushin : dpervushin@ru.mvista.com
96 : PNX010X platform support 96 : PNX010X platform support
97 97
98 Domenico Andreoli : cavokz@gmail.com
99 : QQ2440 platform support
100
98*/ 101*/
99 102
100/* Always include 'config.h' first in case the user wants to turn on 103/* Always include 'config.h' first in case the user wants to turn on
@@ -176,6 +179,10 @@ static unsigned int cs8900_irq_map[] = {IRQ_IXDP2351_CS8900, 0, 0, 0};
176#elif defined(CONFIG_ARCH_IXDP2X01) 179#elif defined(CONFIG_ARCH_IXDP2X01)
177static unsigned int netcard_portlist[] __used __initdata = {IXDP2X01_CS8900_VIRT_BASE, 0}; 180static unsigned int netcard_portlist[] __used __initdata = {IXDP2X01_CS8900_VIRT_BASE, 0};
178static unsigned int cs8900_irq_map[] = {IRQ_IXDP2X01_CS8900, 0, 0, 0}; 181static unsigned int cs8900_irq_map[] = {IRQ_IXDP2X01_CS8900, 0, 0, 0};
182#elif defined(CONFIG_MACH_QQ2440)
183#include <mach/qq2440.h>
184static unsigned int netcard_portlist[] __used __initdata = { QQ2440_CS8900_VIRT_BASE + 0x300, 0 };
185static unsigned int cs8900_irq_map[] = { QQ2440_CS8900_IRQ, 0, 0, 0 };
179#elif defined(CONFIG_MACH_MX31ADS) 186#elif defined(CONFIG_MACH_MX31ADS)
180#include <mach/board-mx31ads.h> 187#include <mach/board-mx31ads.h>
181static unsigned int netcard_portlist[] __used __initdata = { 188static unsigned int netcard_portlist[] __used __initdata = {
@@ -521,6 +528,10 @@ cs89x0_probe1(struct net_device *dev, int ioaddr, int modular)
521#endif 528#endif
522 lp->force = g_cs89x0_media__force; 529 lp->force = g_cs89x0_media__force;
523#endif 530#endif
531
532#if defined(CONFIG_MACH_QQ2440)
533 lp->force |= FORCE_RJ45 | FORCE_FULL;
534#endif
524 } 535 }
525 536
526 /* Grab the region so we can find another board if autoIRQ fails. */ 537 /* Grab the region so we can find another board if autoIRQ fails. */
@@ -943,10 +954,10 @@ skip_this_frame:
943static void __init reset_chip(struct net_device *dev) 954static void __init reset_chip(struct net_device *dev)
944{ 955{
945#if !defined(CONFIG_MACH_MX31ADS) 956#if !defined(CONFIG_MACH_MX31ADS)
946#if !defined(CONFIG_MACH_IXDP2351) && !defined(CONFIG_ARCH_IXDP2X01) 957#if !defined(CS89x0_NONISA_IRQ)
947 struct net_local *lp = netdev_priv(dev); 958 struct net_local *lp = netdev_priv(dev);
948 int ioaddr = dev->base_addr; 959 int ioaddr = dev->base_addr;
949#endif 960#endif /* CS89x0_NONISA_IRQ */
950 int reset_start_time; 961 int reset_start_time;
951 962
952 writereg(dev, PP_SelfCTL, readreg(dev, PP_SelfCTL) | POWER_ON_RESET); 963 writereg(dev, PP_SelfCTL, readreg(dev, PP_SelfCTL) | POWER_ON_RESET);
@@ -954,7 +965,7 @@ static void __init reset_chip(struct net_device *dev)
954 /* wait 30 ms */ 965 /* wait 30 ms */
955 msleep(30); 966 msleep(30);
956 967
957#if !defined(CONFIG_MACH_IXDP2351) && !defined(CONFIG_ARCH_IXDP2X01) 968#if !defined(CS89x0_NONISA_IRQ)
958 if (lp->chip_type != CS8900) { 969 if (lp->chip_type != CS8900) {
959 /* Hardware problem requires PNP registers to be reconfigured after a reset */ 970 /* Hardware problem requires PNP registers to be reconfigured after a reset */
960 writeword(ioaddr, ADD_PORT, PP_CS8920_ISAINT); 971 writeword(ioaddr, ADD_PORT, PP_CS8920_ISAINT);
@@ -965,7 +976,7 @@ static void __init reset_chip(struct net_device *dev)
965 outb((dev->mem_start >> 16) & 0xff, ioaddr + DATA_PORT); 976 outb((dev->mem_start >> 16) & 0xff, ioaddr + DATA_PORT);
966 outb((dev->mem_start >> 8) & 0xff, ioaddr + DATA_PORT + 1); 977 outb((dev->mem_start >> 8) & 0xff, ioaddr + DATA_PORT + 1);
967 } 978 }
968#endif /* IXDP2x01 */ 979#endif /* CS89x0_NONISA_IRQ */
969 980
970 /* Wait until the chip is reset */ 981 /* Wait until the chip is reset */
971 reset_start_time = jiffies; 982 reset_start_time = jiffies;