xref: /openbmc/linux/arch/sh/include/asm/processor.h (revision 63dc02bd)
1 #ifndef __ASM_SH_PROCESSOR_H
2 #define __ASM_SH_PROCESSOR_H
3 
4 #include <asm/cpu-features.h>
5 #include <asm/segment.h>
6 #include <asm/cache.h>
7 
8 #ifndef __ASSEMBLY__
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
13  *  in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
14  *  for parsing the subtype in get_cpu_subtype().
15  */
16 enum cpu_type {
17 	/* SH-2 types */
18 	CPU_SH7619,
19 
20 	/* SH-2A types */
21 	CPU_SH7201, CPU_SH7203, CPU_SH7206, CPU_SH7263, CPU_SH7264, CPU_SH7269,
22 	CPU_MXG,
23 
24 	/* SH-3 types */
25 	CPU_SH7705, CPU_SH7706, CPU_SH7707,
26 	CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
27 	CPU_SH7709, CPU_SH7709A, CPU_SH7710, CPU_SH7712,
28 	CPU_SH7720, CPU_SH7721, CPU_SH7729,
29 
30 	/* SH-4 types */
31 	CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
32 	CPU_SH7760, CPU_SH4_202, CPU_SH4_501,
33 
34 	/* SH-4A types */
35 	CPU_SH7763, CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785, CPU_SH7786,
36 	CPU_SH7723, CPU_SH7724, CPU_SH7757, CPU_SH7734, CPU_SHX3,
37 
38 	/* SH4AL-DSP types */
39 	CPU_SH7343, CPU_SH7722, CPU_SH7366, CPU_SH7372,
40 
41 	/* SH-5 types */
42         CPU_SH5_101, CPU_SH5_103,
43 
44 	/* Unknown subtype */
45 	CPU_SH_NONE
46 };
47 
48 enum cpu_family {
49 	CPU_FAMILY_SH2,
50 	CPU_FAMILY_SH2A,
51 	CPU_FAMILY_SH3,
52 	CPU_FAMILY_SH4,
53 	CPU_FAMILY_SH4A,
54 	CPU_FAMILY_SH4AL_DSP,
55 	CPU_FAMILY_SH5,
56 	CPU_FAMILY_UNKNOWN,
57 };
58 
59 /*
60  * TLB information structure
61  *
62  * Defined for both I and D tlb, per-processor.
63  */
64 struct tlb_info {
65 	unsigned long long next;
66 	unsigned long long first;
67 	unsigned long long last;
68 
69 	unsigned int entries;
70 	unsigned int step;
71 
72 	unsigned long flags;
73 };
74 
75 struct sh_cpuinfo {
76 	unsigned int type, family;
77 	int cut_major, cut_minor;
78 	unsigned long loops_per_jiffy;
79 	unsigned long asid_cache;
80 
81 	struct cache_info icache;	/* Primary I-cache */
82 	struct cache_info dcache;	/* Primary D-cache */
83 	struct cache_info scache;	/* Secondary cache */
84 
85 	/* TLB info */
86 	struct tlb_info itlb;
87 	struct tlb_info dtlb;
88 
89 #ifdef CONFIG_SMP
90 	struct task_struct *idle;
91 #endif
92 
93 	unsigned int phys_bits;
94 	unsigned long flags;
95 } __attribute__ ((aligned(L1_CACHE_BYTES)));
96 
97 extern struct sh_cpuinfo cpu_data[];
98 #define boot_cpu_data cpu_data[0]
99 #define current_cpu_data cpu_data[smp_processor_id()]
100 #define raw_current_cpu_data cpu_data[raw_smp_processor_id()]
101 
102 #define cpu_sleep()	__asm__ __volatile__ ("sleep" : : : "memory")
103 #define cpu_relax()	barrier()
104 
105 void default_idle(void);
106 void cpu_idle_wait(void);
107 void stop_this_cpu(void *);
108 
109 /* Forward decl */
110 struct seq_operations;
111 struct task_struct;
112 
113 extern struct pt_regs fake_swapper_regs;
114 
115 extern void cpu_init(void);
116 extern void cpu_probe(void);
117 
118 /* arch/sh/kernel/process.c */
119 extern unsigned int xstate_size;
120 extern void free_thread_xstate(struct task_struct *);
121 extern struct kmem_cache *task_xstate_cachep;
122 
123 /* arch/sh/mm/alignment.c */
124 extern int get_unalign_ctl(struct task_struct *, unsigned long addr);
125 extern int set_unalign_ctl(struct task_struct *, unsigned int val);
126 
127 #define GET_UNALIGN_CTL(tsk, addr)	get_unalign_ctl((tsk), (addr))
128 #define SET_UNALIGN_CTL(tsk, val)	set_unalign_ctl((tsk), (val))
129 
130 /* arch/sh/mm/init.c */
131 extern unsigned int mem_init_done;
132 
133 /* arch/sh/kernel/setup.c */
134 const char *get_cpu_subtype(struct sh_cpuinfo *c);
135 extern const struct seq_operations cpuinfo_op;
136 
137 /* thread_struct flags */
138 #define SH_THREAD_UAC_NOPRINT	(1 << 0)
139 #define SH_THREAD_UAC_SIGBUS	(1 << 1)
140 #define SH_THREAD_UAC_MASK	(SH_THREAD_UAC_NOPRINT | SH_THREAD_UAC_SIGBUS)
141 
142 /* processor boot mode configuration */
143 #define MODE_PIN0 (1 << 0)
144 #define MODE_PIN1 (1 << 1)
145 #define MODE_PIN2 (1 << 2)
146 #define MODE_PIN3 (1 << 3)
147 #define MODE_PIN4 (1 << 4)
148 #define MODE_PIN5 (1 << 5)
149 #define MODE_PIN6 (1 << 6)
150 #define MODE_PIN7 (1 << 7)
151 #define MODE_PIN8 (1 << 8)
152 #define MODE_PIN9 (1 << 9)
153 #define MODE_PIN10 (1 << 10)
154 #define MODE_PIN11 (1 << 11)
155 #define MODE_PIN12 (1 << 12)
156 #define MODE_PIN13 (1 << 13)
157 #define MODE_PIN14 (1 << 14)
158 #define MODE_PIN15 (1 << 15)
159 
160 int generic_mode_pins(void);
161 int test_mode_pin(int pin);
162 
163 #ifdef CONFIG_VSYSCALL
164 int vsyscall_init(void);
165 #else
166 #define vsyscall_init() do { } while (0)
167 #endif
168 
169 /*
170  * SH-2A has both 16 and 32-bit opcodes, do lame encoding checks.
171  */
172 #ifdef CONFIG_CPU_SH2A
173 extern unsigned int instruction_size(unsigned int insn);
174 #elif defined(CONFIG_SUPERH32)
175 #define instruction_size(insn)	(2)
176 #else
177 #define instruction_size(insn)	(4)
178 #endif
179 
180 #endif /* __ASSEMBLY__ */
181 
182 #ifdef CONFIG_SUPERH32
183 # include "processor_32.h"
184 #else
185 # include "processor_64.h"
186 #endif
187 
188 #endif /* __ASM_SH_PROCESSOR_H */
189