// SPDX-License-Identifier: GPL-2.0-or-later OR MIT

#include "qca956x.dtsi"

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

/ {
	aliases {
		led-boot = &led_power;
		led-failsafe = &led_power;
		led-running = &led_power;
		led-upgrade = &led_power;
		mdio-gpio0 = &mdio2;
	};

	leds {
		compatible = "gpio-leds";

		led_power: power {
			function = LED_FUNCTION_POWER;
			color = <LED_COLOR_ID_BLUE>;
			gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
		};

		wlan2g {
			label = "blue:wlan2g";
			gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
			linux,default-trigger = "phy1tpt";
		};

		wlan5g {
			label = "blue:wlan5g";
			gpios = <&gpio 5 GPIO_ACTIVE_LOW>;
			linux,default-trigger = "phy0tpt";
		};

		lan_link {
			label = "green:lan_link";
			gpios = <&gpio 8 GPIO_ACTIVE_LOW>;
		};

		lan_data {
			label = "green:lan_data";
			gpios = <&gpio 9 GPIO_ACTIVE_LOW>;
		};

		wps_blue {
			function = LED_FUNCTION_WPS;
			color = <LED_COLOR_ID_BLUE>;
			gpios = <&gpio 17 GPIO_ACTIVE_HIGH>;
		};

		wps_red {
			function = LED_FUNCTION_WPS;
			color = <LED_COLOR_ID_RED>;
			gpios = <&gpio 20 GPIO_ACTIVE_HIGH>;
		};
	};

	keys {
		compatible = "gpio-keys";

		reset {
			label = "Reset button";
			linux,code = <KEY_RESTART>;
			gpios = <&gpio 6 GPIO_ACTIVE_LOW>;
			debounce-interval = <60>;
		};

		power {
			label = "Power button";
			linux,code = <KEY_POWER>;
			gpios = <&gpio 2 GPIO_ACTIVE_LOW>;
			debounce-interval = <60>;
		};

		leds {
			label = "LED control button";
			linux,code = <BTN_0>;
			gpios = <&gpio 7 GPIO_ACTIVE_LOW>;
			debounce-interval = <60>;
		};

		wps {
			label = "WPS button";
			linux,code = <KEY_WPS_BUTTON>;
			gpios = <&gpio 19 GPIO_ACTIVE_LOW>;
			debounce-interval = <60>;
		};
	};

	mdio2: mdio {
		compatible = "virtual,mdio-gpio";

		gpios = <&gpio 3 GPIO_ACTIVE_HIGH>, /* MDC */
			<&gpio 4 GPIO_ACTIVE_HIGH>; /* MDIO */
		#address-cells = <1>;
		#size-cells = <0>;

		phy4: ethernet-phy@4 {
			reg = <4>;
			device_type = "ethernet-phy";
			reset-gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
		};
	};
};

&pcie {
	status = "okay";
};

&spi {
	status = "okay";

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

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

&eth0 {
	status = "okay";

	phy-mode = "sgmii";
	phy-handle = <&phy4>;
};

&wmac {
	status = "okay";
};