Skip to content

Commit 554ec5b

Browse files
robherringbebarino
authored andcommitted
dt-bindings: clock: Convert brcm,bcm63xx-clocks to DT schema
Convert the Broadcom BCM63xx clock bindings to DT schema format. It's a straight forward conversion. Signed-off-by: Rob Herring (Arm) <robh@kernel.org> Link: https://lore.kernel.org/r/20250521004610.1791426-1-robh@kernel.org Signed-off-by: Stephen Boyd <sboyd@kernel.org>
1 parent 358df00 commit 554ec5b

2 files changed

Lines changed: 44 additions & 24 deletions

File tree

Documentation/devicetree/bindings/clock/brcm,bcm63xx-clocks.txt

Lines changed: 0 additions & 24 deletions
This file was deleted.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/clock/brcm,bcm63xx-clocks.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: MIPS based BCM63XX SoCs Gated Clock Controller
8+
9+
maintainers:
10+
- Álvaro Fernández Rojas <noltari@gmail.com>
11+
- Jonas Gorski <jonas.gorski@gmail.com>
12+
13+
properties:
14+
compatible:
15+
enum:
16+
- brcm,bcm3368-clocks
17+
- brcm,bcm6318-clocks
18+
- brcm,bcm6318-ubus-clocks
19+
- brcm,bcm6328-clocks
20+
- brcm,bcm6358-clocks
21+
- brcm,bcm6362-clocks
22+
- brcm,bcm6368-clocks
23+
- brcm,bcm63268-clocks
24+
25+
reg:
26+
maxItems: 1
27+
28+
'#clock-cells':
29+
const: 1
30+
31+
required:
32+
- compatible
33+
- reg
34+
- '#clock-cells'
35+
36+
additionalProperties: false
37+
38+
examples:
39+
- |
40+
clock-controller@10000004 {
41+
compatible = "brcm,bcm6328-clocks";
42+
reg = <0x10000004 0x4>;
43+
#clock-cells = <1>;
44+
};

0 commit comments

Comments
 (0)