Skip to content

Commit d2bfb99

Browse files
dt-bindings: display: Add Sitronix ST7567 LCD Controller
Sitronix ST7567 is a monochrome Dot Matrix LCD Controller. Reviewed-by: Rob Herring (Arm) <[email protected]> Reviewed-by: Marcus Folkesson <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Javier Martinez Canillas <[email protected]>
1 parent d9ace6d commit d2bfb99

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/display/sitronix,st7567.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Sitronix ST7567 Display Controller
8+
9+
maintainers:
10+
- Javier Martinez Canillas <[email protected]>
11+
12+
description:
13+
Sitronix ST7567 is a driver and controller for monochrome
14+
dot matrix LCD panels.
15+
16+
allOf:
17+
- $ref: panel/panel-common.yaml#
18+
19+
properties:
20+
compatible:
21+
const: sitronix,st7567
22+
23+
reg:
24+
maxItems: 1
25+
26+
width-mm: true
27+
height-mm: true
28+
panel-timing: true
29+
30+
required:
31+
- compatible
32+
- reg
33+
- width-mm
34+
- height-mm
35+
- panel-timing
36+
37+
additionalProperties: false
38+
39+
examples:
40+
- |
41+
i2c {
42+
#address-cells = <1>;
43+
#size-cells = <0>;
44+
45+
display@3f {
46+
compatible = "sitronix,st7567";
47+
reg = <0x3f>;
48+
width-mm = <37>;
49+
height-mm = <27>;
50+
51+
panel-timing {
52+
hactive = <128>;
53+
vactive = <64>;
54+
hback-porch = <0>;
55+
vback-porch = <0>;
56+
clock-frequency = <0>;
57+
hfront-porch = <0>;
58+
hsync-len = <0>;
59+
vfront-porch = <0>;
60+
vsync-len = <0>;
61+
};
62+
};
63+
};

MAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7835,6 +7835,7 @@ F: drivers/gpu/drm/sitronix/st7586.c
78357835
DRM DRIVER FOR SITRONIX ST7571 PANELS
78367836
M: Marcus Folkesson <[email protected]>
78377837
S: Maintained
7838+
F: Documentation/devicetree/bindings/display/sitronix,st7567.yaml
78387839
F: Documentation/devicetree/bindings/display/sitronix,st7571.yaml
78397840
F: drivers/gpu/drm/sitronix/st7571-i2c.c
78407841

0 commit comments

Comments
 (0)