blob: 9ff42ab82489c0ab48df94bc61e267cfe8edbbed [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>;
Marek Vasut628fe082025-02-10 02:32:29 +010016 u-boot,mmc-env-offset = <0x3fc000>;
17 u-boot,mmc-env-offset-redundant = <0x3fc000>;
Marek Vasutc3761602024-04-28 00:20:38 +020018 };
19};
20
21&flash0 {
22 bootph-pre-ram;
23
24 partitions {
25 compatible = "fixed-partitions";
26 #address-cells = <1>;
27 #size-cells = <1>;
28 partition@0 {
29 label = "fsbl1";
30 reg = <0x00000000 0x00040000>;
31 };
32 partition@40000 {
33 label = "fsbl2";
34 reg = <0x00040000 0x00040000>;
35 };
36 partition@80000 {
37 label = "u-boot";
38 reg = <0x00080000 0x00360000>;
39 };
40 partition@3e0000 {
41 label = "u-boot-env-a";
42 reg = <0x003e0000 0x00010000>;
43 };
44 partition@3f0000 {
45 label = "u-boot-env-b";
46 reg = <0x003f0000 0x00010000>;
47 };
48 };
49};
50
51&sdmmc1 {
52 status = "disabled";
53};
54
55&usbotg_hs {
56 u-boot,force-b-session-valid;
57};