Path: blob/master/Documentation/devicetree/bindings/display/brcm,bcm2835-hdmi.yaml
26308 views
# SPDX-License-Identifier: GPL-2.01%YAML 1.22---3$id: http://devicetree.org/schemas/display/brcm,bcm2835-hdmi.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Broadcom VC4 (VideoCore4) HDMI Controller78maintainers:9- Eric Anholt <eric@anholt.net>1011properties:12compatible:13const: brcm,bcm2835-hdmi1415reg:16items:17- description: HDMI register range18- description: HD register range1920interrupts:21minItems: 22223clocks:24items:25- description: The pixel clock26- description: The HDMI state machine clock2728clock-names:29items:30- const: pixel31- const: hdmi3233ddc:34$ref: /schemas/types.yaml#/definitions/phandle35description: >36Phandle of the I2C controller used for DDC EDID probing3738hpd-gpios:39maxItems: 140description: >41The GPIO pin for the HDMI hotplug detect (if it doesn't appear42as an interrupt/status bit in the HDMI controller itself)4344dmas:45maxItems: 146description: >47Should contain one entry pointing to the DMA channel used to48transfer audio data.4950dma-names:51const: audio-rx5253power-domains:54maxItems: 15556required:57- compatible58- reg59- interrupts60- clocks61- ddc6263additionalProperties: false6465examples:66- |67#include <dt-bindings/clock/bcm2835.h>68#include <dt-bindings/gpio/gpio.h>6970hdmi: hdmi@7e902000 {71compatible = "brcm,bcm2835-hdmi";72reg = <0x7e902000 0x600>,73<0x7e808000 0x100>;74interrupts = <2 8>, <2 9>;75ddc = <&i2c2>;76hpd-gpios = <&gpio 46 GPIO_ACTIVE_HIGH>;77clocks = <&clocks BCM2835_PLLH_PIX>,78<&clocks BCM2835_CLOCK_HSM>;79clock-names = "pixel", "hdmi";80};8182...838485