blob: 30e3b91bcccecb03778425e9f30943352af7e9a2 [file] [log] [blame]
Marek Vasutc3761602024-04-28 00:20:38 +02001// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
2/*
3 * Copyright (C) 2024 Marek Vasut <marex@denx.de>
4 */
5
6#include "stm32mp13-u-boot.dtsi"
7
8/ {
9 aliases {
10 eeprom0 = &eeprom0;
11 };
12
13 config {
14 dh,ddr3-coding-gpios = <&gpiod 5 0>, <&gpiod 9 0>;
15 dh,som-coding-gpios = <&gpioa 13 0>, <&gpioi 1 0>;
16 };
17};
18
19&flash0 {
20 bootph-pre-ram;
21
22 partitions {
23 compatible = "fixed-partitions";
24 #address-cells = <1>;
25 #size-cells = <1>;
26 partition@0 {
27 label = "fsbl1";
28 reg = <0x00000000 0x00040000>;
29 };
30 partition@40000 {
31 label = "fsbl2";
32 reg = <0x00040000 0x00040000>;
33 };
34 partition@80000 {
35 label = "u-boot";
36 reg = <0x00080000 0x00360000>;
37 };
38 partition@3e0000 {
39 label = "u-boot-env-a";
40 reg = <0x003e0000 0x00010000>;
41 };
42 partition@3f0000 {
43 label = "u-boot-env-b";
44 reg = <0x003f0000 0x00010000>;
45 };
46 };
47};
48
49&sdmmc1 {
50 status = "disabled";
51};
52
53&usbotg_hs {
54 u-boot,force-b-session-valid;
55};