diff options
author | Alexander Graf <agraf@suse.de> | 2018-03-15 15:05:37 +0100 |
---|---|---|
committer | Seung-Woo Kim <sw0312.kim@samsung.com> | 2018-09-03 13:24:50 +0900 |
commit | 35823c52c92f162d85e2d1b895f96966549f25a1 (patch) | |
tree | 90c7f683e05d87dea08a811b74bc5fb0a38d0765 | |
parent | ff6523aa90ec3985de64b9702a59fb2fcf2fed06 (diff) | |
download | u-boot-35823c52c92f162d85e2d1b895f96966549f25a1.tar.gz u-boot-35823c52c92f162d85e2d1b895f96966549f25a1.tar.bz2 u-boot-35823c52c92f162d85e2d1b895f96966549f25a1.zip |
rpi: Add identifier for the new RPi3 B+
The Raspberr Pi Foundation released a new RPi3 version which we want
to detect as well, so we can enable ethernet on it and know the correct
device tree file name.
Add an identifier for it.
Signed-off-by: Alexander Graf <agraf@suse.de>
[sw0312.kim: cherry-pick from mainline to identify rpi3 b+]
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Change-Id: I1c57f8bd9865366bfee5b66b5a17dcc82b022448
-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 07ad4d552f..2daff59a50 100644 --- a/board/raspberrypi/rpi/rpi.c +++ b/board/raspberrypi/rpi/rpi.c @@ -137,6 +137,11 @@ static const struct rpi_model rpi_models_new_scheme[] = { DTB_DIR "bcm2835-rpi-zero.dtb", false, }, + [0xD] = { + "3 Model B+", + DTB_DIR "bcm2837-rpi-3-b-plus.dtb", + true, + }, }; static const struct rpi_model rpi_models_old_scheme[] = { |