diff options
author | Will Schmidt <will_schmidt@vnet.ibm.com> | 2010-09-28 11:33:12 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2010-11-28 23:48:18 -0500 |
commit | 4e89a2d8e2d5ab33d73b76f16c10fdf515faabef (patch) | |
tree | 0300f10bfc192f9e9d8deed50ae857512760f8ab /arch/powerpc/platforms/pseries | |
parent | 475fc7c011ace79258c07d981d348a15614e0573 (diff) |
powerpc/pseries: Add kernel parameter to disable batched hcalls
This introduces a pair of kernel parameters that can be used to disable
the MULTITCE and BULK_REMOVE h-calls.
By default, those hcalls are enabled, active, and good for throughput
and performance. The ability to disable them will be useful for some of
the PREEMPT_RT related investigation and work occurring on Power.
Signed-off-by: Will Schmidt <will_schmidt@vnet.ibm.com>
cc: Olof Johansson <olof@lixom.net>
cc: Anton Blanchard <anton@samba.org>
cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/pseries')
-rw-r--r-- | arch/powerpc/platforms/pseries/iommu.c | 14 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/lpar.c | 12 |
2 files changed, 26 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/pseries/iommu.c b/arch/powerpc/platforms/pseries/iommu.c index a77bcaed80af..fa2906a103dd 100644 --- a/arch/powerpc/platforms/pseries/iommu.c +++ b/arch/powerpc/platforms/pseries/iommu.c | |||
@@ -622,3 +622,17 @@ void iommu_init_early_pSeries(void) | |||
622 | set_pci_dma_ops(&dma_iommu_ops); | 622 | set_pci_dma_ops(&dma_iommu_ops); |
623 | } | 623 | } |
624 | 624 | ||
625 | static int __init disable_multitce(char *str) | ||
626 | { | ||
627 | if (strcmp(str, "off") == 0 && | ||
628 | firmware_has_feature(FW_FEATURE_LPAR) && | ||
629 | firmware_has_feature(FW_FEATURE_MULTITCE)) { | ||
630 | printk(KERN_INFO "Disabling MULTITCE firmware feature\n"); | ||
631 | ppc_md.tce_build = tce_build_pSeriesLP; | ||
632 | ppc_md.tce_free = tce_free_pSeriesLP; | ||
633 | powerpc_firmware_features &= ~FW_FEATURE_MULTITCE; | ||
634 | } | ||
635 | return 1; | ||
636 | } | ||
637 | |||
638 | __setup("multitce=", disable_multitce); | ||
diff --git a/arch/powerpc/platforms/pseries/lpar.c b/arch/powerpc/platforms/pseries/lpar.c index f129040d974c..5d3ea9f60dd7 100644 --- a/arch/powerpc/platforms/pseries/lpar.c +++ b/arch/powerpc/platforms/pseries/lpar.c | |||
@@ -627,6 +627,18 @@ static void pSeries_lpar_flush_hash_range(unsigned long number, int local) | |||
627 | spin_unlock_irqrestore(&pSeries_lpar_tlbie_lock, flags); | 627 | spin_unlock_irqrestore(&pSeries_lpar_tlbie_lock, flags); |
628 | } | 628 | } |
629 | 629 | ||
630 | static int __init disable_bulk_remove(char *str) | ||
631 | { | ||
632 | if (strcmp(str, "off") == 0 && | ||
633 | firmware_has_feature(FW_FEATURE_BULK_REMOVE)) { | ||
634 | printk(KERN_INFO "Disabling BULK_REMOVE firmware feature"); | ||
635 | powerpc_firmware_features &= ~FW_FEATURE_BULK_REMOVE; | ||
636 | } | ||
637 | return 1; | ||
638 | } | ||
639 | |||
640 | __setup("bulk_remove=", disable_bulk_remove); | ||
641 | |||
630 | void __init hpte_init_lpar(void) | 642 | void __init hpte_init_lpar(void) |
631 | { | 643 | { |
632 | ppc_md.hpte_invalidate = pSeries_lpar_hpte_invalidate; | 644 | ppc_md.hpte_invalidate = pSeries_lpar_hpte_invalidate; |