Kconfig 3.3 KB

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