Skip to content

Commit 0f10f52

Browse files
mathewb64pelwell
authored andcommitted
overlays: Add nospi10
Add an overlay so spi10 can be disabled on Raspberry Pi 5. This allows the firmware to continue to access EEPROM after boot so that AB firmware updates can be performed. Signed-off-by: Mathew Blowers <mathew.blowers@raspberrypi.com>
1 parent 8c0531c commit 0f10f52

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

arch/arm/boot/dts/overlays/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ dtbo-$(CONFIG_ARCH_BCM2835) += \
195195
mlx90640.dtbo \
196196
mmc.dtbo \
197197
mz61581.dtbo \
198+
nospi10.dtbo \
198199
ov2311.dtbo \
199200
ov5647.dtbo \
200201
ov64a40.dtbo \

arch/arm/boot/dts/overlays/README

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3705,6 +3705,12 @@ Params: speed Display SPI bus speed
37053705
xohms Touchpanel sensitivity (X-plate resistance)
37063706

37073707

3708+
Name: nospi10
3709+
Info: Disable the spi10 device on Pi5.
3710+
Load: dtoverlay=nospi10
3711+
Params: <None>
3712+
3713+
37083714
Name: ov2311
37093715
Info: Omnivision OV2311 camera module.
37103716
Uses Unicam 1, which is the standard camera connector on most Pi
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/dts-v1/;
2+
/plugin/;
3+
4+
/ {
5+
compatible = "brcm,bcm2712";
6+
7+
fragment@0 {
8+
target = <&spi10>;
9+
__overlay__ {
10+
status = "disabled";
11+
};
12+
};
13+
};

0 commit comments

Comments
 (0)