diff mbox series

hw/char/escc: Implement loopback mode

Message ID 20230716153519.31722-1-huth@tuxfamily.org
State New
Headers show
Series hw/char/escc: Implement loopback mode | expand

Commit Message

Thomas Huth July 16, 2023, 3:35 p.m. UTC
The firmware of the m68k next-cube machine uses the loopback mode
for self-testing the hardware and currently fails during this step.
By implementing the loopback mode, we can make the firmware pass
to the next step.

Signed-off-by: Thomas Huth <huth@tuxfamily.org>
---
 hw/char/escc.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Philippe Mathieu-Daudé July 16, 2023, 4 p.m. UTC | #1
On 16/7/23 17:35, Thomas Huth wrote:
> The firmware of the m68k next-cube machine uses the loopback mode
> for self-testing the hardware and currently fails during this step.
> By implementing the loopback mode, we can make the firmware pass
> to the next step.
> 
> Signed-off-by: Thomas Huth <huth@tuxfamily.org>
> ---
>   hw/char/escc.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Mark Cave-Ayland July 17, 2023, 7:48 p.m. UTC | #2
On 16/07/2023 16:35, Thomas Huth wrote:

> The firmware of the m68k next-cube machine uses the loopback mode
> for self-testing the hardware and currently fails during this step.
> By implementing the loopback mode, we can make the firmware pass
> to the next step.
> 
> Signed-off-by: Thomas Huth <huth@tuxfamily.org>
> ---
>   hw/char/escc.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/hw/char/escc.c b/hw/char/escc.c
> index 4f3872bfe9..4be66053c1 100644
> --- a/hw/char/escc.c
> +++ b/hw/char/escc.c
> @@ -653,7 +653,9 @@ static void escc_mem_write(void *opaque, hwaddr addr,
>           escc_update_irq(s);
>           s->tx = val;
>           if (s->wregs[W_TXCTRL2] & TXCTRL2_TXEN) { /* tx enabled */
> -            if (qemu_chr_fe_backend_connected(&s->chr)) {
> +            if (s->wregs[W_MISC2] & MISC2_LCL_LOOP) {
> +                serial_receive_byte(s, s->tx);
> +            } else if (qemu_chr_fe_backend_connected(&s->chr)) {
>                   /*
>                    * XXX this blocks entire thread. Rewrite to use
>                    * qemu_chr_fe_write and background I/O callbacks

Yes indeed, that helps things here :)

Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>


ATB,

Mark.
Philippe Mathieu-Daudé July 25, 2023, 2:57 p.m. UTC | #3
On 16/7/23 17:35, Thomas Huth wrote:
> The firmware of the m68k next-cube machine uses the loopback mode
> for self-testing the hardware and currently fails during this step.
> By implementing the loopback mode, we can make the firmware pass
> to the next step.
> 
> Signed-off-by: Thomas Huth <huth@tuxfamily.org>
> ---
>   hw/char/escc.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)

Thanks, queued to my misc-fixes tree.
diff mbox series

Patch

diff --git a/hw/char/escc.c b/hw/char/escc.c
index 4f3872bfe9..4be66053c1 100644
--- a/hw/char/escc.c
+++ b/hw/char/escc.c
@@ -653,7 +653,9 @@  static void escc_mem_write(void *opaque, hwaddr addr,
         escc_update_irq(s);
         s->tx = val;
         if (s->wregs[W_TXCTRL2] & TXCTRL2_TXEN) { /* tx enabled */
-            if (qemu_chr_fe_backend_connected(&s->chr)) {
+            if (s->wregs[W_MISC2] & MISC2_LCL_LOOP) {
+                serial_receive_byte(s, s->tx);
+            } else if (qemu_chr_fe_backend_connected(&s->chr)) {
                 /*
                  * XXX this blocks entire thread. Rewrite to use
                  * qemu_chr_fe_write and background I/O callbacks