processor.h 1.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef __ASM_SH_PROCESSOR_H
#define __ASM_SH_PROCESSOR_H

P
Paul Mundt 已提交
4
#include <asm/cpu-features.h>
5
#include <asm/fpu.h>
P
Paul Mundt 已提交
6

P
Paul Mundt 已提交
7
#ifndef __ASSEMBLY__
L
Linus Torvalds 已提交
8 9 10 11
/*
 *  CPU type and hardware bug flags. Kept separately for each CPU.
 *
 *  Each one of these also needs a CONFIG_CPU_SUBTYPE_xxx entry
12
 *  in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
L
Linus Torvalds 已提交
13 14 15 16
 *  for parsing the subtype in get_cpu_subtype().
 */
enum cpu_type {
	/* SH-2 types */
P
Paul Mundt 已提交
17
	CPU_SH7619,
Y
Yoshinori Sato 已提交
18 19

	/* SH-2A types */
P
Paul Mundt 已提交
20
	CPU_SH7203, CPU_SH7206, CPU_SH7263,
L
Linus Torvalds 已提交
21 22

	/* SH-3 types */
23 24
	CPU_SH7705, CPU_SH7706, CPU_SH7707,
	CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
25
	CPU_SH7709, CPU_SH7709A, CPU_SH7710, CPU_SH7712,
26
	CPU_SH7720, CPU_SH7721, CPU_SH7729,
L
Linus Torvalds 已提交
27 28 29

	/* SH-4 types */
	CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
30
	CPU_SH7760, CPU_SH4_202, CPU_SH4_501,
31 32

	/* SH-4A types */
33
	CPU_SH7763, CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785, CPU_SHX3,
P
Paul Mundt 已提交
34 35

	/* SH4AL-DSP types */
36
	CPU_SH7343, CPU_SH7722,
L
Linus Torvalds 已提交
37

38 39 40
	/* SH-5 types */
        CPU_SH5_101, CPU_SH5_103,

L
Linus Torvalds 已提交
41 42 43 44
	/* Unknown subtype */
	CPU_SH_NONE
};

P
Paul Mundt 已提交
45 46
/* Forward decl */
struct sh_cpuinfo;
P
Paul Mundt 已提交
47

48 49 50
/* arch/sh/kernel/setup.c */
const char *get_cpu_subtype(struct sh_cpuinfo *c);

51 52 53 54 55 56
#ifdef CONFIG_VSYSCALL
int vsyscall_init(void);
#else
#define vsyscall_init() do { } while (0)
#endif

P
Paul Mundt 已提交
57 58 59 60 61 62 63 64
#endif /* __ASSEMBLY__ */

#ifdef CONFIG_SUPERH32
# include "processor_32.h"
#else
# include "processor_64.h"
#endif

L
Linus Torvalds 已提交
65
#endif /* __ASM_SH_PROCESSOR_H */