blob: 722106e39194bbf853f01c2af72fd5b8f5f3436c [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 {
Tom Rini6b642ac2024-10-01 12:20:28 -06009 device_type = "cpu";
Tom Rini53633a82024-02-29 12:33:36 -050010 compatible = "mips,mips4KEc";
11 reg = <0>;
12 clocks = <&baseclk 0>;
13 clock-names = "cpu";
14 };
15 };
16
17 baseclk: baseclk {
18 compatible = "fixed-clock";
19 #clock-cells = <0>;
20 clock-frequency = <500000000>;
21 };
22};