Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. if MCTP
  2. menu "MCTP Device Drivers"
  3. config MCTP_SERIAL
  4. tristate "MCTP serial transport"
  5. depends on TTY
  6. select CRC_CCITT
  7. help
  8. This driver provides an MCTP-over-serial interface, through a
  9. serial line-discipline, as defined by DMTF specification "DSP0253 -
  10. MCTP Serial Transport Binding". By attaching the ldisc to a serial
  11. device, we get a new net device to transport MCTP packets.
  12. This allows communication with external MCTP endpoints which use
  13. serial as their transport. It can also be used as an easy way to
  14. provide MCTP connectivity between virtual machines, by forwarding
  15. data between simple virtual serial devices.
  16. Say y here if you need to connect to MCTP endpoints over serial. To
  17. compile as a module, use m; the module will be called mctp-serial.
  18. config MCTP_TRANSPORT_I2C
  19. tristate "MCTP SMBus/I2C transport"
  20. # i2c-mux is optional, but we must build as a module if i2c-mux is a module
  21. depends on I2C_MUX || !I2C_MUX
  22. depends on I2C
  23. depends on I2C_SLAVE
  24. select MCTP_FLOWS
  25. help
  26. Provides a driver to access MCTP devices over SMBus/I2C transport,
  27. from DMTF specification DSP0237. A MCTP protocol network device is
  28. created for each I2C bus that has been assigned a mctp-i2c device.
  29. endmenu
  30. endif