-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
overlays: Add ssd1306-spi, ssh1106-spi, ssd-1351-spi
Add overlays for SSD1306, SH1106 and SSD1351 based OLED displays. SH1106 is present in many 1.3 inch OLEDs and SSD1351 is present in 1.5 inch RGB OLEDs from AliExpress. This will load the staging fbtft drivers. Signed-off-by: Michael Kaplan <[email protected]>
- Loading branch information
1 parent
d8bf9fa
commit a85a5d1
Showing
5 changed files
with
289 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
* Device Tree overlay for SH1106 based SPI OLED display | ||
* | ||
*/ | ||
|
||
/dts-v1/; | ||
/plugin/; | ||
|
||
/ { | ||
compatible = "brcm,bcm2835"; | ||
|
||
fragment@0 { | ||
target = <&spi0>; | ||
__overlay__ { | ||
status = "okay"; | ||
}; | ||
}; | ||
|
||
fragment@1 { | ||
target = <&spidev0>; | ||
__overlay__ { | ||
status = "disabled"; | ||
}; | ||
}; | ||
|
||
fragment@2 { | ||
target = <&spidev1>; | ||
__overlay__ { | ||
status = "disabled"; | ||
}; | ||
}; | ||
|
||
fragment@3 { | ||
target = <&gpio>; | ||
__overlay__ { | ||
sh1106_pins: sh1106_pins { | ||
brcm,pins = <25 24>; | ||
brcm,function = <1 1>; /* out out */ | ||
}; | ||
}; | ||
}; | ||
|
||
fragment@4 { | ||
target = <&spi0>; | ||
__overlay__ { | ||
/* needed to avoid dtc warning */ | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
sh1106: sh1106@0{ | ||
compatible = "sinowealth,sh1106"; | ||
reg = <0>; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&sh1106_pins>; | ||
|
||
spi-max-frequency = <4000000>; | ||
bgr = <0>; | ||
bpp = <1>; | ||
rotate = <0>; | ||
fps = <25>; | ||
buswidth = <8>; | ||
reset-gpios = <&gpio 25 0>; | ||
dc-gpios = <&gpio 24 0>; | ||
debug = <0>; | ||
|
||
sinowealth,height = <64>; | ||
sinowealth,width = <128>; | ||
sinowealth,page-offset = <0>; | ||
}; | ||
}; | ||
}; | ||
|
||
__overrides__ { | ||
speed = <&sh1106>,"spi-max-frequency:0"; | ||
rotate = <&sh1106>,"rotate:0"; | ||
fps = <&sh1106>,"fps:0"; | ||
debug = <&sh1106>,"debug:0"; | ||
dc_pin = <&sh1106>,"dc-gpios:4", | ||
<&sh1106_pins>,"brcm,pins:4"; | ||
reset_pin = <&sh1106>,"reset-gpios:4", | ||
<&sh1106_pins>,"brcm,pins:0"; | ||
height = <&sh1106>,"sinowealth,height:0"; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
* Device Tree overlay for SSD1306 based SPI OLED display | ||
* | ||
*/ | ||
|
||
/dts-v1/; | ||
/plugin/; | ||
|
||
/ { | ||
compatible = "brcm,bcm2835"; | ||
|
||
fragment@0 { | ||
target = <&spi0>; | ||
__overlay__ { | ||
status = "okay"; | ||
}; | ||
}; | ||
|
||
fragment@1 { | ||
target = <&spidev0>; | ||
__overlay__ { | ||
status = "disabled"; | ||
}; | ||
}; | ||
|
||
fragment@2 { | ||
target = <&spidev1>; | ||
__overlay__ { | ||
status = "disabled"; | ||
}; | ||
}; | ||
|
||
fragment@3 { | ||
target = <&gpio>; | ||
__overlay__ { | ||
ssd1306_pins: ssd1306_pins { | ||
brcm,pins = <25 24>; | ||
brcm,function = <1 1>; /* out out */ | ||
}; | ||
}; | ||
}; | ||
|
||
fragment@4 { | ||
target = <&spi0>; | ||
__overlay__ { | ||
/* needed to avoid dtc warning */ | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
ssd1306: ssd1306@0{ | ||
compatible = "solomon,ssd1306"; | ||
reg = <0>; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&ssd1306_pins>; | ||
|
||
spi-max-frequency = <10000000>; | ||
bgr = <0>; | ||
bpp = <1>; | ||
rotate = <0>; | ||
fps = <25>; | ||
buswidth = <8>; | ||
reset-gpios = <&gpio 25 0>; | ||
dc-gpios = <&gpio 24 0>; | ||
debug = <0>; | ||
|
||
solomon,height = <64>; | ||
solomon,width = <128>; | ||
solomon,page-offset = <0>; | ||
}; | ||
}; | ||
}; | ||
|
||
__overrides__ { | ||
speed = <&ssd1306>,"spi-max-frequency:0"; | ||
rotate = <&ssd1306>,"rotate:0"; | ||
fps = <&ssd1306>,"fps:0"; | ||
debug = <&ssd1306>,"debug:0"; | ||
dc_pin = <&ssd1306>,"dc-gpios:4", | ||
<&ssd1306_pins>,"brcm,pins:4"; | ||
reset_pin = <&ssd1306>,"reset-gpios:4", | ||
<&ssd1306_pins>,"brcm,pins:0"; | ||
height = <&ssd1306>,"solomon,height:0"; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* Device Tree overlay for SSD1351 based SPI OLED display | ||
* | ||
*/ | ||
|
||
/dts-v1/; | ||
/plugin/; | ||
|
||
/ { | ||
compatible = "brcm,bcm2835"; | ||
|
||
fragment@0 { | ||
target = <&spi0>; | ||
__overlay__ { | ||
status = "okay"; | ||
}; | ||
}; | ||
|
||
fragment@1 { | ||
target = <&spidev0>; | ||
__overlay__ { | ||
status = "disabled"; | ||
}; | ||
}; | ||
|
||
fragment@2 { | ||
target = <&spidev1>; | ||
__overlay__ { | ||
status = "disabled"; | ||
}; | ||
}; | ||
|
||
fragment@3 { | ||
target = <&gpio>; | ||
__overlay__ { | ||
ssd1351_pins: ssd1351_pins { | ||
brcm,pins = <25 24>; | ||
brcm,function = <1 1>; /* out out */ | ||
}; | ||
}; | ||
}; | ||
|
||
fragment@4 { | ||
target = <&spi0>; | ||
__overlay__ { | ||
/* needed to avoid dtc warning */ | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
ssd1351: ssd1351@0{ | ||
compatible = "solomon,ssd1351"; | ||
reg = <0>; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&ssd1351_pins>; | ||
|
||
spi-max-frequency = <4500000>; | ||
bgr = <0>; | ||
bpp = <16>; | ||
rotate = <0>; | ||
fps = <25>; | ||
buswidth = <8>; | ||
reset-gpios = <&gpio 25 0>; | ||
dc-gpios = <&gpio 24 0>; | ||
debug = <0>; | ||
|
||
solomon,height = <128>; | ||
solomon,width = <128>; | ||
solomon,page-offset = <0>; | ||
}; | ||
}; | ||
}; | ||
|
||
__overrides__ { | ||
speed = <&ssd1351>,"spi-max-frequency:0"; | ||
rotate = <&ssd1351>,"rotate:0"; | ||
fps = <&ssd1351>,"fps:0"; | ||
debug = <&ssd1351>,"debug:0"; | ||
dc_pin = <&ssd1351>,"dc-gpios:4", | ||
<&ssd1351_pins>,"brcm,pins:4"; | ||
reset_pin = <&ssd1351>,"reset-gpios:4", | ||
<&ssd1351_pins>,"brcm,pins:0"; | ||
}; | ||
}; |