cputable.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * include/asm-ppc64/cputable.h
  3. *
  4. * Copyright (C) 2001 Ben. Herrenschmidt (benh@kernel.crashing.org)
  5. *
  6. * Modifications for ppc64:
  7. * Copyright (C) 2003 Dave Engebretsen <engebret@us.ibm.com>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version
  12. * 2 of the License, or (at your option) any later version.
  13. */
  14. #ifndef __ASM_PPC_CPUTABLE_H
  15. #define __ASM_PPC_CPUTABLE_H
  16. #include <linux/config.h>
  17. #include <asm/page.h> /* for ASM_CONST */
  18. /* Exposed to userland CPU features - Must match ppc32 definitions */
  19. #define PPC_FEATURE_32 0x80000000
  20. #define PPC_FEATURE_64 0x40000000
  21. #define PPC_FEATURE_601_INSTR 0x20000000
  22. #define PPC_FEATURE_HAS_ALTIVEC 0x10000000
  23. #define PPC_FEATURE_HAS_FPU 0x08000000
  24. #define PPC_FEATURE_HAS_MMU 0x04000000
  25. #define PPC_FEATURE_HAS_4xxMAC 0x02000000
  26. #define PPC_FEATURE_UNIFIED_CACHE 0x01000000
  27. #ifdef __KERNEL__
  28. #ifndef __ASSEMBLY__
  29. /* This structure can grow, it's real size is used by head.S code
  30. * via the mkdefs mechanism.
  31. */
  32. struct cpu_spec;
  33. typedef void (*cpu_setup_t)(unsigned long offset, struct cpu_spec* spec);
  34. struct cpu_spec {
  35. /* CPU is matched via (PVR & pvr_mask) == pvr_value */
  36. unsigned int pvr_mask;
  37. unsigned int pvr_value;
  38. char *cpu_name;
  39. unsigned long cpu_features; /* Kernel features */
  40. unsigned int cpu_user_features; /* Userland features */
  41. /* cache line sizes */
  42. unsigned int icache_bsize;
  43. unsigned int dcache_bsize;
  44. /* this is called to initialize various CPU bits like L1 cache,
  45. * BHT, SPD, etc... from head.S before branching to identify_machine
  46. */
  47. cpu_setup_t cpu_setup;
  48. /* This is used to identify firmware features which are available
  49. * to the kernel.
  50. */
  51. unsigned long firmware_features;
  52. };
  53. extern struct cpu_spec cpu_specs[];
  54. extern struct cpu_spec *cur_cpu_spec;
  55. static inline unsigned long cpu_has_feature(unsigned long feature)
  56. {
  57. return cur_cpu_spec->cpu_features & feature;
  58. }
  59. /* firmware feature bitmask values */
  60. #define FIRMWARE_MAX_FEATURES 63
  61. #define FW_FEATURE_PFT (1UL<<0)
  62. #define FW_FEATURE_TCE (1UL<<1)
  63. #define FW_FEATURE_SPRG0 (1UL<<2)
  64. #define FW_FEATURE_DABR (1UL<<3)
  65. #define FW_FEATURE_COPY (1UL<<4)
  66. #define FW_FEATURE_ASR (1UL<<5)
  67. #define FW_FEATURE_DEBUG (1UL<<6)
  68. #define FW_FEATURE_TERM (1UL<<7)
  69. #define FW_FEATURE_PERF (1UL<<8)
  70. #define FW_FEATURE_DUMP (1UL<<9)
  71. #define FW_FEATURE_INTERRUPT (1UL<<10)
  72. #define FW_FEATURE_MIGRATE (1UL<<11)
  73. #define FW_FEATURE_PERFMON (1UL<<12)
  74. #define FW_FEATURE_CRQ (1UL<<13)
  75. #define FW_FEATURE_VIO (1UL<<14)
  76. #define FW_FEATURE_RDMA (1UL<<15)
  77. #define FW_FEATURE_LLAN (1UL<<16)
  78. #define FW_FEATURE_BULK (1UL<<17)
  79. #define FW_FEATURE_XDABR (1UL<<18)
  80. #define FW_FEATURE_MULTITCE (1UL<<19)
  81. #define FW_FEATURE_SPLPAR (1UL<<20)
  82. typedef struct {
  83. unsigned long val;
  84. char * name;
  85. } firmware_feature_t;
  86. extern firmware_feature_t firmware_features_table[];
  87. #endif /* __ASSEMBLY__ */
  88. /* CPU kernel features */
  89. /* Retain the 32b definitions for the time being - use bottom half of word */
  90. #define CPU_FTR_SPLIT_ID_CACHE ASM_CONST(0x0000000000000001)
  91. #define CPU_FTR_L2CR ASM_CONST(0x0000000000000002)
  92. #define CPU_FTR_SPEC7450 ASM_CONST(0x0000000000000004)
  93. #define CPU_FTR_ALTIVEC ASM_CONST(0x0000000000000008)
  94. #define CPU_FTR_TAU ASM_CONST(0x0000000000000010)
  95. #define CPU_FTR_CAN_DOZE ASM_CONST(0x0000000000000020)
  96. #define CPU_FTR_USE_TB ASM_CONST(0x0000000000000040)
  97. #define CPU_FTR_604_PERF_MON ASM_CONST(0x0000000000000080)
  98. #define CPU_FTR_601 ASM_CONST(0x0000000000000100)
  99. #define CPU_FTR_HPTE_TABLE ASM_CONST(0x0000000000000200)
  100. #define CPU_FTR_CAN_NAP ASM_CONST(0x0000000000000400)
  101. #define CPU_FTR_L3CR ASM_CONST(0x0000000000000800)
  102. #define CPU_FTR_L3_DISABLE_NAP ASM_CONST(0x0000000000001000)
  103. #define CPU_FTR_NAP_DISABLE_L2_PR ASM_CONST(0x0000000000002000)
  104. #define CPU_FTR_DUAL_PLL_750FX ASM_CONST(0x0000000000004000)
  105. /* Add the 64b processor unique features in the top half of the word */
  106. #define CPU_FTR_SLB ASM_CONST(0x0000000100000000)
  107. #define CPU_FTR_16M_PAGE ASM_CONST(0x0000000200000000)
  108. #define CPU_FTR_TLBIEL ASM_CONST(0x0000000400000000)
  109. #define CPU_FTR_NOEXECUTE ASM_CONST(0x0000000800000000)
  110. #define CPU_FTR_NODSISRALIGN ASM_CONST(0x0000001000000000)
  111. #define CPU_FTR_IABR ASM_CONST(0x0000002000000000)
  112. #define CPU_FTR_MMCRA ASM_CONST(0x0000004000000000)
  113. #define CPU_FTR_PMC8 ASM_CONST(0x0000008000000000)
  114. #define CPU_FTR_SMT ASM_CONST(0x0000010000000000)
  115. #define CPU_FTR_COHERENT_ICACHE ASM_CONST(0x0000020000000000)
  116. #define CPU_FTR_LOCKLESS_TLBIE ASM_CONST(0x0000040000000000)
  117. #define CPU_FTR_MMCRA_SIHV ASM_CONST(0x0000080000000000)
  118. /* Platform firmware features */
  119. #define FW_FTR_ ASM_CONST(0x0000000000000001)
  120. #ifndef __ASSEMBLY__
  121. #define COMMON_USER_PPC64 (PPC_FEATURE_32 | PPC_FEATURE_64 | \
  122. PPC_FEATURE_HAS_FPU | PPC_FEATURE_HAS_MMU)
  123. #define CPU_FTR_PPCAS_ARCH_V2_BASE (CPU_FTR_SLB | \
  124. CPU_FTR_TLBIEL | CPU_FTR_NOEXECUTE | \
  125. CPU_FTR_NODSISRALIGN)
  126. /* iSeries doesn't support large pages */
  127. #ifdef CONFIG_PPC_ISERIES
  128. #define CPU_FTR_PPCAS_ARCH_V2 (CPU_FTR_PPCAS_ARCH_V2_BASE)
  129. #else
  130. #define CPU_FTR_PPCAS_ARCH_V2 (CPU_FTR_PPCAS_ARCH_V2_BASE | CPU_FTR_16M_PAGE)
  131. #endif
  132. #define COMMON_PPC64_FW (0)
  133. #endif
  134. #ifdef __ASSEMBLY__
  135. #define BEGIN_FTR_SECTION 98:
  136. #define END_FTR_SECTION(msk, val) \
  137. 99: \
  138. .section __ftr_fixup,"a"; \
  139. .align 3; \
  140. .llong msk; \
  141. .llong val; \
  142. .llong 98b; \
  143. .llong 99b; \
  144. .previous
  145. #else
  146. #define BEGIN_FTR_SECTION "98:\n"
  147. #define END_FTR_SECTION(msk, val) \
  148. "99:\n" \
  149. " .section __ftr_fixup,\"a\";\n" \
  150. " .align 3;\n" \
  151. " .llong "#msk";\n" \
  152. " .llong "#val";\n" \
  153. " .llong 98b;\n" \
  154. " .llong 99b;\n" \
  155. " .previous\n"
  156. #endif /* __ASSEMBLY__ */
  157. #define END_FTR_SECTION_IFSET(msk) END_FTR_SECTION((msk), (msk))
  158. #define END_FTR_SECTION_IFCLR(msk) END_FTR_SECTION((msk), 0)
  159. #endif /* __ASM_PPC_CPUTABLE_H */
  160. #endif /* __KERNEL__ */