Kconfig 835 B

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