Re: [PATCH 04/12] coreboot: Move coreboot logic out of x86 to a generic place

2025-02-25 Thread Simon Glass
Hi, On Mon, 24 Feb 2025 at 08:16, Caleb Connolly wrote: > > > > On 2/22/25 01:17, Stephen Boyd wrote: > > Quoting Tom Rini (2025-02-20 17:06:58) > >> On Thu, Feb 20, 2025 at 12:58:46PM -0800, Stephen Boyd wrote: > >> > >>> Lay the groundwork to run U-Boot as a payload on ARM coreboot based > >>>

Re: [PATCH 04/12] coreboot: Move coreboot logic out of x86 to a generic place

2025-02-24 Thread Caleb Connolly
On 2/22/25 01:17, Stephen Boyd wrote: Quoting Tom Rini (2025-02-20 17:06:58) On Thu, Feb 20, 2025 at 12:58:46PM -0800, Stephen Boyd wrote: Lay the groundwork to run U-Boot as a payload on ARM coreboot based devices. Move the coreboot table parsing code out of arch/x86 into lib/coreboot. The

Re: [PATCH 04/12] coreboot: Move coreboot logic out of x86 to a generic place

2025-02-21 Thread Stephen Boyd
Quoting Tom Rini (2025-02-20 17:06:58) > On Thu, Feb 20, 2025 at 12:58:46PM -0800, Stephen Boyd wrote: > > > Lay the groundwork to run U-Boot as a payload on ARM coreboot based > > devices. Move the coreboot table parsing code out of arch/x86 into > > lib/coreboot. The headers like cb_sysinfo.h and

Re: [PATCH 04/12] coreboot: Move coreboot logic out of x86 to a generic place

2025-02-20 Thread Tom Rini
On Thu, Feb 20, 2025 at 12:58:46PM -0800, Stephen Boyd wrote: > Lay the groundwork to run U-Boot as a payload on ARM coreboot based > devices. Move the coreboot table parsing code out of arch/x86 into > lib/coreboot. The headers like cb_sysinfo.h and coreboot_tables.h need > to be globally accessi

[PATCH 04/12] coreboot: Move coreboot logic out of x86 to a generic place

2025-02-20 Thread Stephen Boyd
Lay the groundwork to run U-Boot as a payload on ARM coreboot based devices. Move the coreboot table parsing code out of arch/x86 into lib/coreboot. The headers like cb_sysinfo.h and coreboot_tables.h need to be globally accessible, so move them into the top level include directory. Introduce helpe