]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ARM: rpi: add a couple more revision IDs
authorStephen Warren <swarren@wwwdotorg.org>
Mon, 13 Apr 2015 03:43:25 +0000 (21:43 -0600)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 1 Sep 2015 12:40:03 +0000 (14:40 +0200)
According to Gordon Henderson's WiringPi library, there are some more
Pi revision IDs out there. Add support for them.

http://git.drogon.net/?p=wiringPi;a=blob_plain;f=wiringPi/wiringPi.c;hb=5edd177112c99416f68ba3e8c6c4db6ed942e796

At least ID 0x13 is out in the wild:

Reported-by: Chee-Yang Chau <cychau@gmail.com>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
arch/arm/mach-bcm283x/include/mach/mbox.h
board/raspberrypi/rpi/rpi.c

index 04bf480a5493173146863ac5344720474c517bdf..54d369c46c03094f7ad4633e8caa65cddba2c202 100644 (file)
@@ -132,7 +132,7 @@ struct bcm2835_mbox_tag_hdr {
  * 0x2..0xf from:
  * http://raspberryalphaomega.org.uk/2013/02/06/automatic-raspberry-pi-board-revision-detection-model-a-b1-and-b2/
  * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=32733
- * 0x10, 0x11 from swarren's testing
+ * http://git.drogon.net/?p=wiringPi;a=blob_plain;f=wiringPi/wiringPi.c;hb=5edd177112c99416f68ba3e8c6c4db6ed942e796
  */
 #define BCM2835_BOARD_REV_B_I2C0_2     0x2
 #define BCM2835_BOARD_REV_B_I2C0_3     0x3
@@ -148,6 +148,8 @@ struct bcm2835_mbox_tag_hdr {
 #define BCM2835_BOARD_REV_B_PLUS       0x10
 #define BCM2835_BOARD_REV_CM           0x11
 #define BCM2835_BOARD_REV_A_PLUS       0x12
+#define BCM2835_BOARD_REV_B_PLUS_13    0x13
+#define BCM2835_BOARD_REV_CM_14                0x14
 #endif
 
 struct bcm2835_mbox_tag_get_board_rev {
index a105953541bec89ee9759edfc7966af4327a34de..96fe87064533cd7797593f0001fe27cf578058e7 100644 (file)
@@ -165,6 +165,16 @@ static const struct {
                "bcm2835-rpi-a-plus.dtb",
                false,
        },
+       [BCM2835_BOARD_REV_B_PLUS_13] = {
+               "Model B+",
+               "bcm2835-rpi-b-plus.dtb",
+               true,
+       },
+       [BCM2835_BOARD_REV_CM_14] = {
+               "Compute Module",
+               "bcm2835-rpi-cm.dtb",
+               false,
+       },
 #endif
 };