kirkwood-ib62x0.dts 865 字节
Newer Older
1 2 3 4 5 6
/dts-v1/;

/include/ "kirkwood.dtsi"

/ {
	model = "RaidSonic ICY BOX IB-NAS62x0 (Rev B)";
7
	compatible = "raidsonic,ib-nas6210-b", "raidsonic,ib-nas6220-b", "raidsonic,ib-nas6210", "raidsonic,ib-nas6220", "raidsonic,ib-nas62x0",  "marvell,kirkwood-88f6281", "marvell,kirkwood";
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

	memory {
		device_type = "memory";
		reg = <0x00000000 0x10000000>;
	};

	chosen {
		bootargs = "console=ttyS0,115200n8 earlyprintk";
	};

	ocp@f1000000 {
		serial@12000 {
			clock-frequency = <200000000>;
			status = "okay";
		};

24 25 26 27 28
		sata@80000 {
			status = "okay";
			nr-ports = <2>;
		};

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
		nand@3000000 {
			status = "okay";

			partition@0 {
				label = "u-boot";
				reg = <0x0000000 0x100000>;
			};

			partition@100000 {
				label = "uImage";
				reg = <0x0100000 0x600000>;
			};

			partition@700000 {
				label = "root";
				reg = <0x0700000 0xf900000>;
			};

		};
	};
};