Kconfig 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # RapidIO configuration
  4. #
  5. config HAVE_RAPIDIO
  6. bool
  7. menuconfig RAPIDIO
  8. tristate "RapidIO support"
  9. depends on HAVE_RAPIDIO || PCI
  10. help
  11. If you say Y here, the kernel will include drivers and
  12. infrastructure code to support RapidIO interconnect devices.
  13. source "drivers/rapidio/devices/Kconfig"
  14. config RAPIDIO_DISC_TIMEOUT
  15. int "Discovery timeout duration (seconds)"
  16. depends on RAPIDIO
  17. default "30"
  18. help
  19. Amount of time a discovery node waits for a host to complete
  20. enumeration before giving up.
  21. config RAPIDIO_ENABLE_RX_TX_PORTS
  22. bool "Enable RapidIO Input/Output Ports"
  23. depends on RAPIDIO
  24. help
  25. The RapidIO specification describes a Output port transmit
  26. enable and a Input port receive enable. The recommended state
  27. for Input ports and Output ports should be disabled. When
  28. this switch is set the RapidIO subsystem will enable all
  29. ports for Input/Output direction to allow other traffic
  30. than Maintenance transfers.
  31. config RAPIDIO_DMA_ENGINE
  32. bool "DMA Engine support for RapidIO"
  33. depends on RAPIDIO
  34. depends on DMADEVICES
  35. select DMA_ENGINE
  36. help
  37. Say Y here if you want to use DMA Engine frameork for RapidIO data
  38. transfers to/from target RIO devices. RapidIO uses NREAD and
  39. NWRITE (NWRITE_R, SWRITE) requests to transfer data between local
  40. memory and memory on remote target device. You need a DMA controller
  41. capable to perform data transfers to/from RapidIO.
  42. If you are unsure about this, say Y here.
  43. config RAPIDIO_DEBUG
  44. bool "RapidIO subsystem debug messages"
  45. depends on RAPIDIO
  46. help
  47. Say Y here if you want the RapidIO subsystem to produce a bunch of
  48. debug messages to the system log. Select this if you are having a
  49. problem with the RapidIO subsystem and want to see more of what is
  50. going on.
  51. If you are unsure about this, say N here.
  52. config RAPIDIO_ENUM_BASIC
  53. tristate "Basic Enumeration method"
  54. depends on RAPIDIO
  55. help
  56. This option includes basic RapidIO fabric enumeration and discovery
  57. mechanism similar to one described in RapidIO specification Annex 1.
  58. config RAPIDIO_CHMAN
  59. tristate "RapidIO Channelized Messaging driver"
  60. depends on RAPIDIO
  61. help
  62. This option includes RapidIO channelized messaging driver which
  63. provides socket-like interface to allow sharing of single RapidIO
  64. messaging mailbox between multiple user-space applications.
  65. See "Documentation/driver-api/rapidio/rio_cm.rst" for driver description.
  66. config RAPIDIO_MPORT_CDEV
  67. tristate "RapidIO /dev mport device driver"
  68. depends on RAPIDIO
  69. help
  70. This option includes generic RapidIO mport device driver which
  71. allows to user space applications to perform RapidIO-specific
  72. operations through selected RapidIO mport.
  73. menu "RapidIO Switch drivers"
  74. depends on RAPIDIO
  75. source "drivers/rapidio/switches/Kconfig"
  76. endmenu