Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. menu "Rpmsg drivers"
  2. # RPMSG always gets selected by whoever wants it
  3. config RPMSG
  4. tristate
  5. config RPMSG_CHAR
  6. tristate "RPMSG device interface"
  7. depends on RPMSG
  8. depends on NET
  9. help
  10. Say Y here to export rpmsg endpoints as device files, usually found
  11. in /dev. They make it possible for user-space programs to send and
  12. receive rpmsg packets.
  13. config RPMSG_MTK
  14. tristate "MediaTek TinySys RPM driver"
  15. depends on MTK_MBOX
  16. select RPMSG
  17. help
  18. Say y here to enable support communication channels to remote
  19. processors in MediaTek platforms. This uses MTK MBOX driver to
  20. communicate with remote processors base on rpmsg framework. It
  21. provide channels, endpoints creation and send operations.
  22. config RPMSG_QCOM_GLINK_NATIVE
  23. tristate
  24. select RPMSG
  25. config RPMSG_QCOM_GLINK_RPM
  26. tristate "Qualcomm RPM Glink driver"
  27. select RPMSG_QCOM_GLINK_NATIVE
  28. depends on HAS_IOMEM
  29. depends on MAILBOX
  30. help
  31. Say y here to enable support for the GLINK RPM communication driver,
  32. which serves as a channel for communication with the RPM in GLINK
  33. enabled systems.
  34. config RPMSG_QCOM_GLINK_SMEM
  35. tristate "Qualcomm SMEM Glink driver"
  36. select RPMSG_QCOM_GLINK_NATIVE
  37. depends on MAILBOX
  38. depends on QCOM_SMEM
  39. help
  40. Say y here to enable support for the GLINK SMEM communication driver,
  41. which provides support for using the GLINK communication protocol
  42. over SMEM.
  43. config RPMSG_QCOM_SMD
  44. tristate "Qualcomm Shared Memory Driver (SMD)"
  45. depends on QCOM_SMEM
  46. select RPMSG
  47. help
  48. Say y here to enable support for the Qualcomm Shared Memory Driver
  49. providing communication channels to remote processors in Qualcomm
  50. platforms.
  51. config RPMSG_VIRTIO
  52. tristate
  53. select RPMSG
  54. select VIRTIO
  55. endmenu