1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/clock/stericsson,u8500-clks.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: ST-Ericsson DB8500 (U8500) clocks 8 9maintainers: 10 - Ulf Hansson <ulf.hansson@linaro.org> 11 - Linus Walleij <linus.walleij@linaro.org> 12 13description: While named "U8500 clocks" these clocks are inside the 14 DB8500 digital baseband system-on-chip and its siblings such as 15 DB8520. These bindings consider the clocks present in the SoC 16 itself, not off-chip clocks. There are four different on-chip 17 clocks - RTC (32 kHz), CPU clock (SMP TWD), PRCMU (power reset and 18 control management unit) clocks and PRCC (peripheral reset and 19 clock controller) clocks. For some reason PRCC 4 does not exist so 20 the itemization can be a bit unintuitive. 21 22properties: 23 compatible: 24 enum: 25 - stericsson,u8500-clks 26 - stericsson,u8540-clks 27 - stericsson,u9540-clks 28 29 reg: 30 items: 31 - description: PRCC 1 register area 32 - description: PRCC 2 register area 33 - description: PRCC 3 register area 34 - description: PRCC 5 register area 35 - description: PRCC 6 register area 36 37 prcmu-clock: 38 description: A subnode with one clock cell for PRCMU (power, reset, control 39 management unit) clocks. The cell indicates which PRCMU clock in the 40 prcmu-clock node the consumer wants to use. 41 type: object 42 43 properties: 44 '#clock-cells': 45 const: 1 46 47 additionalProperties: false 48 49 prcc-periph-clock: 50 description: A subnode with two clock cells for PRCC (peripheral 51 reset and clock controller) peripheral clocks. The first cell indicates 52 which PRCC block the consumer wants to use, possible values are 1, 2, 3, 53 5, 6. The second cell indicates which clock inside the PRCC block it 54 wants, possible values are 0 thru 31. 55 type: object 56 57 properties: 58 '#clock-cells': 59 const: 2 60 61 additionalProperties: false 62 63 prcc-kernel-clock: 64 description: A subnode with two clock cells for PRCC (peripheral reset 65 and clock controller) kernel clocks. The first cell indicates which PRCC 66 block the consumer wants to use, possible values are 1, 2, 3, 5, 6. The 67 second cell indicates which clock inside the PRCC block it wants, possible 68 values are 0 thru 31. 69 type: object 70 71 properties: 72 '#clock-cells': 73 const: 2 74 75 additionalProperties: false 76 77 prcc-reset-controller: 78 description: A subnode with two reset cells for the reset portions of the 79 PRCC (peripheral reset and clock controller). The first cell indicates 80 which PRCC block the consumer wants to use, possible values are 1, 2, 3 81 5 and 6. The second cell indicates which reset line inside the PRCC block 82 it wants to control, possible values are 0 thru 31. 83 type: object 84 85 properties: 86 '#reset-cells': 87 const: 2 88 89 additionalProperties: false 90 91 rtc32k-clock: 92 description: A subnode with zero clock cells for the 32kHz RTC clock. 93 type: object 94 95 properties: 96 '#clock-cells': 97 const: 0 98 99 additionalProperties: false 100 101 smp-twd-clock: 102 description: A subnode for the ARM SMP Timer Watchdog cluster with zero 103 clock cells. 104 type: object 105 106 properties: 107 '#clock-cells': 108 const: 0 109 110 additionalProperties: false 111 112required: 113 - compatible 114 - reg 115 - prcmu-clock 116 - prcc-periph-clock 117 - prcc-kernel-clock 118 - rtc32k-clock 119 - smp-twd-clock 120 121additionalProperties: false 122