On 29/7/24 17:47, Peter Maydell wrote:
On Fri, 19 Jul 2024 at 19:11, Philippe Mathieu-Daudé wrote:
We weren't enabling the PL011 TX UART before using it
on the raspi and virt machines. Update the ASM code
prefixing:
*UART_CTRL = UART_ENABLE | TX_ENABLE;
to:
while (true) {
*UART
On Fri, 19 Jul 2024 at 19:11, Philippe Mathieu-Daudé wrote:
>
> We weren't enabling the PL011 TX UART before using it
> on the raspi and virt machines. Update the ASM code
> prefixing:
>
> *UART_CTRL = UART_ENABLE | TX_ENABLE;
>
> to:
>
> while (true) {
> *UART_DATA = 'T';
> }
>
> Sign
We weren't enabling the PL011 TX UART before using it
on the raspi and virt machines. Update the ASM code
prefixing:
*UART_CTRL = UART_ENABLE | TX_ENABLE;
to:
while (true) {
*UART_DATA = 'T';
}
Signed-off-by: Philippe Mathieu-Daudé
---
tests/qtest/boot-serial-test.c | 15 +