Kconfig 858 B

1234567891011121314151617181920212223242526272829303132333435
  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. help
  14. Include support for the ARM(R) Integrator CP platform.
  15. config ARCH_CINTEGRATOR
  16. bool
  17. config INTEGRATOR_IMPD1
  18. tristate "Include support for Integrator/IM-PD1"
  19. depends on ARCH_INTEGRATOR_AP
  20. help
  21. The IM-PD1 is an add-on logic module for the Integrator which
  22. allows ARM(R) Ltd PrimeCells to be developed and evaluated.
  23. The IM-PD1 can be found on the Integrator/PP2 platform.
  24. To compile this driver as a module, choose M here: the
  25. module will be called impd1.
  26. endmenu
  27. endif