All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v1 1/3] OMAP3: add missing gpio clock init and fix NAND SPL for mcx board
@ 2014-02-14 11:51 Stefano Babic
  2014-02-14 11:51 ` [U-Boot] [PATCH v1 2/3] omap3: fix pinmux " Stefano Babic
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Stefano Babic @ 2014-02-14 11:51 UTC (permalink / raw)
  To: u-boot

Patch contains the same fixes as commit
4b9b2c300a23ca4a85811918dc92e822a9571a87
(missing CONFIG_OMAP3_GPIO_2) and commit
f9095aac793aa8917ab9b915c5d449e6dc8d3d30 (missing CONFIG_SPL_NAND_SOFTECC).
Same issues are relevant for the mcx board, too.

Signed-off-by: Stefano Babic <sbabic@denx.de>

---

 include/configs/mcx.h |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/mcx.h b/include/configs/mcx.h
index dcd29ce..209c2bb 100644
--- a/include/configs/mcx.h
+++ b/include/configs/mcx.h
@@ -98,6 +98,7 @@
 
 /* EHCI */
 #define CONFIG_USB_STORAGE
+#define CONFIG_OMAP3_GPIO_2
 #define CONFIG_OMAP3_GPIO_5
 #define CONFIG_USB_EHCI
 #define CONFIG_USB_EHCI_OMAP
@@ -395,6 +396,7 @@
 #define CONFIG_SYS_NAND_ECCSIZE		256
 #define CONFIG_SYS_NAND_ECCBYTES	3
 #define CONFIG_NAND_OMAP_ECCSCHEME	OMAP_ECC_HAM1_CODE_SW
+#define CONFIG_SPL_NAND_SOFTECC
 
 #define CONFIG_SYS_NAND_U_BOOT_START   CONFIG_SYS_TEXT_BASE
 
-- 
1.7.9.5

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

* [U-Boot] [PATCH v1 2/3] omap3: fix pinmux for mcx board
  2014-02-14 11:51 [U-Boot] [PATCH v1 1/3] OMAP3: add missing gpio clock init and fix NAND SPL for mcx board Stefano Babic
@ 2014-02-14 11:51 ` Stefano Babic
  2014-02-21 19:16   ` [U-Boot] [U-Boot,v1,2/3] " Tom Rini
  2014-02-14 11:51 ` [U-Boot] [PATCH v1 3/3] OMAP3: fix default environment " Stefano Babic
  2014-02-21 19:15 ` [U-Boot] [U-Boot, v1, 1/3] OMAP3: add missing gpio clock init and fix NAND SPL " Tom Rini
  2 siblings, 1 reply; 6+ messages in thread
From: Stefano Babic @ 2014-02-14 11:51 UTC (permalink / raw)
  To: u-boot

New hardware version cannot recognize the SD-Card
because the SYS_NRESWARM, set as GPIO, does not
guarantee the required reset time.
Change the pin function back to enable the
SYS_NRESWARM signal driven by the SOC.

Signed-off-by: Stefano Babic <sbabic@denx.de>
---

 board/htkw/mcx/mcx.h |    2 --
 1 file changed, 2 deletions(-)

diff --git a/board/htkw/mcx/mcx.h b/board/htkw/mcx/mcx.h
index 703dbec..17c122c 100644
--- a/board/htkw/mcx/mcx.h
+++ b/board/htkw/mcx/mcx.h
@@ -325,8 +325,6 @@ const omap3_sysinfo sysinfo = {
 	MUX_VAL(CP(SYS_32K),		(IEN  | PTD | EN  | M4)) \
 	MUX_VAL(CP(SYS_CLKREQ),		(IEN  | PTD | DIS | M0)) \
 	MUX_VAL(CP(SYS_NIRQ),		(IEN  | PTD | EN  | M4)) \
-	MUX_VAL(CP(SYS_NRESWARM),	(IEN | PTU | DIS | M4)) \
-					/* SYS_nRESWARM */\
 	MUX_VAL(CP(SYS_BOOT0),		(IEN  | PTD | DIS | M4)) \
 	MUX_VAL(CP(SYS_BOOT1),		(IEN  | PTD | DIS | M4)) \
 	MUX_VAL(CP(SYS_BOOT2),		(IEN  | PTD | DIS | M4)) \
-- 
1.7.9.5

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

* [U-Boot] [PATCH v1 3/3] OMAP3: fix default environment for mcx board
  2014-02-14 11:51 [U-Boot] [PATCH v1 1/3] OMAP3: add missing gpio clock init and fix NAND SPL for mcx board Stefano Babic
  2014-02-14 11:51 ` [U-Boot] [PATCH v1 2/3] omap3: fix pinmux " Stefano Babic
