aboutsummaryrefslogtreecommitdiffstats
path: root/lib/lufa/Projects/AVRISP-MKII
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-06-18 16:50:25 +0300
committerFred Sundvik <fsundvik@gmail.com>2017-06-18 17:03:07 +0300
commit6ba22b5f5eac1e7ee0b8a73fc682aed2f35c0189 (patch)
treeda9ec9ecac05b4e407df0d28047f0c06d752f3d4 /lib/lufa/Projects/AVRISP-MKII
parenta15510b57b39e0a12127b9297bade9b9f42332c7 (diff)
downloadfirmware-6ba22b5f5eac1e7ee0b8a73fc682aed2f35c0189.tar.gz
firmware-6ba22b5f5eac1e7ee0b8a73fc682aed2f35c0189.tar.bz2
firmware-6ba22b5f5eac1e7ee0b8a73fc682aed2f35c0189.zip
Don't define RGBLED_NUM in let-split khord keymap
It's already defined correctly by the parent keyboard project, and was causing problems for rev1, where the pin is different.
Diffstat (limited to 'lib/lufa/Projects/AVRISP-MKII')
0 files changed, 0 insertions, 0 deletions
f='#n100'>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
#include "mt7621.dtsi"

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

/ {
	compatible = "zbtlink,zbt-wg2626", "mediatek,mt7621-soc";
	model = "Zbtlink ZBT-WG2626";

	aliases {
		led-boot = &led_status;
		led-failsafe = &led_status;
		led-running = &led_status;
		led-upgrade = &led_status;
	};

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

	keys {
		compatible = "gpio-keys";

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

	leds {
		compatible = "gpio-leds";

		led_status: status {
			label = "green:status";
			gpios = <&gpio 24 GPIO_ACTIVE_LOW>;
		};
	};
};

&i2c {
	status = "okay";
};

&sdhci {
	status = "okay";
};

&spi0 {
	status = "okay";

	flash@0 {
		compatible = "jedec,spi-nor";
		reg = <0>;
		spi-max-frequency = <10000000>;

		partitions {
			compatible = "fixed-partitions";
			#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@50000 {
				compatible = "denx,uimage";
				label = "firmware";
				reg = <0x50000 0xfb0000>;
			};
		};
	};
};

&pcie {
	status = "okay";
};

&pcie0 {
	mt76@0,0 {
		reg = <0x0000 0 0 0 0>;
		mediatek,mtd-eeprom = <&factory 0x8000>;
		ieee80211-freq-limit = <5000000 6000000>;
	};
};

&pcie1 {
	mt76@0,0 {
		reg = <0x0000 0 0 0 0>;
		mediatek,mtd-eeprom = <&factory 0x0000>;
		ieee80211-freq-limit = <2400000 2500000>;
	};
};

&gmac0 {
	mtd-mac-address = <&factory 0xe000>;
};

&switch0 {
	ports {
		port@0 {
			status = "okay";
			label = "lan1";
		};

		port@1 {
			status = "okay";
			label = "lan2";
		};

		port@2 {
			status = "okay";
			label = "lan3";
		};

		port@3 {
			status = "okay";
			label = "lan4";
		};

		port@4 {
			status = "okay";
			label = "wan";
			mtd-mac-address = <&factory 0xe000>;
			mac-address-increment = <1>;
		};
	};
};

&state_default {
	gpio {
		groups = "wdt", "rgmii2";
		function = "gpio";
	};
};