Commit 787affb41b6f0cca797a36383705f30ce9ca5c25

Authored by Stephen Warren
Committed by Tom Rini
1 parent bf71a29c8e

ARM: rpi: add a couple more revision IDs

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>

Showing 2 changed files with 13 additions and 1 deletions Side-by-side Diff

arch/arm/mach-bcm283x/include/mach/mbox.h
... ... @@ -132,7 +132,7 @@
132 132 * 0x2..0xf from:
133 133 * http://raspberryalphaomega.org.uk/2013/02/06/automatic-raspberry-pi-board-revision-detection-model-a-b1-and-b2/
134 134 * http://www.raspberrypi.org/forums/viewtopic.php?f=63&t=32733
135   - * 0x10, 0x11 from swarren's testing
  135 + * http://git.drogon.net/?p=wiringPi;a=blob_plain;f=wiringPi/wiringPi.c;hb=5edd177112c99416f68ba3e8c6c4db6ed942e796
136 136 */
137 137 #define BCM2835_BOARD_REV_B_I2C0_2 0x2
138 138 #define BCM2835_BOARD_REV_B_I2C0_3 0x3
... ... @@ -148,6 +148,8 @@
148 148 #define BCM2835_BOARD_REV_B_PLUS 0x10
149 149 #define BCM2835_BOARD_REV_CM 0x11
150 150 #define BCM2835_BOARD_REV_A_PLUS 0x12
  151 +#define BCM2835_BOARD_REV_B_PLUS_13 0x13
  152 +#define BCM2835_BOARD_REV_CM_14 0x14
151 153 #endif
152 154  
153 155 struct bcm2835_mbox_tag_get_board_rev {
board/raspberrypi/rpi/rpi.c
... ... @@ -165,6 +165,16 @@
165 165 "bcm2835-rpi-a-plus.dtb",
166 166 false,
167 167 },
  168 + [BCM2835_BOARD_REV_B_PLUS_13] = {
  169 + "Model B+",
  170 + "bcm2835-rpi-b-plus.dtb",
  171 + true,
  172 + },
  173 + [BCM2835_BOARD_REV_CM_14] = {
  174 + "Compute Module",
  175 + "bcm2835-rpi-cm.dtb",
  176 + false,
  177 + },
168 178 #endif
169 179 };
170 180