Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions arch/arm/boot/dts/overlays/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ dtbo-$(CONFIG_ARCH_BCM2835) += \
mlx90640.dtbo \
mmc.dtbo \
mz61581.dtbo \
nospi10.dtbo \
ov2311.dtbo \
ov5647.dtbo \
ov64a40.dtbo \
Expand Down
6 changes: 6 additions & 0 deletions arch/arm/boot/dts/overlays/README
Original file line number Diff line number Diff line change
Expand Up @@ -3699,6 +3699,12 @@ Params: speed Display SPI bus speed
xohms Touchpanel sensitivity (X-plate resistance)


Name: nospi10
Info: Disable the spi10 device on Pi5.
Load: dtoverlay=nospi10
Params: <None>


Name: ov2311
Info: Omnivision OV2311 camera module.
Uses Unicam 1, which is the standard camera connector on most Pi
Expand Down
13 changes: 13 additions & 0 deletions arch/arm/boot/dts/overlays/nospi10-overlay.dts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/dts-v1/;
/plugin/;

/ {
compatible = "brcm,bcm2712";

fragment@0 {
target = <&spi10>;
__overlay__ {
status = "disabled";
};
};
};
Loading