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

#include "qca953x.dtsi"

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

&spi {
	status = "okay";

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

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

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

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

			partition@50000 {
				label = "rgdb";
				reg = <0x50000 0x10000>;
				read-only;
			};

			partition@60000 {
				label = "unused";
				reg = <0x60000 0x10000>;
				read-only;
			};

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

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

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

&wmac {
	status = "okay";

	nvmem-cells = <&cal_ath9k>;
	nvmem-cell-names = "calibration";
};