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]> --- board/raspberrypi/rpi/rpi.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c index 1b404b448f3..3d61d08f3a4 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] = { -- 2.51.2

