Linux Audio

Check our new training course

Loading...
v6.8
 1// SPDX-License-Identifier: GPL-2.0
 2/ {
 3	#address-cells = <1>;
 4	#size-cells = <1>;
 5	compatible = "img,xilfpga";
 6
 7	cpus {
 8		#address-cells = <1>;
 9		#size-cells = <0>;
10		cpu@0 {
11			device_type = "cpu";
12			compatible = "mips,m14Kc";
13			clocks	= <&ext>;
14			reg = <0>;
15		};
16	};
17
18	ext: ext {
19		compatible = "fixed-clock";
20		#clock-cells = <0>;
21	};
22};
v4.6
 
 1/ {
 2	#address-cells = <1>;
 3	#size-cells = <1>;
 4	compatible = "img,xilfpga";
 5
 6	cpus {
 7		#address-cells = <1>;
 8		#size-cells = <0>;
 9		cpu@0 {
10			device_type = "cpu";
11			compatible = "mips,m14Kc";
12			clocks	= <&ext>;
13			reg = <0>;
14		};
15	};
16
17	ext: ext {
18		compatible = "fixed-clock";
19		#clock-cells = <0>;
20	};
21};