summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2016-01-29 09:35:52 +0100
committerTom Rini <trini@konsulko.com>2016-02-08 10:10:38 -0500
commit7443a9c40568179492af453841fbecc69d08071b (patch)
tree47821fed49f6400fc64612600ab12ab99528506c /board
parentdba060ce06f9e567841109eb85f6eb752a537fd6 (diff)
downloadtalos-obmc-uboot-7443a9c40568179492af453841fbecc69d08071b.tar.gz
talos-obmc-uboot-7443a9c40568179492af453841fbecc69d08071b.zip
rpi: fix up Model B entries
The P5 header was not present on "Model B" any board prior to Revision 2.0, there's no need for a separate device tree. Also, it looks like "rev2" is incorrectly used to only cover the 512MiB memory models; there also were 256MiB 2.0 boards. I don't have all of the boards to check this, I'm following this table: http://elinux.org/RPi_HardwareHistory#Board_Revision_History Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Diffstat (limited to 'board')
-rw-r--r--board/raspberrypi/rpi/rpi.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c
index 3e52116f67..89d78cc6c4 100644
--- a/board/raspberrypi/rpi/rpi.c
+++ b/board/raspberrypi/rpi/rpi.c
@@ -115,28 +115,28 @@ static const struct rpi_model rpi_models_new_scheme[] = {
static const struct rpi_model rpi_models_old_scheme[] = {
[0x2] = {
- "Model B (no P5)",
- "bcm2835-rpi-b-i2c0.dtb",
+ "Model B",
+ "bcm2835-rpi-b.dtb",
true,
},
[0x3] = {
- "Model B (no P5)",
- "bcm2835-rpi-b-i2c0.dtb",
+ "Model B",
+ "bcm2835-rpi-b.dtb",
true,
},
[0x4] = {
- "Model B",
- "bcm2835-rpi-b.dtb",
+ "Model B rev2",
+ "bcm2835-rpi-b-rev2.dtb",
true,
},
[0x5] = {
- "Model B",
- "bcm2835-rpi-b.dtb",
+ "Model B rev2",
+ "bcm2835-rpi-b-rev2.dtb",
true,
},
[0x6] = {
- "Model B",
- "bcm2835-rpi-b.dtb",
+ "Model B rev2",
+ "bcm2835-rpi-b-rev2.dtb",
true,
},
[0x7] = {
OpenPOWER on IntegriCloud