summaryrefslogtreecommitdiffstats
path: root/arch/arm/dts/imx93-tqma93xx.dtsi
blob: 5877290640588f46e0a90d63d5a992655f5e1719 (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
// SPDX-License-Identifier: (GPL-2.0-or-later OR MIT)

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

&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>;
		};
	};
};