diff mbox series

[U-Boot] rpi: add 3 Model A+

Message ID 20181116120739.51767-1-jsg@jsg.id.au
State Accepted
Commit d61cf138bce890b0b79745e48a908062bc36b99f
Delegated to: Alexander Graf
Headers show
Series [U-Boot] rpi: add 3 Model A+ | expand

Commit Message

Jonathan Gray Nov. 16, 2018, 12:07 p.m. UTC
Add Raspberry Pi 3 Model A+ to list of models, the revision code is 0xE
according to the list on raspberrypi.org.

Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
---
 board/raspberrypi/rpi/rpi.c | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Alexander Graf Dec. 2, 2018, 10:03 p.m. UTC | #1
> Add Raspberry Pi 3 Model A+ to list of models, the revision code is 0xE
> according to the list on raspberrypi.org.
> 
> Signed-off-by: Jonathan Gray <jsg@jsg.id.au>

Thanks, applied to rpi-next

Alex
diff mbox series

Patch

diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c
index 5062486311..153a1fdcb7 100644
--- a/board/raspberrypi/rpi/rpi.c
+++ b/board/raspberrypi/rpi/rpi.c
@@ -138,6 +138,11 @@  static const struct rpi_model rpi_models_new_scheme[] = {
 		DTB_DIR "bcm2837-rpi-3-b-plus.dtb",
 		true,
 	},
+	[0xE] = {
+		"3 Model A+",
+		DTB_DIR "bcm2837-rpi-3-a-plus.dtb",
+		false,
+	},
 };
 
 static const struct rpi_model rpi_models_old_scheme[] = {