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