Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. menuconfig ARCH_STI
  2. bool "STMicroelectronics Consumer Electronics SOCs"
  3. depends on ARCH_MULTI_V7
  4. select ARM_GIC
  5. select ST_IRQCHIP
  6. select ARM_GLOBAL_TIMER
  7. select CLKSRC_ST_LPC
  8. select PINCTRL
  9. select PINCTRL_ST
  10. select MFD_SYSCON
  11. select ARCH_HAS_RESET_CONTROLLER
  12. select HAVE_ARM_SCU if SMP
  13. select GPIOLIB
  14. select ARM_ERRATA_754322
  15. select ARM_ERRATA_764369 if SMP
  16. select ARM_ERRATA_775420
  17. select PL310_ERRATA_753970 if CACHE_L2X0
  18. select PL310_ERRATA_769419 if CACHE_L2X0
  19. select RESET_CONTROLLER
  20. help
  21. Include support for STMicroelectronics' STiH415/416, STiH407/10 and
  22. STiH418 family SoCs using the Device Tree for discovery. More
  23. information can be found in Documentation/arm/sti/ and
  24. Documentation/devicetree.
  25. if ARCH_STI
  26. config SOC_STIH415
  27. bool "STiH415 STMicroelectronics Consumer Electronics family"
  28. default y
  29. select STIH415_RESET
  30. help
  31. This enables support for STMicroelectronics Digital Consumer
  32. Electronics family StiH415 parts, primarily targeted at set-top-box
  33. and other digital audio/video applications using Flattned Device
  34. Trees.
  35. config SOC_STIH416
  36. bool "STiH416 STMicroelectronics Consumer Electronics family"
  37. default y
  38. select STIH416_RESET
  39. help
  40. This enables support for STMicroelectronics Digital Consumer
  41. Electronics family StiH416 parts, primarily targeted at set-top-box
  42. and other digital audio/video applications using Flattened Device
  43. Trees.
  44. config SOC_STIH407
  45. bool "STiH407 STMicroelectronics Consumer Electronics family"
  46. default y
  47. select STIH407_RESET
  48. help
  49. This enables support for STMicroelectronics Digital Consumer
  50. Electronics family StiH407 parts, targetted at set-top-box
  51. and other digital audio/video applications using Flattened Device
  52. Trees.
  53. endif