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/clock/cirrus,ep7209-clk.yaml# 5*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*833e5d42SEmmanuel Vadot 7*833e5d42SEmmanuel Vadottitle: Cirrus Logic CLPS711X Clock Controller 8*833e5d42SEmmanuel Vadot 9*833e5d42SEmmanuel Vadotmaintainers: 10*833e5d42SEmmanuel Vadot - Alexander Shiyan <shc_work@mail.ru> 11*833e5d42SEmmanuel Vadot 12*833e5d42SEmmanuel Vadotdescription: 13*833e5d42SEmmanuel Vadot See include/dt-bindings/clock/clps711x-clock.h for the full list of CLPS711X 14*833e5d42SEmmanuel Vadot clock IDs. 15*833e5d42SEmmanuel Vadot 16*833e5d42SEmmanuel Vadotproperties: 17*833e5d42SEmmanuel Vadot compatible: 18*833e5d42SEmmanuel Vadot items: 19*833e5d42SEmmanuel Vadot - const: cirrus,ep7312-clk 20*833e5d42SEmmanuel Vadot - const: cirrus,ep7209-clk 21*833e5d42SEmmanuel Vadot 22*833e5d42SEmmanuel Vadot reg: 23*833e5d42SEmmanuel Vadot maxItems: 1 24*833e5d42SEmmanuel Vadot 25*833e5d42SEmmanuel Vadot startup-frequency: 26*833e5d42SEmmanuel Vadot description: Factory set CPU startup frequency in HZ. 27*833e5d42SEmmanuel Vadot $ref: /schemas/types.yaml#/definitions/uint32 28*833e5d42SEmmanuel Vadot 29*833e5d42SEmmanuel Vadot "#clock-cells": 30*833e5d42SEmmanuel Vadot const: 1 31*833e5d42SEmmanuel Vadot 32*833e5d42SEmmanuel Vadotrequired: 33*833e5d42SEmmanuel Vadot - compatible 34*833e5d42SEmmanuel Vadot - reg 35*833e5d42SEmmanuel Vadot - startup-frequency 36*833e5d42SEmmanuel Vadot - "#clock-cells" 37*833e5d42SEmmanuel Vadot 38*833e5d42SEmmanuel VadotadditionalProperties: false 39*833e5d42SEmmanuel Vadot 40*833e5d42SEmmanuel Vadotexamples: 41*833e5d42SEmmanuel Vadot - | 42*833e5d42SEmmanuel Vadot clock-controller@80000000 { 43*833e5d42SEmmanuel Vadot compatible = "cirrus,ep7312-clk", "cirrus,ep7209-clk"; 44*833e5d42SEmmanuel Vadot reg = <0x80000000 0xc000>; 45*833e5d42SEmmanuel Vadot #clock-cells = <1>; 46*833e5d42SEmmanuel Vadot startup-frequency = <73728000>; 47*833e5d42SEmmanuel Vadot }; 48