linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: omap2plus_defconfig: Fix SATA and NAND for v4.0-rc
@ 2015-02-23 15:18 Roger Quadros
  2015-02-23 15:18 ` [PATCH 1/2] ARM: omap2plus_defconfig: Enable OMAP NAND BCH driver Roger Quadros
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Roger Quadros @ 2015-02-23 15:18 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

These changes fix SATA boot and NAND for OMAP based boards.

I must also point out that basic SATA operation is also
broken when TI_PIPE3 driver is built as a module.
I will be investigating that on lower priority.

--
cheers,
-roger

Roger Quadros (2):
  ARM: omap2plus_defconfig: Enable OMAP NAND BCH driver
  ARM: omap2plus_defconfig: Fix SATA boot

 arch/arm/configs/omap2plus_defconfig | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

-- 
2.1.0

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] ARM: omap2plus_defconfig: Enable OMAP NAND BCH driver
  2015-02-23 15:18 [PATCH 0/2] ARM: omap2plus_defconfig: Fix SATA and NAND for v4.0-rc Roger Quadros
@ 2015-02-23 15:18 ` Roger Quadros
  2015-02-23 15:18 ` [PATCH 2/2] ARM: omap2plus_defconfig: Fix SATA boot Roger Quadros
  2015-02-24 18:02 ` [PATCH 0/2] ARM: omap2plus_defconfig: Fix SATA and NAND for v4.0-rc Tony Lindgren
  2 siblings, 0 replies; 4+ messages in thread
From: Roger Quadros @ 2015-02-23 15:18 UTC (permalink / raw)
  To: linux-arm-kernel

Without this NAND doesn't work on most EVMs.

Signed-off-by: Roger Quadros <rogerq@ti.com>
---
 arch/arm/configs/omap2plus_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index b738652..b674245 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -114,6 +114,7 @@ CONFIG_MTD_PHYSMAP_OF=y
 CONFIG_MTD_NAND=y
 CONFIG_MTD_NAND_ECC_BCH=y
 CONFIG_MTD_NAND_OMAP2=y
+CONFIG_MTD_NAND_OMAP_BCH=y
 CONFIG_MTD_ONENAND=y
 CONFIG_MTD_ONENAND_VERIFY_WRITE=y
 CONFIG_MTD_ONENAND_OMAP2=y
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] ARM: omap2plus_defconfig: Fix SATA boot
  2015-02-23 15:18 [PATCH 0/2] ARM: omap2plus_defconfig: Fix SATA and NAND for v4.0-rc Roger Quadros
  2015-02-23 15:18 ` [PATCH 1/2] ARM: omap2plus_defconfig: Enable OMAP NAND BCH driver Roger Quadros
@ 2015-02-23 15:18 ` Roger Quadros
  2015-02-24 18:02 ` [PATCH 0/2] ARM: omap2plus_defconfig: Fix SATA and NAND for v4.0-rc Tony Lindgren
  2 siblings, 0 replies; 4+ messages in thread
From: Roger Quadros @ 2015-02-23 15:18 UTC (permalink / raw)
  To: linux-arm-kernel

SATA operation depends on PIPE3 PHY and if we want
to boot from SATA drives, we have to have the PIPE3 PHY
driver built-in.

Signed-off-by: Roger Quadros <rogerq@ti.com>
---
 arch/arm/configs/omap2plus_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/configs/omap2plus_defconfig b/arch/arm/configs/omap2plus_defconfig
index b674245..088096f 100644
--- a/arch/arm/configs/omap2plus_defconfig
+++ b/arch/arm/configs/omap2plus_defconfig
@@ -375,7 +375,7 @@ CONFIG_PWM_TIEHRPWM=m
 CONFIG_PWM_TWL=m
 CONFIG_PWM_TWL_LED=m
 CONFIG_OMAP_USB2=m
-CONFIG_TI_PIPE3=m
+CONFIG_TI_PIPE3=y
 CONFIG_EXT2_FS=y
 CONFIG_EXT3_FS=y
 # CONFIG_EXT3_FS_XATTR is not set
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 0/2] ARM: omap2plus_defconfig: Fix SATA and NAND for v4.0-rc
  2015-02-23 15:18 [PATCH 0/2] ARM: omap2plus_defconfig: Fix SATA and NAND for v4.0-rc Roger Quadros
  2015-02-23 15:18 ` [PATCH 1/2] ARM: omap2plus_defconfig: Enable OMAP NAND BCH driver Roger Quadros
  2015-02-23 15:18 ` [PATCH 2/2] ARM: omap2plus_defconfig: Fix SATA boot Roger Quadros
@ 2015-02-24 18:02 ` Tony Lindgren
  2 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2015-02-24 18:02 UTC (permalink / raw)
  To: linux-arm-kernel

* Roger Quadros <rogerq@ti.com> [150223 07:22]:
> Hi,
> 
> These changes fix SATA boot and NAND for OMAP based boards.
> 
> I must also point out that basic SATA operation is also
> broken when TI_PIPE3 driver is built as a module.
> I will be investigating that on lower priority.

OK applying into omap-for-v4.0/fixes. At some point we're going
to make everything use loadable modules and initramfs so best
to make sure things work as loadable modules.

Regards,

Tony
 
> Roger Quadros (2):
>   ARM: omap2plus_defconfig: Enable OMAP NAND BCH driver
>   ARM: omap2plus_defconfig: Fix SATA boot
> 
>  arch/arm/configs/omap2plus_defconfig | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> -- 
> 2.1.0
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-02-24 18:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-23 15:18 [PATCH 0/2] ARM: omap2plus_defconfig: Fix SATA and NAND for v4.0-rc Roger Quadros
2015-02-23 15:18 ` [PATCH 1/2] ARM: omap2plus_defconfig: Enable OMAP NAND BCH driver Roger Quadros
2015-02-23 15:18 ` [PATCH 2/2] ARM: omap2plus_defconfig: Fix SATA boot Roger Quadros
2015-02-24 18:02 ` [PATCH 0/2] ARM: omap2plus_defconfig: Fix SATA and NAND for v4.0-rc Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).