mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
f7c1d53605
With the memory mapping giving us some more avialable RAM, this updates the da850-evm-u-boot.dtsi to include the serial port, SPI and Flash nodes along with some dependent nodes in the SPL dtb. This also removes the platform data initialization code for the serial port and SPI Flash. Signed-off-by: Adam Ford <aford173@gmail.com>
29 lines
322 B
Text
29 lines
322 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* da850-evm U-Boot Additions
|
|
*
|
|
* Copyright (C) 2017 Logic PD, Inc.
|
|
* Copyright (C) Adam Ford
|
|
*/
|
|
|
|
/ {
|
|
soc@1c00000 {
|
|
u-boot,dm-spl;
|
|
};
|
|
};
|
|
|
|
&flash {
|
|
compatible = "m25p64", "spi-flash";
|
|
};
|
|
|
|
&mmc0 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&serial2 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&spi1 {
|
|
u-boot,dm-spl;
|
|
};
|