diff options
author | Andrei Gherzan | 2019-07-24 15:39:07 +0100 |
---|---|---|
committer | Matthias Brugger | 2019-09-06 18:16:59 +0200 |
commit | 32a84c9e02674a594229e739836ebc38939b52a5 (patch) | |
tree | 4967bdc050f0b7c7f1c21e36938b57f0ccd2e5cb /board/raspberrypi/rpi | |
parent | c6bcf05fcd61fce1092b7fca945982a65d0c723b (diff) |
RPI: Add entry for Raspberry Pi 4 model B
The Raspebrry Pi 4 uses the new revision code scheme as documented by
the foundation. This change adds an entry for this board as well.
Signed-off-by: Andrei Gherzan <andrei@balena.io>
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Diffstat (limited to 'board/raspberrypi/rpi')
-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 7a6ca8f759e..b57df21f26b 100644 --- a/board/raspberrypi/rpi/rpi.c +++ b/board/raspberrypi/rpi/rpi.c @@ -148,6 +148,11 @@ static const struct rpi_model rpi_models_new_scheme[] = { DTB_DIR "bcm2837-rpi-cm3.dtb", false, }, + [0x11] = { + "4 Model B", + DTB_DIR "bcm2711-rpi-4-b.dtb", + true, + }, }; static const struct rpi_model rpi_models_old_scheme[] = { |