Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ASM_SH_PROCESSOR_H |
| 2 | #define __ASM_SH_PROCESSOR_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
Paul Mundt | 76168c2 | 2007-11-10 20:01:51 +0900 | [diff] [blame] | 4 | #include <asm/cpu-features.h> |
Paul Mundt | 02f7e62 | 2008-06-03 18:48:54 +0900 | [diff] [blame] | 5 | #include <asm/segment.h> |
Paul Mundt | 81b6699 | 2008-09-17 23:24:02 +0900 | [diff] [blame] | 6 | #include <asm/cache.h> |
Paul Mundt | 76168c2 | 2007-11-10 20:01:51 +0900 | [diff] [blame] | 7 | |
Paul Mundt | 343ac72 | 2007-11-11 18:11:18 +0900 | [diff] [blame] | 8 | #ifndef __ASSEMBLY__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | /* |
| 10 | * CPU type and hardware bug flags. Kept separately for each CPU. |
| 11 | * |
| 12 | * Each one of these also needs a CONFIG_CPU_SUBTYPE_xxx entry |
Paul Mundt | de02797 | 2006-02-01 03:06:02 -0800 | [diff] [blame] | 13 | * in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * for parsing the subtype in get_cpu_subtype(). |
| 15 | */ |
| 16 | enum cpu_type { |
| 17 | /* SH-2 types */ |
Paul Mundt | b9601c5 | 2007-06-08 11:55:28 +0900 | [diff] [blame] | 18 | CPU_SH7619, |
Yoshinori Sato | b229632 | 2006-11-05 16:18:08 +0900 | [diff] [blame] | 19 | |
| 20 | /* SH-2A types */ |
Paul Mundt | 2ad6990 | 2008-03-13 12:52:44 +0900 | [diff] [blame] | 21 | CPU_SH7203, CPU_SH7206, CPU_SH7263, CPU_MXG, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | /* SH-3 types */ |
Paul Mundt | e5723e0 | 2006-09-27 17:38:11 +0900 | [diff] [blame] | 24 | CPU_SH7705, CPU_SH7706, CPU_SH7707, |
| 25 | CPU_SH7708, CPU_SH7708S, CPU_SH7708R, |
Nobuhiro Iwamatsu | 9465a54 | 2007-03-27 18:13:51 +0900 | [diff] [blame] | 26 | CPU_SH7709, CPU_SH7709A, CPU_SH7710, CPU_SH7712, |
Yoshihiro Shimoda | 31a49c4 | 2007-12-26 11:45:06 +0900 | [diff] [blame] | 27 | CPU_SH7720, CPU_SH7721, CPU_SH7729, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | /* SH-4 types */ |
| 30 | CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R, |
Paul Mundt | f966918 | 2007-11-07 11:05:32 +0900 | [diff] [blame] | 31 | CPU_SH7760, CPU_SH4_202, CPU_SH4_501, |
Paul Mundt | b552c7e | 2006-11-20 14:14:29 +0900 | [diff] [blame] | 32 | |
| 33 | /* SH-4A types */ |
Paul Mundt | 178dd0c | 2008-04-09 17:56:18 +0900 | [diff] [blame] | 34 | CPU_SH7763, CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785, |
| 35 | CPU_SH7723, CPU_SHX3, |
Paul Mundt | 41504c3 | 2006-12-11 20:28:03 +0900 | [diff] [blame] | 36 | |
| 37 | /* SH4AL-DSP types */ |
Magnus Damm | 9109a30 | 2008-02-08 17:31:24 +0900 | [diff] [blame] | 38 | CPU_SH7343, CPU_SH7722, CPU_SH7366, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 40 | /* SH-5 types */ |
| 41 | CPU_SH5_101, CPU_SH5_103, |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* Unknown subtype */ |
| 44 | CPU_SH_NONE |
| 45 | }; |
| 46 | |
Paul Mundt | 81b6699 | 2008-09-17 23:24:02 +0900 | [diff] [blame] | 47 | /* |
| 48 | * TLB information structure |
| 49 | * |
| 50 | * Defined for both I and D tlb, per-processor. |
| 51 | */ |
| 52 | struct tlb_info { |
| 53 | unsigned long long next; |
| 54 | unsigned long long first; |
| 55 | unsigned long long last; |
| 56 | |
| 57 | unsigned int entries; |
| 58 | unsigned int step; |
| 59 | |
| 60 | unsigned long flags; |
| 61 | }; |
| 62 | |
| 63 | struct sh_cpuinfo { |
| 64 | unsigned int type; |
| 65 | int cut_major, cut_minor; |
| 66 | unsigned long loops_per_jiffy; |
| 67 | unsigned long asid_cache; |
| 68 | |
| 69 | struct cache_info icache; /* Primary I-cache */ |
| 70 | struct cache_info dcache; /* Primary D-cache */ |
| 71 | struct cache_info scache; /* Secondary cache */ |
| 72 | |
| 73 | /* TLB info */ |
| 74 | struct tlb_info itlb; |
| 75 | struct tlb_info dtlb; |
| 76 | |
| 77 | unsigned long flags; |
| 78 | } __attribute__ ((aligned(L1_CACHE_BYTES))); |
| 79 | |
| 80 | extern struct sh_cpuinfo cpu_data[]; |
| 81 | #define boot_cpu_data cpu_data[0] |
| 82 | #define current_cpu_data cpu_data[smp_processor_id()] |
| 83 | #define raw_current_cpu_data cpu_data[raw_smp_processor_id()] |
| 84 | |
Paul Mundt | 343ac72 | 2007-11-11 18:11:18 +0900 | [diff] [blame] | 85 | /* Forward decl */ |
Paul Mundt | fa43972 | 2008-09-04 18:53:58 +0900 | [diff] [blame] | 86 | struct seq_operations; |
| 87 | |
| 88 | extern struct pt_regs fake_swapper_regs; |
Paul Mundt | 19f9a34 | 2006-09-27 18:33:49 +0900 | [diff] [blame] | 89 | |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 90 | /* arch/sh/kernel/setup.c */ |
| 91 | const char *get_cpu_subtype(struct sh_cpuinfo *c); |
Paul Mundt | fa43972 | 2008-09-04 18:53:58 +0900 | [diff] [blame] | 92 | extern const struct seq_operations cpuinfo_op; |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 93 | |
Paul Mundt | acb499f | 2007-11-10 20:39:56 +0900 | [diff] [blame] | 94 | #ifdef CONFIG_VSYSCALL |
| 95 | int vsyscall_init(void); |
| 96 | #else |
| 97 | #define vsyscall_init() do { } while (0) |
| 98 | #endif |
| 99 | |
Paul Mundt | 343ac72 | 2007-11-11 18:11:18 +0900 | [diff] [blame] | 100 | #endif /* __ASSEMBLY__ */ |
| 101 | |
| 102 | #ifdef CONFIG_SUPERH32 |
| 103 | # include "processor_32.h" |
| 104 | #else |
| 105 | # include "processor_64.h" |
| 106 | #endif |
| 107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #endif /* __ASM_SH_PROCESSOR_H */ |