# # Copyright (C) 2012 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # define Profile/dLAN_USB_Extender NAME:=Devolo dLAN USB Extender PACKAGES:=kmod-usb-serial kmod-usb-serial-ftdi endef define Profile/dLAN_USB_Extender/Description Package set specifically tuned for the Devolo dLAN USB Extender device. Binary packages are required to enable the power line portion of the device, these packages can be found in the following package feed: src-git dlan https://github.com/ffainelli/dlan-usb-extender-3rd-party.git Instructions are available here: http://ffainelli.github.io/dlan-usb-extender-3rd-party/ endef $(eval $(call Profile,dLAN_USB_Extender)) ' href='/cgit.cgi/openwrt/upstream/'>openwrt/upstream
upstream openwrtJames
aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts/3G-6200N.dts
blob: a19ed452f65a56f745c49161eaae9605c33fb1cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/dts-v1/;

/include/ "rt3050.dtsi"

/ {
	compatible = "3G-6200N", "ralink,rt3050-soc";
	model = "Edimax 3g-6200n";

	pinctrl {
		state_default: pinctrl0 {
			gpio {
				ralink,group = "spi", "i2c", "jtag", "rgmii", "mdio", "uartf";
				ralink,function = "gpio";
			};
		};
	};

	cfi@1f000000 {
		compatible = "cfi-flash";
		reg = <0x1f000000 0x800000>;

		bank-width = <2>;
		device-width = <2>;
		#address-cells = <1>;
		#size-cells = <1>;

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

		partition@30000 {
			label = "u-boot-env";
			reg = <0x30000 0x10000>;
			read-only;
		};

		factory: partition@40000 {
			label = "factory";
			reg = <0x40000 0x10000>;
			read-only;
		};

		partition@3e0000 {
			label = "cimage";
			reg = <0x3e0000 0x20000>;
			read-only;
		};

		partition@50000 {
			label = "firmware";
			reg = <0x50000 0x390000>;
		};
	};

	ethernet@10100000 {
		mtd-mac-address = <&factory 0x4>;
	};

	esw@10110000 {
		ralink,portmap = <0x2f>;
	};

	wmac@10180000 {
		ralink,mtd-eeprom = <&factory 0>;
	};

	gpio-leds {
		compatible = "gpio-leds";
		power {
			label = "edimax:green:power";
			gpios = <&gpio0 9 1>;
		};
		wlan {
			label = "edimax:amber:wlan";
			gpios = <&gpio0 14 1>;
		};
		3g {
			label = "edimax:blue:3g";
			gpios = <&gpio0 7 1>;
		};
	};

	gpio-keys-polled {
		compatible = "gpio-keys-polled";
		#address-cells = <1>;
		#size-cells = <0>;
		poll-interval = <20>;
		wps {
			label = "wps";
			gpios = <&gpio0 12 1>;
			linux,code = <0x211>;
		};
		wlanswitch {
			label = "wlanswitch";
			gpios = <&gpio0 13 1>;
			linux,code = <0x100>;
		};
	};

	otg@101c0000 {
		status = "okay";
	};
};