setup_64.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. /*
  2. *
  3. * Common boot and setup code.
  4. *
  5. * Copyright (C) 2001 PPC64 Team, IBM Corp
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. */
  12. #define DEBUG
  13. #include <linux/export.h>
  14. #include <linux/string.h>
  15. #include <linux/sched.h>
  16. #include <linux/init.h>
  17. #include <linux/kernel.h>
  18. #include <linux/reboot.h>
  19. #include <linux/delay.h>
  20. #include <linux/initrd.h>
  21. #include <linux/seq_file.h>
  22. #include <linux/ioport.h>
  23. #include <linux/console.h>
  24. #include <linux/utsname.h>
  25. #include <linux/tty.h>
  26. #include <linux/root_dev.h>
  27. #include <linux/notifier.h>
  28. #include <linux/cpu.h>
  29. #include <linux/unistd.h>
  30. #include <linux/serial.h>
  31. #include <linux/serial_8250.h>
  32. #include <linux/bootmem.h>
  33. #include <linux/pci.h>
  34. #include <linux/lockdep.h>
  35. #include <linux/memblock.h>
  36. #include <linux/memory.h>
  37. #include <linux/nmi.h>
  38. #include <asm/io.h>
  39. #include <asm/kdump.h>
  40. #include <asm/prom.h>
  41. #include <asm/processor.h>
  42. #include <asm/pgtable.h>
  43. #include <asm/smp.h>
  44. #include <asm/elf.h>
  45. #include <asm/machdep.h>
  46. #include <asm/paca.h>
  47. #include <asm/time.h>
  48. #include <asm/cputable.h>
  49. #include <asm/sections.h>
  50. #include <asm/btext.h>
  51. #include <asm/nvram.h>
  52. #include <asm/setup.h>
  53. #include <asm/rtas.h>
  54. #include <asm/iommu.h>
  55. #include <asm/serial.h>
  56. #include <asm/cache.h>
  57. #include <asm/page.h>
  58. #include <asm/mmu.h>
  59. #include <asm/firmware.h>
  60. #include <asm/xmon.h>
  61. #include <asm/udbg.h>
  62. #include <asm/kexec.h>
  63. #include <asm/code-patching.h>
  64. #include <asm/livepatch.h>
  65. #include <asm/opal.h>
  66. #include <asm/cputhreads.h>
  67. #ifdef DEBUG
  68. #define DBG(fmt...) udbg_printf(fmt)
  69. #else
  70. #define DBG(fmt...)
  71. #endif
  72. int spinning_secondaries;
  73. u64 ppc64_pft_size;
  74. /* Pick defaults since we might want to patch instructions
  75. * before we've read this from the device tree.
  76. */
  77. struct ppc64_caches ppc64_caches = {
  78. .dline_size = 0x40,
  79. .log_dline_size = 6,
  80. .iline_size = 0x40,
  81. .log_iline_size = 6
  82. };
  83. EXPORT_SYMBOL_GPL(ppc64_caches);
  84. /*
  85. * These are used in binfmt_elf.c to put aux entries on the stack
  86. * for each elf executable being started.
  87. */
  88. int dcache_bsize;
  89. int icache_bsize;
  90. int ucache_bsize;
  91. #if defined(CONFIG_PPC_BOOK3E) && defined(CONFIG_SMP)
  92. void __init setup_tlb_core_data(void)
  93. {
  94. int cpu;
  95. BUILD_BUG_ON(offsetof(struct tlb_core_data, lock) != 0);
  96. for_each_possible_cpu(cpu) {
  97. int first = cpu_first_thread_sibling(cpu);
  98. /*
  99. * If we boot via kdump on a non-primary thread,
  100. * make sure we point at the thread that actually
  101. * set up this TLB.
  102. */
  103. if (cpu_first_thread_sibling(boot_cpuid) == first)
  104. first = boot_cpuid;
  105. paca[cpu].tcd_ptr = &paca[first].tcd;
  106. /*
  107. * If we have threads, we need either tlbsrx.
  108. * or e6500 tablewalk mode, or else TLB handlers
  109. * will be racy and could produce duplicate entries.
  110. */
  111. if (smt_enabled_at_boot >= 2 &&
  112. !mmu_has_feature(MMU_FTR_USE_TLBRSRV) &&
  113. book3e_htw_mode != PPC_HTW_E6500) {
  114. /* Should we panic instead? */
  115. WARN_ONCE("%s: unsupported MMU configuration -- expect problems\n",
  116. __func__);
  117. }
  118. }
  119. }
  120. #endif
  121. #ifdef CONFIG_SMP
  122. static char *smt_enabled_cmdline;
  123. /* Look for ibm,smt-enabled OF option */
  124. void __init check_smt_enabled(void)
  125. {
  126. struct device_node *dn;
  127. const char *smt_option;
  128. /* Default to enabling all threads */
  129. smt_enabled_at_boot = threads_per_core;
  130. /* Allow the command line to overrule the OF option */
  131. if (smt_enabled_cmdline) {
  132. if (!strcmp(smt_enabled_cmdline, "on"))
  133. smt_enabled_at_boot = threads_per_core;
  134. else if (!strcmp(smt_enabled_cmdline, "off"))
  135. smt_enabled_at_boot = 0;
  136. else {
  137. int smt;
  138. int rc;
  139. rc = kstrtoint(smt_enabled_cmdline, 10, &smt);
  140. if (!rc)
  141. smt_enabled_at_boot =
  142. min(threads_per_core, smt);
  143. }
  144. } else {
  145. dn = of_find_node_by_path("/options");
  146. if (dn) {
  147. smt_option = of_get_property(dn, "ibm,smt-enabled",
  148. NULL);
  149. if (smt_option) {
  150. if (!strcmp(smt_option, "on"))
  151. smt_enabled_at_boot = threads_per_core;
  152. else if (!strcmp(smt_option, "off"))
  153. smt_enabled_at_boot = 0;
  154. }
  155. of_node_put(dn);
  156. }
  157. }
  158. }
  159. /* Look for smt-enabled= cmdline option */
  160. static int __init early_smt_enabled(char *p)
  161. {
  162. smt_enabled_cmdline = p;
  163. return 0;
  164. }
  165. early_param("smt-enabled", early_smt_enabled);
  166. #endif /* CONFIG_SMP */
  167. /** Fix up paca fields required for the boot cpu */
  168. static void __init fixup_boot_paca(void)
  169. {
  170. /* The boot cpu is started */
  171. get_paca()->cpu_start = 1;
  172. /* Allow percpu accesses to work until we setup percpu data */
  173. get_paca()->data_offset = 0;
  174. }
  175. static void __init configure_exceptions(void)
  176. {
  177. /*
  178. * Setup the trampolines from the lowmem exception vectors
  179. * to the kdump kernel when not using a relocatable kernel.
  180. */
  181. setup_kdump_trampoline();
  182. /* Under a PAPR hypervisor, we need hypercalls */
  183. if (firmware_has_feature(FW_FEATURE_SET_MODE)) {
  184. /* Enable AIL if possible */
  185. pseries_enable_reloc_on_exc();
  186. /*
  187. * Tell the hypervisor that we want our exceptions to
  188. * be taken in little endian mode.
  189. *
  190. * We don't call this for big endian as our calling convention
  191. * makes us always enter in BE, and the call may fail under
  192. * some circumstances with kdump.
  193. */
  194. #ifdef __LITTLE_ENDIAN__
  195. pseries_little_endian_exceptions();
  196. #endif
  197. } else {
  198. /* Set endian mode using OPAL */
  199. if (firmware_has_feature(FW_FEATURE_OPAL))
  200. opal_configure_cores();
  201. /* AIL on native is done in cpu_ready_for_interrupts() */
  202. }
  203. }
  204. static void cpu_ready_for_interrupts(void)
  205. {
  206. /*
  207. * Enable AIL if supported, and we are in hypervisor mode. This
  208. * is called once for every processor.
  209. *
  210. * If we are not in hypervisor mode the job is done once for
  211. * the whole partition in configure_exceptions().
  212. */
  213. if (early_cpu_has_feature(CPU_FTR_HVMODE) &&
  214. early_cpu_has_feature(CPU_FTR_ARCH_207S)) {
  215. unsigned long lpcr = mfspr(SPRN_LPCR);
  216. mtspr(SPRN_LPCR, lpcr | LPCR_AIL_3);
  217. }
  218. /* Set IR and DR in PACA MSR */
  219. get_paca()->kernel_msr = MSR_KERNEL;
  220. }
  221. /*
  222. * Early initialization entry point. This is called by head.S
  223. * with MMU translation disabled. We rely on the "feature" of
  224. * the CPU that ignores the top 2 bits of the address in real
  225. * mode so we can access kernel globals normally provided we
  226. * only toy with things in the RMO region. From here, we do
  227. * some early parsing of the device-tree to setup out MEMBLOCK
  228. * data structures, and allocate & initialize the hash table
  229. * and segment tables so we can start running with translation
  230. * enabled.
  231. *
  232. * It is this function which will call the probe() callback of
  233. * the various platform types and copy the matching one to the
  234. * global ppc_md structure. Your platform can eventually do
  235. * some very early initializations from the probe() routine, but
  236. * this is not recommended, be very careful as, for example, the
  237. * device-tree is not accessible via normal means at this point.
  238. */
  239. void __init early_setup(unsigned long dt_ptr)
  240. {
  241. static __initdata struct paca_struct boot_paca;
  242. /* -------- printk is _NOT_ safe to use here ! ------- */
  243. /* Identify CPU type */
  244. identify_cpu(0, mfspr(SPRN_PVR));
  245. /* Assume we're on cpu 0 for now. Don't write to the paca yet! */
  246. initialise_paca(&boot_paca, 0);
  247. setup_paca(&boot_paca);
  248. fixup_boot_paca();
  249. /* -------- printk is now safe to use ------- */
  250. /* Enable early debugging if any specified (see udbg.h) */
  251. udbg_early_init();
  252. DBG(" -> early_setup(), dt_ptr: 0x%lx\n", dt_ptr);
  253. /*
  254. * Do early initialization using the flattened device
  255. * tree, such as retrieving the physical memory map or
  256. * calculating/retrieving the hash table size.
  257. */
  258. early_init_devtree(__va(dt_ptr));
  259. /* Now we know the logical id of our boot cpu, setup the paca. */
  260. setup_paca(&paca[boot_cpuid]);
  261. fixup_boot_paca();
  262. /*
  263. * Configure exception handlers. This include setting up trampolines
  264. * if needed, setting exception endian mode, etc...
  265. */
  266. configure_exceptions();
  267. /* Apply all the dynamic patching */
  268. apply_feature_fixups();
  269. setup_feature_keys();
  270. /* Initialize the hash table or TLB handling */
  271. early_init_mmu();
  272. /*
  273. * At this point, we can let interrupts switch to virtual mode
  274. * (the MMU has been setup), so adjust the MSR in the PACA to
  275. * have IR and DR set and enable AIL if it exists
  276. */
  277. cpu_ready_for_interrupts();
  278. DBG(" <- early_setup()\n");
  279. #ifdef CONFIG_PPC_EARLY_DEBUG_BOOTX
  280. /*
  281. * This needs to be done *last* (after the above DBG() even)
  282. *
  283. * Right after we return from this function, we turn on the MMU
  284. * which means the real-mode access trick that btext does will
  285. * no longer work, it needs to switch to using a real MMU
  286. * mapping. This call will ensure that it does
  287. */
  288. btext_map();
  289. #endif /* CONFIG_PPC_EARLY_DEBUG_BOOTX */
  290. }
  291. #ifdef CONFIG_SMP
  292. void early_setup_secondary(void)
  293. {
  294. /* Mark interrupts disabled in PACA */
  295. get_paca()->soft_enabled = 0;
  296. /* Initialize the hash table or TLB handling */
  297. early_init_mmu_secondary();
  298. /*
  299. * At this point, we can let interrupts switch to virtual mode
  300. * (the MMU has been setup), so adjust the MSR in the PACA to
  301. * have IR and DR set.
  302. */
  303. cpu_ready_for_interrupts();
  304. }
  305. #endif /* CONFIG_SMP */
  306. #if defined(CONFIG_SMP) || defined(CONFIG_KEXEC_CORE)
  307. static bool use_spinloop(void)
  308. {
  309. if (!IS_ENABLED(CONFIG_PPC_BOOK3E))
  310. return true;
  311. /*
  312. * When book3e boots from kexec, the ePAPR spin table does
  313. * not get used.
  314. */
  315. return of_property_read_bool(of_chosen, "linux,booted-from-kexec");
  316. }
  317. void smp_release_cpus(void)
  318. {
  319. unsigned long *ptr;
  320. int i;
  321. if (!use_spinloop())
  322. return;
  323. DBG(" -> smp_release_cpus()\n");
  324. /* All secondary cpus are spinning on a common spinloop, release them
  325. * all now so they can start to spin on their individual paca
  326. * spinloops. For non SMP kernels, the secondary cpus never get out
  327. * of the common spinloop.
  328. */
  329. ptr = (unsigned long *)((unsigned long)&__secondary_hold_spinloop
  330. - PHYSICAL_START);
  331. *ptr = ppc_function_entry(generic_secondary_smp_init);
  332. /* And wait a bit for them to catch up */
  333. for (i = 0; i < 100000; i++) {
  334. mb();
  335. HMT_low();
  336. if (spinning_secondaries == 0)
  337. break;
  338. udelay(1);
  339. }
  340. DBG("spinning_secondaries = %d\n", spinning_secondaries);
  341. DBG(" <- smp_release_cpus()\n");
  342. }
  343. #endif /* CONFIG_SMP || CONFIG_KEXEC_CORE */
  344. /*
  345. * Initialize some remaining members of the ppc64_caches and systemcfg
  346. * structures
  347. * (at least until we get rid of them completely). This is mostly some
  348. * cache informations about the CPU that will be used by cache flush
  349. * routines and/or provided to userland
  350. */
  351. void __init initialize_cache_info(void)
  352. {
  353. struct device_node *np;
  354. unsigned long num_cpus = 0;
  355. DBG(" -> initialize_cache_info()\n");
  356. for_each_node_by_type(np, "cpu") {
  357. num_cpus += 1;
  358. /*
  359. * We're assuming *all* of the CPUs have the same
  360. * d-cache and i-cache sizes... -Peter
  361. */
  362. if (num_cpus == 1) {
  363. const __be32 *sizep, *lsizep;
  364. u32 size, lsize;
  365. size = 0;
  366. lsize = cur_cpu_spec->dcache_bsize;
  367. sizep = of_get_property(np, "d-cache-size", NULL);
  368. if (sizep != NULL)
  369. size = be32_to_cpu(*sizep);
  370. lsizep = of_get_property(np, "d-cache-block-size",
  371. NULL);
  372. /* fallback if block size missing */
  373. if (lsizep == NULL)
  374. lsizep = of_get_property(np,
  375. "d-cache-line-size",
  376. NULL);
  377. if (lsizep != NULL)
  378. lsize = be32_to_cpu(*lsizep);
  379. if (sizep == NULL || lsizep == NULL)
  380. DBG("Argh, can't find dcache properties ! "
  381. "sizep: %p, lsizep: %p\n", sizep, lsizep);
  382. ppc64_caches.dsize = size;
  383. ppc64_caches.dline_size = lsize;
  384. ppc64_caches.log_dline_size = __ilog2(lsize);
  385. ppc64_caches.dlines_per_page = PAGE_SIZE / lsize;
  386. size = 0;
  387. lsize = cur_cpu_spec->icache_bsize;
  388. sizep = of_get_property(np, "i-cache-size", NULL);
  389. if (sizep != NULL)
  390. size = be32_to_cpu(*sizep);
  391. lsizep = of_get_property(np, "i-cache-block-size",
  392. NULL);
  393. if (lsizep == NULL)
  394. lsizep = of_get_property(np,
  395. "i-cache-line-size",
  396. NULL);
  397. if (lsizep != NULL)
  398. lsize = be32_to_cpu(*lsizep);
  399. if (sizep == NULL || lsizep == NULL)
  400. DBG("Argh, can't find icache properties ! "
  401. "sizep: %p, lsizep: %p\n", sizep, lsizep);
  402. ppc64_caches.isize = size;
  403. ppc64_caches.iline_size = lsize;
  404. ppc64_caches.log_iline_size = __ilog2(lsize);
  405. ppc64_caches.ilines_per_page = PAGE_SIZE / lsize;
  406. }
  407. }
  408. /* For use by binfmt_elf */
  409. dcache_bsize = ppc64_caches.dline_size;
  410. icache_bsize = ppc64_caches.iline_size;
  411. DBG(" <- initialize_cache_info()\n");
  412. }
  413. /* This returns the limit below which memory accesses to the linear
  414. * mapping are guarnateed not to cause a TLB or SLB miss. This is
  415. * used to allocate interrupt or emergency stacks for which our
  416. * exception entry path doesn't deal with being interrupted.
  417. */
  418. static __init u64 safe_stack_limit(void)
  419. {
  420. #ifdef CONFIG_PPC_BOOK3E
  421. /* Freescale BookE bolts the entire linear mapping */
  422. if (mmu_has_feature(MMU_FTR_TYPE_FSL_E))
  423. return linear_map_top;
  424. /* Other BookE, we assume the first GB is bolted */
  425. return 1ul << 30;
  426. #else
  427. /* BookS, the first segment is bolted */
  428. if (mmu_has_feature(MMU_FTR_1T_SEGMENT))
  429. return 1UL << SID_SHIFT_1T;
  430. return 1UL << SID_SHIFT;
  431. #endif
  432. }
  433. void __init irqstack_early_init(void)
  434. {
  435. u64 limit = safe_stack_limit();
  436. unsigned int i;
  437. /*
  438. * Interrupt stacks must be in the first segment since we
  439. * cannot afford to take SLB misses on them.
  440. */
  441. for_each_possible_cpu(i) {
  442. softirq_ctx[i] = (struct thread_info *)
  443. __va(memblock_alloc_base(THREAD_SIZE,
  444. THREAD_SIZE, limit));
  445. hardirq_ctx[i] = (struct thread_info *)
  446. __va(memblock_alloc_base(THREAD_SIZE,
  447. THREAD_SIZE, limit));
  448. }
  449. }
  450. #ifdef CONFIG_PPC_BOOK3E
  451. void __init exc_lvl_early_init(void)
  452. {
  453. unsigned int i;
  454. unsigned long sp;
  455. for_each_possible_cpu(i) {
  456. sp = memblock_alloc(THREAD_SIZE, THREAD_SIZE);
  457. critirq_ctx[i] = (struct thread_info *)__va(sp);
  458. paca[i].crit_kstack = __va(sp + THREAD_SIZE);
  459. sp = memblock_alloc(THREAD_SIZE, THREAD_SIZE);
  460. dbgirq_ctx[i] = (struct thread_info *)__va(sp);
  461. paca[i].dbg_kstack = __va(sp + THREAD_SIZE);
  462. sp = memblock_alloc(THREAD_SIZE, THREAD_SIZE);
  463. mcheckirq_ctx[i] = (struct thread_info *)__va(sp);
  464. paca[i].mc_kstack = __va(sp + THREAD_SIZE);
  465. }
  466. if (cpu_has_feature(CPU_FTR_DEBUG_LVL_EXC))
  467. patch_exception(0x040, exc_debug_debug_book3e);
  468. }
  469. #endif
  470. /*
  471. * Stack space used when we detect a bad kernel stack pointer, and
  472. * early in SMP boots before relocation is enabled. Exclusive emergency
  473. * stack for machine checks.
  474. */
  475. void __init emergency_stack_init(void)
  476. {
  477. u64 limit;
  478. unsigned int i;
  479. /*
  480. * Emergency stacks must be under 256MB, we cannot afford to take
  481. * SLB misses on them. The ABI also requires them to be 128-byte
  482. * aligned.
  483. *
  484. * Since we use these as temporary stacks during secondary CPU
  485. * bringup, we need to get at them in real mode. This means they
  486. * must also be within the RMO region.
  487. */
  488. limit = min(safe_stack_limit(), ppc64_rma_size);
  489. for_each_possible_cpu(i) {
  490. struct thread_info *ti;
  491. ti = __va(memblock_alloc_base(THREAD_SIZE, THREAD_SIZE, limit));
  492. klp_init_thread_info(ti);
  493. paca[i].emergency_sp = (void *)ti + THREAD_SIZE;
  494. #ifdef CONFIG_PPC_BOOK3S_64
  495. /* emergency stack for machine check exception handling. */
  496. ti = __va(memblock_alloc_base(THREAD_SIZE, THREAD_SIZE, limit));
  497. klp_init_thread_info(ti);
  498. paca[i].mc_emergency_sp = (void *)ti + THREAD_SIZE;
  499. #endif
  500. }
  501. }
  502. #ifdef CONFIG_SMP
  503. #define PCPU_DYN_SIZE ()
  504. static void * __init pcpu_fc_alloc(unsigned int cpu, size_t size, size_t align)
  505. {
  506. return __alloc_bootmem_node(NODE_DATA(cpu_to_node(cpu)), size, align,
  507. __pa(MAX_DMA_ADDRESS));
  508. }
  509. static void __init pcpu_fc_free(void *ptr, size_t size)
  510. {
  511. free_bootmem(__pa(ptr), size);
  512. }
  513. static int pcpu_cpu_distance(unsigned int from, unsigned int to)
  514. {
  515. if (cpu_to_node(from) == cpu_to_node(to))
  516. return LOCAL_DISTANCE;
  517. else
  518. return REMOTE_DISTANCE;
  519. }
  520. unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
  521. EXPORT_SYMBOL(__per_cpu_offset);
  522. void __init setup_per_cpu_areas(void)
  523. {
  524. const size_t dyn_size = PERCPU_MODULE_RESERVE + PERCPU_DYNAMIC_RESERVE;
  525. size_t atom_size;
  526. unsigned long delta;
  527. unsigned int cpu;
  528. int rc;
  529. /*
  530. * Linear mapping is one of 4K, 1M and 16M. For 4K, no need
  531. * to group units. For larger mappings, use 1M atom which
  532. * should be large enough to contain a number of units.
  533. */
  534. if (mmu_linear_psize == MMU_PAGE_4K)
  535. atom_size = PAGE_SIZE;
  536. else
  537. atom_size = 1 << 20;
  538. rc = pcpu_embed_first_chunk(0, dyn_size, atom_size, pcpu_cpu_distance,
  539. pcpu_fc_alloc, pcpu_fc_free);
  540. if (rc < 0)
  541. panic("cannot initialize percpu area (err=%d)", rc);
  542. delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start;
  543. for_each_possible_cpu(cpu) {
  544. __per_cpu_offset[cpu] = delta + pcpu_unit_offsets[cpu];
  545. paca[cpu].data_offset = __per_cpu_offset[cpu];
  546. }
  547. }
  548. #endif
  549. #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
  550. unsigned long memory_block_size_bytes(void)
  551. {
  552. if (ppc_md.memory_block_size)
  553. return ppc_md.memory_block_size();
  554. return MIN_MEMORY_BLOCK_SIZE;
  555. }
  556. #endif
  557. #if defined(CONFIG_PPC_INDIRECT_PIO) || defined(CONFIG_PPC_INDIRECT_MMIO)
  558. struct ppc_pci_io ppc_pci_io;
  559. EXPORT_SYMBOL(ppc_pci_io);
  560. #endif
  561. #ifdef CONFIG_HARDLOCKUP_DETECTOR
  562. u64 hw_nmi_get_sample_period(int watchdog_thresh)
  563. {
  564. return ppc_proc_freq * watchdog_thresh;
  565. }
  566. /*
  567. * The hardlockup detector breaks PMU event based branches and is likely
  568. * to get false positives in KVM guests, so disable it by default.
  569. */
  570. static int __init disable_hardlockup_detector(void)
  571. {
  572. hardlockup_detector_disable();
  573. return 0;
  574. }
  575. early_initcall(disable_hardlockup_detector);
  576. #endif