提交 7ec13d42 编写于 作者: T Tony Prisk

dts: vt8500: Fix invalid/missing cpu nodes for soc files.

vt8500, wm8650 and wm8850 have no cpu node specified.
wm8505 has a cpu node which contains an invalid compatible string, and
is missing the other required properties.
Signed-off-by: NTony Prisk <linux@prisktech.co.nz>
上级 f722406f
无相关合并请求
...@@ -11,6 +11,16 @@ ...@@ -11,6 +11,16 @@
/ { / {
compatible = "via,vt8500"; compatible = "via,vt8500";
cpus {
#address-cells = <0>;
#size-cells = <0>;
cpu {
device_type = "cpu";
compatible = "arm,arm926ej-s";
};
};
soc { soc {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
......
...@@ -12,8 +12,12 @@ ...@@ -12,8 +12,12 @@
compatible = "wm,wm8505"; compatible = "wm,wm8505";
cpus { cpus {
cpu@0 { #address-cells = <0>;
compatible = "arm,arm926ejs"; #size-cells = <0>;
cpu {
device_type = "cpu";
compatible = "arm,arm926ej-s";
}; };
}; };
......
...@@ -11,6 +11,16 @@ ...@@ -11,6 +11,16 @@
/ { / {
compatible = "wm,wm8650"; compatible = "wm,wm8650";
cpus {
#address-cells = <0>;
#size-cells = <0>;
cpu {
device_type = "cpu";
compatible = "arm,arm926ej-s";
};
};
soc { soc {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
......
...@@ -11,6 +11,17 @@ ...@@ -11,6 +11,17 @@
/ { / {
compatible = "wm,wm8850"; compatible = "wm,wm8850";
cpus {
#address-cells = <1>;
#size-cells = <0>;
cpu@0 {
device_type = "cpu";
compatible = "arm,cortex-a9";
reg = <0x0>;
};
};
aliases { aliases {
serial0 = &uart0; serial0 = &uart0;
serial1 = &uart1; serial1 = &uart1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册
反馈
建议
客服 返回
顶部