qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hw/ssi/aspeed_smc: Allow 64-bit wide flash accesses
@ 2025-04-22  0:27 Joe Komlodi
  2025-04-22 13:38 ` Cédric Le Goater
  2025-04-23  6:57 ` Cédric Le Goater
  0 siblings, 2 replies; 3+ messages in thread
From: Joe Komlodi @ 2025-04-22  0:27 UTC (permalink / raw)
  To: qemu-devel
  Cc: venture, alistair, clg, peter.maydell, steven_lee, leetroy,
	jamin_lin, joel, andrew, qemu-arm

cde3247651dc998da5dc1005148302a90d72f21f fixed atomicity for LDRD, which
ends up making accesses 64-bits wide. However, the AST2600 bootloader
can sometimes compile with LDRD instructions, which causes the acceses
to fail when accessing the memory-mapped SPI flash.

To fix this, increase the MMIO region valid access size to allow for
64-bit accesses.

Signed-off-by: Joe Komlodi <komlodi@google.com>
---
 hw/ssi/aspeed_smc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/ssi/aspeed_smc.c b/hw/ssi/aspeed_smc.c
index faef1a8e5b..a1160187a4 100644
--- a/hw/ssi/aspeed_smc.c
+++ b/hw/ssi/aspeed_smc.c
@@ -359,7 +359,7 @@ static const MemoryRegionOps aspeed_smc_flash_default_ops = {
     .endianness = DEVICE_LITTLE_ENDIAN,
     .valid = {
         .min_access_size = 1,
-        .max_access_size = 4,
+        .max_access_size = 8,
     },
 };
 
@@ -670,7 +670,7 @@ static const MemoryRegionOps aspeed_smc_flash_ops = {
     .endianness = DEVICE_LITTLE_ENDIAN,
     .valid = {
         .min_access_size = 1,
-        .max_access_size = 4,
+        .max_access_size = 8,
     },
 };
 
-- 
2.49.0.805.g082f7c87e0-goog



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] hw/ssi/aspeed_smc: Allow 64-bit wide flash accesses
  2025-04-22  0:27 [PATCH] hw/ssi/aspeed_smc: Allow 64-bit wide flash accesses Joe Komlodi
@ 2025-04-22 13:38 ` Cédric Le Goater
  2025-04-23  6:57 ` Cédric Le Goater
  1 sibling, 0 replies; 3+ messages in thread
From: Cédric Le Goater @ 2025-04-22 13:38 UTC (permalink / raw)
  To: Joe Komlodi, qemu-devel
  Cc: venture, alistair, peter.maydell, steven_lee, leetroy, jamin_lin,
	joel, andrew, qemu-arm

On 4/22/25 02:27, Joe Komlodi wrote:
> cde3247651dc998da5dc1005148302a90d72f21f fixed atomicity for LDRD, which
> ends up making accesses 64-bits wide. However, the AST2600 bootloader
> can sometimes compile with LDRD instructions, which causes the acceses
> to fail when accessing the memory-mapped SPI flash.
> 
> To fix this, increase the MMIO region valid access size to allow for
> 64-bit accesses.
> 
> Signed-off-by: Joe Komlodi <komlodi@google.com>

To backport on stable-10.0 when merged.

Reviewed-by: Cédric Le Goater <clg@redhat.com>

Thanks,

C.


> ---
>   hw/ssi/aspeed_smc.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/ssi/aspeed_smc.c b/hw/ssi/aspeed_smc.c
> index faef1a8e5b..a1160187a4 100644
> --- a/hw/ssi/aspeed_smc.c
> +++ b/hw/ssi/aspeed_smc.c
> @@ -359,7 +359,7 @@ static const MemoryRegionOps aspeed_smc_flash_default_ops = {
>       .endianness = DEVICE_LITTLE_ENDIAN,
>       .valid = {
>           .min_access_size = 1,
> -        .max_access_size = 4,
> +        .max_access_size = 8,
>       },
>   };
>   
> @@ -670,7 +670,7 @@ static const MemoryRegionOps aspeed_smc_flash_ops = {
>       .endianness = DEVICE_LITTLE_ENDIAN,
>       .valid = {
>           .min_access_size = 1,
> -        .max_access_size = 4,
> +        .max_access_size = 8,
>       },
>   };
>   



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] hw/ssi/aspeed_smc: Allow 64-bit wide flash accesses
  2025-04-22  0:27 [PATCH] hw/ssi/aspeed_smc: Allow 64-bit wide flash accesses Joe Komlodi
  2025-04-22 13:38 ` Cédric Le Goater
@ 2025-04-23  6:57 ` Cédric Le Goater
  1 sibling, 0 replies; 3+ messages in thread
From: Cédric Le Goater @ 2025-04-23  6:57 UTC (permalink / raw)
  To: Joe Komlodi, qemu-devel
  Cc: venture, alistair, peter.maydell, steven_lee, leetroy, jamin_lin,
	joel, andrew, qemu-arm

On 4/22/25 02:27, Joe Komlodi wrote:
> cde3247651dc998da5dc1005148302a90d72f21f fixed atomicity for LDRD, which
> ends up making accesses 64-bits wide. However, the AST2600 bootloader
> can sometimes compile with LDRD instructions, which causes the acceses
> to fail when accessing the memory-mapped SPI flash.
> 
> To fix this, increase the MMIO region valid access size to allow for
> 64-bit accesses.
> 
> Signed-off-by: Joe Komlodi <komlodi@google.com>


Applied to aspeed-next.

Thanks,

C.



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-04-23  6:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-22  0:27 [PATCH] hw/ssi/aspeed_smc: Allow 64-bit wide flash accesses Joe Komlodi
2025-04-22 13:38 ` Cédric Le Goater
2025-04-23  6:57 ` Cédric Le Goater

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).