Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc
[linux-2.6-block.git] / Documentation / devicetree / bindings / display / exynos / samsung-fimd.txt
CommitLineData
76650b63
VS
1Device-Tree bindings for Samsung SoC display controller (FIMD)
2
3FIMD (Fully Interactive Mobile Display) is the Display Controller for the
4Samsung series of SoCs which transfers the image data from a video memory
5buffer to an external LCD interface.
6
7Required properties:
8- compatible: value should be one of the following
9 "samsung,s3c2443-fimd"; /* for S3C24XX SoCs */
10 "samsung,s3c6400-fimd"; /* for S3C64XX SoCs */
76650b63 11 "samsung,s5pv210-fimd"; /* for S5PV210 SoC */
d6ce7b58 12 "samsung,exynos3250-fimd"; /* for Exynos3250/3472 SoCs */
76650b63 13 "samsung,exynos4210-fimd"; /* for Exynos4 SoCs */
dcb622aa 14 "samsung,exynos4415-fimd"; /* for Exynos4415 SoC */
1feafd3a
CP
15 "samsung,exynos5250-fimd"; /* for Exynos5250 SoCs */
16 "samsung,exynos5420-fimd"; /* for Exynos5420/5422/5800 SoCs */
76650b63
VS
17
18- reg: physical base address and length of the FIMD registers set.
19
20- interrupt-parent: should be the phandle of the fimd controller's
21 parent interrupt controller.
22
23- interrupts: should contain a list of all FIMD IP block interrupts in the
24 order: FIFO Level, VSYNC, LCD_SYSTEM. The interrupt specifier
25 format depends on the interrupt controller used.
26
27- interrupt-names: should contain the interrupt names: "fifo", "vsync",
28 "lcd_sys", in the same order as they were listed in the interrupts
29 property.
30
31- pinctrl-0: pin control group to be used for this controller.
32
33- pinctrl-names: must contain a "default" entry.
34
35- clocks: must include clock specifiers corresponding to entries in the
36 clock-names property.
37
38- clock-names: list of clock names sorted in the same order as the clocks
39 property. Must contain "sclk_fimd" and "fimd".
40
41Optional Properties:
0da65870 42- power-domains: a phandle to FIMD power domain node.
1417f109
SP
43- samsung,invert-vden: video enable signal is inverted
44- samsung,invert-vclk: video clock signal is inverted
0e017a5b
AH
45- display-timings: timing settings for FIMD, as described in document [1].
46 Can be used in case timings cannot be provided otherwise
47 or to override timings provided by the panel.
8e1c06cf
YC
48- samsung,sysreg: handle to syscon used to control the system registers
49- i80-if-timings: timing configuration for lcd i80 interface support.
50 - cs-setup: clock cycles for the active period of address signal is enabled
51 until chip select is enabled.
52 If not specified, the default value(0) will be used.
53 - wr-setup: clock cycles for the active period of CS signal is enabled until
54 write signal is enabled.
55 If not specified, the default value(0) will be used.
56 - wr-active: clock cycles for the active period of CS is enabled.
57 If not specified, the default value(1) will be used.
58 - wr-hold: clock cycles for the active period of CS is disabled until write
59 signal is disabled.
60 If not specified, the default value(0) will be used.
61
62 The parameters are defined as:
63
64 VCLK(internal) __|??????|_____|??????|_____|??????|_____|??????|_____|??
65 : : : : :
66 Address Output --:<XXXXXXXXXXX:XXXXXXXXXXXX:XXXXXXXXXXXX:XXXXXXXXXXXX:XX
67 | cs-setup+1 | : : :
68 |<---------->| : : :
69 Chip Select ???????????????|____________:____________:____________|??
70 | wr-setup+1 | | wr-hold+1 |
71 |<---------->| |<---------->|
72 Write Enable ????????????????????????????|____________|???????????????
73 | wr-active+1|
74 |<---------->|
75 Video Data ----------------------------<XXXXXXXXXXXXXXXXXXXXXXXXX>--
0e017a5b
AH
76
77The device node can contain 'port' child nodes according to the bindings defined
78in [2]. The following are properties specific to those nodes:
79- reg: (required) port index, can be:
80 0 - for CAMIF0 input,
81 1 - for CAMIF1 input,
82 2 - for CAMIF2 input,
83 3 - for parallel output,
84 4 - for write-back interface
85
efdbd734 86[1]: Documentation/devicetree/bindings/display/display-timing.txt
0e017a5b 87[2]: Documentation/devicetree/bindings/media/video-interfaces.txt
76650b63
VS
88
89Example:
90
91SoC specific DT entry:
92
93 fimd@11c00000 {
94 compatible = "samsung,exynos4210-fimd";
95 interrupt-parent = <&combiner>;
96 reg = <0x11c00000 0x20000>;
97 interrupt-names = "fifo", "vsync", "lcd_sys";
98 interrupts = <11 0>, <11 1>, <11 2>;
99 clocks = <&clock 140>, <&clock 283>;
100 clock-names = "sclk_fimd", "fimd";
0da65870 101 power-domains = <&pd_lcd0>;
76650b63
VS
102 status = "disabled";
103 };
104
105Board specific DT entry:
106
107 fimd@11c00000 {
108 pinctrl-0 = <&lcd_clk &lcd_data24 &pwm1_out>;
109 pinctrl-names = "default";
110 status = "okay";
111 };