]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - arch/mips/Kconfig
MIPS: add support for CONFIG_SYS_INIT_SP_ADDR
[karo-tx-uboot.git] / arch / mips / Kconfig
index 9b3ecea377db40f30966511a0f84194bad6fe762..ef7892975a72998cf36f56699e6de40046566d7f 100644 (file)
@@ -29,6 +29,7 @@ config TARGET_MALTA
        select SUPPORTS_LITTLE_ENDIAN
        select SUPPORTS_CPU_MIPS32_R1
        select SUPPORTS_CPU_MIPS32_R2
+       select SWAP_IO_SPACE
 
 config TARGET_VCT
        bool "Support vct"
@@ -136,6 +137,17 @@ config MIPS_BOOT_ENV_LEGACY
          address and size will be prepared as zero-terminated key/value list.
          The address of the enviroment is stored in register $a2.
 
+config MIPS_BOOT_FDT
+       bool "Hand over a flattened device tree to Linux kernel (INCOMPLETE)"
+       default n
+       help
+         Enable this option if you want U-Boot to hand over a flattened
+         device tree to the kernel.
+
+         Note: the final hand over to the kernel is not yet implemented. After
+               the community agreed on the MIPS boot interface for device trees,
+               the corresponding code will be added.
+
 endmenu
 
 config SUPPORTS_BIG_ENDIAN
@@ -156,12 +168,23 @@ config SUPPORTS_CPU_MIPS64_R1
 config SUPPORTS_CPU_MIPS64_R2
        bool
 
+config CPU_MIPS32
+       bool
+       default y if CPU_MIPS32_R1 || CPU_MIPS32_R2
+
+config CPU_MIPS64
+       bool
+       default y if CPU_MIPS64_R1 || CPU_MIPS64_R2
+
 config 32BIT
        bool
 
 config 64BIT
        bool
 
+config SWAP_IO_SPACE
+       bool
+
 endif
 
 endmenu