Re: [PATCH] hw/char/pl011: Add support for loopback

2024-02-21 Thread Peter Maydell
On Wed, 21 Feb 2024 at 06:56, Ho, Tong wrote: > > On Thu, Feb 8, 2024 at 3:36 AM, Peter Maydell > wrote: > > > This implementation will send the transmitted characters > > to the QEMU chardev and also loop them back into the UART > > when loopback is enabled. Similarly if we receive a character

Re: [PATCH] hw/char/pl011: Add support for loopback

2024-02-20 Thread Ho, Tong
On Thu, Feb 8, 2024 at 3:36 AM, Peter Maydell wrote: > This implementation will send the transmitted characters > to the QEMU chardev and also loop them back into the UART > when loopback is enabled. Similarly if we receive a character > from the real input we will put it into the FIFO still, so

Re: [PATCH] hw/char/pl011: Add support for loopback

2024-02-08 Thread Peter Maydell
On Wed, 7 Feb 2024 at 05:03, Tong Ho wrote: > > This patch adds loopback for sent characters as well as > modem-control signals. > > Loopback of send and modem-control is often used for uart > self tests in real hardware but missing from current pl011 > model, resulting in self-test failures when

[PATCH] hw/char/pl011: Add support for loopback

2024-02-06 Thread Tong Ho
This patch adds loopback for sent characters as well as modem-control signals. Loopback of send and modem-control is often used for uart self tests in real hardware but missing from current pl011 model, resulting in self-test failures when running in QEMU. Signed-off-by: Tong Ho Signed-off-by: F