diff options
author | Neil Armstrong <narmstrong@baylibre.com> | 2020-11-09 14:30:01 +0100 |
---|---|---|
committer | Neil Armstrong <narmstrong@baylibre.com> | 2020-11-12 14:28:37 +0100 |
commit | b6a71e26c9caf0d2adbdbbd823498a006b994179 (patch) | |
tree | 9b49ca985fd4835de7d057199dcb5bed2e81b328 /arch | |
parent | fe76c4207e4c0d63262896e31123c40d61ce98b5 (diff) | |
download | u-boot-b6a71e26c9caf0d2adbdbbd823498a006b994179.tar.gz u-boot-b6a71e26c9caf0d2adbdbbd823498a006b994179.tar.xz u-boot-b6a71e26c9caf0d2adbdbbd823498a006b994179.zip |
ARM: mach-meson: update SoC IDs
Update From Linux commits
- 240051cb833b ("soc: amlogic: meson-gx-socinfo: Add A1 and A113L IDs")
- 1d7c541b8a5b ("soc: amlogic: meson-gx-socinfo: Add S905X3 ID for VIM3L")
- fdfc6997bd08 ("soc: amlogic: meson-gx-socinfo: Fix S905D3 ID for VIM3L")
- d16d0481e6ba ("soc: amlogic: meson-gx-socinfo: Fix S905X3 and S905D3 ID's")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-meson/board-info.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/mach-meson/board-info.c b/arch/arm/mach-meson/board-info.c index 3abb27e03b..e61d1adb10 100644 --- a/arch/arm/mach-meson/board-info.c +++ b/arch/arm/mach-meson/board-info.c @@ -38,6 +38,7 @@ static const struct meson_gx_soc_id { { "G12A", 0x28 }, { "G12B", 0x29 }, { "SM1", 0x2b }, + { "A1", 0x2c }, }; static const struct meson_gx_package_id { @@ -65,7 +66,11 @@ static const struct meson_gx_package_id { { "S905X2", 0x28, 0x40, 0xf0 }, { "A311D", 0x29, 0x10, 0xf0 }, { "S922X", 0x29, 0x40, 0xf0 }, - { "S905X3", 0x2b, 0x5, 0xf }, + { "S905D3", 0x2b, 0x4, 0xf5 }, + { "S905X3", 0x2b, 0x5, 0xf5 }, + { "S905X3", 0x2b, 0x10, 0x3f }, + { "S905D3", 0x2b, 0x30, 0x3f }, + { "A113L", 0x2c, 0x0, 0xf8 }, }; DECLARE_GLOBAL_DATA_PTR; |