Kconfig 2.8 KB

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