15def4c47SEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later OR BSD-2-Clause 25def4c47SEmmanuel Vadot 35def4c47SEmmanuel Vadot/ { 45def4c47SEmmanuel Vadot cpus { 55def4c47SEmmanuel Vadot #address-cells = <1>; 65def4c47SEmmanuel Vadot #size-cells = <0>; 75def4c47SEmmanuel Vadot 85def4c47SEmmanuel Vadot cpu@0 { 9*0e8011faSEmmanuel Vadot device_type = "cpu"; 105def4c47SEmmanuel Vadot compatible = "mips,mips4KEc"; 115def4c47SEmmanuel Vadot reg = <0>; 125def4c47SEmmanuel Vadot clocks = <&baseclk 0>; 135def4c47SEmmanuel Vadot clock-names = "cpu"; 145def4c47SEmmanuel Vadot }; 155def4c47SEmmanuel Vadot }; 165def4c47SEmmanuel Vadot 175def4c47SEmmanuel Vadot baseclk: baseclk { 185def4c47SEmmanuel Vadot compatible = "fixed-clock"; 195def4c47SEmmanuel Vadot #clock-cells = <0>; 205def4c47SEmmanuel Vadot clock-frequency = <500000000>; 215def4c47SEmmanuel Vadot }; 225def4c47SEmmanuel Vadot}; 23