[PATCH v2 40/42] esp: add trivial implementation of the ESP_RFLAGS register

Mark Cave-Ayland posted 42 patches 5 years ago
There is a newer version of this series
[PATCH v2 40/42] esp: add trivial implementation of the ESP_RFLAGS register
Posted by Mark Cave-Ayland 5 years ago
The bottom 5 bits contain the number of bytes remaining in the FIFO which is
trivial to implement with Fifo8 (the remaining bits are unimplemented and left
as 0 for now).

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
---
 hw/scsi/esp.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/hw/scsi/esp.c b/hw/scsi/esp.c
index 9dd9947307..1f01f2314b 100644
--- a/hw/scsi/esp.c
+++ b/hw/scsi/esp.c
@@ -825,6 +825,10 @@ uint64_t esp_reg_read(ESPState *s, uint32_t saddr)
             val = s->rregs[saddr];
         }
         break;
+     case ESP_RFLAGS:
+        /* Bottom 5 bits indicate number of bytes in FIFO */
+        val = fifo8_num_used(&s->fifo);
+        break;
     default:
         val = s->rregs[saddr];
         break;
-- 
2.20.1


Re: [PATCH v2 40/42] esp: add trivial implementation of the ESP_RFLAGS register
Posted by Philippe Mathieu-Daudé 4 years, 11 months ago
On 2/9/21 8:30 PM, Mark Cave-Ayland wrote:
> The bottom 5 bits contain the number of bytes remaining in the FIFO which is
> trivial to implement with Fifo8 (the remaining bits are unimplemented and left
> as 0 for now).
> 
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> ---
>  hw/scsi/esp.c | 4 ++++
>  1 file changed, 4 insertions(+)

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

Re: [PATCH v2 40/42] esp: add trivial implementation of the ESP_RFLAGS register
Posted by Laurent Vivier 4 years, 11 months ago
Le 09/02/2021 à 20:30, Mark Cave-Ayland a écrit :
> The bottom 5 bits contain the number of bytes remaining in the FIFO which is
> trivial to implement with Fifo8 (the remaining bits are unimplemented and left
> as 0 for now).
> 
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> ---
>  hw/scsi/esp.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/hw/scsi/esp.c b/hw/scsi/esp.c
> index 9dd9947307..1f01f2314b 100644
> --- a/hw/scsi/esp.c
> +++ b/hw/scsi/esp.c
> @@ -825,6 +825,10 @@ uint64_t esp_reg_read(ESPState *s, uint32_t saddr)
>              val = s->rregs[saddr];
>          }
>          break;
> +     case ESP_RFLAGS:
> +        /* Bottom 5 bits indicate number of bytes in FIFO */
> +        val = fifo8_num_used(&s->fifo);
> +        break;
>      default:
>          val = s->rregs[saddr];
>          break;
> 

Reviewed-by: Laurent Vivier <laurent@vivier.eu>