2012-10-26 00:15:32 +02:00
|
|
|
From e139cb31d32a4f39241bfd83bf622a97d08f6c9d Mon Sep 17 00:00:00 2001
|
2012-01-29 22:31:47 +01:00
|
|
|
From: Alexandre Belloni <alexandre.belloni@piout.net>
|
2012-10-26 00:15:32 +02:00
|
|
|
Date: Mon, 2 Jul 2012 04:26:58 +0000
|
|
|
|
Subject: [PATCH] AT91SAM9*: Change kernel address in dataflash to
|
|
|
|
match u-boot's size
|
|
|
|
|
2012-01-29 22:31:47 +01:00
|
|
|
|
|
|
|
On at91sam platforms, u-boot grew larger than the allocated size in
|
|
|
|
dataflash, the layout was:
|
|
|
|
bootstrap 0x00000000
|
|
|
|
ubootenv 0x00004200
|
|
|
|
uboot 0x00008400
|
|
|
|
kernel 0x00042000
|
2012-10-26 00:15:32 +02:00
|
|
|
fs 0x00252000
|
2012-01-29 22:31:47 +01:00
|
|
|
|
|
|
|
u-boot with the defconfig doesn't seem to fit in 0x42000 - 0x8400 =
|
|
|
|
0x39C00 bytes anymore.
|
|
|
|
|
|
|
|
Now, the layout is:
|
|
|
|
bootstrap 0x00000000
|
2012-10-26 00:15:32 +02:00
|
|
|
ubootenv 0x00004200
|
|
|
|
uboot 0x00008400
|
|
|
|
kernel 0x00084000
|
|
|
|
fs 0x00294000
|
2012-01-29 22:31:47 +01:00
|
|
|
|
|
|
|
Signed-off-by: Alexandre Belloni <alexandre.belloni@piout.net>
|
2012-10-26 00:15:32 +02:00
|
|
|
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
|
2012-01-29 22:31:47 +01:00
|
|
|
---
|
2012-10-26 00:15:32 +02:00
|
|
|
board/atmel/at91sam9260ek/partition.c | 6 +++---
|
|
|
|
board/atmel/at91sam9261ek/partition.c | 6 +++---
|
|
|
|
board/atmel/at91sam9263ek/partition.c | 6 +++---
|
|
|
|
board/atmel/at91sam9rlek/partition.c | 6 +++---
|
|
|
|
include/configs/at91sam9260ek.h | 5 +++--
|
|
|
|
include/configs/at91sam9261ek.h | 5 +++--
|
|
|
|
include/configs/at91sam9263ek.h | 2 +-
|
|
|
|
include/configs/at91sam9rlek.h | 3 ++-
|
|
|
|
8 files changed, 21 insertions(+), 18 deletions(-)
|
2012-01-29 22:31:47 +01:00
|
|
|
|
2012-10-26 00:15:32 +02:00
|
|
|
diff --git a/board/atmel/at91sam9260ek/partition.c b/board/atmel/at91sam9260ek/partition.c
|
|
|
|
index 2629c67..9ec054f 100644
|
|
|
|
--- a/board/atmel/at91sam9260ek/partition.c
|
|
|
|
+++ b/board/atmel/at91sam9260ek/partition.c
|
|
|
|
@@ -34,7 +34,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
|
|
|
|
dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
|
|
|
|
{0x00000000, 0x000041FF, FLAG_PROTECT_SET, 0, "Bootstrap"},
|
|
|
|
{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
|
|
|
|
- {0x00008400, 0x00041FFF, FLAG_PROTECT_SET, 0, "U-Boot"},
|
|
|
|
- {0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0, "Kernel"},
|
|
|
|
- {0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0, "FS"},
|
|
|
|
+ {0x00008400, 0x00083FFF, FLAG_PROTECT_SET, 0, "U-Boot"},
|
|
|
|
+ {0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0, "Kernel"},
|
|
|
|
+ {0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0, "FS"},
|
|
|
|
};
|
|
|
|
diff --git a/board/atmel/at91sam9261ek/partition.c b/board/atmel/at91sam9261ek/partition.c
|
|
|
|
index c739b11..51cac77 100644
|
|
|
|
--- a/board/atmel/at91sam9261ek/partition.c
|
|
|
|
+++ b/board/atmel/at91sam9261ek/partition.c
|
|
|
|
@@ -34,7 +34,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
|
|
|
|
dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
|
|
|
|
{0x00000000, 0x000041FF, FLAG_PROTECT_SET, 0, "Bootstrap"},
|
|
|
|
{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
|
|
|
|
- {0x00008400, 0x00041FFF, FLAG_PROTECT_SET, 0, "U-Boot"},
|
|
|
|
- {0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0, "Kernel"},
|
|
|
|
- {0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0, "FS"},
|
|
|
|
+ {0x00008400, 0x00083FFF, FLAG_PROTECT_SET, 0, "U-Boot"},
|
|
|
|
+ {0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0, "Kernel"},
|
|
|
|
+ {0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0, "FS"},
|
|
|
|
};
|
|
|
|
diff --git a/board/atmel/at91sam9263ek/partition.c b/board/atmel/at91sam9263ek/partition.c
|
|
|
|
index 7e1d46f..d48fab7 100644
|
|
|
|
--- a/board/atmel/at91sam9263ek/partition.c
|
|
|
|
+++ b/board/atmel/at91sam9263ek/partition.c
|
|
|
|
@@ -33,7 +33,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
|
|
|
|
dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
|
|
|
|
{0x00000000, 0x000041FF, FLAG_PROTECT_SET, 0, "Bootstrap"},
|
|
|
|
{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
|
|
|
|
- {0x00008400, 0x00041FFF, FLAG_PROTECT_SET, 0, "U-Boot"},
|
|
|
|
- {0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0, "Kernel"},
|
|
|
|
- {0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0, "FS"},
|
|
|
|
+ {0x00008400, 0x00083FFF, FLAG_PROTECT_SET, 0, "U-Boot"},
|
|
|
|
+ {0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0, "Kernel"},
|
|
|
|
+ {0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0, "FS"},
|
|
|
|
};
|
|
|
|
diff --git a/board/atmel/at91sam9rlek/partition.c b/board/atmel/at91sam9rlek/partition.c
|
|
|
|
index 7e1d46f..d48fab7 100644
|
|
|
|
--- a/board/atmel/at91sam9rlek/partition.c
|
|
|
|
+++ b/board/atmel/at91sam9rlek/partition.c
|
|
|
|
@@ -33,7 +33,7 @@ struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
|
|
|
|
dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
|
|
|
|
{0x00000000, 0x000041FF, FLAG_PROTECT_SET, 0, "Bootstrap"},
|
|
|
|
{0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
|
|
|
|
- {0x00008400, 0x00041FFF, FLAG_PROTECT_SET, 0, "U-Boot"},
|
|
|
|
- {0x00042000, 0x00251FFF, FLAG_PROTECT_CLEAR, 0, "Kernel"},
|
|
|
|
- {0x00252000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0, "FS"},
|
|
|
|
+ {0x00008400, 0x00083FFF, FLAG_PROTECT_SET, 0, "U-Boot"},
|
|
|
|
+ {0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0, "Kernel"},
|
|
|
|
+ {0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0, "FS"},
|
|
|
|
};
|
2012-01-29 22:31:47 +01:00
|
|
|
diff --git a/include/configs/at91sam9260ek.h b/include/configs/at91sam9260ek.h
|
2012-10-26 00:15:32 +02:00
|
|
|
index 07b1968..ef25fa5 100644
|
2012-01-29 22:31:47 +01:00
|
|
|
--- a/include/configs/at91sam9260ek.h
|
|
|
|
+++ b/include/configs/at91sam9260ek.h
|
2012-10-26 00:15:32 +02:00
|
|
|
@@ -187,7 +187,7 @@
|
|
|
|
#define CONFIG_ENV_OFFSET 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
|
2012-10-26 00:15:32 +02:00
|
|
|
#define CONFIG_ENV_SIZE 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
-#define CONFIG_BOOTCOMMAND "cp.b 0xC0042000 0x22000000 0x210000; bootm"
|
2012-10-26 00:15:32 +02:00
|
|
|
+#define CONFIG_BOOTCOMMAND "cp.b 0xC0084000 0x22000000 0x210000; bootm"
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_BOOTARGS "console=ttyS0,115200 " \
|
|
|
|
"root=/dev/mtdblock0 " \
|
|
|
|
"mtdparts=atmel_nand:-(root) " \
|
2012-10-26 00:15:32 +02:00
|
|
|
@@ -201,7 +201,7 @@
|
|
|
|
#define CONFIG_ENV_OFFSET 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + CONFIG_ENV_OFFSET)
|
2012-10-26 00:15:32 +02:00
|
|
|
#define CONFIG_ENV_SIZE 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
-#define CONFIG_BOOTCOMMAND "cp.b 0xD0042000 0x22000000 0x210000; bootm"
|
2012-10-26 00:15:32 +02:00
|
|
|
+#define CONFIG_BOOTCOMMAND "cp.b 0xD0084000 0x22000000 0x210000; bootm"
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_BOOTARGS "console=ttyS0,115200 " \
|
|
|
|
"root=/dev/mtdblock0 " \
|
|
|
|
"mtdparts=atmel_nand:-(root) " \
|
2012-10-26 00:15:32 +02:00
|
|
|
@@ -230,6 +230,7 @@
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
|
|
#define CONFIG_SYS_LONGHELP 1
|
|
|
|
#define CONFIG_CMDLINE_EDITING 1
|
|
|
|
+#define CONFIG_AUTO_COMPLETE
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Size of malloc() pool
|
|
|
|
diff --git a/include/configs/at91sam9261ek.h b/include/configs/at91sam9261ek.h
|
2012-10-26 00:15:32 +02:00
|
|
|
index 6fd0b83..014437b 100644
|
2012-01-29 22:31:47 +01:00
|
|
|
--- a/include/configs/at91sam9261ek.h
|
|
|
|
+++ b/include/configs/at91sam9261ek.h
|
2012-10-26 00:15:32 +02:00
|
|
|
@@ -189,7 +189,7 @@
|
|
|
|
#define CONFIG_ENV_OFFSET 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
|
2012-10-26 00:15:32 +02:00
|
|
|
#define CONFIG_ENV_SIZE 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
-#define CONFIG_BOOTCOMMAND "cp.b 0xC0042000 0x22000000 0x210000; bootm"
|
2012-10-26 00:15:32 +02:00
|
|
|
+#define CONFIG_BOOTCOMMAND "cp.b 0xC0084000 0x22000000 0x210000; bootm"
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_BOOTARGS "console=ttyS0,115200 " \
|
|
|
|
"root=/dev/mtdblock0 " \
|
|
|
|
"mtdparts=atmel_nand:-(root) " \
|
2012-10-26 00:15:32 +02:00
|
|
|
@@ -203,7 +203,7 @@
|
|
|
|
#define CONFIG_ENV_OFFSET 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3 + CONFIG_ENV_OFFSET)
|
2012-10-26 00:15:32 +02:00
|
|
|
#define CONFIG_ENV_SIZE 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
-#define CONFIG_BOOTCOMMAND "cp.b 0xD0042000 0x22000000 0x210000; bootm"
|
2012-10-26 00:15:32 +02:00
|
|
|
+#define CONFIG_BOOTCOMMAND "cp.b 0xD0084000 0x22000000 0x210000; bootm"
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_BOOTARGS "console=ttyS0,115200 " \
|
|
|
|
"root=/dev/mtdblock0 " \
|
|
|
|
"mtdparts=atmel_nand:-(root) " \
|
2012-10-26 00:15:32 +02:00
|
|
|
@@ -232,6 +232,7 @@
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
|
|
#define CONFIG_SYS_LONGHELP
|
|
|
|
#define CONFIG_CMDLINE_EDITING
|
|
|
|
+#define CONFIG_AUTO_COMPLETE
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Size of malloc() pool
|
|
|
|
diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h
|
2012-10-26 00:15:32 +02:00
|
|
|
index f2163f1..4309f71 100644
|
2012-01-29 22:31:47 +01:00
|
|
|
--- a/include/configs/at91sam9263ek.h
|
|
|
|
+++ b/include/configs/at91sam9263ek.h
|
2012-10-26 00:15:32 +02:00
|
|
|
@@ -318,7 +318,7 @@
|
|
|
|
#define CONFIG_ENV_OFFSET 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
|
2012-10-26 00:15:32 +02:00
|
|
|
#define CONFIG_ENV_SIZE 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
-#define CONFIG_BOOTCOMMAND "cp.b 0xC0042000 0x22000000 0x210000; bootm"
|
2012-10-26 00:15:32 +02:00
|
|
|
+#define CONFIG_BOOTCOMMAND "cp.b 0xC0084000 0x22000000 0x210000; bootm"
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_BOOTARGS "console=ttyS0,115200 " \
|
|
|
|
"root=/dev/mtdblock0 " \
|
|
|
|
"mtdparts=atmel_nand:-(root) "\
|
|
|
|
diff --git a/include/configs/at91sam9rlek.h b/include/configs/at91sam9rlek.h
|
2012-10-26 00:15:32 +02:00
|
|
|
index 45f8baf..c5952e9 100644
|
2012-01-29 22:31:47 +01:00
|
|
|
--- a/include/configs/at91sam9rlek.h
|
|
|
|
+++ b/include/configs/at91sam9rlek.h
|
2012-10-26 00:15:32 +02:00
|
|
|
@@ -155,7 +155,7 @@
|
|
|
|
#define CONFIG_ENV_OFFSET 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
|
2012-10-26 00:15:32 +02:00
|
|
|
#define CONFIG_ENV_SIZE 0x4200
|
2012-01-29 22:31:47 +01:00
|
|
|
-#define CONFIG_BOOTCOMMAND "cp.b 0xC0042000 0x22000000 0x210000; bootm"
|
2012-10-26 00:15:32 +02:00
|
|
|
+#define CONFIG_BOOTCOMMAND "cp.b 0xC0084000 0x22000000 0x210000; bootm"
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_BOOTARGS "console=ttyS0,115200 " \
|
|
|
|
"root=/dev/mtdblock0 " \
|
|
|
|
"mtdparts=atmel_nand:-(root) "\
|
2012-10-26 00:15:32 +02:00
|
|
|
@@ -182,6 +182,7 @@
|
2012-01-29 22:31:47 +01:00
|
|
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
|
|
#define CONFIG_SYS_LONGHELP 1
|
|
|
|
#define CONFIG_CMDLINE_EDITING 1
|
|
|
|
+#define CONFIG_AUTO_COMPLETE
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Size of malloc() pool
|
|
|
|
--
|
2012-10-26 00:15:32 +02:00
|
|
|
1.7.9.5
|
2012-01-29 22:31:47 +01:00
|
|
|
|