blob: 6cc4ff5c0d198058c0e973371ead0ddd34f96cd7 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001// SPDX-License-Identifier: GPL-2.0-or-later OR BSD-2-Clause
2
3/ {
4 cpus {
5 #address-cells = <1>;
6 #size-cells = <0>;
7
8 cpu@0 {
9 compatible = "mips,mips4KEc";
10 reg = <0>;
11 clocks = <&baseclk 0>;
12 clock-names = "cpu";
13 };
14 };
15
16 baseclk: baseclk {
17 compatible = "fixed-clock";
18 #clock-cells = <0>;
19 clock-frequency = <500000000>;
20 };
21};