diff options
| author | Bartosz Golaszewski <[email protected]> | 2019-07-29 08:58:05 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-07-29 17:58:52 -0400 |
| commit | 95cffd990654b518425641bd4a07956e5622835a (patch) | |
| tree | 65e8e93d5c483f142786c332e937153b4352b642 /include | |
| parent | f5a47554e0f7d4d2484fa65796dd1c06caa6494f (diff) | |
davinci: da850-evm: enable driver model for NAND
Enable the driver-model on da850-evm. We need to add a dummy nand node
to the device tree, as the real nand node is a sub-node of the aemif
device.
On linux the aemif driver populates all its child nodes, but we can't do
it in u-boot currently.
Signed-off-by: Bartosz Golaszewski <[email protected]>
Tested-by: Adam Ford <[email protected]> #da850-evm
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/da850evm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h index 2dab17afabb..ff536131ba5 100644 --- a/include/configs/da850evm.h +++ b/include/configs/da850evm.h @@ -174,6 +174,10 @@ #define CONFIG_SPL_NAND_DRIVERS #define CONFIG_SPL_NAND_ECC #define CONFIG_SPL_NAND_LOAD + +#ifndef CONFIG_SPL_BUILD +#define CONFIG_SYS_NAND_SELF_INIT +#endif #endif /* |
