Kconfig 765 B

1234567891011121314151617181920212223242526272829303132333435
  1. config ARCH_BCM
  2. bool "Broadcom SoC Support"
  3. depends on ARCH_MULTIPLATFORM
  4. help
  5. This enables support for Broadcom ARM based SoC
  6. chips
  7. if ARCH_BCM
  8. menu "Broadcom SoC Selection"
  9. config ARCH_BCM_MOBILE
  10. bool "Broadcom Mobile SoC" if ARCH_MULTI_V7
  11. depends on MMU
  12. select ARCH_REQUIRE_GPIOLIB
  13. select ARM_ERRATA_754322
  14. select ARM_ERRATA_764369 if SMP
  15. select ARM_GIC
  16. select CPU_V7
  17. select CLKSRC_OF
  18. select GENERIC_CLOCKEVENTS
  19. select GENERIC_TIME
  20. select GPIO_BCM_KONA
  21. select SPARSE_IRQ
  22. select TICK_ONESHOT
  23. select CACHE_L2X0
  24. help
  25. This enables support for systems based on Broadcom mobile SoCs.
  26. It currently supports the 'BCM281XX' family, which includes
  27. BCM11130, BCM11140, BCM11351, BCM28145 and
  28. BCM28155 variants.
  29. endmenu
  30. endif