mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [For-master PATCH 0/3] at91sam9x5 fixes
@ 2012-10-17 17:02 Jean-Christophe PLAGNIOL-VILLARD
  2012-10-17 17:15 ` [PATCH 1/3] at91sam9x5: udpate default ARCH_TEXT to 0x26f00000 Jean-Christophe PLAGNIOL-VILLARD
  2012-10-21  8:30 ` [For-master PATCH 0/3] at91sam9x5 fixes Sascha Hauer
  0 siblings, 2 replies; 5+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-10-17 17:02 UTC (permalink / raw)
  To: barebox

Hi,

	some fixes for at91sam9x5


wing changes since commit f99ea5c9d8cfddf3a1d6b181d0dbb26e06a86d2b:

  ARM samsung S5P: Enable board support (2012-10-15 19:47:01 +0200)

are available in the git repository at:

  git://git.jcrosoft.org/barebox.git delivery/at91sam9x5_fix

for you to fetch changes up to 44003508719639b99c1724d27019f778ec0546b7:

  at91sam9x5ek: fix bootstrap size to 256KiB (2012-10-17 15:05:52 +0800)

----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (3):
      at91sam9x5: udpate default ARCH_TEXT to 0x26f00000
      sam9x5ek: drop uart2 as it's not always present
      at91sam9x5ek: fix bootstrap size to 256KiB

 arch/arm/boards/at91sam9x5ek/env/config |    2 +-
 arch/arm/boards/at91sam9x5ek/init.c     |    1 -
 arch/arm/mach-at91/Kconfig              |    1 +
 3 files changed, 2 insertions(+), 2 deletions(-)

Best Regards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 1/3] at91sam9x5: udpate default ARCH_TEXT to 0x26f00000
  2012-10-17 17:02 [For-master PATCH 0/3] at91sam9x5 fixes Jean-Christophe PLAGNIOL-VILLARD
@ 2012-10-17 17:15 ` Jean-Christophe PLAGNIOL-VILLARD
  2012-10-17 17:15   ` [PATCH 2/3] sam9x5ek: drop uart2 as it's not always present Jean-Christophe PLAGNIOL-VILLARD
  2012-10-17 17:15   ` [PATCH 3/3] at91sam9x5ek: fix bootstrap size to 256KiB Jean-Christophe PLAGNIOL-VILLARD
  2012-10-21  8:30 ` [For-master PATCH 0/3] at91sam9x5 fixes Sascha Hauer
  1 sibling, 2 replies; 5+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-10-17 17:15 UTC (permalink / raw)
  To: barebox

On sam9x5 series the bootstrap load the bootloader at 0x26f00000.

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 arch/arm/mach-at91/Kconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
index 30225fa..b3f1885 100644
--- a/arch/arm/mach-at91/Kconfig
+++ b/arch/arm/mach-at91/Kconfig
@@ -3,6 +3,7 @@ if ARCH_AT91
 config ARCH_TEXT_BASE
 	hex
 	default 0x73f00000 if ARCH_AT91SAM9G45
+	default 0x26f00000 if ARCH_AT91SAM9X5
 	default 0x23f00000
 
 config BOARDINFO
-- 
1.7.10.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 2/3] sam9x5ek: drop uart2 as it's not always present
  2012-10-17 17:15 ` [PATCH 1/3] at91sam9x5: udpate default ARCH_TEXT to 0x26f00000 Jean-Christophe PLAGNIOL-VILLARD
@ 2012-10-17 17:15   ` Jean-Christophe PLAGNIOL-VILLARD
  2012-10-17 17:15   ` [PATCH 3/3] at91sam9x5ek: fix bootstrap size to 256KiB Jean-Christophe PLAGNIOL-VILLARD
  1 sibling, 0 replies; 5+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-10-17 17:15 UTC (permalink / raw)
  To: barebox

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 arch/arm/boards/at91sam9x5ek/init.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/boards/at91sam9x5ek/init.c b/arch/arm/boards/at91sam9x5ek/init.c
index d7dc30d..58c945c 100644
--- a/arch/arm/boards/at91sam9x5ek/init.c
+++ b/arch/arm/boards/at91sam9x5ek/init.c
@@ -157,7 +157,6 @@ static int at91sam9x5ek_console_init(void)
 {
 	at91_register_uart(0, 0);
 	at91_register_uart(1, 0);
-	at91_register_uart(2, 0);
 	return 0;
 }
 console_initcall(at91sam9x5ek_console_init);
-- 
1.7.10.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 3/3] at91sam9x5ek: fix bootstrap size to 256KiB
  2012-10-17 17:15 ` [PATCH 1/3] at91sam9x5: udpate default ARCH_TEXT to 0x26f00000 Jean-Christophe PLAGNIOL-VILLARD
  2012-10-17 17:15   ` [PATCH 2/3] sam9x5ek: drop uart2 as it's not always present Jean-Christophe PLAGNIOL-VILLARD
@ 2012-10-17 17:15   ` Jean-Christophe PLAGNIOL-VILLARD
  1 sibling, 0 replies; 5+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-10-17 17:15 UTC (permalink / raw)
  To: barebox

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 arch/arm/boards/at91sam9x5ek/env/config |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boards/at91sam9x5ek/env/config b/arch/arm/boards/at91sam9x5ek/env/config
index 6a985ce..8b655e2 100644
--- a/arch/arm/boards/at91sam9x5ek/env/config
+++ b/arch/arm/boards/at91sam9x5ek/env/config
@@ -29,7 +29,7 @@ kernelimage=zImage
 #kernelimage=Image.lzo
 
 nand_device=atmel_nand
