[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 05/24] hw/sd/aspeed_sdhci: Add AST2700 Support
From: |
Cédric Le Goater |
Subject: |
[PULL 05/24] hw/sd/aspeed_sdhci: Add AST2700 Support |
Date: |
Wed, 11 Dec 2024 07:30:39 +0100 |
From: Jamin Lin <jamin_lin@aspeedtech.com>
Introduce a new ast2700 class to support AST2700. Add a new ast2700 SDHCI class
init function and set the value of capability register to "0x0000000719f80080".
Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Link: 20241204084453.610660-5-jamin_lin@aspeedtech.com">https://lore.kernel.org/r/20241204084453.610660-5-jamin_lin@aspeedtech.com
Signed-off-by: Cédric Le Goater <clg@redhat.com>
---
include/hw/sd/aspeed_sdhci.h | 1 +
hw/sd/aspeed_sdhci.c | 14 ++++++++++++++
2 files changed, 15 insertions(+)
diff --git a/include/hw/sd/aspeed_sdhci.h b/include/hw/sd/aspeed_sdhci.h
index 8083797e25bc..4ef177047114 100644
--- a/include/hw/sd/aspeed_sdhci.h
+++ b/include/hw/sd/aspeed_sdhci.h
@@ -16,6 +16,7 @@
#define TYPE_ASPEED_2400_SDHCI TYPE_ASPEED_SDHCI "-ast2400"
#define TYPE_ASPEED_2500_SDHCI TYPE_ASPEED_SDHCI "-ast2500"
#define TYPE_ASPEED_2600_SDHCI TYPE_ASPEED_SDHCI "-ast2600"
+#define TYPE_ASPEED_2700_SDHCI TYPE_ASPEED_SDHCI "-ast2700"
OBJECT_DECLARE_TYPE(AspeedSDHCIState, AspeedSDHCIClass, ASPEED_SDHCI)
#define ASPEED_SDHCI_NUM_SLOTS 2
diff --git a/hw/sd/aspeed_sdhci.c b/hw/sd/aspeed_sdhci.c
index ae2ec4a91644..f82b05397e83 100644
--- a/hw/sd/aspeed_sdhci.c
+++ b/hw/sd/aspeed_sdhci.c
@@ -246,6 +246,15 @@ static void aspeed_2600_sdhci_class_init(ObjectClass
*klass, void *data)
asc->capareg = 0x0000000701f80080;
}
+static void aspeed_2700_sdhci_class_init(ObjectClass *klass, void *data)
+{
+ DeviceClass *dc = DEVICE_CLASS(klass);
+ AspeedSDHCIClass *asc = ASPEED_SDHCI_CLASS(klass);
+
+ dc->desc = "ASPEED 2700 SDHCI Controller";
+ asc->capareg = 0x0000000719f80080;
+}
+
static const TypeInfo aspeed_sdhci_types[] = {
{
.name = TYPE_ASPEED_SDHCI,
@@ -270,6 +279,11 @@ static const TypeInfo aspeed_sdhci_types[] = {
.parent = TYPE_ASPEED_SDHCI,
.class_init = aspeed_2600_sdhci_class_init,
},
+ {
+ .name = TYPE_ASPEED_2700_SDHCI,
+ .parent = TYPE_ASPEED_SDHCI,
+ .class_init = aspeed_2700_sdhci_class_init,
+ },
};
DEFINE_TYPES(aspeed_sdhci_types)
--
2.47.1
- [PULL 00/24] aspeed queue, Cédric Le Goater, 2024/12/11
- [PULL 02/24] hw/sd/aspeed_sdhci: Fix coding style, Cédric Le Goater, 2024/12/11
- [PULL 03/24] hw/arm/aspeed: Fix coding style, Cédric Le Goater, 2024/12/11
- [PULL 01/24] arm: Remove tacoma-bmc machine, Cédric Le Goater, 2024/12/11
- [PULL 04/24] hw:sdhci: Introduce a new "capareg" class member to set the different Capability Registers, Cédric Le Goater, 2024/12/11
- [PULL 05/24] hw/sd/aspeed_sdhci: Add AST2700 Support,
Cédric Le Goater <=
- [PULL 07/24] aspeed/soc: Support eMMC for AST2700, Cédric Le Goater, 2024/12/11
- [PULL 10/24] tests/functional: Introduce a specific test for romulus-bmc machine, Cédric Le Goater, 2024/12/11
- [PULL 17/24] test/qtest/aspeed_smc-test: Support to test all CE pins, Cédric Le Goater, 2024/12/11
- [PULL 09/24] tests/functional: Introduce a specific test for palmetto-bmc machine, Cédric Le Goater, 2024/12/11
- [PULL 14/24] tests/functional: Move debian boot test from avocado, Cédric Le Goater, 2024/12/11
- [PULL 12/24] tests/functional: Introduce a specific test for ast2600 SoC, Cédric Le Goater, 2024/12/11
- [PULL 16/24] test/qtest/aspeed_smc-test: Introduce a new TestData to test different BMC SOCs, Cédric Le Goater, 2024/12/11
- [PULL 13/24] tests/functional: Introduce a specific test for rainier-bmc machine, Cédric Le Goater, 2024/12/11
- [PULL 21/24] test/qtest/aspeed_smc-test: Support to test AST1030, Cédric Le Goater, 2024/12/11
- [PULL 06/24] aspeed/soc: Support SDHCI for AST2700, Cédric Le Goater, 2024/12/11