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