Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. help
  24. Driver for the DPAA2 DPIO object. A DPIO provides queue and
  25. buffer management facilities for software to interact with
  26. other DPAA2 objects. This driver does not expose the DPIO
  27. objects individually, but groups them under a service layer
  28. API.
  29. config DPAA2_CONSOLE
  30. tristate "QorIQ DPAA2 console driver"
  31. depends on OF && (ARCH_LAYERSCAPE || COMPILE_TEST)
  32. default y
  33. help
  34. Console driver for DPAA2 platforms. Exports 2 char devices,
  35. /dev/dpaa2_mc_console and /dev/dpaa2_aiop_console,
  36. which can be used to dump the Management Complex and AIOP
  37. firmware logs.
  38. config FSL_RCPM
  39. bool "Freescale RCPM support"
  40. depends on PM_SLEEP && (ARM || ARM64)
  41. help
  42. The NXP QorIQ Processors based on ARM Core have RCPM module
  43. (Run Control and Power Management), which performs all device-level
  44. tasks associated with power management, such as wakeup source control.
  45. Note that currently this driver will not support PowerPC based
  46. QorIQ processor.
  47. endmenu