blob: e7a1aea3a56fd0b18fc8986aa6d946352ed57738 [file] [log] [blame]
Peter Robinsonab800e52020-01-20 09:18:18 +00001// SPDX-License-Identifier: GPL-2.0+
2
3#include "rk3399-u-boot.dtsi"
Heiko Stuebner97fa7842020-06-05 12:06:40 +02004
5#ifdef CONFIG_TARGET_PUMA_RK3399_RAM_DDR3_1333
6#include "rk3399-sdram-ddr3-1333.dtsi"
7#endif
8#ifdef CONFIG_TARGET_PUMA_RK3399_RAM_DDR3_1600
9#include "rk3399-sdram-ddr3-1600.dtsi"
10#endif
11#ifdef CONFIG_TARGET_PUMA_RK3399_RAM_DDR3_1866
12#include "rk3399-sdram-ddr3-1866.dtsi"
13#endif
14
Peter Robinsonab800e52020-01-20 09:18:18 +000015/ {
Heiko Stuebnerefcb2bd2020-06-05 12:06:38 +020016 config {
17 u-boot,spl-payload-offset = <0x40000>; /* @ 256KB */
18 u-boot,mmc-env-offset = <0x4000>; /* @ 16KB */
19 u-boot,efi-partition-entries-offset = <0x200000>; /* 2MB */
20 u-boot,boot-led = "module_led";
21 sysreset-gpio = <&gpio1 RK_PA6 GPIO_ACTIVE_HIGH>;
22 };
Peter Robinsonab800e52020-01-20 09:18:18 +000023
Heiko Stuebnerefcb2bd2020-06-05 12:06:38 +020024 chosen {
25 stdout-path = "serial0:115200n8";
26 u-boot,spl-boot-order = \
Jagan Teki167efc22020-04-28 15:30:17 +053027 "same-as-spl", &norflash, &sdhci, &sdmmc;
Heiko Stuebnerefcb2bd2020-06-05 12:06:38 +020028 };
Peter Robinsonab800e52020-01-20 09:18:18 +000029
Heiko Stuebnerefcb2bd2020-06-05 12:06:38 +020030 aliases {
Hugh Cole-Bakera2ca3c62020-11-22 13:03:46 +000031 spi5 = &spi5;
Heiko Stuebnerefcb2bd2020-06-05 12:06:38 +020032 };
Peter Robinsonab800e52020-01-20 09:18:18 +000033
Jagan Teki167efc22020-04-28 15:30:17 +053034 /*
35 * The Qseven BIOS_DISABLE signal on the RK3399-Q7 keeps the on-module
36 * eMMC and SPI flash powered-down initially (in fact it keeps the
37 * reset signal asserted). Even though it is an enable signal, we
38 * model this as a regulator.
39 */
40 bios_enable: bios_enable {
41 compatible = "regulator-fixed";
42 u-boot,dm-pre-reloc;
43 regulator-name = "bios_enable";
44 enable-active-high;
45 gpio = <&gpio3 RK_PD5 GPIO_ACTIVE_LOW>;
46 regulator-always-on;
47 regulator-boot-on;
48 regulator-min-microvolt = <1800000>;
49 regulator-max-microvolt = <1800000>;
50 };
Jagan Teki4888fbe2020-04-28 15:30:14 +053051};
52
53&gpio1 {
54 u-boot,dm-pre-reloc;
55};
56
57&gpio3 {
58 u-boot,dm-pre-reloc;
59};
60
Jagan Teki167efc22020-04-28 15:30:17 +053061&norflash {
Jagan Teki4888fbe2020-04-28 15:30:14 +053062 u-boot,dm-pre-reloc;
63};