diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-11-05 15:39:24 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-11-05 15:39:24 -0500 |
commit | 7211bb9b64f17b23834d91fc3d0c1d78671ee9a8 (patch) | |
tree | 541909f86c31fee97cd70d28ec2fe5c23e1ceb02 /include/asm-mips/mach-mips | |
parent | f1e691a24955ea987f021f378324fb5003b1b208 (diff) | |
parent | 70d9d825e0a5a78ec1dacaaaf5c72ff5b0206fab (diff) |
Merge branch 'master'
Diffstat (limited to 'include/asm-mips/mach-mips')
-rw-r--r-- | include/asm-mips/mach-mips/cpu-feature-overrides.h | 6 | ||||
-rw-r--r-- | include/asm-mips/mach-mips/irq.h | 14 |
2 files changed, 18 insertions, 2 deletions
diff --git a/include/asm-mips/mach-mips/cpu-feature-overrides.h b/include/asm-mips/mach-mips/cpu-feature-overrides.h index 6f51be571bf0..9f92aed17754 100644 --- a/include/asm-mips/mach-mips/cpu-feature-overrides.h +++ b/include/asm-mips/mach-mips/cpu-feature-overrides.h | |||
@@ -17,7 +17,7 @@ | |||
17 | #ifdef CONFIG_CPU_MIPS32 | 17 | #ifdef CONFIG_CPU_MIPS32 |
18 | #define cpu_has_tlb 1 | 18 | #define cpu_has_tlb 1 |
19 | #define cpu_has_4kex 1 | 19 | #define cpu_has_4kex 1 |
20 | #define cpu_has_4ktlb 1 | 20 | #define cpu_has_4kcache 1 |
21 | /* #define cpu_has_fpu ? */ | 21 | /* #define cpu_has_fpu ? */ |
22 | /* #define cpu_has_32fpr ? */ | 22 | /* #define cpu_has_32fpr ? */ |
23 | #define cpu_has_counter 1 | 23 | #define cpu_has_counter 1 |
@@ -37,12 +37,13 @@ | |||
37 | /* #define cpu_has_64bits ? */ | 37 | /* #define cpu_has_64bits ? */ |
38 | /* #define cpu_has_64bit_zero_reg ? */ | 38 | /* #define cpu_has_64bit_zero_reg ? */ |
39 | /* #define cpu_has_subset_pcaches ? */ | 39 | /* #define cpu_has_subset_pcaches ? */ |
40 | #define cpu_icache_snoops_remote_store 1 | ||
40 | #endif | 41 | #endif |
41 | 42 | ||
42 | #ifdef CONFIG_CPU_MIPS64 | 43 | #ifdef CONFIG_CPU_MIPS64 |
43 | #define cpu_has_tlb 1 | 44 | #define cpu_has_tlb 1 |
44 | #define cpu_has_4kex 1 | 45 | #define cpu_has_4kex 1 |
45 | #define cpu_has_4ktlb 1 | 46 | #define cpu_has_4kcache 1 |
46 | /* #define cpu_has_fpu ? */ | 47 | /* #define cpu_has_fpu ? */ |
47 | /* #define cpu_has_32fpr ? */ | 48 | /* #define cpu_has_32fpr ? */ |
48 | #define cpu_has_counter 1 | 49 | #define cpu_has_counter 1 |
@@ -62,6 +63,7 @@ | |||
62 | /* #define cpu_has_64bits ? */ | 63 | /* #define cpu_has_64bits ? */ |
63 | /* #define cpu_has_64bit_zero_reg ? */ | 64 | /* #define cpu_has_64bit_zero_reg ? */ |
64 | /* #define cpu_has_subset_pcaches ? */ | 65 | /* #define cpu_has_subset_pcaches ? */ |
66 | #define cpu_icache_snoops_remote_store 1 | ||
65 | #endif | 67 | #endif |
66 | 68 | ||
67 | #endif /* __ASM_MACH_MIPS_CPU_FEATURE_OVERRIDES_H */ | 69 | #endif /* __ASM_MACH_MIPS_CPU_FEATURE_OVERRIDES_H */ |
diff --git a/include/asm-mips/mach-mips/irq.h b/include/asm-mips/mach-mips/irq.h new file mode 100644 index 000000000000..f8579696ca54 --- /dev/null +++ b/include/asm-mips/mach-mips/irq.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #ifndef __ASM_MACH_MIPS_IRQ_H | ||
2 | #define __ASM_MACH_MIPS_IRQ_H | ||
3 | |||
4 | #include <linux/config.h> | ||
5 | |||
6 | #define NR_IRQS 256 | ||
7 | |||
8 | #ifdef CONFIG_SMP | ||
9 | |||
10 | #define ARCH_HAS_IRQ_PER_CPU | ||
11 | |||
12 | #endif | ||
13 | |||
14 | #endif /* __ASM_MACH_MIPS_IRQ_H */ | ||