]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
rpi: Add identifiers for the new RPi 5 series
authorPeter Robinson <pbrobinson@gmail.com>
Sun, 29 Dec 2024 14:46:05 +0000 (14:46 +0000)
committerPeter Robinson <pbrobinson@gmail.com>
Thu, 13 Mar 2025 11:06:16 +0000 (11:06 +0000)
The Raspberry Pi foundation have released the Raspberry
Pi 500, CM5 an CM5 lite devices so add the assoicated
revision identifers so we can detect them.

Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
Acked-by: Matthias Brugger <mbrugger@suse.com>
board/raspberrypi/rpi/rpi.c

index aa39afa338a75a6a54ab9a0640b9fba14f479f92..4d546892842ac746b2ff0c09cc8c9f31710fe627 100644 (file)
@@ -193,6 +193,21 @@ static const struct rpi_model rpi_models_new_scheme[] = {
                DTB_DIR "bcm2712-rpi-5-b.dtb",
                true,
        },
+       [0x18] = {
+               "Compute Module 5",
+               DTB_DIR "bcm2712-rpi-cm5-cm5io.dtb",
+               true,
+       },
+       [0x19] = {
+               "500",
+               DTB_DIR "bcm2712-rpi-500.dtb",
+               true,
+       },
+       [0x1A] = {
+               "Compute Module 5 Lite",
+               DTB_DIR "bcm2712-rpi-cm5l-cm5io.dtb",
+               true,
+       },
 };
 
 static const struct rpi_model rpi_models_old_scheme[] = {