blob: a229c393826ac116e64e48597ac011510ffc4102 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SH_PROCESSOR_H
2#define __ASM_SH_PROCESSOR_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Paul Mundt76168c22007-11-10 20:01:51 +09004#include <asm/cpu-features.h>
Paul Mundt02f7e622008-06-03 18:48:54 +09005#include <asm/segment.h>
Paul Mundt81b66992008-09-17 23:24:02 +09006#include <asm/cache.h>
Paul Mundt76168c22007-11-10 20:01:51 +09007
Paul Mundt343ac722007-11-11 18:11:18 +09008#ifndef __ASSEMBLY__
Linus Torvalds1da177e2005-04-16 15:20:36 -07009/*
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 Mundtde027972006-02-01 03:06:02 -080013 * in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * for parsing the subtype in get_cpu_subtype().
15 */
16enum cpu_type {
17 /* SH-2 types */
Paul Mundtb9601c52007-06-08 11:55:28 +090018 CPU_SH7619,
Yoshinori Satob2296322006-11-05 16:18:08 +090019
20 /* SH-2A types */
Peter Griffin28259992008-11-28 22:48:20 +090021 CPU_SH7201, CPU_SH7203, CPU_SH7206, CPU_SH7263, CPU_MXG,
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23 /* SH-3 types */
Paul Mundte5723e02006-09-27 17:38:11 +090024 CPU_SH7705, CPU_SH7706, CPU_SH7707,
25 CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +090026 CPU_SH7709, CPU_SH7709A, CPU_SH7710, CPU_SH7712,
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +090027 CPU_SH7720, CPU_SH7721, CPU_SH7729,
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29 /* SH-4 types */
30 CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
Paul Mundtf9669182007-11-07 11:05:32 +090031 CPU_SH7760, CPU_SH4_202, CPU_SH4_501,
Paul Mundtb552c7e2006-11-20 14:14:29 +090032
33 /* SH-4A types */
Kuninori Morimoto55ba99e2009-03-03 15:40:25 +090034 CPU_SH7763, CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785, CPU_SH7786,
Yoshihiro Shimodac01f0f12009-08-21 16:30:28 +090035 CPU_SH7723, CPU_SH7724, CPU_SH7757, CPU_SHX3,
Paul Mundt41504c32006-12-11 20:28:03 +090036
37 /* SH4AL-DSP types */
Magnus Dammfac6c2a2011-01-12 10:54:21 +000038 CPU_SH7343, CPU_SH7722, CPU_SH7366, CPU_SH7372,
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Paul Mundtaf3c7df2007-11-09 17:08:54 +090040 /* SH-5 types */
41 CPU_SH5_101, CPU_SH5_103,
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 /* Unknown subtype */
44 CPU_SH_NONE
45};
46
Paul Mundte82da212009-08-15 10:48:13 +090047enum cpu_family {
48 CPU_FAMILY_SH2,
49 CPU_FAMILY_SH2A,
50 CPU_FAMILY_SH3,
51 CPU_FAMILY_SH4,
52 CPU_FAMILY_SH4A,
53 CPU_FAMILY_SH4AL_DSP,
54 CPU_FAMILY_SH5,
55 CPU_FAMILY_UNKNOWN,
56};
57
Paul Mundt81b66992008-09-17 23:24:02 +090058/*
59 * TLB information structure
60 *
61 * Defined for both I and D tlb, per-processor.
62 */
63struct tlb_info {
64 unsigned long long next;
65 unsigned long long first;
66 unsigned long long last;
67
68 unsigned int entries;
69 unsigned int step;
70
71 unsigned long flags;
72};
73
74struct sh_cpuinfo {
Paul Mundte82da212009-08-15 10:48:13 +090075 unsigned int type, family;
Paul Mundt81b66992008-09-17 23:24:02 +090076 int cut_major, cut_minor;
77 unsigned long loops_per_jiffy;
78 unsigned long asid_cache;
79
80 struct cache_info icache; /* Primary I-cache */
81 struct cache_info dcache; /* Primary D-cache */
82 struct cache_info scache; /* Secondary cache */
83
84 /* TLB info */
85 struct tlb_info itlb;
86 struct tlb_info dtlb;
87
Paul Mundt8db2bc42010-04-26 18:59:47 +090088#ifdef CONFIG_SMP
89 struct task_struct *idle;
90#endif
91
Paul Mundt2f984922010-10-26 14:44:58 +090092 unsigned int phys_bits;
Paul Mundt81b66992008-09-17 23:24:02 +090093 unsigned long flags;
94} __attribute__ ((aligned(L1_CACHE_BYTES)));
95
96extern struct sh_cpuinfo cpu_data[];
97#define boot_cpu_data cpu_data[0]
98#define current_cpu_data cpu_data[smp_processor_id()]
99#define raw_current_cpu_data cpu_data[raw_smp_processor_id()]
100
Paul Mundteb67cf12008-11-26 15:47:44 +0900101#define cpu_sleep() __asm__ __volatile__ ("sleep" : : : "memory")
102#define cpu_relax() barrier()
103
David Howellse839ca52012-03-28 18:30:03 +0100104void default_idle(void);
105void cpu_idle_wait(void);
106void stop_this_cpu(void *);
107
Paul Mundt343ac722007-11-11 18:11:18 +0900108/* Forward decl */
Paul Mundtfa439722008-09-04 18:53:58 +0900109struct seq_operations;
Paul Mundt3ef29322010-01-19 15:40:03 +0900110struct task_struct;
Paul Mundtfa439722008-09-04 18:53:58 +0900111
112extern struct pt_regs fake_swapper_regs;
Paul Mundt19f9a342006-09-27 18:33:49 +0900113
Paul Mundt4a6feab2010-04-21 12:20:42 +0900114extern void cpu_init(void);
Paul Mundta9079ca2010-04-21 12:01:06 +0900115extern void cpu_probe(void);
116
Paul Mundt3ef29322010-01-19 15:40:03 +0900117/* arch/sh/kernel/process.c */
118extern unsigned int xstate_size;
119extern void free_thread_xstate(struct task_struct *);
120extern struct kmem_cache *task_xstate_cachep;
121
Paul Mundt94ea5e42010-02-23 12:56:30 +0900122/* arch/sh/mm/alignment.c */
123extern int get_unalign_ctl(struct task_struct *, unsigned long addr);
124extern int set_unalign_ctl(struct task_struct *, unsigned int val);
125
126#define GET_UNALIGN_CTL(tsk, addr) get_unalign_ctl((tsk), (addr))
127#define SET_UNALIGN_CTL(tsk, val) set_unalign_ctl((tsk), (val))
128
Paul Mundtd9b94872010-01-18 21:08:32 +0900129/* arch/sh/mm/init.c */
130extern unsigned int mem_init_done;
131
Paul Mundt11c19652006-12-25 10:19:56 +0900132/* arch/sh/kernel/setup.c */
133const char *get_cpu_subtype(struct sh_cpuinfo *c);
Paul Mundtfa439722008-09-04 18:53:58 +0900134extern const struct seq_operations cpuinfo_op;
Paul Mundt11c19652006-12-25 10:19:56 +0900135
Paul Mundt94ea5e42010-02-23 12:56:30 +0900136/* thread_struct flags */
137#define SH_THREAD_UAC_NOPRINT (1 << 0)
138#define SH_THREAD_UAC_SIGBUS (1 << 1)
139#define SH_THREAD_UAC_MASK (SH_THREAD_UAC_NOPRINT | SH_THREAD_UAC_SIGBUS)
140
Magnus Dammeb9b9b52009-05-28 11:51:51 +0000141/* processor boot mode configuration */
Magnus Damm0d4fdbb2009-06-02 09:22:02 +0000142#define MODE_PIN0 (1 << 0)
143#define MODE_PIN1 (1 << 1)
144#define MODE_PIN2 (1 << 2)
145#define MODE_PIN3 (1 << 3)
146#define MODE_PIN4 (1 << 4)
147#define MODE_PIN5 (1 << 5)
148#define MODE_PIN6 (1 << 6)
149#define MODE_PIN7 (1 << 7)
150#define MODE_PIN8 (1 << 8)
151#define MODE_PIN9 (1 << 9)
152#define MODE_PIN10 (1 << 10)
153#define MODE_PIN11 (1 << 11)
154#define MODE_PIN12 (1 << 12)
155#define MODE_PIN13 (1 << 13)
156#define MODE_PIN14 (1 << 14)
157#define MODE_PIN15 (1 << 15)
158
Magnus Dammeb9b9b52009-05-28 11:51:51 +0000159int generic_mode_pins(void);
160int test_mode_pin(int pin);
161
Paul Mundtacb499f2007-11-10 20:39:56 +0900162#ifdef CONFIG_VSYSCALL
163int vsyscall_init(void);
164#else
165#define vsyscall_init() do { } while (0)
166#endif
167
David Howellse839ca52012-03-28 18:30:03 +0100168/*
169 * SH-2A has both 16 and 32-bit opcodes, do lame encoding checks.
170 */
171#ifdef CONFIG_CPU_SH2A
172extern unsigned int instruction_size(unsigned int insn);
173#elif defined(CONFIG_SUPERH32)
174#define instruction_size(insn) (2)
175#else
176#define instruction_size(insn) (4)
177#endif
178
Paul Mundt343ac722007-11-11 18:11:18 +0900179#endif /* __ASSEMBLY__ */
180
181#ifdef CONFIG_SUPERH32
182# include "processor_32.h"
183#else
184# include "processor_64.h"
185#endif
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#endif /* __ASM_SH_PROCESSOR_H */