1*833e5d42SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*833e5d42SEmmanuel Vadot%YAML 1.2 3*833e5d42SEmmanuel Vadot--- 4*833e5d42SEmmanuel Vadot$id: http://devicetree.org/schemas/axis,artpec6-clkctrl.yaml# 5*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*833e5d42SEmmanuel Vadot 7*833e5d42SEmmanuel Vadottitle: Axis ARTPEC-6 clock controller 8*833e5d42SEmmanuel Vadot 9*833e5d42SEmmanuel Vadotmaintainers: 10*833e5d42SEmmanuel Vadot - Lars Persson <lars.persson@axis.com> 11*833e5d42SEmmanuel Vadot 12*833e5d42SEmmanuel Vadotproperties: 13*833e5d42SEmmanuel Vadot compatible: 14*833e5d42SEmmanuel Vadot const: axis,artpec6-clkctrl 15*833e5d42SEmmanuel Vadot 16*833e5d42SEmmanuel Vadot reg: 17*833e5d42SEmmanuel Vadot maxItems: 1 18*833e5d42SEmmanuel Vadot 19*833e5d42SEmmanuel Vadot "#clock-cells": 20*833e5d42SEmmanuel Vadot const: 1 21*833e5d42SEmmanuel Vadot 22*833e5d42SEmmanuel Vadot clocks: 23*833e5d42SEmmanuel Vadot minItems: 1 24*833e5d42SEmmanuel Vadot items: 25*833e5d42SEmmanuel Vadot - description: external 50 MHz oscillator. 26*833e5d42SEmmanuel Vadot - description: optional audio reference clock. 27*833e5d42SEmmanuel Vadot - description: fractional audio clock divider 0. 28*833e5d42SEmmanuel Vadot - description: fractional audio clock divider 1. 29*833e5d42SEmmanuel Vadot 30*833e5d42SEmmanuel Vadot clock-names: 31*833e5d42SEmmanuel Vadot minItems: 1 32*833e5d42SEmmanuel Vadot items: 33*833e5d42SEmmanuel Vadot - const: sys_refclk 34*833e5d42SEmmanuel Vadot - const: i2s_refclk 35*833e5d42SEmmanuel Vadot - const: frac_clk0 36*833e5d42SEmmanuel Vadot - const: frac_clk1 37*833e5d42SEmmanuel Vadot 38*833e5d42SEmmanuel Vadotrequired: 39*833e5d42SEmmanuel Vadot - compatible 40*833e5d42SEmmanuel Vadot - reg 41*833e5d42SEmmanuel Vadot - "#clock-cells" 42*833e5d42SEmmanuel Vadot - clocks 43*833e5d42SEmmanuel Vadot - clock-names 44*833e5d42SEmmanuel Vadot 45*833e5d42SEmmanuel VadotadditionalProperties: false 46*833e5d42SEmmanuel Vadot 47*833e5d42SEmmanuel Vadotexamples: 48*833e5d42SEmmanuel Vadot - | 49*833e5d42SEmmanuel Vadot clock-controller@f8000000 { 50*833e5d42SEmmanuel Vadot compatible = "axis,artpec6-clkctrl"; 51*833e5d42SEmmanuel Vadot reg = <0xf8000000 0x48>; 52*833e5d42SEmmanuel Vadot #clock-cells = <1>; 53*833e5d42SEmmanuel Vadot clocks = <&ext_clk>; 54*833e5d42SEmmanuel Vadot clock-names = "sys_refclk"; 55*833e5d42SEmmanuel Vadot }; 56