Linux Audio

Check our new training course

Loading...
Note: File does not exist in v6.13.7.
  1/dts-v1/;
  2
  3#include "kirkwood.dtsi"
  4#include "kirkwood-6281.dtsi"
  5
  6/ {
  7	model = "MPL CEC4";
  8	compatible = "mpl,cec4-10", "mpl,cec4", "marvell,kirkwood-88f6281", "marvell,kirkwood";
  9
 10        memory {
 11                device_type = "memory";
 12                reg = <0x00000000 0x20000000>;
 13        };
 14
 15        chosen {
 16                bootargs = "console=ttyS0,115200n8 earlyprintk";
 17        };
 18
 19	mbus {
 20		pcie-controller {
 21			status = "okay";
 22
 23			pcie@1,0 {
 24				status = "okay";
 25			};
 26		};
 27	};
 28
 29	ocp@f1000000 {
 30		pinctrl: pinctrl@10000 {
 31			pmx_led_health: pmx-led-health {
 32				marvell,pins = "mpp7";
 33				marvell,function = "gpo";
 34			};
 35
 36			pmx_sata1: pmx-sata1 {
 37				marvell,pins = "mpp34";
 38				marvell,function = "sata1";
 39			};
 40
 41			pmx_sata0: pmx-sata0 {
 42				marvell,pins = "mpp35";
 43				marvell,function = "sata0";
 44			};
 45
 46			pmx_led_user1o: pmx-led-user1o {
 47				marvell,pins = "mpp40";
 48				marvell,function = "gpio";
 49			};
 50
 51			pmx_led_user1g: pmx-led-user1g {
 52				marvell,pins = "mpp41";
 53				marvell,function = "gpio";
 54			};
 55
 56			pmx_led_user0o: pmx-led-user0o {
 57				marvell,pins = "mpp44";
 58				marvell,function = "gpio";
 59			};
 60
 61			pmx_led_user0g: pmx-led-user0g {
 62				marvell,pins = "mpp45";
 63				marvell,function = "gpio";
 64			};
 65
 66			pmx_led_misc: pmx-led-misc {
 67				marvell,pins = "mpp46";
 68				marvell,function = "gpio";
 69			};
 70
 71			pmx_sdio_cd: pmx-sdio-cd {
 72				marvell,pins = "mpp47";
 73				marvell,function = "gpio";
 74			};
 75		};
 76
 77                i2c@11000 {
 78                        status = "okay";
 79
 80			rtc@51 {
 81				compatible = "nxp,pcf8563";
 82				reg = <0x51>;
 83			};
 84
 85			eeprom@57 {
 86				compatible = "atmel,24c02";
 87				reg = <0x57>;
 88			};
 89
 90                };
 91
 92                serial@12000 {
 93                        status = "ok";
 94                        pinctrl-0 = <&pmx_uart0>;
 95                        pinctrl-names = "default";
 96                };
 97
 98		rtc@10300 {
 99			status = "disabled";
100		};
101
102		sata@80000 {
103			pinctrl-0 = <&pmx_sata0 &pmx_sata1>;
104			pinctrl-names = "default";
105			nr-ports = <2>;
106			status = "okay";
107		};
108
109		mvsdio@90000 {
110			pinctrl-0 = <&pmx_sdio &pmx_sdio_cd>;
111			pinctrl-names = "default";
112			status = "okay";
113			cd-gpios = <&gpio1 15 GPIO_ACTIVE_LOW>;
114			/* No WP GPIO */
115		};
116	};
117
118	gpio-leds {
119		compatible = "gpio-leds";
120		pinctrl-0 = < &pmx_led_health
121			      &pmx_led_user1o
122			      &pmx_led_user1g &pmx_led_user0o
123			      &pmx_led_user0g &pmx_led_misc
124			    >;
125		pinctrl-names = "default";
126
127		health {
128			label = "status:green:health";
129			gpios = <&gpio0 7 GPIO_ACTIVE_LOW>;
130		};
131
132		user1o {
133			label = "user1:orange";
134			gpios = <&gpio1 8 GPIO_ACTIVE_LOW>;
135			default-state = "on";
136		};
137
138		user1g {
139			label = "user1:green";
140			gpios = <&gpio1 9 GPIO_ACTIVE_LOW>;
141			default-state = "on";
142		};
143
144		user0o {
145			label = "user0:orange";
146			gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;
147			default-state = "on";
148		};
149
150		user0g {
151			label = "user0:green";
152			gpios = <&gpio1 13 GPIO_ACTIVE_LOW>;
153			default-state = "on";
154		};
155
156		misc {
157			label = "status:orange:misc";
158			gpios = <&gpio1 14 GPIO_ACTIVE_LOW>;
159			default-state = "on";
160		};
161
162	};
163};
164
165&nand {
166	pinctrl-0 = <&pmx_nand>;
167	pinctrl-names = "default";
168	status = "okay";
169
170	partition@0 {
171		label = "uboot";
172		reg = <0x0000000 0x100000>;
173	};
174
175	partition@100000 {
176		label = "env";
177		reg = <0x100000 0x80000>;
178	};
179
180	partition@180000 {
181		label = "fdt";
182		reg = <0x180000 0x80000>;
183	};
184
185	partition@200000 {
186		label = "kernel";
187		reg = <0x200000 0x400000>;
188	};
189
190	partition@600000 {
191		label = "rootfs";
192		reg = <0x600000 0x1fa00000>;
193	};
194};
195
196&mdio {
197	status = "okay";
198
199	ethphy0: ethernet-phy@1 {
200		reg = <1>;
201	};
202
203	ethphy1: ethernet-phy@2 {
204		reg = <2>;
205	};
206};
207
208&eth0 {
209	status = "okay";
210	ethernet0-port@0 {
211		phy-handle = <&ethphy0>;
212	};
213};
214
215&eth1 {
216	status = "okay";
217	ethernet1-port@0 {
218		phy-handle = <&ethphy1>;
219	};
220};