Re: [PATCH v3 08/26] hw/core/loader: Add ROM loader notifier

2025-02-07 Thread Jean-Philippe Brucker
On Tue, Feb 04, 2025 at 03:33:10PM +1000, Gavin Shan wrote: > > diff --git a/include/hw/loader.h b/include/hw/loader.h > > index 7f6d06b956..0cd9905f97 100644 > > --- a/include/hw/loader.h > > +++ b/include/hw/loader.h > > @@ -353,6 +353,21 @@ void *rom_ptr_for_as(AddressSpace *as, hwaddr addr, >

Re: [PATCH v3 08/26] hw/core/loader: Add ROM loader notifier

2025-02-03 Thread Gavin Shan
On 11/26/24 5:56 AM, Jean-Philippe Brucker wrote: Add a function to register a notifier, that is invoked after a ROM gets loaded into guest memory. It will be used by Arm confidential guest support, in order to register all blobs loaded into memory with KVM, so that their content is moved into R

Re: [PATCH v3 08/26] hw/core/loader: Add ROM loader notifier

2024-12-10 Thread Jean-Philippe Brucker
On Thu, Dec 05, 2024 at 10:59:52PM +0100, Philippe Mathieu-Daudé wrote: > On 25/11/24 20:56, Jean-Philippe Brucker wrote: > > Add a function to register a notifier, that is invoked after a ROM gets > > loaded into guest memory. > > > > It will be used by Arm confidential guest support, in order to

Re: [PATCH v3 08/26] hw/core/loader: Add ROM loader notifier

2024-12-05 Thread Philippe Mathieu-Daudé
On 25/11/24 20:56, Jean-Philippe Brucker wrote: Add a function to register a notifier, that is invoked after a ROM gets loaded into guest memory. It will be used by Arm confidential guest support, in order to register all blobs loaded into memory with KVM, so that their content is moved into Rea

[PATCH v3 08/26] hw/core/loader: Add ROM loader notifier

2024-11-25 Thread Jean-Philippe Brucker
Add a function to register a notifier, that is invoked after a ROM gets loaded into guest memory. It will be used by Arm confidential guest support, in order to register all blobs loaded into memory with KVM, so that their content is moved into Realm state and measured into the initial VM state.