Path: blob/main/sys/contrib/device-tree/Bindings/display/arm,malidp.txt
48375 views
ARM Mali-DP12The following bindings apply to a family of Display Processors sold as3licensable IP by ARM Ltd. The bindings describe the Mali DP500, DP550 and4DP650 processors that offer multiple composition layers, support for5rotation and scaling output.67Required properties:8- compatible: should be one of9"arm,mali-dp500"10"arm,mali-dp550"11"arm,mali-dp650"12depending on the particular implementation present in the hardware13- reg: Physical base address and size of the block of registers used by14the processor.15- interrupts: Interrupt list, as defined in ../interrupt-controller/interrupts.txt,16interrupt client nodes.17- interrupt-names: name of the engine inside the processor that will18use the corresponding interrupt. Should be one of "DE" or "SE".19- clocks: A list of phandle + clock-specifier pairs, one for each entry20in 'clock-names'21- clock-names: A list of clock names. It should contain:22- "pclk": for the APB interface clock23- "aclk": for the AXI interface clock24- "mclk": for the main processor clock25- "pxlclk": for the pixel clock feeding the output PLL of the processor.26- arm,malidp-output-port-lines: Array of u8 values describing the number27of output lines per channel (R, G and B).2829Required sub-nodes:30- port: The Mali DP connection to an encoder input port. The connection31is modelled using the OF graph bindings specified in32Documentation/devicetree/bindings/graph.txt3334Optional properties:35- memory-region: phandle to a node describing memory (see36Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt)37to be used for the framebuffer; if not present, the framebuffer may38be located anywhere in memory.39- arm,malidp-arqos-high-level: integer of u32 value describing the ARQoS40levels of DP500's QoS signaling.414243Example:4445/ {46...4748dp0: malidp@6f200000 {49compatible = "arm,mali-dp650";50reg = <0 0x6f200000 0 0x20000>;51memory-region = <&display_reserved>;52interrupts = <0 168 IRQ_TYPE_LEVEL_HIGH>,53<0 168 IRQ_TYPE_LEVEL_HIGH>;54interrupt-names = "DE", "SE";55clocks = <&oscclk2>, <&fpgaosc0>, <&fpgaosc1>, <&fpgaosc1>;56clock-names = "pxlclk", "mclk", "aclk", "pclk";57arm,malidp-output-port-lines = /bits/ 8 <8 8 8>;58arm,malidp-arqos-high-level = <0xd000d000>;59port {60dp0_output: endpoint {61remote-endpoint = <&tda998x_2_input>;62};63};64};6566...67};686970