Path: blob/master/Documentation/devicetree/bindings/display/brcm,bcm2835-dpi.yaml
26308 views
# SPDX-License-Identifier: GPL-2.01%YAML 1.22---3$id: http://devicetree.org/schemas/display/brcm,bcm2835-dpi.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Broadcom VC4 (VideoCore4) DPI Controller78maintainers:9- Eric Anholt <eric@anholt.net>1011properties:12compatible:13const: brcm,bcm2835-dpi1415reg:16maxItems: 11718clocks:19items:20- description: The core clock the unit runs on21- description: The pixel clock that feeds the pixelvalve2223clock-names:24items:25- const: core26- const: pixel2728port:29$ref: /schemas/graph.yaml#/properties/port30description:31Port node with a single endpoint connecting to the panel.3233required:34- compatible35- reg36- clocks37- clock-names38- port3940additionalProperties: false4142examples:43- |44#include <dt-bindings/clock/bcm2835.h>4546dpi: dpi@7e208000 {47compatible = "brcm,bcm2835-dpi";48reg = <0x7e208000 0x8c>;49clocks = <&clocks BCM2835_CLOCK_VPU>,50<&clocks BCM2835_CLOCK_DPI>;51clock-names = "core", "pixel";5253port {54dpi_out: endpoint {55remote-endpoint = <&panel_in>;56};57};58};5960...616263