All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary)
@ 2012-03-19 14:26 Jens Scharsig
  2012-03-19 15:18 ` esw at bus-elektronik.de
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jens Scharsig @ 2012-03-19 14:26 UTC (permalink / raw)
  To: u-boot


Signed-off-by: Jens Scharsig (BuS Elektronik) <esw@bus-elektronik.de>
---
 include/configs/at91sam9263ek.h |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
index 8399246..f02f245 100644
--- a/include/configs/at91sam9263ek.h
+++ b/include/configs/at91sam9263ek.h
@@ -33,7 +33,11 @@
  */
 #include <asm/hardware.h>
 
+#ifndef CONFIG_SYS_USE_BOOT_NORFLASH
 #define CONFIG_SYS_TEXT_BASE		0x21F00000
+#else
+#define CONFIG_SYS_TEXT_BASE		0x0000000
+#endif
 
 /* ARM asynchronous clock */
 #define CONFIG_SYS_AT91_MAIN_CLOCK	16367660 /* 16.367 MHz crystal */
@@ -148,11 +152,11 @@
 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_FLASH_BASE
 #define CONFIG_SYS_MONITOR_LEN	(256 << 10)
 #define CONFIG_ENV_IS_IN_FLASH	1
-#define CONFIG_ENV_ADDR		(CONFIG_SYS_FLASH_BASE + 0x007FE000)
+#define CONFIG_ENV_ADDR		(CONFIG_SYS_FLASH_BASE + 0x007E0000)
 #define CONFIG_ENV_ADDR_REDUND	(CONFIG_ENV_ADDR - CONFIG_ENV_SIZE)
 
 /* Address and size of Primary Environment Sector */
-#define CONFIG_ENV_SIZE		0x2000
+#define CONFIG_ENV_SIZE		0x10000
 
 #define xstr(s)   str(s)
 #define str(s)	#s
-- 
1.7.3.4

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

* [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary)
  2012-03-19 14:26 [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary) Jens Scharsig
@ 2012-03-19 15:18 ` esw at bus-elektronik.de
  2012-03-19 15:18 ` [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Jens Scharsig
  2012-06-28 12:06 ` [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary) Andreas Bießmann
  2 siblings, 0 replies; 4+ messages in thread
From: esw at bus-elektronik.de @ 2012-03-19 15:18 UTC (permalink / raw)
  To: u-boot

Sorry about malformed subject

regards

Jens

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

* [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage
  2012-03-19 14:26 [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary) Jens Scharsig
  2012-03-19 15:18 ` esw at bus-elektronik.de
@ 2012-03-19 15:18 ` Jens Scharsig
  2012-06-28 12:06 ` [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary) Andreas Bießmann
  2 siblings, 0 replies; 4+ messages in thread
From: Jens Scharsig @ 2012-03-19 15:18 UTC (permalink / raw)
  To: u-boot

 Fix: board doesn't boot from norflash
 Fix: environment can't write to flash (end address/start address not on sector boundary)

Signed-off-by: Jens Scharsig (BuS Elektronik) <esw@bus-elektronik.de>
---
 include/configs/at91sam9263ek.h |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
index 8399246..f02f245 100644
--- a/include/configs/at91sam9263ek.h
+++ b/include/configs/at91sam9263ek.h
@@ -33,7 +33,11 @@
  */
 #include <asm/hardware.h>
 
+#ifndef CONFIG_SYS_USE_BOOT_NORFLASH
 #define CONFIG_SYS_TEXT_BASE		0x21F00000
+#else
+#define CONFIG_SYS_TEXT_BASE		0x0000000
+#endif
 
 /* ARM asynchronous clock */
 #define CONFIG_SYS_AT91_MAIN_CLOCK	16367660 /* 16.367 MHz crystal */
@@ -148,11 +152,11 @@
 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_FLASH_BASE
 #define CONFIG_SYS_MONITOR_LEN	(256 << 10)
 #define CONFIG_ENV_IS_IN_FLASH	1
-#define CONFIG_ENV_ADDR		(CONFIG_SYS_FLASH_BASE + 0x007FE000)
+#define CONFIG_ENV_ADDR		(CONFIG_SYS_FLASH_BASE + 0x007E0000)
 #define CONFIG_ENV_ADDR_REDUND	(CONFIG_ENV_ADDR - CONFIG_ENV_SIZE)
 
 /* Address and size of Primary Environment Sector */
-#define CONFIG_ENV_SIZE		0x2000
+#define CONFIG_ENV_SIZE		0x10000
 
 #define xstr(s)   str(s)
 #define str(s)	#s
-- 
1.7.3.4

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

* [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary)
  2012-03-19 14:26 [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary) Jens Scharsig
  2012-03-19 15:18 ` esw at bus-elektronik.de
  2012-03-19 15:18 ` [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Jens Scharsig
@ 2012-06-28 12:06 ` Andreas Bießmann
  2 siblings, 0 replies; 4+ messages in thread
From: Andreas Bießmann @ 2012-06-28 12:06 UTC (permalink / raw)
  To: u-boot

Dear Jens Scharsig,

On 19.03.2012 15:26, Jens Scharsig (BuS Elektronik) wrote:
> 
> Signed-off-by: Jens Scharsig (BuS Elektronik) <esw@bus-elektronik.de>
> ---
>  include/configs/at91sam9263ek.h |    8 ++++++--
>  1 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
> index 8399246..f02f245 100644
> --- a/include/configs/at91sam9263ek.h
> +++ b/include/configs/at91sam9263ek.h
> @@ -33,7 +33,11 @@
>   */
>  #include <asm/hardware.h>
>  
> +#ifndef CONFIG_SYS_USE_BOOT_NORFLASH
>  #define CONFIG_SYS_TEXT_BASE		0x21F00000
> +#else
> +#define CONFIG_SYS_TEXT_BASE		0x0000000
> +#endif
>  
>  /* ARM asynchronous clock */
>  #define CONFIG_SYS_AT91_MAIN_CLOCK	16367660 /* 16.367 MHz crystal */
> @@ -148,11 +152,11 @@
>  #define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_FLASH_BASE
>  #define CONFIG_SYS_MONITOR_LEN	(256 << 10)
>  #define CONFIG_ENV_IS_IN_FLASH	1
> -#define CONFIG_ENV_ADDR		(CONFIG_SYS_FLASH_BASE + 0x007FE000)
> +#define CONFIG_ENV_ADDR		(CONFIG_SYS_FLASH_BASE + 0x007E0000)
>  #define CONFIG_ENV_ADDR_REDUND	(CONFIG_ENV_ADDR - CONFIG_ENV_SIZE)
>  
>  /* Address and size of Primary Environment Sector */
> -#define CONFIG_ENV_SIZE		0x2000
> +#define CONFIG_ENV_SIZE		0x10000
>  
>  #define xstr(s)   str(s)
>  #define str(s)	#s
> 

applied to u-boot-atmel/master, thanks!

Best regards

Andreas Bie?mann

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

end of thread, other threads:[~2012-06-28 12:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-19 14:26 [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary) Jens Scharsig
2012-03-19 15:18 ` esw at bus-elektronik.de
2012-03-19 15:18 ` [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Jens Scharsig
2012-06-28 12:06 ` [U-Boot] [PATCH] Fix: AT91SAM9263 nor flash usage Fix: board doesn't boot from norflash Fix: environment can't write to flash (end address/start address not on sector boundary) Andreas Bießmann

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.