Kconfig 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #
  2. # Character device configuration
  3. #
  4. menu "I2C Algorithms"
  5. depends on I2C
  6. config I2C_ALGOBIT
  7. tristate "I2C bit-banging interfaces"
  8. depends on I2C
  9. help
  10. This allows you to use a range of I2C adapters called bit-banging
  11. adapters. Say Y if you own an I2C adapter belonging to this class
  12. and then say Y to the specific driver for you adapter below.
  13. This support is also available as a module. If so, the module
  14. will be called i2c-algo-bit.
  15. config I2C_ALGOPCF
  16. tristate "I2C PCF 8584 interfaces"
  17. depends on I2C
  18. help
  19. This allows you to use a range of I2C adapters called PCF adapters.
  20. Say Y if you own an I2C adapter belonging to this class and then say
  21. Y to the specific driver for you adapter below.
  22. This support is also available as a module. If so, the module
  23. will be called i2c-algo-pcf.
  24. config I2C_ALGOPCA
  25. tristate "I2C PCA 9564 interfaces"
  26. depends on I2C
  27. help
  28. This allows you to use a range of I2C adapters called PCA adapters.
  29. Say Y if you own an I2C adapter belonging to this class and then say
  30. Y to the specific driver for you adapter below.
  31. This support is also available as a module. If so, the module
  32. will be called i2c-algo-pca.
  33. config I2C_ALGOITE
  34. tristate "ITE I2C Algorithm"
  35. depends on MIPS_ITE8172 && I2C
  36. help
  37. This supports the use of the ITE8172 I2C interface found on some MIPS
  38. systems. Say Y if you have one of these. You should also say Y for
  39. the ITE I2C peripheral driver support below.
  40. This support is also available as a module. If so, the module
  41. will be called i2c-algo-ite.
  42. config I2C_ALGO8XX
  43. tristate "MPC8xx CPM I2C interface"
  44. depends on 8xx && I2C
  45. config I2C_ALGO_SIBYTE
  46. tristate "SiByte SMBus interface"
  47. depends on SIBYTE_SB1xxx_SOC && I2C
  48. help
  49. Supports the SiByte SOC on-chip I2C interfaces (2 channels).
  50. config I2C_ALGO_SGI
  51. tristate "I2C SGI interfaces"
  52. depends on I2C && (SGI_IP22 || SGI_IP32 || X86_VISWS)
  53. help
  54. Supports the SGI interfaces like the ones found on SGI Indy VINO
  55. or SGI O2 MACE.
  56. endmenu