aboutsummaryrefslogtreecommitdiffstats
path: root/package/system/utils/nvram
Commit message (Expand)AuthorAgeFilesLines
* packages: clean up the package folderJohn Crispin2013-06-218-1215/+0
* move a few packages to system/utilsFelix Fietkau2013-01-298-0/+1215
> 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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
#include "rt2880.dtsi"

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>

/ {
	#address-cells = <1>;
	#size-cells = <1>;
	compatible = "belkin,f5d8235-v1", "ralink,rt2880-soc";
	model = "Belkin F5D8235 v1";

	aliases {
		led-boot = &led_wired_blue;
		led-failsafe = &led_wired_blue;
	};

	flash@1f000000 {
		compatible = "cfi-flash";
		reg = <0xbc400000 0x800000>;
		bank-width = <2>;
		device-width = <2>;

		partitions {
			compatible = "fixed-partitions";
			#address-cells = <1>;
			#size-cells = <1>;

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

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

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

			partition@50000 {
				compatible = "denx,uimage";
				label = "firmware";
				reg = <0x50000 0x7b0000>;
			};
		};
	};

	rtl8366s {
		compatible = "realtek,rtl8366s";
		gpio-sda = <&gpio0 1 GPIO_ACTIVE_HIGH>;
		gpio-sck = <&gpio0 2 GPIO_ACTIVE_HIGH>;

		realtek,initvals = <
			0x0242 0x02BF
			0x0245 0x02BF
			0x0248 0x02BF
			0x024B 0x02BF
			0x024E 0x02BF
			0x0251 0x02BF
			0x0254 0x0A3F
			0x0256 0x0A3F
			0x0258 0x0A3F
			0x025A 0x0A3F
			0x025C 0x0A3F
			0x025E 0x0A3F
			0x0263 0x007C
			0x0100 0x0004
			0xBE5B 0x3500
			0x800E 0x200F
			0xBE1D 0x0F00
			0x8001 0x5011
			0x800A 0xA2F4
			0x800B 0x17A3
			0xBE4B 0x17A3
			0xBE41 0x5011
			0xBE17 0x2100
			0x8000 0x8304
			0xBE40 0x8304
			0xBE4A 0xA2F4
			0x800C 0xA8D5
			0x8014 0x5500
			0x8015 0x0004
			0xBE4C 0xA8D5
			0xBE59 0x0008
			0xBE09 0x0E00
			0xBE36 0x1036
			0xBE37 0x1036
			0x800D 0x00FF
			0xBE4D 0x00FF
		>;

		realtek,green-ethernet-features;
	};

	keys {
		compatible = "gpio-keys-polled";
		poll-interval = <100>;

		wps {
			label = "wps";
			gpios = <&gpio0 0 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_WPS_BUTTON>;
		};

		reset {
			label = "reset";
			gpios = <&gpio0 9 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_RESTART>;
		};
	};

	leds {
		compatible = "gpio-leds";

		internet {
			label = "blue:internet";
			gpios = <&gpio0 17 GPIO_ACTIVE_LOW>;
		};

		internet2 {
			label = "amber:internet";
			gpios = <&gpio0 18 GPIO_ACTIVE_LOW>;
		};

		modem {
			label = "blue:modem";
			gpios = <&gpio0 13 GPIO_ACTIVE_LOW>;
		};

		modem2 {
			label = "amber:modem";
			gpios = <&gpio0 21 GPIO_ACTIVE_LOW>;
		};

		router {
			label = "blue:router";
			gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>;
		};

		storage {
			label = "blue:storage";
			gpios = <&gpio0 7 GPIO_ACTIVE_LOW>;
			trigger-sources = <&ohci_port1>, <&ehci_port1>;
			linux,default-trigger = "usbport";
		};

		storage2 {
			label = "amber:storage";
			gpios = <&gpio0 8 GPIO_ACTIVE_LOW>;
		};

		security {
			label = "blue:security";
			gpios = <&gpio0 10 GPIO_ACTIVE_LOW>;
		};

		security2 {
			label = "amber:security";
			gpios = <&gpio0 12 GPIO_ACTIVE_LOW>;
		};

		led_wired_blue: wired {
			label = "blue:wired";
			gpios = <&gpio0 5 GPIO_ACTIVE_LOW>;
		};

		wired2 {
			label = "amber:wired";
			gpios = <&gpio0 20 GPIO_ACTIVE_LOW>;
		};

		wireless {
			label = "blue:wireless";
			gpios = <&gpio0 6 GPIO_ACTIVE_LOW>;
		};

		wireless2 {
			label = "amber:wireless";
			gpios = <&gpio0 19 GPIO_ACTIVE_LOW>;
		};
	};
};

&state_default {
	gpio {
		groups = "spi", "i2c", "jtag", "mdio", "uartlite";
		function = "gpio";
	};
};

&ethernet {
	status = "okay";
	mtd-mac-address = <&factory 0x4>;

	port@0 {
		mediatek,fixed-link = <1000 1 1 1>;
	};
};

&pci {
	status = "okay";

	usb@11,0 {
		#address-cells = <1>;
		#size-cells = <0>;
		compatible = "pci1033,0035";
		reg = <0x8800 0 0 0 0>;

		ohci_port1: port@1 {
			reg = <1>;
			#trigger-source-cells = <0>;
		};
	};

	usb@11,1 {
		#address-cells = <1>;
		#size-cells = <0>;
		compatible = "pci1033,00e0";
		reg = <0x8900 0 0 0 0>;

		ehci_port1: port@1 {
			reg = <1>;
			#trigger-source-cells = <0>;
		};
	};
};

&wmac {
	status = "okay";
	ralink,mtd-eeprom = <&factory 0x0>;
};