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/marvell,dove-divider-clock.yaml# 5*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*833e5d42SEmmanuel Vadot 7*833e5d42SEmmanuel Vadottitle: Marvell Dove PLL Divider Clock 8*833e5d42SEmmanuel Vadot 9*833e5d42SEmmanuel Vadotmaintainers: 10*833e5d42SEmmanuel Vadot - Andrew Lunn <andrew@lunn.ch> 11*833e5d42SEmmanuel Vadot - Gregory Clement <gregory.clement@bootlin.com> 12*833e5d42SEmmanuel Vadot 13*833e5d42SEmmanuel Vadotdescription: > 14*833e5d42SEmmanuel Vadot Marvell Dove has a 2GHz PLL, which feeds into a set of dividers to provide 15*833e5d42SEmmanuel Vadot high speed clocks for a number of peripherals. These dividers are part of the 16*833e5d42SEmmanuel Vadot PMU, and thus this node should be a child of the PMU node. 17*833e5d42SEmmanuel Vadot 18*833e5d42SEmmanuel Vadot The following clocks are provided: 19*833e5d42SEmmanuel Vadot 20*833e5d42SEmmanuel Vadot ID Clock 21*833e5d42SEmmanuel Vadot ------------- 22*833e5d42SEmmanuel Vadot 0 AXI bus clock 23*833e5d42SEmmanuel Vadot 1 GPU clock 24*833e5d42SEmmanuel Vadot 2 VMeta clock 25*833e5d42SEmmanuel Vadot 3 LCD clock 26*833e5d42SEmmanuel Vadot 27*833e5d42SEmmanuel Vadotproperties: 28*833e5d42SEmmanuel Vadot compatible: 29*833e5d42SEmmanuel Vadot const: marvell,dove-divider-clock 30*833e5d42SEmmanuel Vadot 31*833e5d42SEmmanuel Vadot reg: 32*833e5d42SEmmanuel Vadot maxItems: 1 33*833e5d42SEmmanuel Vadot 34*833e5d42SEmmanuel Vadot '#clock-cells': 35*833e5d42SEmmanuel Vadot const: 1 36*833e5d42SEmmanuel Vadot 37*833e5d42SEmmanuel Vadotrequired: 38*833e5d42SEmmanuel Vadot - compatible 39*833e5d42SEmmanuel Vadot - reg 40*833e5d42SEmmanuel Vadot - '#clock-cells' 41*833e5d42SEmmanuel Vadot 42*833e5d42SEmmanuel VadotadditionalProperties: false 43*833e5d42SEmmanuel Vadot 44*833e5d42SEmmanuel Vadotexamples: 45*833e5d42SEmmanuel Vadot - | 46*833e5d42SEmmanuel Vadot clock-controller@64 { 47*833e5d42SEmmanuel Vadot compatible = "marvell,dove-divider-clock"; 48*833e5d42SEmmanuel Vadot reg = <0x0064 0x8>; 49*833e5d42SEmmanuel Vadot #clock-cells = <1>; 50*833e5d42SEmmanuel Vadot }; 51