1*5def4c47SEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later OR BSD-2-Clause 2*5def4c47SEmmanuel Vadot 3*5def4c47SEmmanuel Vadot/ { 4*5def4c47SEmmanuel Vadot cpus { 5*5def4c47SEmmanuel Vadot #address-cells = <1>; 6*5def4c47SEmmanuel Vadot #size-cells = <0>; 7*5def4c47SEmmanuel Vadot 8*5def4c47SEmmanuel Vadot cpu@0 { 9*5def4c47SEmmanuel Vadot compatible = "mips,mips4KEc"; 10*5def4c47SEmmanuel Vadot reg = <0>; 11*5def4c47SEmmanuel Vadot clocks = <&baseclk 0>; 12*5def4c47SEmmanuel Vadot clock-names = "cpu"; 13*5def4c47SEmmanuel Vadot }; 14*5def4c47SEmmanuel Vadot }; 15*5def4c47SEmmanuel Vadot 16*5def4c47SEmmanuel Vadot baseclk: baseclk { 17*5def4c47SEmmanuel Vadot compatible = "fixed-clock"; 18*5def4c47SEmmanuel Vadot #clock-cells = <0>; 19*5def4c47SEmmanuel Vadot clock-frequency = <500000000>; 20*5def4c47SEmmanuel Vadot }; 21*5def4c47SEmmanuel Vadot}; 22