[PATCH v4 5/8] RISC-V: cpufeature: Put vendor_id to work

Conor Dooley conor at kernel.org
Fri Feb 10 12:29:28 PST 2023


On Fri, Feb 10, 2023 at 08:58:18AM +0100, Andrew Jones wrote:
> On Thu, Feb 09, 2023 at 07:04:59PM +0000, Conor Dooley wrote:
> > On Thu, Feb 09, 2023 at 04:26:25PM +0100, Andrew Jones wrote:

> > > +static bool riscv_cpufeature_application_check(u32 feature, u16 data)
> > > +{
> > > +	return data == 0;
> > > +}
> > > +
> > >  void __init_or_module riscv_cpufeature_patch_func(struct alt_entry *begin,
> > >  						  struct alt_entry *end,
> > >  						  unsigned int stage)
> > > @@ -289,8 +294,6 @@ void __init_or_module riscv_cpufeature_patch_func(struct alt_entry *begin,
> > >  		return;
> > >  
> > >  	for (alt = begin; alt < end; alt++) {
> > > -		if (alt->vendor_id != 0)
> > > -			continue;
> > 
> > Can you remind me what makes this "safe"?
> > My understanding was that a vendor_id of zero was safe, as zero is
> > reserved in JEDEC.
> > What is stopping someone stuffing this with a given value and
> > colliding with a real vendor's errata?
> > 
> > 	for (alt = begin; alt < end; alt++) {
> > 		if (alt->vendor_id != A_VENDOR_ID)
> > 			continue;
> > 		if (alt->errata_id >= ERRATA_A_NUMBER)
> > 			continue;
> > 
> > 		tmp = (1U << alt->errata_id);
> > 		if (cpu_req_errata & tmp) {
> > 			oldptr = ALT_OLD_PTR(alt);
> > 			altptr = ALT_ALT_PTR(alt);
> > 
> > 			/* On vm-alternatives, the mmu isn't running yet */
> > 			if (stage == RISCV_ALTERNATIVES_EARLY_BOOT)
> > 				memcpy((void *)__pa_symbol(oldptr),
> > 				       (void *)__pa_symbol(altptr),
> > 				       alt->alt_len);
> > 			else
> > 				patch_text_nosync(oldptr, altptr, alt->alt_len);
> > 		}
> > 	}
> > 
> > I've probably just missing something, my brain swapped out alternatives
> > the other week. Hopefully whatever I missed isn't embarrassingly obvious!
> 
> You're right. I was assuming the errata_id space for errata didn't overlap
> with the errata_id space for cpufeatures. It doesn't, atm, but by luck,
> not design. I could try to ensure that somehow, but probably the better
> approach would be to use the upper bits of errata_id for the application
> data and to leave vendor_id alone. Thanks for catching my oversight!

Sounds like a better idea at least.
I suppose the ideal would be to add another arg and not abuse things,
but maybe that's one for the future, idk.
Is this somewhere that an assertion should be used to make sure that
we don't grow the list of extensions such that the regions collide?

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 228 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/kvm-riscv/attachments/20230210/421f7ada/attachment-0001.sig>


More information about the kvm-riscv mailing list