summaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-11-22 17:17:15 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-11-22 17:17:15 +0000
commitaab31771f8120a719f201417e0b47d71f8da9898 (patch)
treef963f3e9dfc549e3772059cc602047e1a0ba54ef /target/linux
parent47d7ed3d09590fe8c79b0fb147718f891709a972 (diff)
downloadmaster-31e0f0ae-aab31771f8120a719f201417e0b47d71f8da9898.tar.gz
master-31e0f0ae-aab31771f8120a719f201417e0b47d71f8da9898.tar.bz2
master-31e0f0ae-aab31771f8120a719f201417e0b47d71f8da9898.zip
linux/brcm47xx: mainline 2.6.37 602977b0d672687909b0cb0542ede134ed6ef858 commit broke CPU revision: 00024000, MIPS (cc 0x805, rev 0x00, vendor 0x4243) functionality. Revert that patch until we get a proper fix.
SVN-Revision: 24096
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/brcm47xx/patches-2.6.37/017-MIPS-BCM47xx-revert_decouple_bmips_cpu_support.patch193
-rw-r--r--target/linux/brcm47xx/patches-2.6.37/150-cpu_fixes.patch8
2 files changed, 197 insertions, 4 deletions
diff --git a/target/linux/brcm47xx/patches-2.6.37/017-MIPS-BCM47xx-revert_decouple_bmips_cpu_support.patch b/target/linux/brcm47xx/patches-2.6.37/017-MIPS-BCM47xx-revert_decouple_bmips_cpu_support.patch
new file mode 100644
index 0000000000..d5d6cf3882
--- /dev/null
+++ b/target/linux/brcm47xx/patches-2.6.37/017-MIPS-BCM47xx-revert_decouple_bmips_cpu_support.patch
@@ -0,0 +1,193 @@
+--- a/arch/mips/bcm63xx/cpu.c
++++ b/arch/mips/bcm63xx/cpu.c
+@@ -10,9 +10,7 @@
+ #include <linux/kernel.h>
+ #include <linux/module.h>
+ #include <linux/cpu.h>
+-#include <asm/cpu.h>
+ #include <asm/cpu-info.h>
+-#include <asm/mipsregs.h>
+ #include <bcm63xx_cpu.h>
+ #include <bcm63xx_regs.h>
+ #include <bcm63xx_io.h>
+@@ -298,24 +296,26 @@ void __init bcm63xx_cpu_init(void)
+ expected_cpu_id = 0;
+
+ switch (c->cputype) {
+- case CPU_BMIPS3300:
+- if ((read_c0_prid() & 0xff00) == PRID_IMP_BMIPS3300_ALT) {
+- expected_cpu_id = BCM6348_CPU_ID;
+- bcm63xx_regs_base = bcm96348_regs_base;
+- bcm63xx_irqs = bcm96348_irqs;
+- } else {
+- __cpu_name[cpu] = "Broadcom BCM6338";
+- expected_cpu_id = BCM6338_CPU_ID;
+- bcm63xx_regs_base = bcm96338_regs_base;
+- bcm63xx_irqs = bcm96338_irqs;
+- }
++ /*
++ * BCM6338 as the same PrId as BCM3302 see arch/mips/kernel/cpu-probe.c
++ */
++ case CPU_BCM3302:
++ __cpu_name[cpu] = "Broadcom BCM6338";
++ expected_cpu_id = BCM6338_CPU_ID;
++ bcm63xx_regs_base = bcm96338_regs_base;
++ bcm63xx_irqs = bcm96338_irqs;
+ break;
+- case CPU_BMIPS32:
++ case CPU_BCM6345:
+ expected_cpu_id = BCM6345_CPU_ID;
+ bcm63xx_regs_base = bcm96345_regs_base;
+ bcm63xx_irqs = bcm96345_irqs;
+ break;
+- case CPU_BMIPS4350:
++ case CPU_BCM6348:
++ expected_cpu_id = BCM6348_CPU_ID;
++ bcm63xx_regs_base = bcm96348_regs_base;
++ bcm63xx_irqs = bcm96348_irqs;
++ break;
++ case CPU_BCM6358:
+ expected_cpu_id = BCM6358_CPU_ID;
+ bcm63xx_regs_base = bcm96358_regs_base;
+ bcm63xx_irqs = bcm96358_irqs;
+--- a/arch/mips/include/asm/cpu.h
++++ b/arch/mips/include/asm/cpu.h
+@@ -111,16 +111,14 @@
+ * These are the PRID's for when 23:16 == PRID_COMP_BROADCOM
+ */
+
+-#define PRID_IMP_BMIPS4KC 0x4000
+-#define PRID_IMP_BMIPS32 0x8000
+-#define PRID_IMP_BMIPS3300 0x9000
+-#define PRID_IMP_BMIPS3300_ALT 0x9100
+-#define PRID_IMP_BMIPS3300_BUG 0x0000
+-#define PRID_IMP_BMIPS43XX 0xa000
+-#define PRID_IMP_BMIPS5000 0x5a00
+-
+-#define PRID_REV_BMIPS4380_LO 0x0040
+-#define PRID_REV_BMIPS4380_HI 0x006f
++#define PRID_IMP_BCM4710 0x4000
++#define PRID_IMP_BCM3302 0x9000
++#define PRID_IMP_BCM6338 0x9000
++#define PRID_IMP_BCM6345 0x8000
++#define PRID_IMP_BCM6348 0x9100
++#define PRID_IMP_BCM4350 0xA000
++#define PRID_REV_BCM6358 0x0010
++#define PRID_REV_BCM6368 0x0030
+
+ /*
+ * These are the PRID's for when 23:16 == PRID_COMP_CAVIUM
+@@ -226,8 +224,9 @@ enum cpu_type_enum {
+ * MIPS32 class processors
+ */
+ CPU_4KC, CPU_4KEC, CPU_4KSC, CPU_24K, CPU_34K, CPU_1004K, CPU_74K,
+- CPU_ALCHEMY, CPU_PR4450, CPU_BMIPS32, CPU_BMIPS3300, CPU_BMIPS4350,
+- CPU_BMIPS4380, CPU_BMIPS5000, CPU_JZRISC,
++ CPU_ALCHEMY, CPU_PR4450, CPU_BCM3302, CPU_BCM4710,
++ CPU_BCM6338, CPU_BCM6345, CPU_BCM6348, CPU_BCM6358,
++ CPU_JZRISC,
+
+ /*
+ * MIPS64 class processors
+--- a/arch/mips/kernel/cpu-probe.c
++++ b/arch/mips/kernel/cpu-probe.c
+@@ -183,10 +183,10 @@ void __init check_wait(void)
+ case CPU_5KC:
+ case CPU_25KF:
+ case CPU_PR4450:
+- case CPU_BMIPS3300:
+- case CPU_BMIPS4350:
+- case CPU_BMIPS4380:
+- case CPU_BMIPS5000:
++ case CPU_BCM3302:
++ case CPU_BCM6338:
++ case CPU_BCM6348:
++ case CPU_BCM6358:
+ case CPU_CAVIUM_OCTEON:
+ case CPU_CAVIUM_OCTEON_PLUS:
+ case CPU_CAVIUM_OCTEON2:
+@@ -905,37 +905,33 @@ static inline void cpu_probe_broadcom(st
+ {
+ decode_configs(c);
+ switch (c->processor_id & 0xff00) {
+- case PRID_IMP_BMIPS32:
+- c->cputype = CPU_BMIPS32;
+- __cpu_name[cpu] = "Broadcom BMIPS32";
+- break;
+- case PRID_IMP_BMIPS3300:
+- case PRID_IMP_BMIPS3300_ALT:
+- case PRID_IMP_BMIPS3300_BUG:
+- c->cputype = CPU_BMIPS3300;
+- __cpu_name[cpu] = "Broadcom BMIPS3300";
+- break;
+- case PRID_IMP_BMIPS43XX: {
+- int rev = c->processor_id & 0xff;
+-
+- if (rev >= PRID_REV_BMIPS4380_LO &&
+- rev <= PRID_REV_BMIPS4380_HI) {
+- c->cputype = CPU_BMIPS4380;
+- __cpu_name[cpu] = "Broadcom BMIPS4380";
+- } else {
+- c->cputype = CPU_BMIPS4350;
+- __cpu_name[cpu] = "Broadcom BMIPS4350";
+- }
+- break;
+- }
+- case PRID_IMP_BMIPS5000:
+- c->cputype = CPU_BMIPS5000;
+- __cpu_name[cpu] = "Broadcom BMIPS5000";
+- c->options |= MIPS_CPU_ULRI;
++ case PRID_IMP_BCM3302:
++ /* same as PRID_IMP_BCM6338 */
++ c->cputype = CPU_BCM3302;
++ __cpu_name[cpu] = "Broadcom BCM3302";
++ break;
++ case PRID_IMP_BCM4710:
++ c->cputype = CPU_BCM4710;
++ __cpu_name[cpu] = "Broadcom BCM4710";
++ break;
++ case PRID_IMP_BCM6345:
++ c->cputype = CPU_BCM6345;
++ __cpu_name[cpu] = "Broadcom BCM6345";
++ break;
++ case PRID_IMP_BCM6348:
++ c->cputype = CPU_BCM6348;
++ __cpu_name[cpu] = "Broadcom BCM6348";
+ break;
+- case PRID_IMP_BMIPS4KC:
+- c->cputype = CPU_4KC;
+- __cpu_name[cpu] = "MIPS 4Kc";
++ case PRID_IMP_BCM4350:
++ switch (c->processor_id & 0xf0) {
++ case PRID_REV_BCM6358:
++ c->cputype = CPU_BCM6358;
++ __cpu_name[cpu] = "Broadcom BCM6358";
++ break;
++ default:
++ c->cputype = CPU_UNKNOWN;
++ break;
++ }
+ break;
+ }
+ }
+--- a/arch/mips/mm/tlbex.c
++++ b/arch/mips/mm/tlbex.c
+@@ -338,12 +338,13 @@ static void __cpuinit build_tlb_write_en
+ case CPU_4KSC:
+ case CPU_20KC:
+ case CPU_25KF:
+- case CPU_BMIPS32:
+- case CPU_BMIPS3300:
+- case CPU_BMIPS4350:
+- case CPU_BMIPS4380:
+- case CPU_BMIPS5000:
++ case CPU_BCM3302:
++ case CPU_BCM4710:
+ case CPU_LOONGSON2:
++ case CPU_BCM6338:
++ case CPU_BCM6345:
++ case CPU_BCM6348:
++ case CPU_BCM6358:
+ case CPU_R5500:
+ if (m4kc_tlbp_war())
+ uasm_i_nop(p);
diff --git a/target/linux/brcm47xx/patches-2.6.37/150-cpu_fixes.patch b/target/linux/brcm47xx/patches-2.6.37/150-cpu_fixes.patch
index 4533998e64..eae16b0812 100644
--- a/target/linux/brcm47xx/patches-2.6.37/150-cpu_fixes.patch
+++ b/target/linux/brcm47xx/patches-2.6.37/150-cpu_fixes.patch
@@ -299,7 +299,7 @@
* silly idea of putting something else there ...
*/
switch (current_cpu_type()) {
-+ case CPU_BMIPS3300:
++ case CPU_BCM3302:
+ {
+ u32 cm;
+ cm = read_c0_diag();
@@ -319,7 +319,7 @@
+ /* Check if special workarounds are required */
+#ifdef CONFIG_BCM47XX
-+ if (current_cpu_data.cputype == CPU_4KC && (current_cpu_data.processor_id & 0xff) == 0) {
++ if (current_cpu_data.cputype == CPU_BCM4710 && (current_cpu_data.processor_id & 0xff) == 0) {
+ printk("Enabling BCM4710A0 cache workarounds.\n");
+ bcm4710 = 1;
+ } else
@@ -345,7 +345,7 @@
}
--- a/arch/mips/mm/tlbex.c
+++ b/arch/mips/mm/tlbex.c
-@@ -872,6 +872,9 @@ static void __cpuinit build_r4000_tlb_re
+@@ -873,6 +873,9 @@ static void __cpuinit build_r4000_tlb_re
/* No need for uasm_i_nop */
}
@@ -355,7 +355,7 @@
#ifdef CONFIG_64BIT
build_get_pmde64(&p, &l, &r, K0, K1); /* get pmd in K1 */
#else
-@@ -1322,6 +1325,9 @@ build_r4000_tlbchange_handler_head(u32 *
+@@ -1323,6 +1326,9 @@ build_r4000_tlbchange_handler_head(u32 *
struct uasm_reloc **r, unsigned int pte,
unsigned int ptr)
{