Path: blob/main/sys/contrib/device-tree/Bindings/display/exynos/exynos7-decon.txt
48524 views
Device-Tree bindings for Samsung Exynos7 SoC display controller (DECON)12DECON (Display and Enhancement Controller) is the Display Controller for the3Exynos7 series of SoCs which transfers the image data from a video memory4buffer to an external LCD interface.56Required properties:7- compatible: value should be "samsung,exynos7-decon";89- reg: physical base address and length of the DECON registers set.1011- interrupts: should contain a list of all DECON IP block interrupts in the12order: FIFO Level, VSYNC, LCD_SYSTEM. The interrupt specifier13format depends on the interrupt controller used.1415- interrupt-names: should contain the interrupt names: "fifo", "vsync",16"lcd_sys", in the same order as they were listed in the interrupts17property.1819- pinctrl-0: pin control group to be used for this controller.2021- pinctrl-names: must contain a "default" entry.2223- clocks: must include clock specifiers corresponding to entries in the24clock-names property.2526- clock-names: list of clock names sorted in the same order as the clocks27property. Must contain "pclk_decon0", "aclk_decon0",28"decon0_eclk", "decon0_vclk".29- i80-if-timings: timing configuration for lcd i80 interface support.3031Optional Properties:32- power-domains: a phandle to DECON power domain node.33- display-timings: timing settings for DECON, as described in document [1].34Can be used in case timings cannot be provided otherwise35or to override timings provided by the panel.3637[1]: Documentation/devicetree/bindings/display/panel/display-timing.txt3839Example:4041SoC specific DT entry:4243decon@13930000 {44compatible = "samsung,exynos7-decon";45interrupt-parent = <&combiner>;46reg = <0x13930000 0x1000>;47interrupt-names = "lcd_sys", "vsync", "fifo";48interrupts = <0 188 0>, <0 189 0>, <0 190 0>;49clocks = <&clock_disp PCLK_DECON_INT>,50<&clock_disp ACLK_DECON_INT>,51<&clock_disp SCLK_DECON_INT_ECLK>,52<&clock_disp SCLK_DECON_INT_EXTCLKPLL>;53clock-names = "pclk_decon0", "aclk_decon0", "decon0_eclk",54"decon0_vclk";55status = "disabled";56};5758Board specific DT entry:5960decon@13930000 {61pinctrl-0 = <&lcd_clk &pwm1_out>;62pinctrl-names = "default";63status = "okay";64};656667