diff options
author | Chanho Park <[email protected]> | 2021-10-21 10:20:16 +0900 |
---|---|---|
committer | Krzysztof Kozlowski <[email protected]> | 2021-10-26 09:16:53 +0200 |
commit | b417d1e88f32645ed62a00d43c347b4386a0a021 (patch) | |
tree | ee1c661ed628a87566166b991f3a3f87ffded436 | |
parent | d96890fca9fd429dd3834dae27e1047760da245b (diff) |
soc: samsung: exynos-chipid: add exynosautov9 SoC support
The product id of Exynos Auto v9 is "0xAAA8_0000". Add this id and its
name.
Cc: Sam Protsenko <[email protected]>
Signed-off-by: Chanho Park <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Krzysztof Kozlowski <[email protected]>
-rw-r--r-- | drivers/soc/samsung/exynos-chipid.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/soc/samsung/exynos-chipid.c b/drivers/soc/samsung/exynos-chipid.c index 0aeb24bcc11a..a28053ec7e6a 100644 --- a/drivers/soc/samsung/exynos-chipid.c +++ b/drivers/soc/samsung/exynos-chipid.c @@ -56,6 +56,7 @@ static const struct exynos_soc_id { { "EXYNOS5800", 0xE5422000 }, { "EXYNOS7420", 0xE7420000 }, { "EXYNOS850", 0xE3830000 }, + { "EXYNOSAUTOV9", 0xAAA80000 }, }; static const char *product_id_to_soc_id(unsigned int product_id) |