[PATCH v3] New configuration CONFIG_SBI_SCRATCH_ALLOC_ALIGNMENT
Raj Vishwanathan
raj.vishwanathan at gmail.com
Tue Mar 4 16:31:35 PST 2025
Hi Anup
I have been reviewing your suggestions, and I am a bit confused by them.
---------------------- Snipped to retain only the relevant bits
--------------------------
The scratch allocation happens too early in the boot to get the
platform override return values (from parsing the device tree.)
The other issue is that riscv,cbom-block-size is a per-hart value and
testing all kinds of combinations may become unnecessarily
complicated.
If the general configuration value is not acceptable, I can move the
configuration to a platform specific configuration.
Let me know your thoughts
On Mon, Feb 10, 2025 at 8:45 PM Anup Patel <apatel at ventanamicro.com> wrote:
> Introducing a kconfig option is not going to fly since we have to
> re-compile separately for platforms while we are trying our best
> to support the same firmware binary for multiple platforms.
>
> Instead, I suggest the following:
> 1) The default scratch allocation alignment can be __SIZEOF_POINTER__
> 2) Introduce get_cache_line_size() operation in "struct sbi_platform_operations"
> which platforms can use to return desired "cache line size for allocations".
> 3) For generic platform, the get_cache_line_size() return value can be based
> on the "riscv,cbom-block-size" property of CPU DT nodes OR based on
> platform_overrride.
> 4) The sbi_scratch_init() should sanity check the value returned by platform
> get_cache_line_size() before using it as minimum allocation size for
> scratch allocations.
>
> Regards,
> Anup
>
>
> > endmenu
> > diff --git a/lib/sbi/sbi_scratch.c b/lib/sbi/sbi_scratch.c
> > index ccbbc68..0f1be58 100644
> > --- a/lib/sbi/sbi_scratch.c
> > +++ b/lib/sbi/sbi_scratch.c
> > @@ -14,6 +14,16 @@
> > #include <sbi/sbi_scratch.h>
> > #include <sbi/sbi_string.h>
> >
> > +/*
> > + * We do the scratch allocation on the basis of a user configuration.
> > + */
> > +#if !defined(CONFIG_SBI_SCRATCH_ALLOC_ALIGNMENT) || (CONFIG_SBI_SCRATCH_ALLOC_ALIGNMENT==0)
> > +#define SCRATCH_ALLOC_ALIGNMENT __SIZEOF_POINTER__
> > +#else
> > +#define SCRATCH_ALLOC_ALIGNMENT CONFIG_SBI_SCRATCH_ALLOC_ALIGNMENT
> > +#endif
> > +
> > +
> > u32 last_hartindex_having_scratch = 0;
> > u32 hartindex_to_hartid_table[SBI_HARTMASK_MAX_BITS + 1] = { -1U };
> > struct sbi_scratch *hartindex_to_scratch_table[SBI_HARTMASK_MAX_BITS + 1] = { 0 };
> > @@ -70,8 +80,8 @@ unsigned long sbi_scratch_alloc_offset(unsigned long size)
> > if (!size)
> > return 0;
> >
> > - size += __SIZEOF_POINTER__ - 1;
> > - size &= ~((unsigned long)__SIZEOF_POINTER__ - 1);
> > + size += SCRATCH_ALLOC_ALIGNMENT- 1;
> > + size &= ~((unsigned long)SCRATCH_ALLOC_ALIGNMENT - 1);
> >
> > spin_lock(&extra_lock);
> >
> > --
> > 2.43.0
> >
> >
> > --
> > opensbi mailing list
> > opensbi at lists.infradead.org
> > http://lists.infradead.org/mailman/listinfo/opensbi
More information about the opensbi
mailing list