diff options
| author | Filip Kokosiński <[email protected]> | 2026-02-16 19:44:52 +0100 |
|---|---|---|
| committer | Peter Robinson <[email protected]> | 2026-03-12 12:11:24 +0000 |
| commit | c15a791972548150d8c0616a53e70dada1d358ca (patch) | |
| tree | 53bbadbd8554928c166e994c99d168d12f6ca78b | |
| parent | e263f901c10427b6e91d6ab2c43a311e86d59ce9 (diff) | |
board/raspberrypi: add bcm2712d0-rpi-5-b for Raspberry Pi 5
This commit adds an FDT entry for the d0 stepping of the BCM2712 SoC.
This entry is used by the v1.1 revision of the board
(revision & 0x0f == 1).
Signed-off-by: Filip Kokosiński <[email protected]>
Reviewed-by: Peter Robinson <[email protected]>
Tested-by: Peter Robinson <[email protected]>
| -rw-r--r-- | board/raspberrypi/rpi/rpi.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c index ea887c00be4..7f69e5b6163 100644 --- a/board/raspberrypi/rpi/rpi.c +++ b/board/raspberrypi/rpi/rpi.c @@ -197,7 +197,10 @@ static const struct rpi_model rpi_models_new_scheme[] = { }, [0x17] = { "5 Model B", - FDTFILES(DTB_DIR "bcm2712-rpi-5-b.dtb"), + FDTFILES( + [0] = DTB_DIR "bcm2712-rpi-5-b.dtb", + [1] = DTB_DIR "bcm2712d0-rpi-5-b.dtb" + ), true, }, [0x18] = { |
