Kconfig 3.3 KB

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