mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
8d0370905c
spba-bus has a few nodes under it including the UART1 and some ESPI buses. In order to use them in SPL, the u-boot,dm-spl flag needs to be added to the spba-bus@2000000 container. Signed-off-by: Adam Ford <aford173@gmail.com>
29 lines
338 B
Text
29 lines
338 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
|
|
*/
|
|
|
|
/ {
|
|
soc {
|
|
u-boot,dm-spl;
|
|
|
|
aips-bus@2000000 {
|
|
u-boot,dm-spl;
|
|
spba-bus@2000000 {
|
|
u-boot,dm-spl;
|
|
};
|
|
};
|
|
|
|
aips-bus@2100000 {
|
|
u-boot,dm-spl;
|
|
};
|
|
};
|
|
};
|
|
|
|
&gpio1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&iomuxc {
|
|
u-boot,dm-spl;
|
|
};
|