diff options
author | Adam Ford <aford173@gmail.com> | 2019-02-25 21:53:47 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-12 08:05:49 -0400 |
commit | f7c1d53605d9ec528abacda9ba1763c67221fc88 (patch) | |
tree | bdb868c2bd41dcf7181c51a029138f6c572a254b /arch | |
parent | 15b8c7505819fa48dd99fb51e91b9536f341fde1 (diff) | |
download | u-boot-f7c1d53605d9ec528abacda9ba1763c67221fc88.tar.gz u-boot-f7c1d53605d9ec528abacda9ba1763c67221fc88.tar.bz2 u-boot-f7c1d53605d9ec528abacda9ba1763c67221fc88.zip |
ARM: davinci: da850evm: Enable SPL_OF_CONTROL without PLATDATA
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/da850-evm-u-boot.dtsi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/dts/da850-evm-u-boot.dtsi b/arch/arm/dts/da850-evm-u-boot.dtsi index ab1de77954..ab9368b9d3 100644 --- a/arch/arm/dts/da850-evm-u-boot.dtsi +++ b/arch/arm/dts/da850-evm-u-boot.dtsi @@ -6,6 +6,24 @@ * 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; +}; |