Re: [PATCH v5 09/16] tests/qtest: Update tests using PL011 UART

2024-12-30 Thread Philippe Mathieu-Daudé
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

Re: [PATCH v5 09/16] tests/qtest: Update tests using PL011 UART

2024-07-29 Thread Peter Maydell
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

[PATCH v5 09/16] tests/qtest: Update tests using PL011 UART

2024-07-19 Thread Philippe Mathieu-Daudé
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 +