diff mbox series

[v2] RISC-V: Enable cbo.clean/flush in usermode

Message ID 20241224123946.97486-1-cuiyunhui@bytedance.com (mailing list archive)
State New
Headers show
Series [v2] RISC-V: Enable cbo.clean/flush in usermode | expand

Checks

Context Check Description
conchuod/vmtest-for-next-PR success PR summary
conchuod/patch-1-test-1 success .github/scripts/patches/tests/build_rv32_defconfig.sh took 102.21s
conchuod/patch-1-test-2 success .github/scripts/patches/tests/build_rv64_clang_allmodconfig.sh took 1026.08s
conchuod/patch-1-test-3 success .github/scripts/patches/tests/build_rv64_gcc_allmodconfig.sh took 1212.01s
conchuod/patch-1-test-4 success .github/scripts/patches/tests/build_rv64_nommu_k210_defconfig.sh took 16.31s
conchuod/patch-1-test-5 success .github/scripts/patches/tests/build_rv64_nommu_virt_defconfig.sh took 17.55s
conchuod/patch-1-test-6 success .github/scripts/patches/tests/checkpatch.sh took 0.39s
conchuod/patch-1-test-7 success .github/scripts/patches/tests/dtb_warn_rv64.sh took 35.99s
conchuod/patch-1-test-8 success .github/scripts/patches/tests/header_inline.sh took 0.00s
conchuod/patch-1-test-9 success .github/scripts/patches/tests/kdoc.sh took 0.48s
conchuod/patch-1-test-10 success .github/scripts/patches/tests/module_param.sh took 0.01s
conchuod/patch-1-test-11 success .github/scripts/patches/tests/verify_fixes.sh took 0.00s
conchuod/patch-1-test-12 success .github/scripts/patches/tests/verify_signedoff.sh took 0.02s

Commit Message

yunhui cui Dec. 24, 2024, 12:39 p.m. UTC
Enabling cbo.clean and cbo.flush in user mode makes it more
convenient to manage the cache state and achieve better performance.

Signed-off-by: Yunhui Cui <cuiyunhui@bytedance.com>
---
 arch/riscv/kernel/cpufeature.c | 8 ++++++++
 1 file changed, 8 insertions(+)

Comments

Andrew Jones Dec. 24, 2024, 2:11 p.m. UTC | #1
On Tue, Dec 24, 2024 at 08:39:46PM +0800, Yunhui Cui wrote:
> Enabling cbo.clean and cbo.flush in user mode makes it more
> convenient to manage the cache state and achieve better performance.
> 
> Signed-off-by: Yunhui Cui <cuiyunhui@bytedance.com>
> ---
>  arch/riscv/kernel/cpufeature.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/arch/riscv/kernel/cpufeature.c b/arch/riscv/kernel/cpufeature.c
> index c0916ed318c2..60d180b98f52 100644
> --- a/arch/riscv/kernel/cpufeature.c
> +++ b/arch/riscv/kernel/cpufeature.c
> @@ -30,6 +30,7 @@
>  #define NUM_ALPHA_EXTS ('z' - 'a' + 1)
>  
>  static bool any_cpu_has_zicboz;
> +static bool any_cpu_has_zicbom;
>  
>  unsigned long elf_hwcap __read_mostly;
>  
> @@ -87,6 +88,8 @@ static int riscv_ext_zicbom_validate(const struct riscv_isa_ext_data *data,
>  		pr_err("Zicbom disabled as cbom-block-size present, but is not a power-of-2\n");
>  		return -EINVAL;
>  	}
> +
> +	any_cpu_has_zicbom = true;
>  	return 0;
>  }
>  
> @@ -944,6 +947,11 @@ void __init riscv_user_isa_enable(void)
>  		current->thread.envcfg |= ENVCFG_CBZE;
>  	else if (any_cpu_has_zicboz)
>  		pr_warn("Zicboz disabled as it is unavailable on some harts\n");
> +
> +	if (riscv_has_extension_unlikely(RISCV_ISA_EXT_ZICBOM))
> +		current->thread.envcfg |= ENVCFG_CBCFE;
> +	else if (any_cpu_has_zicbom)
> +		pr_warn("Zicbom disabled as it is unavailable on some harts\n");
>  }
>  
>  #ifdef CONFIG_RISCV_ALTERNATIVE
> -- 
> 2.39.2
>

This looks good, so

Reviewed-by: Andrew Jones <ajones@ventanamicro.com>

but, as a separate patch, we should also provide hwprobe support like
zicboz has, i.e. add ZICBOM to the IMA ext0 key and add a key for the
zicbom block size. And then, as another patch, add a test_zicbom()
function to tools/testing/selftests/riscv/hwprobe/cbo.c.

