Skip to content

Commit 2bc74f2

Browse files
authored
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 8057c4a commit 2bc74f2

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
@@ -3699,6 +3699,12 @@ Params: speed Display SPI bus speed
36993699
xohms Touchpanel sensitivity (X-plate resistance)
37003700

37013701

3702+
Name: nospi10
3703+
Info: Disable the spi10 device on Pi5.
3704+
Load: dtoverlay=nospi10
3705+
Params: <None>
3706+
3707+
37023708
Name: ov2311
37033709
Info: Omnivision OV2311 camera module.
37043710
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)