Path: blob/master/Documentation/devicetree/bindings/display/allwinner,sun8i-a83t-hdmi-phy.yaml
26308 views
# SPDX-License-Identifier: GPL-2.01%YAML 1.22---3$id: http://devicetree.org/schemas/display/allwinner,sun8i-a83t-hdmi-phy.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Allwinner A83t HDMI PHY78maintainers:9- Chen-Yu Tsai <wens@csie.org>10- Maxime Ripard <mripard@kernel.org>1112properties:13"#phy-cells":14const: 01516compatible:17enum:18- allwinner,sun8i-a83t-hdmi-phy19- allwinner,sun8i-h3-hdmi-phy20- allwinner,sun8i-r40-hdmi-phy21- allwinner,sun50i-a64-hdmi-phy22- allwinner,sun50i-h6-hdmi-phy2324reg:25maxItems: 12627clocks:28minItems: 229items:30- description: Bus Clock31- description: Module Clock32- description: Parent of the PHY clock33- description: Second possible parent of the PHY clock3435clock-names:36minItems: 237items:38- const: bus39- const: mod40- const: pll-041- const: pll-14243resets:44maxItems: 14546reset-names:47const: phy4849required:50- compatible51- reg52- clocks53- clock-names54- resets55- reset-names5657if:58properties:59compatible:60contains:61enum:62- allwinner,sun8i-r40-hdmi-phy6364then:65properties:66clocks:67minItems: 46869clock-names:70minItems: 47172else:73if:74properties:75compatible:76contains:77enum:78- allwinner,sun8i-h3-hdmi-phy79- allwinner,sun50i-a64-hdmi-phy8081then:82properties:83clocks:84minItems: 38586clock-names:87minItems: 38889else:90properties:91clocks:92maxItems: 29394clock-names:95maxItems: 29697additionalProperties: false9899examples:100- |101#include <dt-bindings/clock/sun8i-a83t-ccu.h>102#include <dt-bindings/reset/sun8i-a83t-ccu.h>103104hdmi_phy: hdmi-phy@1ef0000 {105compatible = "allwinner,sun8i-a83t-hdmi-phy";106reg = <0x01ef0000 0x10000>;107clocks = <&ccu CLK_BUS_HDMI>, <&ccu CLK_HDMI_SLOW>;108clock-names = "bus", "mod";109resets = <&ccu RST_BUS_HDMI0>;110reset-names = "phy";111#phy-cells = <0>;112};113114...115116117