aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin
diff options
context:
space:
mode:
authorBob Liu <lliubbo@gmail.com>2012-05-30 03:30:27 -0400
committerBob Liu <lliubbo@gmail.com>2012-07-24 01:39:49 -0400
commit3003668ce422a00952e20e230fe09e3c2662cf25 (patch)
tree70d772a4dd114c54e31ee7a09dc8c337dcba44d8 /arch/blackfin
parentf82f16d2f55a68a5134e26edbc9303fe8048764f (diff)
blackfin: Kconfig: fix ROM range for bf60x
ROM range of bf60x is above 0xb0000000. Signed-off-by: Bob Liu <lliubbo@gmail.com>
Diffstat (limited to 'arch/blackfin')
-rw-r--r--arch/blackfin/Kconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig
index f9f6f6971b7e..7e3a24c60771 100644
--- a/arch/blackfin/Kconfig
+++ b/arch/blackfin/Kconfig
@@ -404,8 +404,9 @@ config ROM_BASE
404 hex "Kernel ROM Base" 404 hex "Kernel ROM Base"
405 depends on ROMKERNEL 405 depends on ROMKERNEL
406 default "0x20040040" 406 default "0x20040040"
407 range 0x20000000 0x20400000 if !(BF54x || BF561) 407 range 0x20000000 0x20400000 if !(BF54x || BF561 || BF60x)
408 range 0x20000000 0x30000000 if (BF54x || BF561) 408 range 0x20000000 0x30000000 if (BF54x || BF561)
409 range 0xB0000000 0xC0000000 if (BF60x)
409 help 410 help
410 Make sure your ROM base does not include any file-header 411 Make sure your ROM base does not include any file-header
411 information that is prepended to the kernel. 412 information that is prepended to the kernel.