mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 10:46:47 +07:00
3b13866869
* omap: fix hdmi audio configuration issue * ssd1307fb: add ssd1309 support * tridentfb: support DDC * gxt4500: enable support for non-PPC platforms -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJWQdTmAAoJEPo9qoy8lh71X6EP/2nevzMgb3+9k0udX11AE9lJ PDVv9I5lPI7qOcQ3Lyi5Ke55KW7PcPHdbRew9pAumlbm79DSFb0Be6b1xh+94g4u nE7Bgi+5AJlHVcDLQbJCBZHD1ADv6UdQrRUuVT9jWTtoAPxHnzuEwpt77kT62VMK LAYObUId+h+SRWurKy5nRlVIzF8pykvB/QL0mgy1UqsQwGe8/9jVkmwhDlynUDxP c1LXoBlLEZ/SyXn1lXoGbAbmV3H7oYe/0Dv/dbKqm3J7V4FR2Jo/DJBba7Zft9li 3p6Wn5OqoXDsPMzIwPMtlPkYiw1kwgk2e1EpIy2RobugTR82YOaTYA+sNjl1lOqe DNEL06JPUANCKvlZx+OZTPbRagREWIaDzmGYhbn2l7+XpguqJ7oU7VO34x1eTIsI T42Xmxte5aPe24LtrONmZ7EpArTF5VRbuf9NVw0+T0TDpaXr/C3N+3s3bVgPnUgw SZ8fKSVGGzXgP6SxsVOnu/k4zaNvTO7AwFYZV3kC1VqM3jXp/1eMGC7SH4CTXMht AP5IcHMhLFGrH5aOrqKE3gPeenzZIwKe9JsKnEojiSU+UXxmxax37K5rjjpevzrL IBIKj79mzJ5Y7/0ZxiDNq6goPywbMUtipDEAIQGIMOefywI3q7qXT6fjjTrPbiC3 Nc7/b1ZqEXYYfMrMLzUl =zDAU -----END PGP SIGNATURE----- Merge tag 'fbdev-4.4' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux Pull fbdev updates from Tomi Valkeinen: - omap: fix hdmi audio configuration issue - ssd1307fb: add ssd1309 support - tridentfb: support DDC - gxt4500: enable support for non-PPC platforms * tag 'fbdev-4.4' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux: radeonfb: Deinline large functions gxt4500: enable panning gxt4500: Use arch_phys_wc_* for framebuffer gxt4500: fix color order gxt4500: fix 16bpp 565 mode gxt4500: enable on non-PPC architectures tridentfb: Add DDC support fb_ddc: Allow I2C adapters without SCL read capability fbdev: ssd1307fb: add ssd1309 support fbdev: ssd1307fb: alphabetize headers video/omap: remove invalid check OMAPDSS: hdmi: Reconfigure and restart audio when display is enabled
51 lines
2.0 KiB
Plaintext
51 lines
2.0 KiB
Plaintext
* Solomon SSD1307 Framebuffer Driver
|
|
|
|
Required properties:
|
|
- compatible: Should be "solomon,<chip>fb-<bus>". The only supported bus for
|
|
now is i2c, and the supported chips are ssd1305, ssd1306, ssd1307 and
|
|
ssd1309.
|
|
- reg: Should contain address of the controller on the I2C bus. Most likely
|
|
0x3c or 0x3d
|
|
- pwm: Should contain the pwm to use according to the OF device tree PWM
|
|
specification [0]. Only required for the ssd1307.
|
|
- reset-gpios: Should contain the GPIO used to reset the OLED display
|
|
- solomon,height: Height in pixel of the screen driven by the controller
|
|
- solomon,width: Width in pixel of the screen driven by the controller
|
|
- solomon,page-offset: Offset of pages (band of 8 pixels) that the screen is
|
|
mapped to.
|
|
|
|
Optional properties:
|
|
- reset-active-low: Is the reset gpio is active on physical low?
|
|
- solomon,segment-no-remap: Display needs normal (non-inverted) data column
|
|
to segment mapping
|
|
- solomon,com-seq: Display uses sequential COM pin configuration
|
|
- solomon,com-lrremap: Display uses left-right COM pin remap
|
|
- solomon,com-invdir: Display uses inverted COM pin scan direction
|
|
- solomon,com-offset: Number of the COM pin wired to the first display line
|
|
- solomon,prechargep1: Length of deselect period (phase 1) in clock cycles.
|
|
- solomon,prechargep2: Length of precharge period (phase 2) in clock cycles.
|
|
This needs to be the higher, the higher the capacitance
|
|
of the OLED's pixels is
|
|
|
|
[0]: Documentation/devicetree/bindings/pwm/pwm.txt
|
|
|
|
Examples:
|
|
ssd1307: oled@3c {
|
|
compatible = "solomon,ssd1307fb-i2c";
|
|
reg = <0x3c>;
|
|
pwms = <&pwm 4 3000>;
|
|
reset-gpios = <&gpio2 7>;
|
|
reset-active-low;
|
|
};
|
|
|
|
ssd1306: oled@3c {
|
|
compatible = "solomon,ssd1306fb-i2c";
|
|
reg = <0x3c>;
|
|
pwms = <&pwm 4 3000>;
|
|
reset-gpios = <&gpio2 7>;
|
|
reset-active-low;
|
|
solomon,com-lrremap;
|
|
solomon,com-invdir;
|
|
solomon,com-offset = <32>;
|
|
};
|