Kconfig 3.1 KB

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