diff options
author | Jonathan Gray <jsg@jsg.id.au> | 2019-01-31 09:24:44 +1100 |
---|---|---|
committer | Matthias Brugger <mbrugger@suse.com> | 2019-02-15 12:49:13 +0100 |
commit | 7e2ae620e15ef578b8f2812ec21ec07fae6c1e2f (patch) | |
tree | 621eeed9caeb677d217286bbd39a98c2b9c18daa /board/raspberrypi | |
parent | 77195216ff1d1d75a7a988bf577f02340f28479d (diff) | |
download | u-boot-7e2ae620e15ef578b8f2812ec21ec07fae6c1e2f.tar.gz u-boot-7e2ae620e15ef578b8f2812ec21ec07fae6c1e2f.tar.bz2 u-boot-7e2ae620e15ef578b8f2812ec21ec07fae6c1e2f.zip |
rpi: add Compute Module 3+
Add Raspberry Pi Compute Module 3+ to list of models, the revision code
is 0x10 according to the list on raspberrypi.org.
v2: Use the same dtb name as CM3 as CM3+ is a drop in replacement
for CM3.
Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Diffstat (limited to 'board/raspberrypi')
-rw-r--r-- | board/raspberrypi/rpi/rpi.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c index 153a1fdcb7..617c892dde 100644 --- a/board/raspberrypi/rpi/rpi.c +++ b/board/raspberrypi/rpi/rpi.c @@ -143,6 +143,11 @@ static const struct rpi_model rpi_models_new_scheme[] = { DTB_DIR "bcm2837-rpi-3-a-plus.dtb", false, }, + [0x10] = { + "Compute Module 3+", + DTB_DIR "bcm2837-rpi-cm3.dtb", + false, + }, }; static const struct rpi_model rpi_models_old_scheme[] = { |