dt_cpu_ftrs.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050
  1. /*
  2. * Copyright 2017, Nicholas Piggin, IBM Corporation
  3. * Licensed under GPLv2.
  4. */
  5. #define pr_fmt(fmt) "dt-cpu-ftrs: " fmt
  6. #include <linux/export.h>
  7. #include <linux/init.h>
  8. #include <linux/jump_label.h>
  9. #include <linux/libfdt.h>
  10. #include <linux/memblock.h>
  11. #include <linux/printk.h>
  12. #include <linux/sched.h>
  13. #include <linux/string.h>
  14. #include <linux/threads.h>
  15. #include <asm/cputable.h>
  16. #include <asm/dt_cpu_ftrs.h>
  17. #include <asm/mmu.h>
  18. #include <asm/oprofile_impl.h>
  19. #include <asm/prom.h>
  20. #include <asm/setup.h>
  21. /* Device-tree visible constants follow */
  22. #define ISA_V2_07B 2070
  23. #define ISA_V3_0B 3000
  24. #define USABLE_PR (1U << 0)
  25. #define USABLE_OS (1U << 1)
  26. #define USABLE_HV (1U << 2)
  27. #define HV_SUPPORT_HFSCR (1U << 0)
  28. #define OS_SUPPORT_FSCR (1U << 0)
  29. /* For parsing, we define all bits set as "NONE" case */
  30. #define HV_SUPPORT_NONE 0xffffffffU
  31. #define OS_SUPPORT_NONE 0xffffffffU
  32. struct dt_cpu_feature {
  33. const char *name;
  34. uint32_t isa;
  35. uint32_t usable_privilege;
  36. uint32_t hv_support;
  37. uint32_t os_support;
  38. uint32_t hfscr_bit_nr;
  39. uint32_t fscr_bit_nr;
  40. uint32_t hwcap_bit_nr;
  41. /* fdt parsing */
  42. unsigned long node;
  43. int enabled;
  44. int disabled;
  45. };
  46. #define MMU_FTRS_HASH_BASE (MMU_FTRS_POWER8)
  47. #define COMMON_USER_BASE (PPC_FEATURE_32 | PPC_FEATURE_64 | \
  48. PPC_FEATURE_ARCH_2_06 |\
  49. PPC_FEATURE_ICACHE_SNOOP)
  50. #define COMMON_USER2_BASE (PPC_FEATURE2_ARCH_2_07 | \
  51. PPC_FEATURE2_ISEL)
  52. /*
  53. * Set up the base CPU
  54. */
  55. extern long __machine_check_early_realmode_p8(struct pt_regs *regs);
  56. extern long __machine_check_early_realmode_p9(struct pt_regs *regs);
  57. static int hv_mode;
  58. static struct {
  59. u64 lpcr;
  60. u64 lpcr_clear;
  61. u64 hfscr;
  62. u64 fscr;
  63. } system_registers;
  64. static void (*init_pmu_registers)(void);
  65. static void __restore_cpu_cpufeatures(void)
  66. {
  67. u64 lpcr;
  68. /*
  69. * LPCR is restored by the power on engine already. It can be changed
  70. * after early init e.g., by radix enable, and we have no unified API
  71. * for saving and restoring such SPRs.
  72. *
  73. * This ->restore hook should really be removed from idle and register
  74. * restore moved directly into the idle restore code, because this code
  75. * doesn't know how idle is implemented or what it needs restored here.
  76. *
  77. * The best we can do to accommodate secondary boot and idle restore
  78. * for now is "or" LPCR with existing.
  79. */
  80. lpcr = mfspr(SPRN_LPCR);
  81. lpcr |= system_registers.lpcr;
  82. lpcr &= ~system_registers.lpcr_clear;
  83. mtspr(SPRN_LPCR, lpcr);
  84. if (hv_mode) {
  85. mtspr(SPRN_LPID, 0);
  86. mtspr(SPRN_HFSCR, system_registers.hfscr);
  87. mtspr(SPRN_PCR, 0);
  88. }
  89. mtspr(SPRN_FSCR, system_registers.fscr);
  90. if (init_pmu_registers)
  91. init_pmu_registers();
  92. }
  93. static char dt_cpu_name[64];
  94. static struct cpu_spec __initdata base_cpu_spec = {
  95. .cpu_name = NULL,
  96. .cpu_features = CPU_FTRS_DT_CPU_BASE,
  97. .cpu_user_features = COMMON_USER_BASE,
  98. .cpu_user_features2 = COMMON_USER2_BASE,
  99. .mmu_features = 0,
  100. .icache_bsize = 32, /* minimum block size, fixed by */
  101. .dcache_bsize = 32, /* cache info init. */
  102. .num_pmcs = 0,
  103. .pmc_type = PPC_PMC_DEFAULT,
  104. .oprofile_cpu_type = NULL,
  105. .oprofile_type = PPC_OPROFILE_INVALID,
  106. .cpu_setup = NULL,
  107. .cpu_restore = __restore_cpu_cpufeatures,
  108. .machine_check_early = NULL,
  109. .platform = NULL,
  110. };
  111. static void __init cpufeatures_setup_cpu(void)
  112. {
  113. set_cur_cpu_spec(&base_cpu_spec);
  114. cur_cpu_spec->pvr_mask = -1;
  115. cur_cpu_spec->pvr_value = mfspr(SPRN_PVR);
  116. /* Initialize the base environment -- clear FSCR/HFSCR. */
  117. hv_mode = !!(mfmsr() & MSR_HV);
  118. if (hv_mode) {
  119. /* CPU_FTR_HVMODE is used early in PACA setup */
  120. cur_cpu_spec->cpu_features |= CPU_FTR_HVMODE;
  121. mtspr(SPRN_HFSCR, 0);
  122. }
  123. mtspr(SPRN_FSCR, 0);
  124. /*
  125. * LPCR does not get cleared, to match behaviour with secondaries
  126. * in __restore_cpu_cpufeatures. Once the idle code is fixed, this
  127. * could clear LPCR too.
  128. */
  129. }
  130. static int __init feat_try_enable_unknown(struct dt_cpu_feature *f)
  131. {
  132. if (f->hv_support == HV_SUPPORT_NONE) {
  133. } else if (f->hv_support & HV_SUPPORT_HFSCR) {
  134. u64 hfscr = mfspr(SPRN_HFSCR);
  135. hfscr |= 1UL << f->hfscr_bit_nr;
  136. mtspr(SPRN_HFSCR, hfscr);
  137. } else {
  138. /* Does not have a known recipe */
  139. return 0;
  140. }
  141. if (f->os_support == OS_SUPPORT_NONE) {
  142. } else if (f->os_support & OS_SUPPORT_FSCR) {
  143. u64 fscr = mfspr(SPRN_FSCR);
  144. fscr |= 1UL << f->fscr_bit_nr;
  145. mtspr(SPRN_FSCR, fscr);
  146. } else {
  147. /* Does not have a known recipe */
  148. return 0;
  149. }
  150. if ((f->usable_privilege & USABLE_PR) && (f->hwcap_bit_nr != -1)) {
  151. uint32_t word = f->hwcap_bit_nr / 32;
  152. uint32_t bit = f->hwcap_bit_nr % 32;
  153. if (word == 0)
  154. cur_cpu_spec->cpu_user_features |= 1U << bit;
  155. else if (word == 1)
  156. cur_cpu_spec->cpu_user_features2 |= 1U << bit;
  157. else
  158. pr_err("%s could not advertise to user (no hwcap bits)\n", f->name);
  159. }
  160. return 1;
  161. }
  162. static int __init feat_enable(struct dt_cpu_feature *f)
  163. {
  164. if (f->hv_support != HV_SUPPORT_NONE) {
  165. if (f->hfscr_bit_nr != -1) {
  166. u64 hfscr = mfspr(SPRN_HFSCR);
  167. hfscr |= 1UL << f->hfscr_bit_nr;
  168. mtspr(SPRN_HFSCR, hfscr);
  169. }
  170. }
  171. if (f->os_support != OS_SUPPORT_NONE) {
  172. if (f->fscr_bit_nr != -1) {
  173. u64 fscr = mfspr(SPRN_FSCR);
  174. fscr |= 1UL << f->fscr_bit_nr;
  175. mtspr(SPRN_FSCR, fscr);
  176. }
  177. }
  178. if ((f->usable_privilege & USABLE_PR) && (f->hwcap_bit_nr != -1)) {
  179. uint32_t word = f->hwcap_bit_nr / 32;
  180. uint32_t bit = f->hwcap_bit_nr % 32;
  181. if (word == 0)
  182. cur_cpu_spec->cpu_user_features |= 1U << bit;
  183. else if (word == 1)
  184. cur_cpu_spec->cpu_user_features2 |= 1U << bit;
  185. else
  186. pr_err("CPU feature: %s could not advertise to user (no hwcap bits)\n", f->name);
  187. }
  188. return 1;
  189. }
  190. static int __init feat_disable(struct dt_cpu_feature *f)
  191. {
  192. return 0;
  193. }
  194. static int __init feat_enable_hv(struct dt_cpu_feature *f)
  195. {
  196. u64 lpcr;
  197. if (!hv_mode) {
  198. pr_err("CPU feature hypervisor present in device tree but HV mode not enabled in the CPU. Ignoring.\n");
  199. return 0;
  200. }
  201. mtspr(SPRN_LPID, 0);
  202. lpcr = mfspr(SPRN_LPCR);
  203. lpcr &= ~LPCR_LPES0; /* HV external interrupts */
  204. mtspr(SPRN_LPCR, lpcr);
  205. cur_cpu_spec->cpu_features |= CPU_FTR_HVMODE;
  206. return 1;
  207. }
  208. static int __init feat_enable_le(struct dt_cpu_feature *f)
  209. {
  210. cur_cpu_spec->cpu_user_features |= PPC_FEATURE_TRUE_LE;
  211. return 1;
  212. }
  213. static int __init feat_enable_smt(struct dt_cpu_feature *f)
  214. {
  215. cur_cpu_spec->cpu_features |= CPU_FTR_SMT;
  216. cur_cpu_spec->cpu_user_features |= PPC_FEATURE_SMT;
  217. return 1;
  218. }
  219. static int __init feat_enable_idle_nap(struct dt_cpu_feature *f)
  220. {
  221. u64 lpcr;
  222. /* Set PECE wakeup modes for ISA 207 */
  223. lpcr = mfspr(SPRN_LPCR);
  224. lpcr |= LPCR_PECE0;
  225. lpcr |= LPCR_PECE1;
  226. lpcr |= LPCR_PECE2;
  227. mtspr(SPRN_LPCR, lpcr);
  228. return 1;
  229. }
  230. static int __init feat_enable_align_dsisr(struct dt_cpu_feature *f)
  231. {
  232. cur_cpu_spec->cpu_features &= ~CPU_FTR_NODSISRALIGN;
  233. return 1;
  234. }
  235. static int __init feat_enable_idle_stop(struct dt_cpu_feature *f)
  236. {
  237. u64 lpcr;
  238. /* Set PECE wakeup modes for ISAv3.0B */
  239. lpcr = mfspr(SPRN_LPCR);
  240. lpcr |= LPCR_PECE0;
  241. lpcr |= LPCR_PECE1;
  242. lpcr |= LPCR_PECE2;
  243. mtspr(SPRN_LPCR, lpcr);
  244. return 1;
  245. }
  246. static int __init feat_enable_mmu_hash(struct dt_cpu_feature *f)
  247. {
  248. u64 lpcr;
  249. lpcr = mfspr(SPRN_LPCR);
  250. lpcr &= ~LPCR_ISL;
  251. /* VRMASD */
  252. lpcr |= LPCR_VPM0;
  253. lpcr &= ~LPCR_VPM1;
  254. lpcr |= 0x10UL << LPCR_VRMASD_SH; /* L=1 LP=00 */
  255. mtspr(SPRN_LPCR, lpcr);
  256. cur_cpu_spec->mmu_features |= MMU_FTRS_HASH_BASE;
  257. cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_MMU;
  258. return 1;
  259. }
  260. static int __init feat_enable_mmu_hash_v3(struct dt_cpu_feature *f)
  261. {
  262. u64 lpcr;
  263. system_registers.lpcr_clear |= (LPCR_ISL | LPCR_UPRT | LPCR_HR);
  264. lpcr = mfspr(SPRN_LPCR);
  265. lpcr &= ~(LPCR_ISL | LPCR_UPRT | LPCR_HR);
  266. mtspr(SPRN_LPCR, lpcr);
  267. cur_cpu_spec->mmu_features |= MMU_FTRS_HASH_BASE;
  268. cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_MMU;
  269. return 1;
  270. }
  271. static int __init feat_enable_mmu_radix(struct dt_cpu_feature *f)
  272. {
  273. #ifdef CONFIG_PPC_RADIX_MMU
  274. cur_cpu_spec->mmu_features |= MMU_FTR_TYPE_RADIX;
  275. cur_cpu_spec->mmu_features |= MMU_FTRS_HASH_BASE;
  276. cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_MMU;
  277. return 1;
  278. #endif
  279. return 0;
  280. }
  281. static int __init feat_enable_dscr(struct dt_cpu_feature *f)
  282. {
  283. u64 lpcr;
  284. feat_enable(f);
  285. lpcr = mfspr(SPRN_LPCR);
  286. lpcr &= ~LPCR_DPFD;
  287. lpcr |= (4UL << LPCR_DPFD_SH);
  288. mtspr(SPRN_LPCR, lpcr);
  289. return 1;
  290. }
  291. static void hfscr_pmu_enable(void)
  292. {
  293. u64 hfscr = mfspr(SPRN_HFSCR);
  294. hfscr |= PPC_BIT(60);
  295. mtspr(SPRN_HFSCR, hfscr);
  296. }
  297. static void init_pmu_power8(void)
  298. {
  299. if (hv_mode) {
  300. mtspr(SPRN_MMCRC, 0);
  301. mtspr(SPRN_MMCRH, 0);
  302. }
  303. mtspr(SPRN_MMCRA, 0);
  304. mtspr(SPRN_MMCR0, 0);
  305. mtspr(SPRN_MMCR1, 0);
  306. mtspr(SPRN_MMCR2, 0);
  307. mtspr(SPRN_MMCRS, 0);
  308. }
  309. static int __init feat_enable_mce_power8(struct dt_cpu_feature *f)
  310. {
  311. cur_cpu_spec->platform = "power8";
  312. cur_cpu_spec->machine_check_early = __machine_check_early_realmode_p8;
  313. return 1;
  314. }
  315. static int __init feat_enable_pmu_power8(struct dt_cpu_feature *f)
  316. {
  317. hfscr_pmu_enable();
  318. init_pmu_power8();
  319. init_pmu_registers = init_pmu_power8;
  320. cur_cpu_spec->cpu_features |= CPU_FTR_MMCRA;
  321. cur_cpu_spec->cpu_user_features |= PPC_FEATURE_PSERIES_PERFMON_COMPAT;
  322. if (pvr_version_is(PVR_POWER8E))
  323. cur_cpu_spec->cpu_features |= CPU_FTR_PMAO_BUG;
  324. cur_cpu_spec->num_pmcs = 6;
  325. cur_cpu_spec->pmc_type = PPC_PMC_IBM;
  326. cur_cpu_spec->oprofile_cpu_type = "ppc64/power8";
  327. return 1;
  328. }
  329. static void init_pmu_power9(void)
  330. {
  331. if (hv_mode)
  332. mtspr(SPRN_MMCRC, 0);
  333. mtspr(SPRN_MMCRA, 0);
  334. mtspr(SPRN_MMCR0, 0);
  335. mtspr(SPRN_MMCR1, 0);
  336. mtspr(SPRN_MMCR2, 0);
  337. }
  338. static int __init feat_enable_mce_power9(struct dt_cpu_feature *f)
  339. {
  340. cur_cpu_spec->platform = "power9";
  341. cur_cpu_spec->machine_check_early = __machine_check_early_realmode_p9;
  342. return 1;
  343. }
  344. static int __init feat_enable_pmu_power9(struct dt_cpu_feature *f)
  345. {
  346. hfscr_pmu_enable();
  347. init_pmu_power9();
  348. init_pmu_registers = init_pmu_power9;
  349. cur_cpu_spec->cpu_features |= CPU_FTR_MMCRA;
  350. cur_cpu_spec->cpu_user_features |= PPC_FEATURE_PSERIES_PERFMON_COMPAT;
  351. cur_cpu_spec->num_pmcs = 6;
  352. cur_cpu_spec->pmc_type = PPC_PMC_IBM;
  353. cur_cpu_spec->oprofile_cpu_type = "ppc64/power9";
  354. return 1;
  355. }
  356. static int __init feat_enable_tm(struct dt_cpu_feature *f)
  357. {
  358. #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
  359. feat_enable(f);
  360. cur_cpu_spec->cpu_user_features2 |= PPC_FEATURE2_HTM_NOSC;
  361. return 1;
  362. #endif
  363. return 0;
  364. }
  365. static int __init feat_enable_fp(struct dt_cpu_feature *f)
  366. {
  367. feat_enable(f);
  368. cur_cpu_spec->cpu_features &= ~CPU_FTR_FPU_UNAVAILABLE;
  369. return 1;
  370. }
  371. static int __init feat_enable_vector(struct dt_cpu_feature *f)
  372. {
  373. #ifdef CONFIG_ALTIVEC
  374. feat_enable(f);
  375. cur_cpu_spec->cpu_features |= CPU_FTR_ALTIVEC;
  376. cur_cpu_spec->cpu_features |= CPU_FTR_VMX_COPY;
  377. cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_ALTIVEC;
  378. return 1;
  379. #endif
  380. return 0;
  381. }
  382. static int __init feat_enable_vsx(struct dt_cpu_feature *f)
  383. {
  384. #ifdef CONFIG_VSX
  385. feat_enable(f);
  386. cur_cpu_spec->cpu_features |= CPU_FTR_VSX;
  387. cur_cpu_spec->cpu_user_features |= PPC_FEATURE_HAS_VSX;
  388. return 1;
  389. #endif
  390. return 0;
  391. }
  392. static int __init feat_enable_purr(struct dt_cpu_feature *f)
  393. {
  394. cur_cpu_spec->cpu_features |= CPU_FTR_PURR | CPU_FTR_SPURR;
  395. return 1;
  396. }
  397. static int __init feat_enable_ebb(struct dt_cpu_feature *f)
  398. {
  399. /*
  400. * PPC_FEATURE2_EBB is enabled in PMU init code because it has
  401. * historically been related to the PMU facility. This may have
  402. * to be decoupled if EBB becomes more generic. For now, follow
  403. * existing convention.
  404. */
  405. f->hwcap_bit_nr = -1;
  406. feat_enable(f);
  407. return 1;
  408. }
  409. static int __init feat_enable_dbell(struct dt_cpu_feature *f)
  410. {
  411. u64 lpcr;
  412. /* P9 has an HFSCR for privileged state */
  413. feat_enable(f);
  414. cur_cpu_spec->cpu_features |= CPU_FTR_DBELL;
  415. lpcr = mfspr(SPRN_LPCR);
  416. lpcr |= LPCR_PECEDH; /* hyp doorbell wakeup */
  417. mtspr(SPRN_LPCR, lpcr);
  418. return 1;
  419. }
  420. static int __init feat_enable_hvi(struct dt_cpu_feature *f)
  421. {
  422. u64 lpcr;
  423. /*
  424. * POWER9 XIVE interrupts including in OPAL XICS compatibility
  425. * are always delivered as hypervisor virtualization interrupts (HVI)
  426. * rather than EE.
  427. *
  428. * However LPES0 is not set here, in the chance that an EE does get
  429. * delivered to the host somehow, the EE handler would not expect it
  430. * to be delivered in LPES0 mode (e.g., using SRR[01]). This could
  431. * happen if there is a bug in interrupt controller code, or IC is
  432. * misconfigured in systemsim.
  433. */
  434. lpcr = mfspr(SPRN_LPCR);
  435. lpcr |= LPCR_HVICE; /* enable hvi interrupts */
  436. lpcr |= LPCR_HEIC; /* disable ee interrupts when MSR_HV */
  437. lpcr |= LPCR_PECE_HVEE; /* hvi can wake from stop */
  438. mtspr(SPRN_LPCR, lpcr);
  439. return 1;
  440. }
  441. static int __init feat_enable_large_ci(struct dt_cpu_feature *f)
  442. {
  443. cur_cpu_spec->mmu_features |= MMU_FTR_CI_LARGE_PAGE;
  444. return 1;
  445. }
  446. struct dt_cpu_feature_match {
  447. const char *name;
  448. int (*enable)(struct dt_cpu_feature *f);
  449. u64 cpu_ftr_bit_mask;
  450. };
  451. static struct dt_cpu_feature_match __initdata
  452. dt_cpu_feature_match_table[] = {
  453. {"hypervisor", feat_enable_hv, 0},
  454. {"big-endian", feat_enable, 0},
  455. {"little-endian", feat_enable_le, CPU_FTR_REAL_LE},
  456. {"smt", feat_enable_smt, 0},
  457. {"interrupt-facilities", feat_enable, 0},
  458. {"timer-facilities", feat_enable, 0},
  459. {"timer-facilities-v3", feat_enable, 0},
  460. {"debug-facilities", feat_enable, 0},
  461. {"come-from-address-register", feat_enable, CPU_FTR_CFAR},
  462. {"branch-tracing", feat_enable, 0},
  463. {"floating-point", feat_enable_fp, 0},
  464. {"vector", feat_enable_vector, 0},
  465. {"vector-scalar", feat_enable_vsx, 0},
  466. {"vector-scalar-v3", feat_enable, 0},
  467. {"decimal-floating-point", feat_enable, 0},
  468. {"decimal-integer", feat_enable, 0},
  469. {"quadword-load-store", feat_enable, 0},
  470. {"vector-crypto", feat_enable, 0},
  471. {"mmu-hash", feat_enable_mmu_hash, 0},
  472. {"mmu-radix", feat_enable_mmu_radix, 0},
  473. {"mmu-hash-v3", feat_enable_mmu_hash_v3, 0},
  474. {"virtual-page-class-key-protection", feat_enable, 0},
  475. {"transactional-memory", feat_enable_tm, CPU_FTR_TM},
  476. {"transactional-memory-v3", feat_enable_tm, 0},
  477. {"tm-suspend-hypervisor-assist", feat_enable, CPU_FTR_P9_TM_HV_ASSIST},
  478. {"tm-suspend-xer-so-bug", feat_enable, CPU_FTR_P9_TM_XER_SO_BUG},
  479. {"idle-nap", feat_enable_idle_nap, 0},
  480. {"alignment-interrupt-dsisr", feat_enable_align_dsisr, 0},
  481. {"idle-stop", feat_enable_idle_stop, 0},
  482. {"machine-check-power8", feat_enable_mce_power8, 0},
  483. {"performance-monitor-power8", feat_enable_pmu_power8, 0},
  484. {"data-stream-control-register", feat_enable_dscr, CPU_FTR_DSCR},
  485. {"event-based-branch", feat_enable_ebb, 0},
  486. {"target-address-register", feat_enable, 0},
  487. {"branch-history-rolling-buffer", feat_enable, 0},
  488. {"control-register", feat_enable, CPU_FTR_CTRL},
  489. {"processor-control-facility", feat_enable_dbell, CPU_FTR_DBELL},
  490. {"processor-control-facility-v3", feat_enable_dbell, CPU_FTR_DBELL},
  491. {"processor-utilization-of-resources-register", feat_enable_purr, 0},
  492. {"no-execute", feat_enable, 0},
  493. {"strong-access-ordering", feat_enable, CPU_FTR_SAO},
  494. {"cache-inhibited-large-page", feat_enable_large_ci, 0},
  495. {"coprocessor-icswx", feat_enable, 0},
  496. {"hypervisor-virtualization-interrupt", feat_enable_hvi, 0},
  497. {"program-priority-register", feat_enable, CPU_FTR_HAS_PPR},
  498. {"wait", feat_enable, 0},
  499. {"atomic-memory-operations", feat_enable, 0},
  500. {"branch-v3", feat_enable, 0},
  501. {"copy-paste", feat_enable, 0},
  502. {"decimal-floating-point-v3", feat_enable, 0},
  503. {"decimal-integer-v3", feat_enable, 0},
  504. {"fixed-point-v3", feat_enable, 0},
  505. {"floating-point-v3", feat_enable, 0},
  506. {"group-start-register", feat_enable, 0},
  507. {"pc-relative-addressing", feat_enable, 0},
  508. {"machine-check-power9", feat_enable_mce_power9, 0},
  509. {"performance-monitor-power9", feat_enable_pmu_power9, 0},
  510. {"event-based-branch-v3", feat_enable, 0},
  511. {"random-number-generator", feat_enable, 0},
  512. {"system-call-vectored", feat_disable, 0},
  513. {"trace-interrupt-v3", feat_enable, 0},
  514. {"vector-v3", feat_enable, 0},
  515. {"vector-binary128", feat_enable, 0},
  516. {"vector-binary16", feat_enable, 0},
  517. {"wait-v3", feat_enable, 0},
  518. };
  519. static bool __initdata using_dt_cpu_ftrs;
  520. static bool __initdata enable_unknown = true;
  521. static int __init dt_cpu_ftrs_parse(char *str)
  522. {
  523. if (!str)
  524. return 0;
  525. if (!strcmp(str, "off"))
  526. using_dt_cpu_ftrs = false;
  527. else if (!strcmp(str, "known"))
  528. enable_unknown = false;
  529. else
  530. return 1;
  531. return 0;
  532. }
  533. early_param("dt_cpu_ftrs", dt_cpu_ftrs_parse);
  534. static void __init cpufeatures_setup_start(u32 isa)
  535. {
  536. pr_info("setup for ISA %d\n", isa);
  537. if (isa >= 3000) {
  538. cur_cpu_spec->cpu_features |= CPU_FTR_ARCH_300;
  539. cur_cpu_spec->cpu_user_features2 |= PPC_FEATURE2_ARCH_3_00;
  540. }
  541. }
  542. static bool __init cpufeatures_process_feature(struct dt_cpu_feature *f)
  543. {
  544. const struct dt_cpu_feature_match *m;
  545. bool known = false;
  546. int i;
  547. for (i = 0; i < ARRAY_SIZE(dt_cpu_feature_match_table); i++) {
  548. m = &dt_cpu_feature_match_table[i];
  549. if (!strcmp(f->name, m->name)) {
  550. known = true;
  551. if (m->enable(f))
  552. break;
  553. pr_info("not enabling: %s (disabled or unsupported by kernel)\n",
  554. f->name);
  555. return false;
  556. }
  557. }
  558. if (!known && enable_unknown) {
  559. if (!feat_try_enable_unknown(f)) {
  560. pr_info("not enabling: %s (unknown and unsupported by kernel)\n",
  561. f->name);
  562. return false;
  563. }
  564. }
  565. if (m->cpu_ftr_bit_mask)
  566. cur_cpu_spec->cpu_features |= m->cpu_ftr_bit_mask;
  567. if (known)
  568. pr_debug("enabling: %s\n", f->name);
  569. else
  570. pr_debug("enabling: %s (unknown)\n", f->name);
  571. return true;
  572. }
  573. static __init void cpufeatures_cpu_quirks(void)
  574. {
  575. int version = mfspr(SPRN_PVR);
  576. /*
  577. * Not all quirks can be derived from the cpufeatures device tree.
  578. */
  579. if ((version & 0xffffff00) == 0x004e0100)
  580. cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD1;
  581. else if ((version & 0xffffefff) == 0x004e0200)
  582. ; /* DD2.0 has no feature flag */
  583. else if ((version & 0xffffefff) == 0x004e0201)
  584. cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD2_1;
  585. else if ((version & 0xffffefff) == 0x004e0202) {
  586. cur_cpu_spec->cpu_features |= CPU_FTR_P9_TM_HV_ASSIST;
  587. cur_cpu_spec->cpu_features |= CPU_FTR_P9_TM_XER_SO_BUG;
  588. cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD2_1;
  589. } else if ((version & 0xffff0000) == 0x004e0000)
  590. /* DD2.1 and up have DD2_1 */
  591. cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD2_1;
  592. if ((version & 0xffff0000) == 0x004e0000) {
  593. cur_cpu_spec->cpu_features &= ~(CPU_FTR_DAWR);
  594. cur_cpu_spec->cpu_features |= CPU_FTR_P9_TLBIE_BUG;
  595. cur_cpu_spec->cpu_features |= CPU_FTR_P9_TIDR;
  596. }
  597. /*
  598. * PKEY was not in the initial base or feature node
  599. * specification, but it should become optional in the next
  600. * cpu feature version sequence.
  601. */
  602. cur_cpu_spec->cpu_features |= CPU_FTR_PKEY;
  603. }
  604. static void __init cpufeatures_setup_finished(void)
  605. {
  606. cpufeatures_cpu_quirks();
  607. if (hv_mode && !(cur_cpu_spec->cpu_features & CPU_FTR_HVMODE)) {
  608. pr_err("hypervisor not present in device tree but HV mode is enabled in the CPU. Enabling.\n");
  609. cur_cpu_spec->cpu_features |= CPU_FTR_HVMODE;
  610. }
  611. /* Make sure powerpc_base_platform is non-NULL */
  612. powerpc_base_platform = cur_cpu_spec->platform;
  613. system_registers.lpcr = mfspr(SPRN_LPCR);
  614. system_registers.hfscr = mfspr(SPRN_HFSCR);
  615. system_registers.fscr = mfspr(SPRN_FSCR);
  616. pr_info("final cpu/mmu features = 0x%016lx 0x%08x\n",
  617. cur_cpu_spec->cpu_features, cur_cpu_spec->mmu_features);
  618. }
  619. static int __init disabled_on_cmdline(void)
  620. {
  621. unsigned long root, chosen;
  622. const char *p;
  623. root = of_get_flat_dt_root();
  624. chosen = of_get_flat_dt_subnode_by_name(root, "chosen");
  625. if (chosen == -FDT_ERR_NOTFOUND)
  626. return false;
  627. p = of_get_flat_dt_prop(chosen, "bootargs", NULL);
  628. if (!p)
  629. return false;
  630. if (strstr(p, "dt_cpu_ftrs=off"))
  631. return true;
  632. return false;
  633. }
  634. static int __init fdt_find_cpu_features(unsigned long node, const char *uname,
  635. int depth, void *data)
  636. {
  637. if (of_flat_dt_is_compatible(node, "ibm,powerpc-cpu-features")
  638. && of_get_flat_dt_prop(node, "isa", NULL))
  639. return 1;
  640. return 0;
  641. }
  642. bool __init dt_cpu_ftrs_in_use(void)
  643. {
  644. return using_dt_cpu_ftrs;
  645. }
  646. bool __init dt_cpu_ftrs_init(void *fdt)
  647. {
  648. using_dt_cpu_ftrs = false;
  649. /* Setup and verify the FDT, if it fails we just bail */
  650. if (!early_init_dt_verify(fdt))
  651. return false;
  652. if (!of_scan_flat_dt(fdt_find_cpu_features, NULL))
  653. return false;
  654. if (disabled_on_cmdline())
  655. return false;
  656. cpufeatures_setup_cpu();
  657. using_dt_cpu_ftrs = true;
  658. return true;
  659. }
  660. static int nr_dt_cpu_features;
  661. static struct dt_cpu_feature *dt_cpu_features;
  662. static int __init process_cpufeatures_node(unsigned long node,
  663. const char *uname, int i)
  664. {
  665. const __be32 *prop;
  666. struct dt_cpu_feature *f;
  667. int len;
  668. f = &dt_cpu_features[i];
  669. memset(f, 0, sizeof(struct dt_cpu_feature));
  670. f->node = node;
  671. f->name = uname;
  672. prop = of_get_flat_dt_prop(node, "isa", &len);
  673. if (!prop) {
  674. pr_warn("%s: missing isa property\n", uname);
  675. return 0;
  676. }
  677. f->isa = be32_to_cpup(prop);
  678. prop = of_get_flat_dt_prop(node, "usable-privilege", &len);
  679. if (!prop) {
  680. pr_warn("%s: missing usable-privilege property", uname);
  681. return 0;
  682. }
  683. f->usable_privilege = be32_to_cpup(prop);
  684. prop = of_get_flat_dt_prop(node, "hv-support", &len);
  685. if (prop)
  686. f->hv_support = be32_to_cpup(prop);
  687. else
  688. f->hv_support = HV_SUPPORT_NONE;
  689. prop = of_get_flat_dt_prop(node, "os-support", &len);
  690. if (prop)
  691. f->os_support = be32_to_cpup(prop);
  692. else
  693. f->os_support = OS_SUPPORT_NONE;
  694. prop = of_get_flat_dt_prop(node, "hfscr-bit-nr", &len);
  695. if (prop)
  696. f->hfscr_bit_nr = be32_to_cpup(prop);
  697. else
  698. f->hfscr_bit_nr = -1;
  699. prop = of_get_flat_dt_prop(node, "fscr-bit-nr", &len);
  700. if (prop)
  701. f->fscr_bit_nr = be32_to_cpup(prop);
  702. else
  703. f->fscr_bit_nr = -1;
  704. prop = of_get_flat_dt_prop(node, "hwcap-bit-nr", &len);
  705. if (prop)
  706. f->hwcap_bit_nr = be32_to_cpup(prop);
  707. else
  708. f->hwcap_bit_nr = -1;
  709. if (f->usable_privilege & USABLE_HV) {
  710. if (!(mfmsr() & MSR_HV)) {
  711. pr_warn("%s: HV feature passed to guest\n", uname);
  712. return 0;
  713. }
  714. if (f->hv_support == HV_SUPPORT_NONE && f->hfscr_bit_nr != -1) {
  715. pr_warn("%s: unwanted hfscr_bit_nr\n", uname);
  716. return 0;
  717. }
  718. if (f->hv_support == HV_SUPPORT_HFSCR) {
  719. if (f->hfscr_bit_nr == -1) {
  720. pr_warn("%s: missing hfscr_bit_nr\n", uname);
  721. return 0;
  722. }
  723. }
  724. } else {
  725. if (f->hv_support != HV_SUPPORT_NONE || f->hfscr_bit_nr != -1) {
  726. pr_warn("%s: unwanted hv_support/hfscr_bit_nr\n", uname);
  727. return 0;
  728. }
  729. }
  730. if (f->usable_privilege & USABLE_OS) {
  731. if (f->os_support == OS_SUPPORT_NONE && f->fscr_bit_nr != -1) {
  732. pr_warn("%s: unwanted fscr_bit_nr\n", uname);
  733. return 0;
  734. }
  735. if (f->os_support == OS_SUPPORT_FSCR) {
  736. if (f->fscr_bit_nr == -1) {
  737. pr_warn("%s: missing fscr_bit_nr\n", uname);
  738. return 0;
  739. }
  740. }
  741. } else {
  742. if (f->os_support != OS_SUPPORT_NONE || f->fscr_bit_nr != -1) {
  743. pr_warn("%s: unwanted os_support/fscr_bit_nr\n", uname);
  744. return 0;
  745. }
  746. }
  747. if (!(f->usable_privilege & USABLE_PR)) {
  748. if (f->hwcap_bit_nr != -1) {
  749. pr_warn("%s: unwanted hwcap_bit_nr\n", uname);
  750. return 0;
  751. }
  752. }
  753. /* Do all the independent features in the first pass */
  754. if (!of_get_flat_dt_prop(node, "dependencies", &len)) {
  755. if (cpufeatures_process_feature(f))
  756. f->enabled = 1;
  757. else
  758. f->disabled = 1;
  759. }
  760. return 0;
  761. }
  762. static void __init cpufeatures_deps_enable(struct dt_cpu_feature *f)
  763. {
  764. const __be32 *prop;
  765. int len;
  766. int nr_deps;
  767. int i;
  768. if (f->enabled || f->disabled)
  769. return;
  770. prop = of_get_flat_dt_prop(f->node, "dependencies", &len);
  771. if (!prop) {
  772. pr_warn("%s: missing dependencies property", f->name);
  773. return;
  774. }
  775. nr_deps = len / sizeof(int);
  776. for (i = 0; i < nr_deps; i++) {
  777. unsigned long phandle = be32_to_cpu(prop[i]);
  778. int j;
  779. for (j = 0; j < nr_dt_cpu_features; j++) {
  780. struct dt_cpu_feature *d = &dt_cpu_features[j];
  781. if (of_get_flat_dt_phandle(d->node) == phandle) {
  782. cpufeatures_deps_enable(d);
  783. if (d->disabled) {
  784. f->disabled = 1;
  785. return;
  786. }
  787. }
  788. }
  789. }
  790. if (cpufeatures_process_feature(f))
  791. f->enabled = 1;
  792. else
  793. f->disabled = 1;
  794. }
  795. static int __init scan_cpufeatures_subnodes(unsigned long node,
  796. const char *uname,
  797. void *data)
  798. {
  799. int *count = data;
  800. process_cpufeatures_node(node, uname, *count);
  801. (*count)++;
  802. return 0;
  803. }
  804. static int __init count_cpufeatures_subnodes(unsigned long node,
  805. const char *uname,
  806. void *data)
  807. {
  808. int *count = data;
  809. (*count)++;
  810. return 0;
  811. }
  812. static int __init dt_cpu_ftrs_scan_callback(unsigned long node, const char
  813. *uname, int depth, void *data)
  814. {
  815. const __be32 *prop;
  816. int count, i;
  817. u32 isa;
  818. /* We are scanning "ibm,powerpc-cpu-features" nodes only */
  819. if (!of_flat_dt_is_compatible(node, "ibm,powerpc-cpu-features"))
  820. return 0;
  821. prop = of_get_flat_dt_prop(node, "isa", NULL);
  822. if (!prop)
  823. /* We checked before, "can't happen" */
  824. return 0;
  825. isa = be32_to_cpup(prop);
  826. /* Count and allocate space for cpu features */
  827. of_scan_flat_dt_subnodes(node, count_cpufeatures_subnodes,
  828. &nr_dt_cpu_features);
  829. dt_cpu_features = __va(
  830. memblock_alloc(sizeof(struct dt_cpu_feature)*
  831. nr_dt_cpu_features, PAGE_SIZE));
  832. cpufeatures_setup_start(isa);
  833. /* Scan nodes into dt_cpu_features and enable those without deps */
  834. count = 0;
  835. of_scan_flat_dt_subnodes(node, scan_cpufeatures_subnodes, &count);
  836. /* Recursive enable remaining features with dependencies */
  837. for (i = 0; i < nr_dt_cpu_features; i++) {
  838. struct dt_cpu_feature *f = &dt_cpu_features[i];
  839. cpufeatures_deps_enable(f);
  840. }
  841. prop = of_get_flat_dt_prop(node, "display-name", NULL);
  842. if (prop && strlen((char *)prop) != 0) {
  843. strlcpy(dt_cpu_name, (char *)prop, sizeof(dt_cpu_name));
  844. cur_cpu_spec->cpu_name = dt_cpu_name;
  845. }
  846. cpufeatures_setup_finished();
  847. memblock_free(__pa(dt_cpu_features),
  848. sizeof(struct dt_cpu_feature)*nr_dt_cpu_features);
  849. return 0;
  850. }
  851. void __init dt_cpu_ftrs_scan(void)
  852. {
  853. if (!using_dt_cpu_ftrs)
  854. return;
  855. of_scan_flat_dt(dt_cpu_ftrs_scan_callback, NULL);
  856. }