Re: [PATCH v2 17/18] qemu-arm: Get bloblist from boot arguments

2023-12-04 Thread Simon Glass
Hi Raymond, On Mon, 4 Dec 2023 at 13:06, Raymond Mao wrote: > > Hi Simon > > On Sat, 2 Dec 2023 at 16:16, Simon Glass wrote: >> >> Hi Raymond, >> >> On Mon, 27 Nov 2023 at 12:53, Raymond Mao wrote: >> > >> > Add platform custom function to get bloblist from boot arguments. >> >> This should be

Re: [PATCH v2 17/18] qemu-arm: Get bloblist from boot arguments

2023-12-04 Thread Raymond Mao
Hi Simon On Sat, 2 Dec 2023 at 16:16, Simon Glass wrote: > Hi Raymond, > > On Mon, 27 Nov 2023 at 12:53, Raymond Mao wrote: > > > > Add platform custom function to get bloblist from boot arguments. > > This should be the same for all ARM platforms. The ultimate goal is > something like [1] > Ye

Re: [PATCH v2 17/18] qemu-arm: Get bloblist from boot arguments

2023-12-04 Thread Raymond Mao
Hi Michal, I will remove "#if IS_ENABLED(CONFIG_OF_BOARD)" from below: >+#if IS_ENABLED(CONFIG_OF_BOARD) >+/* Boot parameters saved from lowlevel_init.S */ >+struct { >+ unsigned long arg0; >+ unsigned long arg1; >+ unsigned long arg2; >+ unsigned long arg3; >+} qemu_saved_args __section(".data")

Re: [PATCH v2 17/18] qemu-arm: Get bloblist from boot arguments

2023-12-03 Thread Michal Simek
On 11/27/23 20:50, Raymond Mao wrote: Add platform custom function to get bloblist from boot arguments. Check whether boot arguments aligns with the register conventions defined in FW Handoff spec v0.9. Add bloblist related options into qemu default config. Signed-off-by: Raymond Mao --- Cha

Re: [PATCH v2 17/18] qemu-arm: Get bloblist from boot arguments

2023-12-02 Thread Simon Glass
Hi Raymond, On Mon, 27 Nov 2023 at 12:53, Raymond Mao wrote: > > Add platform custom function to get bloblist from boot arguments. This should be the same for all ARM platforms. The ultimate goal is something like [1] > Check whether boot arguments aligns with the register conventions > defined

[PATCH v2 17/18] qemu-arm: Get bloblist from boot arguments

2023-11-27 Thread Raymond Mao
Add platform custom function to get bloblist from boot arguments. Check whether boot arguments aligns with the register conventions defined in FW Handoff spec v0.9. Add bloblist related options into qemu default config. Signed-off-by: Raymond Mao --- Changes in v2 - New patch file created for v2.