Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-10-21 Thread Simon Glass
Hi Raymond, On Fri, 20 Oct 2023 at 15:15, Raymond Mao wrote: > > Hi Simon, > > On Thu, 21 Sept 2023 at 04:58, Simon Glass wrote: > > > > Standard passage provides for a bloblist to be passed from one firmware > > phase to the next. That can be used to pass the devicetree along as well. > > Add a

Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-10-21 Thread Raymond Mao
Hi Simon, On Thu, 21 Sept 2023 at 04:58, Simon Glass wrote: > > Standard passage provides for a bloblist to be passed from one firmware > phase to the next. That can be used to pass the devicetree along as well. > Add an option to support this. > > Tests for this will be added as part of the Univ

Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-10-03 Thread Simon Glass
Hi Ilias, On Mon, 2 Oct 2023 at 01:33, Ilias Apalodimas wrote: > > Hi Simon > > On Mon, 2 Oct 2023 at 04:23, Simon Glass wrote: > > > > Hi Ilias, > > > > On Tue, 26 Sept 2023 at 07:13, Ilias Apalodimas > > wrote: > > > > > > Hi Simon, > > > > > > [...] > > > > > > > > > > > > > > > > > So, inst

Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-10-02 Thread Ilias Apalodimas
Hi Simon On Mon, 2 Oct 2023 at 04:23, Simon Glass wrote: > > Hi Ilias, > > On Tue, 26 Sept 2023 at 07:13, Ilias Apalodimas > wrote: > > > > Hi Simon, > > > > [...] > > > > > > > > > > > > > > So, instead of adding OF_BLOBLIST, just move this code under > > > > > > OF_BOARD, > > > > > > inside a

Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-10-01 Thread Simon Glass
Hi Ilias, On Tue, 26 Sept 2023 at 07:13, Ilias Apalodimas wrote: > > Hi Simon, > > [...] > > > > > > > > > > > So, instead of adding OF_BLOBLIST, just move this code under OF_BOARD, > > > > > inside an IS_ENABLED(BLOBLIST) check. If a bloblist is required and > > > > > the previous stage loader i

Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-09-26 Thread Ilias Apalodimas
Hi Simon, [...] > > > > > > > > So, instead of adding OF_BLOBLIST, just move this code under OF_BOARD, > > > > inside an IS_ENABLED(BLOBLIST) check. If a bloblist is required and > > > > the previous stage loader is supposed to provide a DT we can just > > > > throw an error and stop booting > >

Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-09-26 Thread Simon Glass
Hi Ilias, On Tue, 26 Sept 2023 at 06:32, Ilias Apalodimas wrote: > > Hi Simon > > On Tue, 26 Sept 2023 at 14:37, Simon Glass wrote: > > > > Hi Ilias, > > > > On Mon, 25 Sept 2023 at 13:48, Ilias Apalodimas > > wrote: > > > > > > Hi Simon, > > > > > > I commented on the v1 thread, but let's cont

Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-09-26 Thread Ilias Apalodimas
Hi Simon On Tue, 26 Sept 2023 at 14:37, Simon Glass wrote: > > Hi Ilias, > > On Mon, 25 Sept 2023 at 13:48, Ilias Apalodimas > wrote: > > > > Hi Simon, > > > > I commented on the v1 thread, but let's continue the discussion here > > > > On Thu, 21 Sept 2023 at 04:58, Simon Glass wrote: > > > >

Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-09-26 Thread Simon Glass
Hi Ilias, On Mon, 25 Sept 2023 at 13:48, Ilias Apalodimas wrote: > > Hi Simon, > > I commented on the v1 thread, but let's continue the discussion here > > On Thu, 21 Sept 2023 at 04:58, Simon Glass wrote: > > > > Standard passage provides for a bloblist to be passed from one firmware > > phase

Re: [PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-09-25 Thread Ilias Apalodimas
Hi Simon, I commented on the v1 thread, but let's continue the discussion here On Thu, 21 Sept 2023 at 04:58, Simon Glass wrote: > > Standard passage provides for a bloblist to be passed from one firmware > phase to the next. That can be used to pass the devicetree along as well. > Add an option

[PATCH v2 30/32] fdt: Allow the devicetree to come from a bloblist

2023-09-20 Thread Simon Glass
Standard passage provides for a bloblist to be passed from one firmware phase to the next. That can be used to pass the devicetree along as well. Add an option to support this. Tests for this will be added as part of the Universal Payload work. Signed-off-by: Simon Glass --- Changes in v2: - No