* [U-Boot] [PATCH] defconfig: am43xx_evm: Enable DM_SPI and DM_SPI_FLASH
@ 2016-11-22 9:12 Vignesh R
2016-11-22 9:14 ` Lokesh Vutla
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Vignesh R @ 2016-11-22 9:12 UTC (permalink / raw)
To: u-boot
Commit 4c4e3b37750f3("ARM: AM43xx: Enable FIT") accidentally disabled
DM_SPI and DM_SPI_FLASH. Add back DM_SPI and DM_SPI_FLASH to
am43xx_evm_defconfig in order to make use of DM framework for QSPI.
Signed-off-by: Vignesh R <vigneshr@ti.com>
---
configs/am43xx_evm_defconfig | 2 ++
configs/am43xx_hs_evm_defconfig | 2 ++
2 files changed, 4 insertions(+)
diff --git a/configs/am43xx_evm_defconfig b/configs/am43xx_evm_defconfig
index 443e1fb6bfc2..e596106e1326 100644
--- a/configs/am43xx_evm_defconfig
+++ b/configs/am43xx_evm_defconfig
@@ -51,6 +51,8 @@ CONFIG_SPI_FLASH_MACRONIX=y
CONFIG_DM_ETH=y
CONFIG_DM_SERIAL=y
CONFIG_SYS_NS16550=y
+CONFIG_DM_SPI=y
+CONFIG_DM_SPI_FLASH=y
CONFIG_TI_QSPI=y
CONFIG_TIMER=y
CONFIG_OMAP_TIMER=y
diff --git a/configs/am43xx_hs_evm_defconfig b/configs/am43xx_hs_evm_defconfig
index 1c538774b0a9..582866daa11c 100644
--- a/configs/am43xx_hs_evm_defconfig
+++ b/configs/am43xx_hs_evm_defconfig
@@ -52,6 +52,8 @@ CONFIG_SPI_FLASH_MACRONIX=y
CONFIG_DM_ETH=y
CONFIG_DM_SERIAL=y
CONFIG_SYS_NS16550=y
+CONFIG_DM_SPI=y
+CONFIG_DM_SPI_FLASH=y
CONFIG_TI_QSPI=y
CONFIG_TIMER=y
CONFIG_OMAP_TIMER=y
--
2.10.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] defconfig: am43xx_evm: Enable DM_SPI and DM_SPI_FLASH
2016-11-22 9:12 [U-Boot] [PATCH] defconfig: am43xx_evm: Enable DM_SPI and DM_SPI_FLASH Vignesh R
@ 2016-11-22 9:14 ` Lokesh Vutla
2016-11-23 4:48 ` Mugunthan V N
2016-12-04 23:08 ` [U-Boot] " Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Lokesh Vutla @ 2016-11-22 9:14 UTC (permalink / raw)
To: u-boot
On Tuesday 22 November 2016 02:42 PM, Vignesh R wrote:
> Commit 4c4e3b37750f3("ARM: AM43xx: Enable FIT") accidentally disabled
> DM_SPI and DM_SPI_FLASH. Add back DM_SPI and DM_SPI_FLASH to
> am43xx_evm_defconfig in order to make use of DM framework for QSPI.
>
> Signed-off-by: Vignesh R <vigneshr@ti.com>
Acked-by: Lokesh Vutla <lokeshvutla@ti.com>
Thanks and regards,
Lokesh
> ---
> configs/am43xx_evm_defconfig | 2 ++
> configs/am43xx_hs_evm_defconfig | 2 ++
> 2 files changed, 4 insertions(+)
>
> diff --git a/configs/am43xx_evm_defconfig b/configs/am43xx_evm_defconfig
> index 443e1fb6bfc2..e596106e1326 100644
> --- a/configs/am43xx_evm_defconfig
> +++ b/configs/am43xx_evm_defconfig
> @@ -51,6 +51,8 @@ CONFIG_SPI_FLASH_MACRONIX=y
> CONFIG_DM_ETH=y
> CONFIG_DM_SERIAL=y
> CONFIG_SYS_NS16550=y
> +CONFIG_DM_SPI=y
> +CONFIG_DM_SPI_FLASH=y
> CONFIG_TI_QSPI=y
> CONFIG_TIMER=y
> CONFIG_OMAP_TIMER=y
> diff --git a/configs/am43xx_hs_evm_defconfig b/configs/am43xx_hs_evm_defconfig
> index 1c538774b0a9..582866daa11c 100644
> --- a/configs/am43xx_hs_evm_defconfig
> +++ b/configs/am43xx_hs_evm_defconfig
> @@ -52,6 +52,8 @@ CONFIG_SPI_FLASH_MACRONIX=y
> CONFIG_DM_ETH=y
> CONFIG_DM_SERIAL=y
> CONFIG_SYS_NS16550=y
> +CONFIG_DM_SPI=y
> +CONFIG_DM_SPI_FLASH=y
> CONFIG_TI_QSPI=y
> CONFIG_TIMER=y
> CONFIG_OMAP_TIMER=y
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] defconfig: am43xx_evm: Enable DM_SPI and DM_SPI_FLASH
2016-11-22 9:12 [U-Boot] [PATCH] defconfig: am43xx_evm: Enable DM_SPI and DM_SPI_FLASH Vignesh R
2016-11-22 9:14 ` Lokesh Vutla
@ 2016-11-23 4:48 ` Mugunthan V N
2016-12-04 23:08 ` [U-Boot] " Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Mugunthan V N @ 2016-11-23 4:48 UTC (permalink / raw)
To: u-boot
On Tuesday 22 November 2016 02:42 PM, Vignesh R wrote:
> Commit 4c4e3b37750f3("ARM: AM43xx: Enable FIT") accidentally disabled
> DM_SPI and DM_SPI_FLASH. Add back DM_SPI and DM_SPI_FLASH to
> am43xx_evm_defconfig in order to make use of DM framework for QSPI.
>
> Signed-off-by: Vignesh R <vigneshr@ti.com>
Reviewed-by: Mugunthan V N <mugunthanvnm@ti.com>
Regards
Mugunthan V N
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] defconfig: am43xx_evm: Enable DM_SPI and DM_SPI_FLASH
2016-11-22 9:12 [U-Boot] [PATCH] defconfig: am43xx_evm: Enable DM_SPI and DM_SPI_FLASH Vignesh R
2016-11-22 9:14 ` Lokesh Vutla
2016-11-23 4:48 ` Mugunthan V N
@ 2016-12-04 23:08 ` Tom Rini
2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2016-12-04 23:08 UTC (permalink / raw)
To: u-boot
On Tue, Nov 22, 2016 at 02:42:56PM +0530, Vignesh R wrote:
> Commit 4c4e3b37750f3("ARM: AM43xx: Enable FIT") accidentally disabled
> DM_SPI and DM_SPI_FLASH. Add back DM_SPI and DM_SPI_FLASH to
> am43xx_evm_defconfig in order to make use of DM framework for QSPI.
>
> Signed-off-by: Vignesh R <vigneshr@ti.com>
> Acked-by: Lokesh Vutla <lokeshvutla@ti.com>
> Reviewed-by: Mugunthan V N <mugunthanvnm@ti.com>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20161204/68ea1850/attachment.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-12-04 23:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-22 9:12 [U-Boot] [PATCH] defconfig: am43xx_evm: Enable DM_SPI and DM_SPI_FLASH Vignesh R
2016-11-22 9:14 ` Lokesh Vutla
2016-11-23 4:48 ` Mugunthan V N
2016-12-04 23:08 ` [U-Boot] " Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox