Kconfig 906 B

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