Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. if ARCH_INTEGRATOR
  2. menu "Integrator Options"
  3. config ARCH_INTEGRATOR_AP
  4. bool "Support Integrator/AP and Integrator/PP2 platforms"
  5. select CLKSRC_MMIO
  6. select MIGHT_HAVE_PCI
  7. select SERIAL_AMBA_PL010
  8. select SERIAL_AMBA_PL010_CONSOLE
  9. select SOC_BUS
  10. help
  11. Include support for the ARM(R) Integrator/AP and
  12. Integrator/PP2 platforms.
  13. config ARCH_INTEGRATOR_CP
  14. bool "Support Integrator/CP platform"
  15. select ARCH_CINTEGRATOR
  16. select ARM_TIMER_SP804
  17. select PLAT_VERSATILE_CLCD
  18. select SERIAL_AMBA_PL011
  19. select SERIAL_AMBA_PL011_CONSOLE
  20. select SOC_BUS
  21. help
  22. Include support for the ARM(R) Integrator CP platform.
  23. config ARCH_CINTEGRATOR
  24. bool
  25. config INTEGRATOR_IMPD1
  26. tristate "Include support for Integrator/IM-PD1"
  27. depends on ARCH_INTEGRATOR_AP
  28. help
  29. The IM-PD1 is an add-on logic module for the Integrator which
  30. allows ARM(R) Ltd PrimeCells to be developed and evaluated.
  31. The IM-PD1 can be found on the Integrator/PP2 platform.
  32. To compile this driver as a module, choose M here: the
  33. module will be called impd1.
  34. endmenu
  35. endif