Path: blob/main/sys/contrib/device-tree/Bindings/display/arm,hdlcd.txt
48375 views
ARM HDLCD12This is a display controller found on several development platforms produced3by ARM Ltd and in more modern of its' Fast Models. The HDLCD is an RGB4streamer that reads the data from a framebuffer and sends it to a single5digital encoder (DVI or HDMI).67Required properties:8- compatible: "arm,hdlcd"9- reg: Physical base address and length of the controller's registers.10- interrupts: One interrupt used by the display controller to notify the11interrupt controller when any of the interrupt sources programmed in12the interrupt mask register have activated.13- clocks: A list of phandle + clock-specifier pairs, one for each14entry in 'clock-names'.15- clock-names: A list of clock names. For HDLCD it should contain:16- "pxlclk" for the clock feeding the output PLL of the controller.1718Required sub-nodes:19- port: The HDLCD connection to an encoder chip. The connection is modeled20using the OF graph bindings specified in21Documentation/devicetree/bindings/graph.txt.2223Optional properties:24- memory-region: phandle to a node describing memory (see25Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt) to be26used for the framebuffer; if not present, the framebuffer may be located27anywhere in memory.282930Example:3132/ {33...3435hdlcd@2b000000 {36compatible = "arm,hdlcd";37reg = <0 0x2b000000 0 0x1000>;38interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>;39clocks = <&oscclk5>;40clock-names = "pxlclk";41port {42hdlcd_output: endpoint@0 {43remote-endpoint = <&hdmi_enc_input>;44};45};46};4748/* HDMI encoder on I2C bus */49i2c@7ffa0000 {50....51hdmi-transmitter@70 {52compatible = ".....";53reg = <0x70>;54port@0 {55hdmi_enc_input: endpoint {56remote-endpoint = <&hdlcd_output>;57};5859hdmi_enc_output: endpoint {60remote-endpoint = <&hdmi_1_port>;61};62};63};6465};6667hdmi1: connector@1 {68compatible = "hdmi-connector";69type = "a";70port {71hdmi_1_port: endpoint {72remote-endpoint = <&hdmi_enc_output>;73};74};75};7677...78};798081