Path: blob/master/Documentation/devicetree/bindings/clock/allwinner,sun9i-a80-usb-clks.yaml
26308 views
# SPDX-License-Identifier: GPL-2.0+1%YAML 1.22---3$id: http://devicetree.org/schemas/clock/allwinner,sun9i-a80-usb-clks.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Allwinner A80 USB Clock Controller78maintainers:9- Chen-Yu Tsai <wens@csie.org>10- Maxime Ripard <mripard@kernel.org>1112properties:13"#clock-cells":14const: 11516"#reset-cells":17const: 11819compatible:20const: allwinner,sun9i-a80-usb-clks2122reg:23maxItems: 12425clocks:26items:27- description: Bus Clock28- description: High Frequency Oscillator2930clock-names:31items:32- const: bus33- const: hosc3435required:36- "#clock-cells"37- "#reset-cells"38- compatible39- reg40- clocks41- clock-names4243additionalProperties: false4445examples:46- |47#include <dt-bindings/clock/sun9i-a80-ccu.h>4849usb_clocks: clock@a08000 {50compatible = "allwinner,sun9i-a80-usb-clks";51reg = <0x00a08000 0x8>;52clocks = <&ccu CLK_BUS_USB>, <&osc24M>;53clock-names = "bus", "hosc";54#clock-cells = <1>;55#reset-cells = <1>;56};5758...596061