Re: [PATCH v4 2/4] xen/ppc: Set up a basic C environment

2023-07-19 Thread Jan Beulich
On 18.07.2023 22:20, Shawn Anastasio wrote: > Update ppc64/head.S to set up an initial boot stack, zero the .bss > section, and jump to C. > > Also refactor the endian fixup trampoline into its own macro, since it > will need to be used in multiple places, including every time we make a > call int

[PATCH v4 2/4] xen/ppc: Set up a basic C environment

2023-07-18 Thread Shawn Anastasio
Update ppc64/head.S to set up an initial boot stack, zero the .bss section, and jump to C. Also refactor the endian fixup trampoline into its own macro, since it will need to be used in multiple places, including every time we make a call into firmware (see next commit). Signed-off-by: Shawn Anas