xref: /freebsd/sys/contrib/device-tree/Bindings/arm/cpu-enable-method/nuvoton,npcm750-smp (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot=========================================================
2*c66ec88fSEmmanuel VadotSecondary CPU enable-method "nuvoton,npcm750-smp" binding
3*c66ec88fSEmmanuel Vadot=========================================================
4*c66ec88fSEmmanuel Vadot
5*c66ec88fSEmmanuel VadotTo apply to all CPUs, a single "nuvoton,npcm750-smp" enable method should be
6*c66ec88fSEmmanuel Vadotdefined in the "cpus" node.
7*c66ec88fSEmmanuel Vadot
8*c66ec88fSEmmanuel VadotEnable method name:	"nuvoton,npcm750-smp"
9*c66ec88fSEmmanuel VadotCompatible machines:	"nuvoton,npcm750"
10*c66ec88fSEmmanuel VadotCompatible CPUs:	"arm,cortex-a9"
11*c66ec88fSEmmanuel VadotRelated properties:	(none)
12*c66ec88fSEmmanuel Vadot
13*c66ec88fSEmmanuel VadotNote:
14*c66ec88fSEmmanuel VadotThis enable method needs valid nodes compatible with "arm,cortex-a9-scu" and
15*c66ec88fSEmmanuel Vadot"nuvoton,npcm750-gcr".
16*c66ec88fSEmmanuel Vadot
17*c66ec88fSEmmanuel VadotExample:
18*c66ec88fSEmmanuel Vadot
19*c66ec88fSEmmanuel Vadot	cpus {
20*c66ec88fSEmmanuel Vadot		#address-cells = <1>;
21*c66ec88fSEmmanuel Vadot		#size-cells = <0>;
22*c66ec88fSEmmanuel Vadot		enable-method = "nuvoton,npcm750-smp";
23*c66ec88fSEmmanuel Vadot
24*c66ec88fSEmmanuel Vadot		cpu@0 {
25*c66ec88fSEmmanuel Vadot			device_type = "cpu";
26*c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a9";
27*c66ec88fSEmmanuel Vadot			clocks = <&clk NPCM7XX_CLK_CPU>;
28*c66ec88fSEmmanuel Vadot			clock-names = "clk_cpu";
29*c66ec88fSEmmanuel Vadot			reg = <0>;
30*c66ec88fSEmmanuel Vadot			next-level-cache = <&L2>;
31*c66ec88fSEmmanuel Vadot		};
32*c66ec88fSEmmanuel Vadot
33*c66ec88fSEmmanuel Vadot		cpu@1 {
34*c66ec88fSEmmanuel Vadot			device_type = "cpu";
35*c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a9";
36*c66ec88fSEmmanuel Vadot			clocks = <&clk NPCM7XX_CLK_CPU>;
37*c66ec88fSEmmanuel Vadot			clock-names = "clk_cpu";
38*c66ec88fSEmmanuel Vadot			reg = <1>;
39*c66ec88fSEmmanuel Vadot			next-level-cache = <&L2>;
40*c66ec88fSEmmanuel Vadot		};
41*c66ec88fSEmmanuel Vadot	};
42*c66ec88fSEmmanuel Vadot
43