diff options
Diffstat (limited to 'arch/mips/include/asm/mach-ip22')
-rw-r--r-- | arch/mips/include/asm/mach-ip22/cpu-feature-overrides.h | 44 | ||||
-rw-r--r-- | arch/mips/include/asm/mach-ip22/ds1286.h | 18 | ||||
-rw-r--r-- | arch/mips/include/asm/mach-ip22/spaces.h | 27 | ||||
-rw-r--r-- | arch/mips/include/asm/mach-ip22/war.h | 29 |
4 files changed, 118 insertions, 0 deletions
diff --git a/arch/mips/include/asm/mach-ip22/cpu-feature-overrides.h b/arch/mips/include/asm/mach-ip22/cpu-feature-overrides.h new file mode 100644 index 000000000000..9c8735158da1 --- /dev/null +++ b/arch/mips/include/asm/mach-ip22/cpu-feature-overrides.h | |||
@@ -0,0 +1,44 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * Copyright (C) 2003, 07 Ralf Baechle | ||
7 | */ | ||
8 | #ifndef __ASM_MACH_IP22_CPU_FEATURE_OVERRIDES_H | ||
9 | #define __ASM_MACH_IP22_CPU_FEATURE_OVERRIDES_H | ||
10 | |||
11 | /* | ||
12 | * IP22 with a variety of processors so we can't use defaults for everything. | ||
13 | */ | ||
14 | #define cpu_has_tlb 1 | ||
15 | #define cpu_has_4kex 1 | ||
16 | #define cpu_has_4k_cache 1 | ||
17 | #define cpu_has_fpu 1 | ||
18 | #define cpu_has_32fpr 1 | ||
19 | #define cpu_has_counter 1 | ||
20 | #define cpu_has_mips16 0 | ||
21 | #define cpu_has_divec 0 | ||
22 | #define cpu_has_cache_cdex_p 1 | ||
23 | #define cpu_has_prefetch 0 | ||
24 | #define cpu_has_mcheck 0 | ||
25 | #define cpu_has_ejtag 0 | ||
26 | |||
27 | #define cpu_has_llsc 1 | ||
28 | #define cpu_has_vtag_icache 0 /* Needs to change for R8000 */ | ||
29 | #define cpu_has_dc_aliases (PAGE_SIZE < 0x4000) | ||
30 | #define cpu_has_ic_fills_f_dc 0 | ||
31 | |||
32 | #define cpu_has_dsp 0 | ||
33 | #define cpu_has_mipsmt 0 | ||
34 | #define cpu_has_userlocal 0 | ||
35 | |||
36 | #define cpu_has_nofpuex 0 | ||
37 | #define cpu_has_64bits 1 | ||
38 | |||
39 | #define cpu_has_mips32r1 0 | ||
40 | #define cpu_has_mips32r2 0 | ||
41 | #define cpu_has_mips64r1 0 | ||
42 | #define cpu_has_mips64r2 0 | ||
43 | |||
44 | #endif /* __ASM_MACH_IP22_CPU_FEATURE_OVERRIDES_H */ | ||
diff --git a/arch/mips/include/asm/mach-ip22/ds1286.h b/arch/mips/include/asm/mach-ip22/ds1286.h new file mode 100644 index 000000000000..f19f1eafbc71 --- /dev/null +++ b/arch/mips/include/asm/mach-ip22/ds1286.h | |||
@@ -0,0 +1,18 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * Copyright (C) 1998, 2001, 03 by Ralf Baechle | ||
7 | * | ||
8 | * RTC routines for PC style attached Dallas chip. | ||
9 | */ | ||
10 | #ifndef __ASM_MACH_IP22_DS1286_H | ||
11 | #define __ASM_MACH_IP22_DS1286_H | ||
12 | |||
13 | #include <asm/sgi/hpc3.h> | ||
14 | |||
15 | #define rtc_read(reg) (hpc3c0->rtcregs[(reg)] & 0xff) | ||
16 | #define rtc_write(data, reg) do { hpc3c0->rtcregs[(reg)] = (data); } while(0) | ||
17 | |||
18 | #endif /* __ASM_MACH_IP22_DS1286_H */ | ||
diff --git a/arch/mips/include/asm/mach-ip22/spaces.h b/arch/mips/include/asm/mach-ip22/spaces.h new file mode 100644 index 000000000000..7f9fa6f66059 --- /dev/null +++ b/arch/mips/include/asm/mach-ip22/spaces.h | |||
@@ -0,0 +1,27 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * Copyright (C) 1994 - 1999, 2000, 03, 04 Ralf Baechle | ||
7 | * Copyright (C) 2000, 2002 Maciej W. Rozycki | ||
8 | * Copyright (C) 1990, 1999, 2000 Silicon Graphics, Inc. | ||
9 | */ | ||
10 | #ifndef _ASM_MACH_IP22_SPACES_H | ||
11 | #define _ASM_MACH_IP22_SPACES_H | ||
12 | |||
13 | |||
14 | #ifdef CONFIG_64BIT | ||
15 | |||
16 | #define PAGE_OFFSET 0xffffffff80000000UL | ||
17 | |||
18 | #define CAC_BASE 0xffffffff80000000 | ||
19 | #define IO_BASE 0xffffffffa0000000 | ||
20 | #define UNCAC_BASE 0xffffffffa0000000 | ||
21 | #define MAP_BASE 0xc000000000000000 | ||
22 | |||
23 | #endif /* CONFIG_64BIT */ | ||
24 | |||
25 | #include <asm/mach-generic/spaces.h> | ||
26 | |||
27 | #endif /* __ASM_MACH_IP22_SPACES_H */ | ||
diff --git a/arch/mips/include/asm/mach-ip22/war.h b/arch/mips/include/asm/mach-ip22/war.h new file mode 100644 index 000000000000..a44fa9656a82 --- /dev/null +++ b/arch/mips/include/asm/mach-ip22/war.h | |||
@@ -0,0 +1,29 @@ | |||
1 | /* | ||
2 | * This file is subject to the terms and conditions of the GNU General Public | ||
3 | * License. See the file "COPYING" in the main directory of this archive | ||
4 | * for more details. | ||
5 | * | ||
6 | * Copyright (C) 2002, 2004, 2007 by Ralf Baechle <ralf@linux-mips.org> | ||
7 | */ | ||
8 | #ifndef __ASM_MIPS_MACH_IP22_WAR_H | ||
9 | #define __ASM_MIPS_MACH_IP22_WAR_H | ||
10 | |||
11 | /* | ||
12 | * R4600 CPU modules for the Indy come with both V1.7 and V2.0 processors. | ||
13 | */ | ||
14 | |||
15 | #define R4600_V1_INDEX_ICACHEOP_WAR 1 | ||
16 | #define R4600_V1_HIT_CACHEOP_WAR 1 | ||
17 | #define R4600_V2_HIT_CACHEOP_WAR 1 | ||
18 | #define R5432_CP0_INTERRUPT_WAR 0 | ||
19 | #define BCM1250_M3_WAR 0 | ||
20 | #define SIBYTE_1956_WAR 0 | ||
21 | #define MIPS4K_ICACHE_REFILL_WAR 0 | ||
22 | #define MIPS_CACHE_SYNC_WAR 0 | ||
23 | #define TX49XX_ICACHE_INDEX_INV_WAR 0 | ||
24 | #define RM9000_CDEX_SMP_WAR 0 | ||
25 | #define ICACHE_REFILLS_WORKAROUND_WAR 0 | ||
26 | #define R10000_LLSC_WAR 0 | ||
27 | #define MIPS34K_MISSED_ITLB_WAR 0 | ||
28 | |||
29 | #endif /* __ASM_MIPS_MACH_IP22_WAR_H */ | ||