mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
d2a67e362f
Currently, the da850-lcdk uses SPL_OF_PLATDATA and manually loads the necessary source code instead of using the auto-generated, because the drivers don't properly autogenerate the code. This patch simply enables the various device tree options to mimic the da850-evm which doesn't need or use OF_PLATDATA for device tree support. It does not disable OF_PLATDATA. Signed-off-by: Adam Ford <aford173@gmail.com> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
30 lines
372 B
Text
30 lines
372 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* da850-lcdk U-Boot Additions
|
|
*
|
|
* Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
|
|
*/
|
|
|
|
/ {
|
|
aliases {
|
|
i2c0 = &i2c0;
|
|
mmc0 = &mmc0;
|
|
serial2 = &serial2;
|
|
};
|
|
|
|
soc@1c00000 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
nand {
|
|
compatible = "ti,davinci-nand";
|
|
};
|
|
};
|
|
|
|
&mmc0 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&serial2 {
|
|
u-boot,dm-spl;
|
|
};
|