kirkwood-ns2-common.dtsi 1.6 KB
Newer Older
1 2
#include "kirkwood.dtsi"
#include "kirkwood-6281.dtsi"
3 4 5 6

/ {
	chosen {
		bootargs = "console=ttyS0,115200n8";
7
		stdout-path = &uart0;
8 9 10
	};

	ocp@f1000000 {
11 12 13 14 15 16 17 18 19 20 21
		pinctrl: pinctrl@10000 {
			pmx_ns2_sata0: pmx-ns2-sata0 {
				marvell,pins = "mpp21";
				marvell,function = "sata0";
			};
			pmx_ns2_sata1: pmx-ns2-sata1 {
				marvell,pins = "mpp20";
				marvell,function = "sata1";
			};
		};

22
		serial@12000 {
23 24
			pinctrl-0 = <&pmx_uart0>;
			pinctrl-names = "default";
25 26 27 28
			status = "okay";
		};

		spi@10600 {
29 30
			pinctrl-0 = <&pmx_spi>;
			pinctrl-names = "default";
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
			status = "okay";

			flash@0 {
				#address-cells = <1>;
				#size-cells = <1>;
				compatible = "mx25l4005a";
				reg = <0>;
				spi-max-frequency = <20000000>;
				mode = <0>;

				partition@0 {
					reg = <0x0 0x80000>;
					label = "u-boot";
				};
			};
		};

		i2c@11000 {
49 50
			pinctrl-0 = <&pmx_twsi0>;
			pinctrl-names = "default";
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
			status = "okay";

			eeprom@50 {
				compatible = "at,24c04";
				pagesize = <16>;
				reg = <0x50>;
			};
		};
	};

	gpio_keys {
		compatible = "gpio-keys";
		#address-cells = <1>;
		#size-cells = <0>;

		button@1 {
			label = "Power push button";
68
			linux,code = <KEY_POWER>;
69
			gpios = <&gpio1 0 GPIO_ACTIVE_HIGH>;
70 71 72 73 74 75 76 77
		};
	};

	gpio-leds {
		compatible = "gpio-leds";

		red-fail {
			label = "ns2:red:fail";
78
			gpios = <&gpio0 12 GPIO_ACTIVE_HIGH>;
79 80
		};
	};
81 82 83

	gpio_poweroff {
		compatible = "gpio-poweroff";
84
		gpios = <&gpio0 31 GPIO_ACTIVE_HIGH>;
85 86
	};

87
};
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

&mdio {
	status = "okay";

	ethphy0: ethernet-phy {
                /* overwrite reg property in board file */
	};
};

&eth0 {
	status = "okay";
	ethernet0-port@0 {
		phy-handle = <&ethphy0>;
	};
};