Thanks,
drew
yunhui cui Dec. 25, 2024, 2:38 a.m. UTC | #2
Hi drew,

On Tue, Dec 24, 2024 at 10:11 PM Andrew Jones <ajones@ventanamicro.com> wrote:
>
> On Tue, Dec 24, 2024 at 08:39:46PM +0800, Yunhui Cui wrote:
> > Enabling cbo.clean and cbo.flush in user mode makes it more
> > convenient to manage the cache state and achieve better performance.
> >
> > Signed-off-by: Yunhui Cui <cuiyunhui@bytedance.com>
> > ---
> >  arch/riscv/kernel/cpufeature.c | 8 ++++++++
> >  1 file changed, 8 insertions(+)
> >
> > diff --git a/arch/riscv/kernel/cpufeature.c b/arch/riscv/kernel/cpufeature.c
> > index c0916ed318c2..60d180b98f52 100644
> > --- a/arch/riscv/kernel/cpufeature.c
> > +++ b/arch/riscv/kernel/cpufeature.c
> > @@ -30,6 +30,7 @@
> >  #define NUM_ALPHA_EXTS ('z' - 'a' + 1)
> >
> >  static bool any_cpu_has_zicboz;
> > +static bool any_cpu_has_zicbom;
> >
> >  unsigned long elf_hwcap __read_mostly;
> >
> > @@ -87,6 +88,8 @@ static int riscv_ext_zicbom_validate(const struct riscv_isa_ext_data *data,
> >               pr_err("Zicbom disabled as cbom-block-size present, but is not a power-of-2\n");
> >               return -EINVAL;
> >       }
> > +
> > +     any_cpu_has_zicbom = true;
> >       return 0;
> >  }
> >
> > @@ -944,6 +947,11 @@ void __init riscv_user_isa_enable(void)
> >               current->thread.envcfg |= ENVCFG_CBZE;
> >       else if (any_cpu_has_zicboz)
> >               pr_warn("Zicboz disabled as it is unavailable on some harts\n");
> > +
> > +     if (riscv_has_extension_unlikely(RISCV_ISA_EXT_ZICBOM))
> > +             current->thread.envcfg |= ENVCFG_CBCFE;
> > +     else if (any_cpu_has_zicbom)
> > +             pr_warn("Zicbom disabled as it is unavailable on some harts\n");
> >  }
> >
> >  #ifdef CONFIG_RISCV_ALTERNATIVE
> > --
> > 2.39.2
> >
>
> This looks good, so
>
> Reviewed-by: Andrew Jones <ajones@ventanamicro.com>
>
> but, as a separate patch, we should also provide hwprobe support like
> zicboz has, i.e. add ZICBOM to the IMA ext0 key and add a key for the
> zicbom block size. And then, as another patch, add a test_zicbom()
> function to tools/testing/selftests/riscv/hwprobe/cbo.c.
>
> Thanks,
> drew

Thank you for your review. Even though hwprobe doesn't export ZICBOM
currently, user-mode workarounds can still be used.
Alright, I'll send two patches next to support hwprobe's export of
ZICBOM and improve the cbo.c in selftests/.

Thanks,
Yunhui
diff mbox series

Patch

diff --git a/arch/riscv/kernel/cpufeature.c b/arch/riscv/kernel/cpufeature.c
index c0916ed318c2..60d180b98f52 100644
--- a/arch/riscv/kernel/cpufeature.c
+++ b/arch/riscv/kernel/cpufeature.c
@@ -30,6 +30,7 @@ 
 #define NUM_ALPHA_EXTS ('z' - 'a' + 1)
 
 static bool any_cpu_has_zicboz;
+static bool any_cpu_has_zicbom;
 
 unsigned long elf_hwcap __read_mostly;
 
@@ -87,6 +88,8 @@  static int riscv_ext_zicbom_validate(const struct riscv_isa_ext_data *data,
 		pr_err("Zicbom disabled as cbom-block-size present, but is not a power-of-2\n");
 		return -EINVAL;
 	}
+
+	any_cpu_has_zicbom = true;
 	return 0;
 }
 
@@ -944,6 +947,11 @@  void __init riscv_user_isa_enable(void)
 		current->thread.envcfg |= ENVCFG_CBZE;
 	else if (any_cpu_has_zicboz)
 		pr_warn("Zicboz disabled as it is unavailable on some harts\n");
+
+	if (riscv_has_extension_unlikely(RISCV_ISA_EXT_ZICBOM))
+		current->thread.envcfg |= ENVCFG_CBCFE;
+	else if (any_cpu_has_zicbom)
+		pr_warn("Zicbom disabled as it is unavailable on some harts\n");
 }
 
 #ifdef CONFIG_RISCV_ALTERNATIVE