diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-07-06 08:08:11 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:31:37 -0400 |
commit | 6e760c8dae7d6c47eff011dd4aad53c94d30494b (patch) | |
tree | 141699aef6e0a3b1fef03ec0c5cc8d8958851078 /arch | |
parent | ca4973dd559b702e265688e724f356d289b8cd67 (diff) |
Rename CONFIG_CPU_MIPS{32,64} to CONFIG_CPU_MIPS{32|64}_R1.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/Kconfig | 26 | ||||
-rw-r--r-- | arch/mips/Makefile | 4 | ||||
-rw-r--r-- | arch/mips/kernel/Makefile | 4 | ||||
-rw-r--r-- | arch/mips/kernel/r4k_switch.S | 2 | ||||
-rw-r--r-- | arch/mips/kernel/traps.c | 2 | ||||
-rw-r--r-- | arch/mips/lib-32/Makefile | 4 | ||||
-rw-r--r-- | arch/mips/lib-64/Makefile | 4 | ||||
-rw-r--r-- | arch/mips/mm/Makefile | 4 | ||||
-rw-r--r-- | arch/mips/mm/cache.c | 4 | ||||
-rw-r--r-- | arch/mips/mm/tlb-r4k.c | 2 | ||||
-rw-r--r-- | arch/mips/mm/tlb-sb1.c | 2 | ||||
-rw-r--r-- | arch/mips/oprofile/Makefile | 4 |
12 files changed, 38 insertions, 24 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 0ca63e7ce0a7..a4c62c72aa89 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
@@ -1050,14 +1050,28 @@ choice | |||
1050 | prompt "CPU type" | 1050 | prompt "CPU type" |
1051 | default CPU_R4X00 | 1051 | default CPU_R4X00 |
1052 | 1052 | ||
1053 | config CPU_MIPS32 | 1053 | config CPU_MIPS32_R1 |
1054 | bool "MIPS32" | 1054 | bool "MIPS32 Release 1" |
1055 | select CPU_SUPPORTS_32BIT_KERNEL | 1055 | select CPU_SUPPORTS_32BIT_KERNEL |
1056 | select CPU_HAS_PREFETCH | ||
1057 | help | ||
1058 | Choose this option to build a kernel for release 1 or later of the | ||
1059 | MIPS32 architecture. Most modern embedded systems with a 32-bit | ||
1060 | MIPS processor are based on a MIPS32 processor. If you know the | ||
1061 | specific type of processor in your system, choose those that one | ||
1062 | otherwise CPU_MIPS32_R1 is a safe bet for any MIPS32 system. | ||
1056 | 1063 | ||
1057 | config CPU_MIPS64 | 1064 | config CPU_MIPS64_R1 |
1058 | bool "MIPS64" | 1065 | bool "MIPS64 Release 1" |
1059 | select CPU_SUPPORTS_32BIT_KERNEL | 1066 | select CPU_SUPPORTS_32BIT_KERNEL |
1060 | select CPU_SUPPORTS_64BIT_KERNEL | 1067 | select CPU_SUPPORTS_64BIT_KERNEL |
1068 | select CPU_HAS_PREFETCH | ||
1069 | help | ||
1070 | Choose this option to build a kernel for release 1 or later of the | ||
1071 | MIPS64 architecture. Many modern embedded systems with a 64-bit | ||
1072 | MIPS processor are based on a MIPS64 processor. If you know the | ||
1073 | specific type of processor in your system, choose those that one | ||
1074 | otherwise CPU_MIPS64_R1 is a safe bet for any MIPS64 system. | ||
1061 | 1075 | ||
1062 | config CPU_R3000 | 1076 | config CPU_R3000 |
1063 | bool "R3000" | 1077 | bool "R3000" |
@@ -1253,7 +1267,7 @@ config SB1_PASS_2_1_WORKAROUNDS | |||
1253 | 1267 | ||
1254 | config 64BIT_PHYS_ADDR | 1268 | config 64BIT_PHYS_ADDR |
1255 | bool "Support for 64-bit physical address space" | 1269 | bool "Support for 64-bit physical address space" |
1256 | depends on (CPU_R4X00 || CPU_R5000 || CPU_RM7000 || CPU_RM9000 || CPU_R10000 || CPU_SB1 || CPU_MIPS32 || CPU_MIPS64) && 32BIT | 1270 | depends on (CPU_R4X00 || CPU_R5000 || CPU_RM7000 || CPU_RM9000 || CPU_R10000 || CPU_SB1 || CPU_MIPS32_R1 || CPU_MIPS64_R1) && 32BIT |
1257 | 1271 | ||
1258 | config CPU_ADVANCED | 1272 | config CPU_ADVANCED |
1259 | bool "Override CPU Options" | 1273 | bool "Override CPU Options" |
@@ -1276,7 +1290,7 @@ config CPU_HAS_LLSC | |||
1276 | 1290 | ||
1277 | config CPU_HAS_LLDSCD | 1291 | config CPU_HAS_LLDSCD |
1278 | bool "lld/scd Instructions available" if CPU_ADVANCED | 1292 | bool "lld/scd Instructions available" if CPU_ADVANCED |
1279 | default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX && !CPU_MIPS32 | 1293 | default y if !CPU_ADVANCED && !CPU_R3000 && !CPU_VR41XX && !CPU_TX39XX && !CPU_MIPS32_R1 |
1280 | help | 1294 | help |
1281 | Say Y here if your CPU has the lld and scd instructions, the 64-bit | 1295 | Say Y here if your CPU has the lld and scd instructions, the 64-bit |
1282 | equivalents of ll and sc. Say Y here for better performance, N if | 1296 | equivalents of ll and sc. Say Y here for better performance, N if |
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index bbf902796390..56e1d42a5796 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
@@ -182,11 +182,11 @@ cflags-$(CONFIG_CPU_TX49XX) += \ | |||
182 | $(call set_gccflags,r4600,mips3,r4600,mips3,mips2) \ | 182 | $(call set_gccflags,r4600,mips3,r4600,mips3,mips2) \ |
183 | -Wa,--trap | 183 | -Wa,--trap |
184 | 184 | ||
185 | cflags-$(CONFIG_CPU_MIPS32) += \ | 185 | cflags-$(CONFIG_CPU_MIPS32_R1) += \ |
186 | $(call set_gccflags,mips32,mips32,r4600,mips3,mips2) \ | 186 | $(call set_gccflags,mips32,mips32,r4600,mips3,mips2) \ |
187 | -Wa,--trap | 187 | -Wa,--trap |
188 | 188 | ||
189 | cflags-$(CONFIG_CPU_MIPS64) += \ | 189 | cflags-$(CONFIG_CPU_MIPS64_R1) += \ |
190 | $(call set_gccflags,mips64,mips64,r4600,mips3,mips2) \ | 190 | $(call set_gccflags,mips64,mips64,r4600,mips3,mips2) \ |
191 | -Wa,--trap | 191 | -Wa,--trap |
192 | 192 | ||
diff --git a/arch/mips/kernel/Makefile b/arch/mips/kernel/Makefile index d54964d52c83..0867417032f2 100644 --- a/arch/mips/kernel/Makefile +++ b/arch/mips/kernel/Makefile | |||
@@ -28,8 +28,8 @@ obj-$(CONFIG_CPU_RM9000) += r4k_fpu.o r4k_switch.o | |||
28 | obj-$(CONFIG_CPU_NEVADA) += r4k_fpu.o r4k_switch.o | 28 | obj-$(CONFIG_CPU_NEVADA) += r4k_fpu.o r4k_switch.o |
29 | obj-$(CONFIG_CPU_R10000) += r4k_fpu.o r4k_switch.o | 29 | obj-$(CONFIG_CPU_R10000) += r4k_fpu.o r4k_switch.o |
30 | obj-$(CONFIG_CPU_SB1) += r4k_fpu.o r4k_switch.o | 30 | obj-$(CONFIG_CPU_SB1) += r4k_fpu.o r4k_switch.o |
31 | obj-$(CONFIG_CPU_MIPS32) += r4k_fpu.o r4k_switch.o | 31 | obj-$(CONFIG_CPU_MIPS32_R1) += r4k_fpu.o r4k_switch.o |
32 | obj-$(CONFIG_CPU_MIPS64) += r4k_fpu.o r4k_switch.o | 32 | obj-$(CONFIG_CPU_MIPS64_R1) += r4k_fpu.o r4k_switch.o |
33 | obj-$(CONFIG_CPU_R6000) += r6000_fpu.o r4k_switch.o | 33 | obj-$(CONFIG_CPU_R6000) += r6000_fpu.o r4k_switch.o |
34 | 34 | ||
35 | obj-$(CONFIG_SMP) += smp.o | 35 | obj-$(CONFIG_SMP) += smp.o |
diff --git a/arch/mips/kernel/r4k_switch.S b/arch/mips/kernel/r4k_switch.S index d2afbd19a9c8..27361f44defe 100644 --- a/arch/mips/kernel/r4k_switch.S +++ b/arch/mips/kernel/r4k_switch.S | |||
@@ -165,7 +165,7 @@ LEAF(_init_fpu) | |||
165 | 1: | 165 | 1: |
166 | #endif | 166 | #endif |
167 | 167 | ||
168 | #ifdef CONFIG_CPU_MIPS32 | 168 | #ifdef CONFIG_CPU_MIPS32_R1 |
169 | mtc1 t1, $f0 | 169 | mtc1 t1, $f0 |
170 | mtc1 t1, $f1 | 170 | mtc1 t1, $f1 |
171 | mtc1 t1, $f2 | 171 | mtc1 t1, $f2 |
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index 46636a2fe982..b2fa607eeeb8 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c | |||
@@ -864,7 +864,7 @@ asmlinkage void cache_parity_error(void) | |||
864 | reg_val & (1<<22) ? "E0 " : ""); | 864 | reg_val & (1<<22) ? "E0 " : ""); |
865 | printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1)); | 865 | printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1)); |
866 | 866 | ||
867 | #if defined(CONFIG_CPU_MIPS32) || defined (CONFIG_CPU_MIPS64) | 867 | #if defined(CONFIG_CPU_MIPS32_R1) || defined(CONFIG_CPU_MIPS64_R1) |
868 | if (reg_val & (1<<22)) | 868 | if (reg_val & (1<<22)) |
869 | printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0()); | 869 | printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0()); |
870 | 870 | ||
diff --git a/arch/mips/lib-32/Makefile b/arch/mips/lib-32/Makefile index ad285786e74b..8119996736ae 100644 --- a/arch/mips/lib-32/Makefile +++ b/arch/mips/lib-32/Makefile | |||
@@ -4,8 +4,8 @@ | |||
4 | 4 | ||
5 | lib-y += csum_partial.o memset.o watch.o | 5 | lib-y += csum_partial.o memset.o watch.o |
6 | 6 | ||
7 | obj-$(CONFIG_CPU_MIPS32) += dump_tlb.o | 7 | obj-$(CONFIG_CPU_MIPS32_R1) += dump_tlb.o |
8 | obj-$(CONFIG_CPU_MIPS64) += dump_tlb.o | 8 | obj-$(CONFIG_CPU_MIPS64_R1) += dump_tlb.o |
9 | obj-$(CONFIG_CPU_NEVADA) += dump_tlb.o | 9 | obj-$(CONFIG_CPU_NEVADA) += dump_tlb.o |
10 | obj-$(CONFIG_CPU_R10000) += dump_tlb.o | 10 | obj-$(CONFIG_CPU_R10000) += dump_tlb.o |
11 | obj-$(CONFIG_CPU_R3000) += r3k_dump_tlb.o | 11 | obj-$(CONFIG_CPU_R3000) += r3k_dump_tlb.o |
diff --git a/arch/mips/lib-64/Makefile b/arch/mips/lib-64/Makefile index ad285786e74b..8119996736ae 100644 --- a/arch/mips/lib-64/Makefile +++ b/arch/mips/lib-64/Makefile | |||
@@ -4,8 +4,8 @@ | |||
4 | 4 | ||
5 | lib-y += csum_partial.o memset.o watch.o | 5 | lib-y += csum_partial.o memset.o watch.o |
6 | 6 | ||
7 | obj-$(CONFIG_CPU_MIPS32) += dump_tlb.o | 7 | obj-$(CONFIG_CPU_MIPS32_R1) += dump_tlb.o |
8 | obj-$(CONFIG_CPU_MIPS64) += dump_tlb.o | 8 | obj-$(CONFIG_CPU_MIPS64_R1) += dump_tlb.o |
9 | obj-$(CONFIG_CPU_NEVADA) += dump_tlb.o | 9 | obj-$(CONFIG_CPU_NEVADA) += dump_tlb.o |
10 | obj-$(CONFIG_CPU_R10000) += dump_tlb.o | 10 | obj-$(CONFIG_CPU_R10000) += dump_tlb.o |
11 | obj-$(CONFIG_CPU_R3000) += r3k_dump_tlb.o | 11 | obj-$(CONFIG_CPU_R3000) += r3k_dump_tlb.o |
diff --git a/arch/mips/mm/Makefile b/arch/mips/mm/Makefile index b56a0abdc3d4..74fea868af33 100644 --- a/arch/mips/mm/Makefile +++ b/arch/mips/mm/Makefile | |||
@@ -9,8 +9,8 @@ obj-$(CONFIG_32BIT) += ioremap.o pgtable-32.o | |||
9 | obj-$(CONFIG_64BIT) += pgtable-64.o | 9 | obj-$(CONFIG_64BIT) += pgtable-64.o |
10 | obj-$(CONFIG_HIGHMEM) += highmem.o | 10 | obj-$(CONFIG_HIGHMEM) += highmem.o |
11 | 11 | ||
12 | obj-$(CONFIG_CPU_MIPS32) += c-r4k.o cex-gen.o pg-r4k.o tlb-r4k.o | 12 | obj-$(CONFIG_CPU_MIPS32_R1) += c-r4k.o cex-gen.o pg-r4k.o tlb-r4k.o |
13 | obj-$(CONFIG_CPU_MIPS64) += c-r4k.o cex-gen.o pg-r4k.o tlb-r4k.o | 13 | obj-$(CONFIG_CPU_MIPS64_R1) += c-r4k.o cex-gen.o pg-r4k.o tlb-r4k.o |
14 | obj-$(CONFIG_CPU_NEVADA) += c-r4k.o cex-gen.o pg-r4k.o tlb-r4k.o | 14 | obj-$(CONFIG_CPU_NEVADA) += c-r4k.o cex-gen.o pg-r4k.o tlb-r4k.o |
15 | obj-$(CONFIG_CPU_R10000) += c-r4k.o cex-gen.o pg-r4k.o tlb-andes.o | 15 | obj-$(CONFIG_CPU_R10000) += c-r4k.o cex-gen.o pg-r4k.o tlb-andes.o |
16 | obj-$(CONFIG_CPU_R3000) += c-r3k.o tlb-r3k.o pg-r4k.o | 16 | obj-$(CONFIG_CPU_R3000) += c-r3k.o tlb-r3k.o pg-r4k.o |
diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c index eaecb8631973..172293b58390 100644 --- a/arch/mips/mm/cache.c +++ b/arch/mips/mm/cache.c | |||
@@ -118,8 +118,8 @@ void __init cpu_cache_init(void) | |||
118 | #if defined(CONFIG_CPU_R4X00) || defined(CONFIG_CPU_VR41XX) || \ | 118 | #if defined(CONFIG_CPU_R4X00) || defined(CONFIG_CPU_VR41XX) || \ |
119 | defined(CONFIG_CPU_R4300) || defined(CONFIG_CPU_R5000) || \ | 119 | defined(CONFIG_CPU_R4300) || defined(CONFIG_CPU_R5000) || \ |
120 | defined(CONFIG_CPU_NEVADA) || defined(CONFIG_CPU_R5432) || \ | 120 | defined(CONFIG_CPU_NEVADA) || defined(CONFIG_CPU_R5432) || \ |
121 | defined(CONFIG_CPU_R5500) || defined(CONFIG_CPU_MIPS32) || \ | 121 | defined(CONFIG_CPU_R5500) || defined(CONFIG_CPU_MIPS32_R1) || \ |
122 | defined(CONFIG_CPU_MIPS64) || defined(CONFIG_CPU_TX49XX) || \ | 122 | defined(CONFIG_CPU_MIPS64_R1) || defined(CONFIG_CPU_TX49XX) || \ |
123 | defined(CONFIG_CPU_RM7000) || defined(CONFIG_CPU_RM9000) | 123 | defined(CONFIG_CPU_RM7000) || defined(CONFIG_CPU_RM9000) |
124 | ld_mmu_r4xx0(); | 124 | ld_mmu_r4xx0(); |
125 | #endif | 125 | #endif |
diff --git a/arch/mips/mm/tlb-r4k.c b/arch/mips/mm/tlb-r4k.c index 316c8a3d6b53..8297970f0bb1 100644 --- a/arch/mips/mm/tlb-r4k.c +++ b/arch/mips/mm/tlb-r4k.c | |||
@@ -263,7 +263,7 @@ void __update_tlb(struct vm_area_struct * vma, unsigned long address, pte_t pte) | |||
263 | idx = read_c0_index(); | 263 | idx = read_c0_index(); |
264 | ptep = pte_offset_map(pmdp, address); | 264 | ptep = pte_offset_map(pmdp, address); |
265 | 265 | ||
266 | #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32) | 266 | #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32_R1) |
267 | write_c0_entrylo0(ptep->pte_high); | 267 | write_c0_entrylo0(ptep->pte_high); |
268 | ptep++; | 268 | ptep++; |
269 | write_c0_entrylo1(ptep->pte_high); | 269 | write_c0_entrylo1(ptep->pte_high); |
diff --git a/arch/mips/mm/tlb-sb1.c b/arch/mips/mm/tlb-sb1.c index bba7130e7547..f55fbbe473a5 100644 --- a/arch/mips/mm/tlb-sb1.c +++ b/arch/mips/mm/tlb-sb1.c | |||
@@ -320,7 +320,7 @@ void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte) | |||
320 | idx = read_c0_index(); | 320 | idx = read_c0_index(); |
321 | ptep = pte_offset_map(pmdp, address); | 321 | ptep = pte_offset_map(pmdp, address); |
322 | 322 | ||
323 | #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32) | 323 | #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32_R1) |
324 | write_c0_entrylo0(ptep->pte_high); | 324 | write_c0_entrylo0(ptep->pte_high); |
325 | ptep++; | 325 | ptep++; |
326 | write_c0_entrylo1(ptep->pte_high); | 326 | write_c0_entrylo1(ptep->pte_high); |
diff --git a/arch/mips/oprofile/Makefile b/arch/mips/oprofile/Makefile index 354261d37d62..17b411b22063 100644 --- a/arch/mips/oprofile/Makefile +++ b/arch/mips/oprofile/Makefile | |||
@@ -10,6 +10,6 @@ DRIVER_OBJS = $(addprefix ../../../drivers/oprofile/, \ | |||
10 | 10 | ||
11 | oprofile-y := $(DRIVER_OBJS) common.o | 11 | oprofile-y := $(DRIVER_OBJS) common.o |
12 | 12 | ||
13 | oprofile-$(CONFIG_CPU_MIPS32) += op_model_mipsxx.o | 13 | oprofile-$(CONFIG_CPU_MIPS32_R1) += op_model_mipsxx.o |
14 | oprofile-$(CONFIG_CPU_MIPS64) += op_model_mipsxx.o | 14 | oprofile-$(CONFIG_CPU_MIPS64_R1) += op_model_mipsxx.o |
15 | oprofile-$(CONFIG_CPU_RM9000) += op_model_rm9000.o | 15 | oprofile-$(CONFIG_CPU_RM9000) += op_model_rm9000.o |