blackfin: Kconfig: fix ROM range for bf60x
authorBob Liu <lliubbo@gmail.com>
Wed, 30 May 2012 07:30:27 +0000 (15:30 +0800)
committerBob Liu <lliubbo@gmail.com>
Tue, 24 Jul 2012 05:39:49 +0000 (13:39 +0800)
ROM range of bf60x is above 0xb0000000.

Signed-off-by: Bob Liu <lliubbo@gmail.com>
arch/blackfin/Kconfig

index f9f6f6971b7eeec7e485e29943f5069cb130bf03..7e3a24c60771dc09e2387f7e3fac2f2a69b41e88 100644 (file)
@@ -404,8 +404,9 @@ config ROM_BASE
        hex "Kernel ROM Base"
        depends on ROMKERNEL
        default "0x20040040"
-       range 0x20000000 0x20400000 if !(BF54x || BF561)
+       range 0x20000000 0x20400000 if !(BF54x || BF561 || BF60x)
        range 0x20000000 0x30000000 if (BF54x || BF561)
+       range 0xB0000000 0xC0000000 if (BF60x)
        help
          Make sure your ROM base does not include any file-header
          information that is prepended to the kernel.