summaryrefslogtreecommitdiffstats
path: root/arch/arm/dts/imx93-tqma93xx.dtsi
blob: 40425e39a7403a9768650417c64f76cf1d25af77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// SPDX-License-Identifier: (GPL-2.0-or-later OR MIT)

/{
	chosen {
		environment-spi-nor {
			compatible = "barebox,environment";
			device-path = &environment_spi_nor;
		};
	};
};

&lpi2c1 {
	pca9451a: pmic@25 {
		compatible = "nxp,pca9451a";
		reg = <0x25>;
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_pca9451>;
	};
};

&usbotg1 {
	status = "okay";
};

&usbotg2 {
	status = "okay";
	dr_mode = "host";
};

&{flexspi1/flash@0} {
	partitions {
		compatible = "fixed-partitions";
		#address-cells = <1>;
		#size-cells = <1>;

		partition@0 {
			label = "barebox";
			reg = <0x0 0x400000>;
		};

		environment_spi_nor: partition@400000 {
			label = "barebox-environment";
			reg = <0x400000 0x100000>;
		};
	};
};