Kconfig 840 B

123456789101112131415161718192021222324252627282930
  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_MPCORE
  9. bool "Support MPcore tile"
  10. depends on MACH_REALVIEW_EB
  11. select CACHE_L2X0
  12. help
  13. Enable support for the MPCore tile on the Realview platform.
  14. Since there are device address and interrupt differences, a
  15. kernel built with this option enabled is not compatible with
  16. other tiles.
  17. config REALVIEW_MPCORE_REVB
  18. bool "Support MPcore RevB tile"
  19. depends on REALVIEW_MPCORE
  20. default n
  21. help
  22. Enable support for the MPCore RevB tile on the Realview platform.
  23. Since there are device address differences, a
  24. kernel built with this option enabled is not compatible with
  25. other tiles.
  26. endmenu