summaryrefslogtreecommitdiffstats
path: root/arch/arm/dts/at91-sama5d27_som1_ek.dts
blob: 1a704b42680fd986c0d432c3e32d79f76ec29fcc (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
47
48
49
50
51
52
53
54
55
56
57
58
// SPDX-License-Identifier: GPL-2.0 OR X11
/*
 * Copyright (C) 2019 Oleksij Rempel - Pengutronix
 */

#include <arm/at91-sama5d27_som1_ek.dts>
#include "at91-sama5d27_som1.dtsi"

/ {
	chosen {
		environment-qspi {
			compatible = "barebox,environment";
			device-path = &barebox_env;
			status = "disabled";
		};

		environment-sd {
			compatible = "barebox,environment";
			device-path = &sdmmc0;
			file-path = "barebox.env";
			status = "disabled";
		};

		environment-microsd {
			compatible = "barebox,environment";
			device-path = &sdmmc1;
			file-path = "barebox.env";
			status = "disabled";
		};
	};
};

&qspi1 {
	/delete-node/ flash@0;

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

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

			barebox@40000 {
				label = "barebox";
				reg = <0x40000 0xc0000>;
			};

			barebox_env: barebox-env@100000 {
				label = "barebox-environment";
				reg = <0x100000 0x40000>;
			};
		};
	};
};