Re: [RFC PATCH] hw/arm: Prefer arm_feature() over object_property_find()

2024-01-02 Thread Philippe Mathieu-Daudé
Hi, On 18/12/23 10:48, Peter Maydell wrote: On Mon, 18 Dec 2023 at 07:26, Markus Armbruster wrote: Peter Maydell writes: On Thu, 14 Dec 2023 at 17:14, Philippe Mathieu-Daudé wrote: QOM properties are added on the ARM vCPU object when a feature is present. Rather than checking the proper

Re: [RFC PATCH] hw/arm: Prefer arm_feature() over object_property_find()

2023-12-27 Thread Philippe Mathieu-Daudé
Hi Markus, Kevin, On 18/12/23 08:26, Markus Armbruster wrote: Peter Maydell writes: On Thu, 14 Dec 2023 at 17:14, Philippe Mathieu-Daudé wrote: QOM properties are added on the ARM vCPU object when a feature is present. Rather than checking the property is present, check the feature. Sugge

Re: [RFC PATCH] hw/arm: Prefer arm_feature() over object_property_find()

2023-12-18 Thread Peter Maydell
On Thu, 14 Dec 2023 at 17:14, Philippe Mathieu-Daudé wrote: > > QOM properties are added on the ARM vCPU object when a > feature is present. Rather than checking the property > is present, check the feature. > > Suggested-by: Markus Armbruster > Signed-off-by: Philippe Mathieu-Daudé > --- > RFC:

Re: [RFC PATCH] hw/arm: Prefer arm_feature() over object_property_find()

2023-12-18 Thread Peter Maydell
On Mon, 18 Dec 2023 at 07:26, Markus Armbruster wrote: > > Peter Maydell writes: > > > On Thu, 14 Dec 2023 at 17:14, Philippe Mathieu-Daudé > > wrote: > >> > >> QOM properties are added on the ARM vCPU object when a > >> feature is present. Rather than checking the property > >> is present, che

Re: [RFC PATCH] hw/arm: Prefer arm_feature() over object_property_find()

2023-12-17 Thread Markus Armbruster
Peter Maydell writes: > On Thu, 14 Dec 2023 at 17:14, Philippe Mathieu-Daudé > wrote: >> >> QOM properties are added on the ARM vCPU object when a >> feature is present. Rather than checking the property >> is present, check the feature. >> >> Suggested-by: Markus Armbruster >> Signed-off-by:

Re: [RFC PATCH] hw/arm: Prefer arm_feature() over object_property_find()

2023-12-14 Thread Peter Maydell
On Thu, 14 Dec 2023 at 17:14, Philippe Mathieu-Daudé wrote: > > QOM properties are added on the ARM vCPU object when a > feature is present. Rather than checking the property > is present, check the feature. > > Suggested-by: Markus Armbruster > Signed-off-by: Philippe Mathieu-Daudé > --- > RFC:

[RFC PATCH] hw/arm: Prefer arm_feature() over object_property_find()

2023-12-14 Thread Philippe Mathieu-Daudé
QOM properties are added on the ARM vCPU object when a feature is present. Rather than checking the property is present, check the feature. Suggested-by: Markus Armbruster Signed-off-by: Philippe Mathieu-Daudé --- RFC: If there is no objection on this patch, I can split as a per-feature ser