Kconfig 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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_V6
  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_V6
  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. config MACH_REALVIEW_PB1176
  43. bool "Support RealView(R) Platform Baseboard for ARM1176JZF-S"
  44. select CPU_V6
  45. select ARM_GIC
  46. help
  47. Include support for the ARM(R) RealView(R) Platform Baseboard for
  48. ARM1176JZF-S.
  49. config REALVIEW_PB1176_SECURE_FLASH
  50. bool "Allow access to the secure flash memory block"
  51. depends on MACH_REALVIEW_PB1176
  52. default n
  53. help
  54. Select this option if Linux will only run in secure mode on the
  55. RealView PB1176 platform and access to the secure flash memory
  56. block (64MB @ 0x3c000000) is required.
  57. config MACH_REALVIEW_PBA8
  58. bool "Support RealView(R) Platform Baseboard for Cortex(tm)-A8 platform"
  59. select CPU_V7
  60. select ARM_GIC
  61. select HAVE_PATA_PLATFORM
  62. help
  63. Include support for the ARM(R) RealView Platform Baseboard for
  64. Cortex(tm)-A8. This platform has an on-board Cortex-A8 and has
  65. support for PCI-E and Compact Flash.
  66. config MACH_REALVIEW_PBX
  67. bool "Support RealView(R) Platform Baseboard Explore"
  68. select ARM_GIC
  69. select HAVE_PATA_PLATFORM
  70. select ARCH_SPARSEMEM_ENABLE if CPU_V7 && !REALVIEW_HIGH_PHYS_OFFSET
  71. select ZONE_DMA if SPARSEMEM
  72. help
  73. Include support for the ARM(R) RealView(R) Platform Baseboard
  74. Explore.
  75. config REALVIEW_HIGH_PHYS_OFFSET
  76. bool "High physical base address for the RealView platform"
  77. depends on MMU && !MACH_REALVIEW_PB1176
  78. default y
  79. help
  80. RealView boards other than PB1176 have the RAM available at
  81. 0x70000000, 256MB of which being mirrored at 0x00000000. If
  82. the board supports 512MB of RAM, this option allows the
  83. memory to be accessed contiguously at the high physical
  84. offset. On the PBX board, disabling this option allows 1GB of
  85. RAM to be used with SPARSEMEM.
  86. endmenu