aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-03-22 20:51:23 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-03-22 20:51:23 +0000
commitf9dcca418cf02f2c873c8369c3b728721ef5dcad (patch)
tree5ba457eafc0e3a7e3095db7faa7af03b59504430 /target
parentf08abee43818febb147c24a9d255dc839ac8b6c5 (diff)
downloadmaster-187ad058-f9dcca418cf02f2c873c8369c3b728721ef5dcad.tar.gz
master-187ad058-f9dcca418cf02f2c873c8369c3b728721ef5dcad.tar.bz2
master-187ad058-f9dcca418cf02f2c873c8369c3b728721ef5dcad.zip
atheros: do not attempt to start pci on ar2317
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14982 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/atheros/patches-2.6.28/105-ar2315_pci.patch7
1 files changed, 3 insertions, 4 deletions
diff --git a/target/linux/atheros/patches-2.6.28/105-ar2315_pci.patch b/target/linux/atheros/patches-2.6.28/105-ar2315_pci.patch
index 69c3349230..9b76dfee46 100644
--- a/target/linux/atheros/patches-2.6.28/105-ar2315_pci.patch
+++ b/target/linux/atheros/patches-2.6.28/105-ar2315_pci.patch
@@ -7,7 +7,7 @@
+obj-$(CONFIG_ATHEROS_AR2315_PCI) += pci.o
--- /dev/null
+++ b/arch/mips/ar231x/pci.c
-@@ -0,0 +1,231 @@
+@@ -0,0 +1,230 @@
+/*
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
@@ -39,13 +39,12 @@
+#include <ar231x_platform.h>
+#include <ar231x.h>
+#include <ar2315_regs.h>
++#include "devices.h"
+
+#define AR531X_MEM_BASE 0x80800000UL
+#define AR531X_MEM_SIZE 0x00ffffffUL
+#define AR531X_IO_SIZE 0x00007fffUL
+
-+#define IS_2315() (current_cpu_data.cputype == CPU_4KEC)
-+
+static unsigned long configspace;
+
+static int config_access(int devfn, int where, int size, u32 *ptr, bool write)
@@ -184,7 +183,7 @@
+{
+ u32 reg;
+
-+ if (!IS_2315())
++ if (ar231x_devtype != DEV_TYPE_AR2315)
+ return -ENODEV;
+
+ configspace = (unsigned long) ioremap_nocache(0x80000000, 1*1024*1024); /* Remap PCI config space */