blob: 8b5d7e10b3bd4b9bcaf79e0f8cd32fe66b643cda [file] [log] [blame]
Lukasz Majewski010e58d2019-12-08 22:06:56 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2019
4 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
5 *
6 * SPDX-License-Identifier: GPL-2.0+ or X11
7 */
8
9/*
10 * The minimal augmentation DTS U-Boot file to allow eMMC driver
11 * configuration in SPL for falcon boot.
12 */
13#include "imx28-u-boot.dtsi"
14/ {
15 apb@80000000 {
16 u-boot,dm-spl;
17
18 apbh@80000000 {
19 u-boot,dm-spl;
20 };
21
22 apbx@80040000 {
23 u-boot,dm-spl;
24 };
25 };
26};
27
28&clks {
29 u-boot,dm-spl;
30};
31
32&gpio0 {
33 u-boot,dm-spl;
34};
35
36&pinctrl {
37 u-boot,dm-spl;
38};
39
40&ssp0 {
41 u-boot,dm-spl;
42};
43
44&ssp3 {
Marcel Ziswiler063195d2022-10-22 23:59:45 +020045 num-cs = <2>;
46 spi-max-frequency = <40000000>;
Lukasz Majewski010e58d2019-12-08 22:06:56 +010047 u-boot,dm-spl;
48};