Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # NXP/Freescale QorIQ series SOC drivers
  4. #
  5. menu "NXP/Freescale QorIQ SoC drivers"
  6. source "drivers/soc/fsl/qbman/Kconfig"
  7. source "drivers/soc/fsl/qe/Kconfig"
  8. config FSL_GUTS
  9. bool
  10. select SOC_BUS
  11. help
  12. The global utilities block controls power management, I/O device
  13. enabling, power-onreset(POR) configuration monitoring, alternate
  14. function selection for multiplexed signals,and clock control.
  15. This driver is to manage and access global utilities block.
  16. Initially only reading SVR and registering soc device are supported.
  17. Other guts accesses, such as reading RCW, should eventually be moved
  18. into this driver as well.
  19. config FSL_MC_DPIO
  20. tristate "QorIQ DPAA2 DPIO driver"
  21. depends on FSL_MC_BUS
  22. select SOC_BUS
  23. select FSL_GUTS
  24. select DIMLIB
  25. help
  26. Driver for the DPAA2 DPIO object. A DPIO provides queue and
  27. buffer management facilities for software to interact with
  28. other DPAA2 objects. This driver does not expose the DPIO
  29. objects individually, but groups them under a service layer
  30. API.
  31. config DPAA2_CONSOLE
  32. tristate "QorIQ DPAA2 console driver"
  33. depends on OF && (ARCH_LAYERSCAPE || COMPILE_TEST)
  34. default y
  35. help
  36. Console driver for DPAA2 platforms. Exports 2 char devices,
  37. /dev/dpaa2_mc_console and /dev/dpaa2_aiop_console,
  38. which can be used to dump the Management Complex and AIOP
  39. firmware logs.
  40. config FSL_RCPM
  41. bool "Freescale RCPM support"
  42. depends on PM_SLEEP && (ARM || ARM64)
  43. help
  44. The NXP QorIQ Processors based on ARM Core have RCPM module
  45. (Run Control and Power Management), which performs all device-level
  46. tasks associated with power management, such as wakeup source control.
  47. Note that currently this driver will not support PowerPC based
  48. QorIQ processor.
  49. endmenu