processor.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef __ASM_SH_PROCESSOR_H
  2. #define __ASM_SH_PROCESSOR_H
  3. #include <asm/cpu-features.h>
  4. #include <asm/segment.h>
  5. #ifndef __ASSEMBLY__
  6. /*
  7. * CPU type and hardware bug flags. Kept separately for each CPU.
  8. *
  9. * Each one of these also needs a CONFIG_CPU_SUBTYPE_xxx entry
  10. * in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
  11. * for parsing the subtype in get_cpu_subtype().
  12. */
  13. enum cpu_type {
  14. /* SH-2 types */
  15. CPU_SH7619,
  16. /* SH-2A types */
  17. CPU_SH7203, CPU_SH7206, CPU_SH7263, CPU_MXG,
  18. /* SH-3 types */
  19. CPU_SH7705, CPU_SH7706, CPU_SH7707,
  20. CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
  21. CPU_SH7709, CPU_SH7709A, CPU_SH7710, CPU_SH7712,
  22. CPU_SH7720, CPU_SH7721, CPU_SH7729,
  23. /* SH-4 types */
  24. CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
  25. CPU_SH7760, CPU_SH4_202, CPU_SH4_501,
  26. /* SH-4A types */
  27. CPU_SH7763, CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785,
  28. CPU_SH7723, CPU_SHX3,
  29. /* SH4AL-DSP types */
  30. CPU_SH7343, CPU_SH7722, CPU_SH7366,
  31. /* SH-5 types */
  32. CPU_SH5_101, CPU_SH5_103,
  33. /* Unknown subtype */
  34. CPU_SH_NONE
  35. };
  36. /* Forward decl */
  37. struct sh_cpuinfo;
  38. struct seq_operations;
  39. extern struct pt_regs fake_swapper_regs;
  40. /* arch/sh/kernel/setup.c */
  41. const char *get_cpu_subtype(struct sh_cpuinfo *c);
  42. extern const struct seq_operations cpuinfo_op;
  43. #ifdef CONFIG_VSYSCALL
  44. int vsyscall_init(void);
  45. #else
  46. #define vsyscall_init() do { } while (0)
  47. #endif
  48. #endif /* __ASSEMBLY__ */
  49. #ifdef CONFIG_SUPERH32
  50. # include "processor_32.h"
  51. #else
  52. # include "processor_64.h"
  53. #endif
  54. #endif /* __ASM_SH_PROCESSOR_H */