Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | # SPDX-License-Identifier: GPL-2.0 %YAML 1.2 --- $id: http://devicetree.org/schemas/display/brcm,bcm2835-hdmi.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Broadcom VC4 (VideoCore4) HDMI Controller maintainers: - Eric Anholt <eric@anholt.net> properties: compatible: const: brcm,bcm2835-hdmi reg: items: - description: HDMI register range - description: HD register range interrupts: minItems: 2 clocks: items: - description: The pixel clock - description: The HDMI state machine clock clock-names: items: - const: pixel - const: hdmi ddc: $ref: /schemas/types.yaml#/definitions/phandle description: > Phandle of the I2C controller used for DDC EDID probing hpd-gpios: maxItems: 1 description: > The GPIO pin for the HDMI hotplug detect (if it doesn't appear as an interrupt/status bit in the HDMI controller itself) dmas: maxItems: 1 description: > Should contain one entry pointing to the DMA channel used to transfer audio data. dma-names: const: audio-rx power-domains: maxItems: 1 required: - compatible - reg - interrupts - clocks - ddc additionalProperties: false examples: - | #include <dt-bindings/clock/bcm2835.h> #include <dt-bindings/gpio/gpio.h> hdmi: hdmi@7e902000 { compatible = "brcm,bcm2835-hdmi"; reg = <0x7e902000 0x600>, <0x7e808000 0x100>; interrupts = <2 8>, <2 9>; ddc = <&i2c2>; hpd-gpios = <&gpio 46 GPIO_ACTIVE_HIGH>; clocks = <&clocks BCM2835_PLLH_PIX>, <&clocks BCM2835_CLOCK_HSM>; clock-names = "pixel", "hdmi"; }; ... |