sh: add interrupt ack code to sh4a
[deliverable/linux.git] / include / asm-sh / processor.h
CommitLineData
1da177e4
LT
1#ifndef __ASM_SH_PROCESSOR_H
2#define __ASM_SH_PROCESSOR_H
1da177e4 3
76168c21 4#include <asm/cpu-features.h>
02f7e627 5#include <asm/segment.h>
76168c21 6
343ac722 7#ifndef __ASSEMBLY__
1da177e4
LT
8/*
9 * CPU type and hardware bug flags. Kept separately for each CPU.
10 *
11 * Each one of these also needs a CONFIG_CPU_SUBTYPE_xxx entry
de02797a 12 * in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
1da177e4
LT
13 * for parsing the subtype in get_cpu_subtype().
14 */
15enum cpu_type {
16 /* SH-2 types */
b9601c5e 17 CPU_SH7619,
b229632a
YS
18
19 /* SH-2A types */
2ad69908 20 CPU_SH7203, CPU_SH7206, CPU_SH7263, CPU_MXG,
1da177e4
LT
21
22 /* SH-3 types */
e5723e0e
PM
23 CPU_SH7705, CPU_SH7706, CPU_SH7707,
24 CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
9465a54f 25 CPU_SH7709, CPU_SH7709A, CPU_SH7710, CPU_SH7712,
31a49c4b 26 CPU_SH7720, CPU_SH7721, CPU_SH7729,
1da177e4
LT
27
28 /* SH-4 types */
29 CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
f9669187 30 CPU_SH7760, CPU_SH4_202, CPU_SH4_501,
b552c7e8
PM
31
32 /* SH-4A types */
178dd0cd
PM
33 CPU_SH7763, CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785,
34 CPU_SH7723, CPU_SHX3,
41504c39
PM
35
36 /* SH4AL-DSP types */
9109a30e 37 CPU_SH7343, CPU_SH7722, CPU_SH7366,
1da177e4 38
af3c7dfe
PM
39 /* SH-5 types */
40 CPU_SH5_101, CPU_SH5_103,
41
1da177e4
LT
42 /* Unknown subtype */
43 CPU_SH_NONE
44};
45
343ac722
PM
46/* Forward decl */
47struct sh_cpuinfo;
19f9a34f 48
11c19656
PM
49/* arch/sh/kernel/setup.c */
50const char *get_cpu_subtype(struct sh_cpuinfo *c);
51
acb499f0
PM
52#ifdef CONFIG_VSYSCALL
53int vsyscall_init(void);
54#else
55#define vsyscall_init() do { } while (0)
56#endif
57
343ac722
PM
58#endif /* __ASSEMBLY__ */
59
60#ifdef CONFIG_SUPERH32
61# include "processor_32.h"
62#else
63# include "processor_64.h"
64#endif
65
1da177e4 66#endif /* __ASM_SH_PROCESSOR_H */
This page took 0.369333 seconds and 5 git commands to generate.