-nand_parts="128k(at91bootstrap),256k(barebox)ro,128k(bareboxenv),128k(bareboxenv2),128k(oftree),1M(free),4M(kernel),120M(rootfs),-(data)"
+nand_parts="256k(at91bootstrap),256k(barebox)ro,128k(bareboxenv),128k(bareboxenv2),128k(oftree),1M(free),4M(kernel),120M(rootfs),-(data)"
 rootfs_mtdblock_nand=7
 
 autoboot_timeout=3
-- 
1.7.10.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [For-master PATCH 0/3] at91sam9x5 fixes
  2012-10-17 17:02 [For-master PATCH 0/3] at91sam9x5 fixes Jean-Christophe PLAGNIOL-VILLARD
  2012-10-17 17:15 ` [PATCH 1/3] at91sam9x5: udpate default ARCH_TEXT to 0x26f00000 Jean-Christophe PLAGNIOL-VILLARD
@ 2012-10-21  8:30 ` Sascha Hauer
  1 sibling, 0 replies; 5+ messages in thread
From: Sascha Hauer @ 2012-10-21  8:30 UTC (permalink / raw)
  To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox

On Wed, Oct 17, 2012 at 07:02:52PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Hi,
> 
> 	some fixes for at91sam9x5
> 
> 
> wing changes since commit f99ea5c9d8cfddf3a1d6b181d0dbb26e06a86d2b:
> 
>   ARM samsung S5P: Enable board support (2012-10-15 19:47:01 +0200)
> 
> are available in the git repository at:
> 
>   git://git.jcrosoft.org/barebox.git delivery/at91sam9x5_fix

Pulled, thanks

Sascha

> 
> for you to fetch changes up to 44003508719639b99c1724d27019f778ec0546b7:
> 
>   at91sam9x5ek: fix bootstrap size to 256KiB (2012-10-17 15:05:52 +0800)
> 
> ----------------------------------------------------------------
> Jean-Christophe PLAGNIOL-VILLARD (3):
>       at91sam9x5: udpate default ARCH_TEXT to 0x26f00000
>       sam9x5ek: drop uart2 as it's not always present
>       at91sam9x5ek: fix bootstrap size to 256KiB
> 
>  arch/arm/boards/at91sam9x5ek/env/config |    2 +-
>  arch/arm/boards/at91sam9x5ek/init.c     |    1 -
>  arch/arm/mach-at91/Kconfig              |    1 +
>  3 files changed, 2 insertions(+), 2 deletions(-)
> 
> Best Regards,
> J.
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2012-10-21  8:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-17 17:02 [For-master PATCH 0/3] at91sam9x5 fixes Jean-Christophe PLAGNIOL-VILLARD
2012-10-17 17:15 ` [PATCH 1/3] at91sam9x5: udpate default ARCH_TEXT to 0x26f00000 Jean-Christophe PLAGNIOL-VILLARD
2012-10-17 17:15   ` [PATCH 2/3] sam9x5ek: drop uart2 as it's not always present Jean-Christophe PLAGNIOL-VILLARD
2012-10-17 17:15   ` [PATCH 3/3] at91sam9x5ek: fix bootstrap size to 256KiB Jean-Christophe PLAGNIOL-VILLARD
2012-10-21  8:30 ` [For-master PATCH 0/3] at91sam9x5 fixes Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox