Kconfig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. help
  19. Enable support for the ARM11MPCore tile on the Realview platform.
  20. config REALVIEW_EB_ARM11MP_REVB
  21. bool "Support ARM11MPCore RevB tile"
  22. depends on REALVIEW_EB_ARM11MP
  23. default n
  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. help
  34. Include support for the ARM(R) RealView MPCore Platform Baseboard.
  35. PB11MPCore is a platform with an on-board ARM11MPCore and has
  36. support for PCI-E and Compact Flash.
  37. config MACH_REALVIEW_PB1176
  38. bool "Support RealView/PB1176 platform"
  39. select CPU_V6
  40. select ARM_GIC
  41. help
  42. Include support for the ARM(R) RealView ARM1176 Platform Baseboard.
  43. config MACH_REALVIEW_PBA8
  44. bool "Support RealView/PB-A8 platform"
  45. select CPU_V7
  46. select ARM_GIC
  47. help
  48. Include support for the ARM(R) RealView Cortex-A8 Platform Baseboard.
  49. PB-A8 is a platform with an on-board Cortex-A8 and has support for
  50. PCI-E and Compact Flash.
  51. config REALVIEW_HIGH_PHYS_OFFSET
  52. bool "High physical base address for the RealView platform"
  53. depends on !MACH_REALVIEW_PB1176
  54. default y
  55. help
  56. RealView boards other than PB1176 have the RAM available at
  57. 0x70000000, 256MB of which being mirrored at 0x00000000. If
  58. the board supports 512MB of RAM, this option allows the
  59. memory to be accessed contiguously at the high physical
  60. offset.
  61. endmenu