diff options
author | Joel Stanley <joel@jms.id.au> | 2021-08-18 10:35:34 +0930 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2021-08-19 13:51:29 +0930 |
commit | 8812dff6459dd898ba27e49ccac646d12bbcea23 (patch) | |
tree | d509303b37022c4dd359865c92d368c78772fdca /drivers | |
parent | 8b07e990fb254fcbaa919616ac77f981cb48c73d (diff) |
soc: aspeed: socinfo: Add AST2625 variant
Add AST26XX series AST2625-A3 SOC ID, taken from the vendor u-boot SDK:
arch/arm/mach-aspeed/ast2600/scu_info.c
+ SOC_ID("AST2625-A3", 0x0503040305030403),
Reviewed-by: Dylan Hung <dylan_hung@aspeedtech.com>
Link: https://lore.kernel.org/r/20210818010534.2508122-1-joel@jms.id.au
Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/soc/aspeed/aspeed-socinfo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/soc/aspeed/aspeed-socinfo.c b/drivers/soc/aspeed/aspeed-socinfo.c index e3215f826d17..1ca140356a08 100644 --- a/drivers/soc/aspeed/aspeed-socinfo.c +++ b/drivers/soc/aspeed/aspeed-socinfo.c @@ -26,6 +26,7 @@ static struct { { "AST2600", 0x05000303 }, { "AST2620", 0x05010203 }, { "AST2605", 0x05030103 }, + { "AST2625", 0x05030403 }, }; static const char *siliconid_to_name(u32 siliconid) |