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

#include "qca955x.dtsi"

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

/ {
	compatible = "dlink,dir-629-a1", "qca,qca9558";
	model = "D-Link DIR-629 A1";

	aliases {
		label-mac-device = &eth0;
		led-boot = &led_power;
		led-failsafe = &led_power;
		led-running = &led_power;
		led-upgrade = &led_power;
	};

	keys {
		compatible = "gpio-keys";

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

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

	leds {
		compatible = "gpio-leds";

		led-0 {
			color = <LED_COLOR_ID_GREEN>;
			function = LED_FUNCTION_WLAN;
			gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
			linux,default-trigger = "phy0tpt";
		};

		led_power: led-1 {
			color = <LED_COLOR_ID_GREEN>;
			function = LED_FUNCTION_POWER;
			gpios = <&gpio 21 GPIO_ACTIVE_LOW>;
		};

		led-2 {
			color = <LED_COLOR_ID_GREEN>;
			function = LED_FUNCTION_WPS;
			gpios = <&gpio 23 GPIO_ACTIVE_LOW>;
		};
	};
};

&eth0 {
	status = "okay";

	phy-mode = "mii";

	nvmem-cells = <&macaddr_mfcdata_35 0>;
	nvmem-cell-names = "mac-address";

	fixed-link {
		speed = <100>;
		full-duplex;
	};
};

&mdio0 {
	status = "okay";

	switch0@1f {
		compatible = "qca,ar8236";
		reg = <0x1f>;
	};
};

&spi {
	status = "okay";

	flash@0 {
		compatible = "jedec,spi-nor";
		reg = <0>;
		spi-max-frequency = <30000000>;
		m25p,fast-read;

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

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

			partition@40000 {
				label = "u-boot-env";
				reg = <0x040000 0x008000>;
				read-only;
			};

			partition@48000 {
				label = "mfcdata";
				reg = <0x048000 0x008000>;
				read-only;

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

					macaddr_mfcdata_35: macaddr@35 {
						compatible = "mac-base";
						reg = <0x35 0x11>;
						#nvmem-cell-cells = <1>;
					};

					macaddr_mfcdata_51: macaddr@51 {
						compatible = "mac-base";
						reg = <0x51 0x11>;
						#nvmem-cell-cells = <1>;
					};
				};
			};

			partition@50000 {
				label = "devconf";
				reg = <0x050000 0x010000>;
				read-only;
			};

			partition@60000 {
				label = "langpack";
				reg = <0x060000 0x020000>;
				read-only;
			};

			partition@80000 {
				label = "art";
				reg = <0x080000 0x010000>;
				read-only;

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

					cal_art_1000: calibration@1000 {
						reg = <0x1000 0x440>;
					};
				};
			};

			partition@90000 {
				compatible = "seama";
				label = "firmware";
				reg = <0x090000 0x770000>;
			};
		};
	};
};

&wmac {
	status = "okay";

	nvmem-cells = <&cal_art_1000>, <&macaddr_mfcdata_51 0>;
	nvmem-cell-names = "calibration", "mac-address";
};