Re: [PATCH] target/ppc/translate: Add dummy implementation for dcblc instruction

2023-02-25 Thread Daniel Henrique Barboza
On 1/30/23 15:49, Bernhard Beschow wrote: The dcblc instruction is used by u-boot in mpc85xx/start.S. Without it, an illegal istruction exception is generated very early in the boot process where the processor is not yet able to handle exceptions. See: https://github.com/u-boot/u-boot/blob/v2

Re: [PATCH] target/ppc/translate: Add dummy implementation for dcblc instruction

2023-02-19 Thread Bernhard Beschow
Am 30. Januar 2023 22:23:59 UTC schrieb Richard Henderson : >On 1/30/23 08:49, Bernhard Beschow wrote: >> The dcblc instruction is used by u-boot in mpc85xx/start.S. Without it, >> an illegal istruction exception is generated very early in the boot >> process where the processor is not yet able

Re: [PATCH] target/ppc/translate: Add dummy implementation for dcblc instruction

2023-01-30 Thread Richard Henderson
On 1/30/23 08:49, Bernhard Beschow wrote: The dcblc instruction is used by u-boot in mpc85xx/start.S. Without it, an illegal istruction exception is generated very early in the boot process where the processor is not yet able to handle exceptions. See: https://github.com/u-boot/u-boot/blob/v2023

[PATCH] target/ppc/translate: Add dummy implementation for dcblc instruction

2023-01-30 Thread Bernhard Beschow
The dcblc instruction is used by u-boot in mpc85xx/start.S. Without it, an illegal istruction exception is generated very early in the boot process where the processor is not yet able to handle exceptions. See: https://github.com/u-boot/u-boot/blob/v2023.01/arch/powerpc/cpu/mpc85xx/start.S#L1840