Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. menu "RealView platform type"
  2. depends on ARCH_REALVIEW
  3. config MACH_REALVIEW_EB
  4. bool "Support RealView/EB platform"
  5. select ARM_GIC
  6. help
  7. Include support for the ARM(R) RealView Emulation Baseboard platform.
  8. config REALVIEW_EB_A9MP
  9. bool "Support Multicore Cortex-A9"
  10. depends on MACH_REALVIEW_EB
  11. select CPU_V7
  12. help
  13. Enable support for the Cortex-A9MPCore tile on the Realview platform.
  14. config REALVIEW_EB_ARM11MP
  15. bool "Support ARM11MPCore tile"
  16. depends on MACH_REALVIEW_EB
  17. select CPU_V6
  18. help
  19. Enable support for the ARM11MPCore tile on the Realview platform.
  20. config REALVIEW_EB_ARM11MP_REVB
  21. bool "Support ARM11MPCore RevB tile"
  22. depends on REALVIEW_EB_ARM11MP
  23. help
  24. Enable support for the ARM11MPCore RevB tile on the Realview
  25. platform. Since there are device address differences, a
  26. kernel built with this option enabled is not compatible with
  27. other revisions of the ARM11MPCore tile.
  28. config MACH_REALVIEW_PB11MP
  29. bool "Support RealView/PB11MPCore platform"
  30. select CPU_V6
  31. select ARM_GIC
  32. select HAVE_PATA_PLATFORM
  33. help
  34. Include support for the ARM(R) RealView MPCore Platform Baseboard.
  35. PB11MPCore is a platform with an on-board ARM11MPCore and has
  36. support for PCI-E and Compact Flash.
  37. config MACH_REALVIEW_PB1176
  38. bool "Support RealView/PB1176 platform"
  39. select CPU_V6
  40. select ARM_GIC
  41. help
  42. Include support for the ARM(R) RealView ARM1176 Platform Baseboard.
  43. config REALVIEW_PB1176_SECURE_FLASH
  44. bool "Allow access to the secure flash memory block"
  45. depends on MACH_REALVIEW_PB1176
  46. default n
  47. help
  48. Select this option if Linux will only run in secure mode on the
  49. RealView PB1176 platform and access to the secure flash memory
  50. block (64MB @ 0x3c000000) is required.
  51. config MACH_REALVIEW_PBA8
  52. bool "Support RealView/PB-A8 platform"
  53. select CPU_V7
  54. select ARM_GIC
  55. select HAVE_PATA_PLATFORM
  56. help
  57. Include support for the ARM(R) RealView Cortex-A8 Platform Baseboard.
  58. PB-A8 is a platform with an on-board Cortex-A8 and has support for
  59. PCI-E and Compact Flash.
  60. config MACH_REALVIEW_PBX
  61. bool "Support RealView/PBX platform"
  62. select ARM_GIC
  63. select HAVE_PATA_PLATFORM
  64. select ARCH_SPARSEMEM_ENABLE if CPU_V7 && !HIGH_PHYS_OFFSET
  65. select ZONE_DMA if SPARSEMEM
  66. help
  67. Include support for the ARM(R) RealView PBX platform.
  68. config REALVIEW_HIGH_PHYS_OFFSET
  69. bool "High physical base address for the RealView platform"
  70. depends on MMU && !MACH_REALVIEW_PB1176
  71. default y
  72. help
  73. RealView boards other than PB1176 have the RAM available at
  74. 0x70000000, 256MB of which being mirrored at 0x00000000. If
  75. the board supports 512MB of RAM, this option allows the
  76. memory to be accessed contiguously at the high physical
  77. offset. On the PBX board, disabling this option allows 1GB of
  78. RAM to be used with SPARSEMEM.
  79. endmenu