1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/clock/marvell,mmp2-clock.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Marvell MMP2 and MMP3 Clock Controller 8 9maintainers: 10 - Lubomir Rintel <lkundrak@v3.sk> 11 12description: | 13 The clock subsystem on MMP2 or MMP3 generates and supplies clock to various 14 controllers within the SoC. 15 16 Each clock is assigned an identifier and client nodes use this identifier 17 to specify the clock which they consume. 18 19 All these identifiers could be found in <dt-bindings/clock/marvell,mmp2.h>. 20 21properties: 22 compatible: 23 enum: 24 - marvell,mmp2-clock # controller compatible with MMP2 SoC 25 - marvell,mmp3-clock # controller compatible with MMP3 SoC 26 27 reg: 28 items: 29 - description: MPMU register region 30 - description: APMU register region 31 - description: APBC register region 32 33 reg-names: 34 items: 35 - const: mpmu 36 - const: apmu 37 - const: apbc 38 39 '#clock-cells': 40 const: 1 41 42 '#reset-cells': 43 const: 1 44 45required: 46 - compatible 47 - reg 48 - reg-names 49 - '#clock-cells' 50 - '#reset-cells' 51 52additionalProperties: false 53 54examples: 55 - | 56 clock-controller@d4050000 { 57 compatible = "marvell,mmp2-clock"; 58 reg = <0xd4050000 0x1000>, 59 <0xd4282800 0x400>, 60 <0xd4015000 0x1000>; 61 reg-names = "mpmu", "apmu", "apbc"; 62 #clock-cells = <1>; 63 #reset-cells = <1>; 64 }; 65