@ 2014-02-14 11:51 ` Stefano Babic
  2014-02-21 19:16   ` [U-Boot] [U-Boot, v1, " Tom Rini
  2014-02-21 19:15 ` [U-Boot] [U-Boot, v1, 1/3] OMAP3: add missing gpio clock init and fix NAND SPL " Tom Rini
  2 siblings, 1 reply; 6+ messages in thread
From: Stefano Babic @ 2014-02-14 11:51 UTC (permalink / raw)
  To: u-boot

Patch allows to load a script at the startup from MMC.

Signed-off-by: Stefano Babic <sbabic@denx.de>
---

 include/configs/mcx.h |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/include/configs/mcx.h b/include/configs/mcx.h
index 209c2bb..7c5c2f4 100644
--- a/include/configs/mcx.h
+++ b/include/configs/mcx.h
@@ -264,10 +264,9 @@
 			"${mtdparts} "					\
 			"vram=6M omapfb.vram=1:2M,2:2M,3:2M "		\
 			"omapdss.def_disp=lcd;"				\
-		"bootm 0x82000000 0x84000000\0"
-
-#define CONFIG_BOOTCOMMAND \
-	"run nandboot"
+		"bootm 0x82000000 0x84000000\0"				\
+	"bootcmd=mmc rescan;if fatload mmc 0 82000000 loadbootscr.scr;"	\
+		"then source 82000000;else run nandboot;fi\0"
 
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_CMDLINE_EDITING
-- 
1.7.9.5

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

* [U-Boot] [U-Boot, v1, 1/3] OMAP3: add missing gpio clock init and fix NAND SPL for mcx board
  2014-02-14 11:51 [U-Boot] [PATCH v1 1/3] OMAP3: add missing gpio clock init and fix NAND SPL for mcx board Stefano Babic
  2014-02-14 11:51 ` [U-Boot] [PATCH v1 2/3] omap3: fix pinmux " Stefano Babic
  2014-02-14 11:51 ` [U-Boot] [PATCH v1 3/3] OMAP3: fix default environment " Stefano Babic
@ 2014-02-21 19:15 ` Tom Rini
  2 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2014-02-21 19:15 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 14, 2014 at 12:51:25PM +0100, Stefano Babic wrote:

> Patch contains the same fixes as commit
> 4b9b2c300a23ca4a85811918dc92e822a9571a87
> (missing CONFIG_OMAP3_GPIO_2) and commit
> f9095aac793aa8917ab9b915c5d449e6dc8d3d30 (missing CONFIG_SPL_NAND_SOFTECC).
> Same issues are relevant for the mcx board, too.
> 
> Signed-off-by: Stefano Babic <sbabic@denx.de>

Applied to u-boot-ti/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140221/72deb600/attachment.pgp>

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

* [U-Boot] [U-Boot,v1,2/3] omap3: fix pinmux for mcx board
  2014-02-14 11:51 ` [U-Boot] [PATCH v1 2/3] omap3: fix pinmux " Stefano Babic
@ 2014-02-21 19:16   ` Tom Rini
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2014-02-21 19:16 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 14, 2014 at 12:51:26PM +0100, Stefano Babic wrote:

> New hardware version cannot recognize the SD-Card
> because the SYS_NRESWARM, set as GPIO, does not
> guarantee the required reset time.
> Change the pin function back to enable the
> SYS_NRESWARM signal driven by the SOC.
> 
> Signed-off-by: Stefano Babic <sbabic@denx.de>

Applied to u-boot-ti/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140221/6fc65473/attachment.pgp>

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

* [U-Boot] [U-Boot, v1, 3/3] OMAP3: fix default environment for mcx board
  2014-02-14 11:51 ` [U-Boot] [PATCH v1 3/3] OMAP3: fix default environment " Stefano Babic
@ 2014-02-21 19:16   ` Tom Rini
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2014-02-21 19:16 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 14, 2014 at 12:51:27PM +0100, Stefano Babic wrote:

> Patch allows to load a script at the startup from MMC.
> 
> Signed-off-by: Stefano Babic <sbabic@denx.de>

Applied to u-boot-ti/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140221/04036440/attachment.pgp>

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

end of thread, other threads:[~2014-02-21 19:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-14 11:51 [U-Boot] [PATCH v1 1/3] OMAP3: add missing gpio clock init and fix NAND SPL for mcx board Stefano Babic
2014-02-14 11:51 ` [U-Boot] [PATCH v1 2/3] omap3: fix pinmux " Stefano Babic
2014-02-21 19:16   ` [U-Boot] [U-Boot,v1,2/3] " Tom Rini
2014-02-14 11:51 ` [U-Boot] [PATCH v1 3/3] OMAP3: fix default environment " Stefano Babic
2014-02-21 19:16   ` [U-Boot] [U-Boot, v1, " Tom Rini
2014-02-21 19:15 ` [U-Boot] [U-Boot, v1, 1/3] OMAP3: add missing gpio clock init and fix NAND SPL " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.