Message ID | 20230123104841.813999-1-alexghiti@rivosinc.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | [v3] riscv: Allow to downgrade paging mode from the command | expand |
Context | Check | Description |
---|---|---|
conchuod/cover_letter | success | Single patches do not need cover letters |
conchuod/tree_selection | success | Guessed tree name to be for-next |
conchuod/fixes_present | success | Fixes tag not required for -next series |
conchuod/maintainers_pattern | success | MAINTAINERS pattern errors before the patch: 13 and now 13 |
conchuod/verify_signedoff | success | Signed-off-by tag matches author and committer |
conchuod/kdoc | success | Errors and warnings before: 0 this patch: 0 |
conchuod/module_param | success | Was 0 now: 0 |
conchuod/build_rv64_gcc_allmodconfig | success | Errors and warnings before: 0 this patch: 0 |
conchuod/alphanumeric_selects | success | Out of order selects before the patch: 57 and now 57 |
conchuod/build_rv32_defconfig | success | Build OK |
conchuod/dtb_warn_rv64 | success | Errors and warnings before: 2 this patch: 2 |
conchuod/header_inline | success | No static functions without inline keyword in header files |
conchuod/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 122 lines checked |
conchuod/source_inline | success | Was 0 now: 0 |
conchuod/build_rv64_nommu_k210_defconfig | success | Build OK |
conchuod/verify_fixes | success | No Fixes tag |
conchuod/build_rv64_nommu_virt_defconfig | success | Build OK |
Hey Alex, On Mon, Jan 23, 2023 at 11:48:41AM +0100, Alexandre Ghiti wrote: > Add 2 early command line parameters that allow to downgrade satp mode > (using the same naming as x86): > - "no5lvl": use a 4-level page table (down from sv57 to sv48) > - "no4lvl": use a 3-level page table (down from sv57/sv48 to sv39) > > Note that going through the device tree to get the kernel command line > works with ACPI too since the efi stub creates a device tree anyway with > the command line. > > Also, as those params are treated very early in the boot process and we > use standard device tree functions that may be kasan instrumented, we > only enable them for !KASAN configurations. > > Reviewed-by: Björn Töpel <bjorn@kernel.org> > Signed-off-by: Alexandre Ghiti <alexghiti@rivosinc.com> > --- A changelog would be nice here, especially since this is a resend. > .../admin-guide/kernel-parameters.txt | 9 ++- > arch/riscv/mm/init.c | 72 +++++++++++++++++-- > 2 files changed, 74 insertions(+), 7 deletions(-) > > diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt > index 6cfa6e3996cf..fd647412ec91 100644 > --- a/Documentation/admin-guide/kernel-parameters.txt > +++ b/Documentation/admin-guide/kernel-parameters.txt > @@ -3578,8 +3578,15 @@ > emulation library even if a 387 maths coprocessor > is present. > > - no5lvl [X86-64] Disable 5-level paging mode. Forces > + no4lvl [RISCV] Disable 4-level and 5-level paging modes. Forces > + kernel to use 3-level paging instead. > + Note: On RISC-V, this can't be used when KASAN is > + enabled. > + > + no5lvl [X86-64,RISCV] Disable 5-level paging mode. Forces > kernel to use 4-level paging instead. > + Note: On RISC-V, this can't be used when KASAN is > + enabled. > > nofsgsbase [X86] Disables FSGSBASE instructions. > For the improved descriptions & commit message: Reviewed-by: Conor Dooley <conor.dooley@microchip.com> Thanks, Conor.
Hi Conor, On 1/23/23 12:53, Conor Dooley wrote: > Hey Alex, > > On Mon, Jan 23, 2023 at 11:48:41AM +0100, Alexandre Ghiti wrote: >> Add 2 early command line parameters that allow to downgrade satp mode >> (using the same naming as x86): >> - "no5lvl": use a 4-level page table (down from sv57 to sv48) >> - "no4lvl": use a 3-level page table (down from sv57/sv48 to sv39) >> >> Note that going through the device tree to get the kernel command line >> works with ACPI too since the efi stub creates a device tree anyway with >> the command line. >> >> Also, as those params are treated very early in the boot process and we >> use standard device tree functions that may be kasan instrumented, we >> only enable them for !KASAN configurations. >> >> Reviewed-by: Björn Töpel <bjorn@kernel.org> >> Signed-off-by: Alexandre Ghiti <alexghiti@rivosinc.com> >> --- > A changelog would be nice here, especially since this is a resend. I think you may have commented the wrong patch, this one is wrong, hence the resend! > >> .../admin-guide/kernel-parameters.txt | 9 ++- >> arch/riscv/mm/init.c | 72 +++++++++++++++++-- >> 2 files changed, 74 insertions(+), 7 deletions(-) >> >> diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt >> index 6cfa6e3996cf..fd647412ec91 100644 >> --- a/Documentation/admin-guide/kernel-parameters.txt >> +++ b/Documentation/admin-guide/kernel-parameters.txt >> @@ -3578,8 +3578,15 @@ >> emulation library even if a 387 maths coprocessor >> is present. >> >> - no5lvl [X86-64] Disable 5-level paging mode. Forces >> + no4lvl [RISCV] Disable 4-level and 5-level paging modes. Forces >> + kernel to use 3-level paging instead. >> + Note: On RISC-V, this can't be used when KASAN is >> + enabled. >> + >> + no5lvl [X86-64,RISCV] Disable 5-level paging mode. Forces >> kernel to use 4-level paging instead. >> + Note: On RISC-V, this can't be used when KASAN is >> + enabled. >> >> nofsgsbase [X86] Disables FSGSBASE instructions. >> > For the improved descriptions & commit message: > Reviewed-by: Conor Dooley <conor.dooley@microchip.com> Thanks for that, would you mind adding that to the resend patch? Thanks again, Alex > > Thanks, > Conor. > > > _______________________________________________ > linux-riscv mailing list > linux-riscv@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-riscv
On Mon, Jan 23, 2023 at 02:39:35PM +0100, Alexandre Ghiti wrote: > Hi Conor, > > On 1/23/23 12:53, Conor Dooley wrote: > > Hey Alex, > > > > On Mon, Jan 23, 2023 at 11:48:41AM +0100, Alexandre Ghiti wrote: > > > Add 2 early command line parameters that allow to downgrade satp mode > > > (using the same naming as x86): > > > - "no5lvl": use a 4-level page table (down from sv57 to sv48) > > > - "no4lvl": use a 3-level page table (down from sv57/sv48 to sv39) > > > > > > Note that going through the device tree to get the kernel command line > > > works with ACPI too since the efi stub creates a device tree anyway with > > > the command line. > > > > > > Also, as those params are treated very early in the boot process and we > > > use standard device tree functions that may be kasan instrumented, we > > > only enable them for !KASAN configurations. > > > > > > Reviewed-by: Björn Töpel <bjorn@kernel.org> > > > Signed-off-by: Alexandre Ghiti <alexghiti@rivosinc.com> > > > --- > > A changelog would be nice here, especially since this is a resend. > > > I think you may have commented the wrong patch, this one is wrong, hence the > resend! Oh, sorry about that Alex! For some reason the resend never landed in my mailbox (I had just seen that there were two on patchwork). > > > .../admin-guide/kernel-parameters.txt | 9 ++- > > > arch/riscv/mm/init.c | 72 +++++++++++++++++-- > > > 2 files changed, 74 insertions(+), 7 deletions(-) > > > > > > diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt > > > index 6cfa6e3996cf..fd647412ec91 100644 > > > --- a/Documentation/admin-guide/kernel-parameters.txt > > > +++ b/Documentation/admin-guide/kernel-parameters.txt > > > @@ -3578,8 +3578,15 @@ > > > emulation library even if a 387 maths coprocessor > > > is present. > > > - no5lvl [X86-64] Disable 5-level paging mode. Forces > > > + no4lvl [RISCV] Disable 4-level and 5-level paging modes. Forces > > > + kernel to use 3-level paging instead. > > > + Note: On RISC-V, this can't be used when KASAN is > > > + enabled. > > > + > > > + no5lvl [X86-64,RISCV] Disable 5-level paging mode. Forces > > > kernel to use 4-level paging instead. > > > + Note: On RISC-V, this can't be used when KASAN is > > > + enabled. > > > nofsgsbase [X86] Disables FSGSBASE instructions. > > For the improved descriptions & commit message: > > Reviewed-by: Conor Dooley <conor.dooley@microchip.com> > > > Thanks for that, would you mind adding that to the resend patch? Yah, no problem.
diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt index 6cfa6e3996cf..fd647412ec91 100644 --- a/Documentation/admin-guide/kernel-parameters.txt +++ b/Documentation/admin-guide/kernel-parameters.txt @@ -3578,8 +3578,15 @@ emulation library even if a 387 maths coprocessor is present. - no5lvl [X86-64] Disable 5-level paging mode. Forces + no4lvl [RISCV] Disable 4-level and 5-level paging modes. Forces + kernel to use 3-level paging instead. + Note: On RISC-V, this can't be used when KASAN is + enabled. + + no5lvl [X86-64,RISCV] Disable 5-level paging mode. Forces kernel to use 4-level paging instead. + Note: On RISC-V, this can't be used when KASAN is + enabled. nofsgsbase [X86] Disables FSGSBASE instructions. diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c index 478d6763a01a..10f99fa74368 100644 --- a/arch/riscv/mm/init.c +++ b/arch/riscv/mm/init.c @@ -746,17 +746,77 @@ static void __init disable_pgtable_l4(void) satp_mode = SATP_MODE_39; } +#ifndef CONFIG_KASAN +static __init bool match_noXlvl(const char *cmdline) +{ + if (strstr(cmdline, "no5lvl")) { + disable_pgtable_l5(); + } else if (strstr(cmdline, "no4lvl")) { + disable_pgtable_l5(); + disable_pgtable_l4(); + return true; + } + + return false; +} + +static int __init print_no4lvl(char *p) +{ + pr_info("Disabled 4-level and 5-level paging"); + return 0; +} +early_param("no4lvl", print_no4lvl); + +static int __init print_no5lvl(char *p) +{ + pr_info("Disabled 5-level paging"); + return 0; +} +early_param("no5lvl", print_no5lvl); +#endif + /* * There is a simple way to determine if 4-level is supported by the * underlying hardware: establish 1:1 mapping in 4-level page table mode * then read SATP to see if the configuration was taken into account * meaning sv48 is supported. */ -static __init void set_satp_mode(void) +static __init void set_satp_mode(uintptr_t dtb_pa) { u64 identity_satp, hw_satp; uintptr_t set_satp_mode_pmd = ((unsigned long)set_satp_mode) & PMD_MASK; - bool check_l4 = false; + +#ifndef CONFIG_KASAN + /* + * The below fdt functions are kasan instrumented, since at this point + * there is no mapping for the kasan shadow memory, this can't be used + * when kasan is enabled. + */ + int chosen_node; + unsigned int fdt_cmdline_size = 0; + + if (!IS_ENABLED(CONFIG_CMDLINE_FORCE)) { + chosen_node = fdt_path_offset((void *)dtb_pa, "/chosen"); + if (chosen_node >= 0) { + const char *fdt_cmdline; + + fdt_cmdline = fdt_getprop((void *)dtb_pa, chosen_node, + "bootargs", NULL); + if (fdt_cmdline) { + if (match_noXlvl(fdt_cmdline)) + return; + fdt_cmdline_size = strlen(fdt_cmdline); + } + } + } + + if (IS_ENABLED(CONFIG_CMDLINE_EXTEND) || + IS_ENABLED(CONFIG_CMDLINE_FORCE) || + fdt_cmdline_size == 0 /* CONFIG_CMDLINE_FALLBACK */) { + if (match_noXlvl(CONFIG_CMDLINE)) + return; + } +#endif create_p4d_mapping(early_p4d, set_satp_mode_pmd, (uintptr_t)early_pud, @@ -775,7 +835,8 @@ static __init void set_satp_mode(void) retry: create_pgd_mapping(early_pg_dir, set_satp_mode_pmd, - check_l4 ? (uintptr_t)early_pud : (uintptr_t)early_p4d, + pgtable_l5_enabled ? + (uintptr_t)early_p4d : (uintptr_t)early_pud, PGDIR_SIZE, PAGE_TABLE); identity_satp = PFN_DOWN((uintptr_t)&early_pg_dir) | satp_mode; @@ -786,9 +847,8 @@ static __init void set_satp_mode(void) local_flush_tlb_all(); if (hw_satp != identity_satp) { - if (!check_l4) { + if (pgtable_l5_enabled) { disable_pgtable_l5(); - check_l4 = true; memset(early_pg_dir, 0, PAGE_SIZE); goto retry; } @@ -979,7 +1039,7 @@ asmlinkage void __init setup_vm(uintptr_t dtb_pa) #endif #if defined(CONFIG_64BIT) && !defined(CONFIG_XIP_KERNEL) - set_satp_mode(); + set_satp_mode(dtb_pa); #endif kernel_map.va_pa_offset = PAGE_OFFSET - kernel_map.phys_addr;