blob: f9a09942a32d37249b43ec4139762aaafa16443d [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 */
Rich Felker5a846ab2016-03-17 23:09:37 +000018 CPU_SH7619, CPU_J2,
Yoshinori Satob2296322006-11-05 16:18:08 +090019
20 /* SH-2A types */
Phil Edworthy0b25b7c2012-05-10 09:26:52 +010021 CPU_SH7201, CPU_SH7203, CPU_SH7206, CPU_SH7263, CPU_SH7264, CPU_SH7269,
22 CPU_MXG,
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24 /* SH-3 types */
Paul Mundte5723e02006-09-27 17:38:11 +090025 CPU_SH7705, CPU_SH7706, CPU_SH7707,
26 CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
Nobuhiro Iwamatsu9465a542007-03-27 18:13:51 +090027 CPU_SH7709, CPU_SH7709A, CPU_SH7710, CPU_SH7712,
Yoshihiro Shimoda31a49c42007-12-26 11:45:06 +090028 CPU_SH7720, CPU_SH7721, CPU_SH7729,
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30 /* SH-4 types */
31 CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
Paul Mundtf9669182007-11-07 11:05:32 +090032 CPU_SH7760, CPU_SH4_202, CPU_SH4_501,
Paul Mundtb552c7e2006-11-20 14:14:29 +090033
34 /* SH-4A types */
Kuninori Morimoto55ba99e2009-03-03 15:40:25 +090035 CPU_SH7763, CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785, CPU_SH7786,
Nobuhiro Iwamatsufea88a02012-04-12 15:45:32 +090036 CPU_SH7723, CPU_SH7724, CPU_SH7757, CPU_SH7734, CPU_SHX3,
Paul Mundt41504c32006-12-11 20:28:03 +090037
38 /* SH4AL-DSP types */
Magnus Dammfac6c2a2011-01-12 10:54:21 +000039 CPU_SH7343, CPU_SH7722, CPU_SH7366, CPU_SH7372,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Paul Mundtaf3c7df2007-11-09 17:08:54 +090041 /* SH-5 types */
42 CPU_SH5_101, CPU_SH5_103,
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 /* Unknown subtype */
45 CPU_SH_NONE
46};
47
Paul Mundte82da212009-08-15 10:48:13 +090048enum 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
Paul Mundt81b66992008-09-17 23:24:02 +090059/*
60 * TLB information structure
61 *
62 * Defined for both I and D tlb, per-processor.
63 */
64struct 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
75struct sh_cpuinfo {
Paul Mundte82da212009-08-15 10:48:13 +090076 unsigned int type, family;
Paul Mundt81b66992008-09-17 23:24:02 +090077 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
Paul Mundt2f984922010-10-26 14:44:58 +090089 unsigned int phys_bits;
Paul Mundt81b66992008-09-17 23:24:02 +090090 unsigned long flags;
91} __attribute__ ((aligned(L1_CACHE_BYTES)));
92
93extern struct sh_cpuinfo cpu_data[];
94#define boot_cpu_data cpu_data[0]
95#define current_cpu_data cpu_data[smp_processor_id()]
96#define raw_current_cpu_data cpu_data[raw_smp_processor_id()]
97
Paul Mundteb67cf12008-11-26 15:47:44 +090098#define cpu_sleep() __asm__ __volatile__ ("sleep" : : : "memory")
99#define cpu_relax() barrier()
Davidlohr Bueso3a6bfbc2014-06-29 15:09:33 -0700100#define cpu_relax_lowlatency() cpu_relax()
Paul Mundteb67cf12008-11-26 15:47:44 +0900101
David Howellse839ca52012-03-28 18:30:03 +0100102void default_idle(void);
David Howellse839ca52012-03-28 18:30:03 +0100103void stop_this_cpu(void *);
104
Paul Mundt343ac722007-11-11 18:11:18 +0900105/* Forward decl */
Paul Mundtfa439722008-09-04 18:53:58 +0900106struct seq_operations;
Paul Mundt3ef29322010-01-19 15:40:03 +0900107struct task_struct;
Paul Mundtfa439722008-09-04 18:53:58 +0900108
109extern struct pt_regs fake_swapper_regs;
Paul Mundt19f9a342006-09-27 18:33:49 +0900110
Paul Mundt4a6feab2010-04-21 12:20:42 +0900111extern void cpu_init(void);
Paul Mundta9079ca2010-04-21 12:01:06 +0900112extern void cpu_probe(void);
113
Paul Mundt3ef29322010-01-19 15:40:03 +0900114/* arch/sh/kernel/process.c */
115extern unsigned int xstate_size;
116extern void free_thread_xstate(struct task_struct *);
117extern struct kmem_cache *task_xstate_cachep;
118
Paul Mundt94ea5e42010-02-23 12:56:30 +0900119/* arch/sh/mm/alignment.c */
120extern int get_unalign_ctl(struct task_struct *, unsigned long addr);
121extern int set_unalign_ctl(struct task_struct *, unsigned int val);
122
123#define GET_UNALIGN_CTL(tsk, addr) get_unalign_ctl((tsk), (addr))
124#define SET_UNALIGN_CTL(tsk, val) set_unalign_ctl((tsk), (val))
125
Paul Mundtd9b94872010-01-18 21:08:32 +0900126/* arch/sh/mm/init.c */
127extern unsigned int mem_init_done;
128
Paul Mundt11c19652006-12-25 10:19:56 +0900129/* arch/sh/kernel/setup.c */
130const char *get_cpu_subtype(struct sh_cpuinfo *c);
Paul Mundtfa439722008-09-04 18:53:58 +0900131extern const struct seq_operations cpuinfo_op;
Paul Mundt11c19652006-12-25 10:19:56 +0900132
Paul Mundt94ea5e42010-02-23 12:56:30 +0900133/* thread_struct flags */
134#define SH_THREAD_UAC_NOPRINT (1 << 0)
135#define SH_THREAD_UAC_SIGBUS (1 << 1)
136#define SH_THREAD_UAC_MASK (SH_THREAD_UAC_NOPRINT | SH_THREAD_UAC_SIGBUS)
137
Magnus Dammeb9b9b52009-05-28 11:51:51 +0000138/* processor boot mode configuration */
Magnus Damm0d4fdbb2009-06-02 09:22:02 +0000139#define MODE_PIN0 (1 << 0)
140#define MODE_PIN1 (1 << 1)
141#define MODE_PIN2 (1 << 2)
142#define MODE_PIN3 (1 << 3)
143#define MODE_PIN4 (1 << 4)
144#define MODE_PIN5 (1 << 5)
145#define MODE_PIN6 (1 << 6)
146#define MODE_PIN7 (1 << 7)
147#define MODE_PIN8 (1 << 8)
148#define MODE_PIN9 (1 << 9)
149#define MODE_PIN10 (1 << 10)
150#define MODE_PIN11 (1 << 11)
151#define MODE_PIN12 (1 << 12)
152#define MODE_PIN13 (1 << 13)
153#define MODE_PIN14 (1 << 14)
154#define MODE_PIN15 (1 << 15)
155
Magnus Dammeb9b9b52009-05-28 11:51:51 +0000156int generic_mode_pins(void);
157int test_mode_pin(int pin);
158
Paul Mundtacb499f2007-11-10 20:39:56 +0900159#ifdef CONFIG_VSYSCALL
160int vsyscall_init(void);
161#else
162#define vsyscall_init() do { } while (0)
163#endif
164
David Howellse839ca52012-03-28 18:30:03 +0100165/*
166 * SH-2A has both 16 and 32-bit opcodes, do lame encoding checks.
167 */
168#ifdef CONFIG_CPU_SH2A
169extern unsigned int instruction_size(unsigned int insn);
170#elif defined(CONFIG_SUPERH32)
171#define instruction_size(insn) (2)
172#else
173#define instruction_size(insn) (4)
174#endif
175
Paul Mundt343ac722007-11-11 18:11:18 +0900176#endif /* __ASSEMBLY__ */
177
178#ifdef CONFIG_SUPERH32
David Howellsa1ce3922012-10-02 18:01:25 +0100179# include <asm/processor_32.h>
Paul Mundt343ac722007-11-11 18:11:18 +0900180#else
David Howellsa1ce3922012-10-02 18:01:25 +0100181# include <asm/processor_64.h>
Paul Mundt343ac722007-11-11 18:11:18 +0900182#endif
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#endif /* __ASM_SH_PROCESSOR_H */