diff options
| author | York Sun <yorksun@freescale.com> | 2012-10-19 08:35:12 +0000 | 
|---|---|---|
| committer | Andy Fleming <afleming@freescale.com> | 2012-11-27 18:25:55 -0600 | 
| commit | 021382cad2fbe8a2cb69ea682e348ecd0bbedae2 (patch) | |
| tree | 91c908ac95feb34a426f8f0a592e85ee30eb7222 | |
| parent | e76cd5d4cf311da7d40adc5d6e9b425509cf0205 (diff) | |
| download | olio-uboot-2014.01-021382cad2fbe8a2cb69ea682e348ecd0bbedae2.tar.xz olio-uboot-2014.01-021382cad2fbe8a2cb69ea682e348ecd0bbedae2.zip | |
powerpc/qoriq: Move FMAN microcode location
Move FMAN microcude from 0xEF000000 to 0xEFF40000 to free up the beginning
of this virtual bank so that this bank can store RCW or be used together
with other banks to store large images.
Signed-off-by: York Sun <yorksun@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
| -rw-r--r-- | include/configs/P1023RDS.h | 2 | ||||
| -rw-r--r-- | include/configs/P2041RDB.h | 2 | ||||
| -rw-r--r-- | include/configs/corenet_ds.h | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/include/configs/P1023RDS.h b/include/configs/P1023RDS.h index 800d666ab..878bd5fa5 100644 --- a/include/configs/P1023RDS.h +++ b/include/configs/P1023RDS.h @@ -524,7 +524,7 @@ extern unsigned long get_clock_freq(void);  /* Default address of microcode for the Linux Fman driver */  /* QE microcode/firmware address */  #define CONFIG_SYS_QE_FMAN_FW_IN_NOR -#define CONFIG_SYS_QE_FMAN_FW_ADDR	0xEF000000 +#define CONFIG_SYS_QE_FMAN_FW_ADDR	0xEFF40000  #else  #define CONFIG_SYS_QE_FMAN_FW_IN_NAND  #define CONFIG_SYS_QE_FMAN_FW_ADDR	0x1f00000 diff --git a/include/configs/P2041RDB.h b/include/configs/P2041RDB.h index 5cdb628ab..e2f86dbb8 100644 --- a/include/configs/P2041RDB.h +++ b/include/configs/P2041RDB.h @@ -539,7 +539,7 @@ unsigned long get_board_sys_clk(unsigned long dummy);  #define CONFIG_SYS_QE_FMAN_FW_ADDR	0xFFE00000  #else  #define CONFIG_SYS_QE_FMAN_FW_IN_NOR -#define CONFIG_SYS_QE_FMAN_FW_ADDR	0xEF000000 +#define CONFIG_SYS_QE_FMAN_FW_ADDR	0xEFF40000  #endif  #define CONFIG_SYS_QE_FMAN_FW_LENGTH	0x10000  #define CONFIG_SYS_FDT_PAD		(0x3000 + CONFIG_SYS_QE_FMAN_FW_LENGTH) diff --git a/include/configs/corenet_ds.h b/include/configs/corenet_ds.h index c41b03999..3f42cd9a3 100644 --- a/include/configs/corenet_ds.h +++ b/include/configs/corenet_ds.h @@ -549,7 +549,7 @@  #define CONFIG_SYS_QE_FMAN_FW_ADDR	0xFFE00000  #else  #define CONFIG_SYS_QE_FMAN_FW_IN_NOR -#define CONFIG_SYS_QE_FMAN_FW_ADDR		0xEF000000 +#define CONFIG_SYS_QE_FMAN_FW_ADDR		0xEFF40000  #endif  #define CONFIG_SYS_QE_FMAN_FW_LENGTH	0x10000  #define CONFIG_SYS_FDT_PAD		(0x3000 + CONFIG_SYS_QE_FMAN_FW_LENGTH) |