mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
9b73100911
Activate USE_OF for SEAD-3 platform. Add basic DTS file and convert memory detection and reservations to use OF. [ralf@linux-mips.org: Remove unnecessary #ifdef wrapper in generic.h. Make <asm/mips-boards/generic.h> inclusion work even without prior <linux/of_fdt.h> inclusion.] Signed-off-by: Steven J. Hill <sjhill@mips.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/4809/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
27 lines
457 B
Plaintext
27 lines
457 B
Plaintext
/dts-v1/;
|
|
|
|
/memreserve/ 0x00000000 0x00001000; // reserved
|
|
/memreserve/ 0x00001000 0x000ef000; // ROM data
|
|
/memreserve/ 0x000f0000 0x004cc000; // reserved
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "mti,sead-3";
|
|
|
|
cpus {
|
|
cpu@0 {
|
|
compatible = "mti,mips14KEc", "mti,mips14Kc";
|
|
};
|
|
};
|
|
|
|
chosen {
|
|
bootargs = "console=ttyS1,38400 rootdelay=10 root=/dev/sda3";
|
|
};
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
reg = <0x0 0x08000000>;
|
|
};
|
|
};
|