[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 5/8] aspeed/soc: set dma64 property for AST2700 ftgmac100
From: |
Jamin Lin |
Subject: |
[PATCH v3 5/8] aspeed/soc: set dma64 property for AST2700 ftgmac100 |
Date: |
Thu, 4 Jul 2024 16:29:19 +0800 |
ASPEED AST2700 SOC is a 64 bits quad core CPUs (Cortex-a35)
And the base address of dram is "0x4 00000000" which
is 64bits address.
Set dma64 property for ftgmac100 model to support
64bits dram address DMA.
Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
---
hw/arm/aspeed_ast27x0.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/hw/arm/aspeed_ast27x0.c b/hw/arm/aspeed_ast27x0.c
index 18e6a8b10c..a9fb0d4b88 100644
--- a/hw/arm/aspeed_ast27x0.c
+++ b/hw/arm/aspeed_ast27x0.c
@@ -552,9 +552,12 @@ static void aspeed_soc_ast2700_realize(DeviceState *dev,
Error **errp)
return;
}
+ /* Net */
for (i = 0; i < sc->macs_num; i++) {
object_property_set_bool(OBJECT(&s->ftgmac100[i]), "aspeed", true,
&error_abort);
+ object_property_set_bool(OBJECT(&s->ftgmac100[i]), "dma64", true,
+ &error_abort);
if (!sysbus_realize(SYS_BUS_DEVICE(&s->ftgmac100[i]), errp)) {
return;
}
--
2.34.1
- [PATCH v3 0/8] support AST2700 network, Jamin Lin, 2024/07/04
- [PATCH v3 1/8] hw/net:ftgmac100: update memory region size to 64KB, Jamin Lin, 2024/07/04
- [PATCH v3 2/8] hw/net:ftgmac100: update ring base address to 64 bits, Jamin Lin, 2024/07/04
- [PATCH v3 4/8] hw/net:ftgmac100: update TX and RX packet buffers address to 64 bits, Jamin Lin, 2024/07/04
- [PATCH v3 3/8] hw/net:ftgmac100: introduce TX and RX ring base address high registers to support 64 bits, Jamin Lin, 2024/07/04
- [PATCH v3 5/8] aspeed/soc: set dma64 property for AST2700 ftgmac100,
Jamin Lin <=
- [PATCH v3 6/8] hw/block: m25p80: support quad mode for w25q01jvq, Jamin Lin, 2024/07/04
- [PATCH v3 7/8] machine_aspeed.py: update to test ASPEED OpenBMC SDK v09.02 for AST2700, Jamin Lin, 2024/07/04
- [PATCH v3 8/8] machine_aspeed.py: update to test network for AST2700, Jamin Lin, 2024/07/04
- Re: [PATCH v3 0/8] support AST2700 network, Cédric Le Goater, 2024/07/09