powerpc/mpc7448: add alias list to DTS, clean out old chosen node

The mpc7448hpc2 board doesn't have an alias block like
most of the other modern eval boards have.  We need this
block in order to have u-boot be able to make use of the
CONFIG_OF_STDOUT_VIA_ALIAS (vs. having a hard coded node)
in the future.

Also remove the old, redundant chosen node.  Of all the modern
Freescale eval boards (incl. 83xx, 85xx, 86xx) this is the only
one which still has it.  Its presence also breaks with some older
versions of u-boot, like 1.3.1 -- which try and insert a
second chosen node.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
Paul Gortmaker 2008-07-10 16:21:35 -04:00 committed by Kumar Gala
parent 574366128d
commit 36aa7965d8

View file

@ -18,6 +18,16 @@ / {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
aliases {
ethernet0 = &enet0;
ethernet1 = &enet1;
serial0 = &serial0;
serial1 = &serial1;
pci0 = &pci0;
};
cpus { cpus {
#address-cells = <1>; #address-cells = <1>;
#size-cells =<0>; #size-cells =<0>;
@ -78,7 +88,7 @@ phy9: ethernet-phy@9 {
}; };
ethernet@6200 { enet0: ethernet@6200 {
linux,network-index = <0>; linux,network-index = <0>;
#size-cells = <0>; #size-cells = <0>;
device_type = "network"; device_type = "network";
@ -91,7 +101,7 @@ ethernet@6200 {
phy-handle = <&phy8>; phy-handle = <&phy8>;
}; };
ethernet@6600 { enet1: ethernet@6600 {
linux,network-index = <1>; linux,network-index = <1>;
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
@ -105,7 +115,7 @@ ethernet@6600 {
phy-handle = <&phy9>; phy-handle = <&phy9>;
}; };
serial@7808 { serial0: serial@7808 {
device_type = "serial"; device_type = "serial";
compatible = "ns16550"; compatible = "ns16550";
reg = <0x7808 0x200>; reg = <0x7808 0x200>;
@ -114,7 +124,7 @@ serial@7808 {
interrupt-parent = <&mpic>; interrupt-parent = <&mpic>;
}; };
serial@7c08 { serial1: serial@7c08 {
device_type = "serial"; device_type = "serial";
compatible = "ns16550"; compatible = "ns16550";
reg = <0x7c08 0x200>; reg = <0x7c08 0x200>;
@ -131,7 +141,7 @@ mpic: pic@7400 {
compatible = "chrp,open-pic"; compatible = "chrp,open-pic";
device_type = "open-pic"; device_type = "open-pic";
}; };
pci@1000 { pci0: pci@1000 {
compatible = "tsi108-pci"; compatible = "tsi108-pci";
device_type = "pci"; device_type = "pci";
#interrupt-cells = <1>; #interrupt-cells = <1>;
@ -184,8 +194,4 @@ RT0: router@1180 {
}; };
}; };
}; };
chosen {
linux,stdout-path = "/tsi108@c0000000/serial@7808";
};
}; };