Kconfig 886 B

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