aboutsummaryrefslogtreecommitdiffstats
path: root/package/pcmcia-cs/patches/004-pcmcia_resources.patch
Commit message (Expand)AuthorAgeFilesLines
* refresh all package patches in the buildroot using quiltFelix Fietkau2007-06-041-3/+4
* sync pcmcia-cs in trunk with whiterussian, add fix for memory rangesFelix Fietkau2006-12-051-0/+20
29' href='#n29'>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
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT

#include "qca953x_dlink_dap-2xxx.dtsi"

/ {
	compatible = "dlink,dap-2230-a1", "qca,qca9533";
	model = "D-Link DAP-2230 A1";

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

	keys {
		compatible = "gpio-keys";

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

	leds {
		compatible = "gpio-leds";

		led_power_green: power_green {
			label = "green:power";
			gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
			default-state = "on";
		};
	};
};

&partitions {
	partition@70000 {
		label = "firmware";
		reg = <0x70000 0xee0000>;
		compatible = "wrg";
	};

	partition@f50000 {
		label = "dlink";
		reg = <0xf50000 0xa0000>;
		read-only;
	};

	art: partition@ff0000 {
		label = "art";
		reg = <0xff0000 0x10000>;
		read-only;
	};
};