files.i2c revision 1.51
11.51Smatt#	$NetBSD: files.i2c,v 1.51 2013/09/06 00:56:12 matt Exp $
21.1Sthorpej
31.43Sjmcneillobsolete defflag	opt_i2cbus.h		I2C_SCAN
41.1Sthorpejdefine	i2cbus { }
51.1Sthorpejdefine	i2cexec
61.1Sthorpej
71.17Smacallandevice	iic { [addr = -1], [size = -1] }
81.1Sthorpejattach	iic at i2cbus
91.44Sjmcneillfile	dev/i2c/i2c.c				iic
101.1Sthorpejfile	dev/i2c/i2c_exec.c			iic | i2cbus | i2cexec
111.44Sjmcneillfile	dev/i2c/i2c_subr.c			iic | i2cbus
121.1Sthorpej
131.1Sthorpej# Common module for bit-bang'ing an I2C bus
141.1Sthorpejdefine	i2c_bitbang
151.1Sthorpejfile	dev/i2c/i2c_bitbang.c			i2c_bitbang
161.1Sthorpej
171.30Sjmcneill# Auvitek AU8522 decoder
181.30Sjmcneilldefine	au8522: i2cexec
191.30Sjmcneillfile	dev/i2c/au8522.c			au8522
201.30Sjmcneill
211.37Sjmcneill# LG DT3303 decoder
221.42Sjmcneilldefine	lg3303: i2cexec, dtv_math
231.37Sjmcneillfile	dev/i2c/lg3303.c			lg3303
241.37Sjmcneill
251.37Sjmcneill# Xceive XC3028 tuner
261.42Sjmcneilldefine	xc3028: i2cexec, firmload
271.37Sjmcneillfile	dev/i2c/xc3028.c			xc3028
281.37Sjmcneill
291.30Sjmcneill# Xceive XC5000 tuner
301.37Sjmcneilldefine	xc5k: i2cexec, firmload
311.30Sjmcneillfile	dev/i2c/xc5k.c				xc5k
321.30Sjmcneill
331.35Sjakllsch# Generic PLL-based tuners
341.35Sjakllschdefine	tvpll: i2cexec
351.35Sjakllschfile	dev/i2c/tvpll.c				tvpll
361.35Sjakllschfile	dev/i2c/tvpll_tuners.c			tvpll
371.35Sjakllsch
381.36Sjakllsch# Nextwave NXT200x demodulator
391.38Sjmcneilldefine	nxt2k: i2cexec, firmload
401.36Sjakllschfile	dev/i2c/nxt2k.c				nxt2k
411.36Sjakllsch
421.39Sjakllsch# Microtune MT2131 silicon tuner
431.39Sjakllschdefine	mt2131: i2cexec
441.39Sjakllschfile	dev/i2c/mt2131.c			mt2131
451.39Sjakllsch
461.40Sjakllsch# Conexant/Samsung CX24227/S5H1409 demodulator
471.40Sjakllschdefine	cx24227: i2cexec
481.40Sjakllschfile	dev/i2c/cx24227.c			cx24227
491.40Sjakllsch
501.1Sthorpej#
511.31Smatt# I2C master devices
521.31Smatt#
531.31Smattdefine	motoi2c
541.31Smattfile	dev/i2c/motoi2c.c			motoi2c
551.51Smattdefine	mvi2c
561.51Smattfile	dev/i2c/gttwsi_core.c			mvi2c
571.31Smatt
581.31Smatt#
591.1Sthorpej# I2C client devices
601.1Sthorpej#
611.1Sthorpej
621.1Sthorpej# M41T00 Real Time Clock
631.3Sbriggsdevice	m41trtc
641.3Sbriggsattach	m41trtc at iic
651.3Sbriggsfile	dev/i2c/m41t00.c			m41trtc
661.1Sthorpej
671.1Sthorpej# M41ST84 Real Time Clock
681.1Sthorpejdevice	strtc
691.1Sthorpejattach	strtc at iic
701.1Sthorpejfile	dev/i2c/m41st84.c			strtc
711.29Skiyoharadefflag	opt_strtc.h				STRTC_NO_USERRAM
721.29Skiyohara						STRTC_NO_WATCHDOG
731.1Sthorpej
741.1Sthorpej# MAX6900 Real Time Clock
751.1Sthorpejdevice	maxrtc
761.1Sthorpejattach	maxrtc at iic
771.1Sthorpejfile	dev/i2c/max6900.c			maxrtc
781.1Sthorpej
791.32Sjakllsch# NXP/Philips PCF8563 Real Time Clock
801.32Sjakllschdevice	pcf8563rtc
811.32Sjakllschattach	pcf8563rtc at iic
821.32Sjakllschfile	dev/i2c/pcf8563.c			pcf8563rtc
831.32Sjakllsch
841.1Sthorpej# Philips PCF8583 Real Time Clock
851.1Sthorpejdevice	pcfrtc
861.1Sthorpejattach	pcfrtc at iic
871.1Sthorpejfile	dev/i2c/pcf8583.c			pcfrtc
881.1Sthorpej
891.34Sphx# Seiko Instruments S-xx390A Real Time Clock
901.34Sphxdevice	s390rtc
911.34Sphxattach	s390rtc at iic
921.34Sphxfile	dev/i2c/s390.c				s390rtc
931.34Sphx
941.1Sthorpej# Atmel/Microchip 24Cxx Serial EEPROM
951.1Sthorpejdefine	at24cxx_eeprom
961.1Sthorpejdevice	seeprom
971.1Sthorpejattach	seeprom at iic
981.1Sthorpejfile	dev/i2c/at24cxx.c			seeprom | at24cxx_eeprom
991.1Sthorpej						    needs-flag
1001.1Sthorpej
1011.1Sthorpej# National Semiconductor LM75 temperature sensor
1021.1Sthorpejdevice	lmtemp: sysmon_envsys
1031.1Sthorpejattach	lmtemp at iic
1041.1Sthorpejfile	dev/i2c/lm75.c				lmtemp
1051.1Sthorpej
1061.21Spgoyette# National Semiconductor LM78 temp sensor/fan controller
1071.21Spgoyetteattach	lm at iic with lm_iic
1081.21Spgoyettefile	dev/i2c/lm_i2c.c			lm_iic
1091.21Spgoyette
1101.1Sthorpej# Dallas DS1307 Real Time Clock
1111.1Sthorpejdevice	dsrtc
1121.1Sthorpejattach	dsrtc at iic
1131.1Sthorpejfile	dev/i2c/ds1307.c			dsrtc
1141.2Sshige
1151.2Sshige# Xicor X1226 Real Time Clock
1161.2Sshigedevice	xrtc
1171.2Sshigeattach	xrtc at iic
1181.2Sshigefile	dev/i2c/x1226.c				xrtc
1191.4Smacallan
1201.19Spgoyette# Analog Devices dBCool family of thermal monitors / fan controllers
1211.19Spgoyettedefine dbcool {}
1221.19Spgoyettedevice dbcool: sysmon_envsys
1231.19Spgoyetteattach dbcool at iic
1241.19Spgoyettefile dev/i2c/dbcool.c			dbcool
1251.19Spgoyette
1261.5Snonaka# RICOH RS5C372[AB] Real Time Clock
1271.5Snonakadevice	rs5c372rtc
1281.5Snonakaattach	rs5c372rtc at iic
1291.5Snonakafile	dev/i2c/rs5c372.c		rs5c372rtc
1301.8Sshige
1311.8Sshige# RICOH R2025S/D Real Time Clock
1321.8Sshigedevice	r2025rtc
1331.8Sshigeattach	r2025rtc at iic
1341.8Sshigefile	dev/i2c/r2025.c			r2025rtc
1351.9Sgdamore
1361.9Sgdamore# VESA Display Data Channel 2
1371.9Sgdamoredevice	ddc
1381.10Sgdamoredefine	ddc_read_edid
1391.9Sgdamoreattach	ddc at iic
1401.10Sgdamorefile	dev/i2c/ddc.c			ddc | ddc_read_edid
1411.11Sjmcneill
1421.14Smacallan# SGS TDA7433 audio mixer
1431.16Smacallandevice	sgsmix
1441.16Smacallanattach	sgsmix at iic
1451.14Smacallanfile	dev/i2c/sgsmix.c		sgsmix needs-flag
1461.16Smacallandefflag	opt_sgsmix.h	SGSMIX_DEBUG
1471.14Smacallan
1481.15Stnn# Memory Serial Presence Detect
1491.27Spgoyetteattach	spdmem at iic with spdmem_iic
1501.27Spgoyettefile	dev/i2c/spdmem_i2c.c		spdmem_iic
1511.22Sjkunz
1521.24Spgoyette# Memory Temp Sensor
1531.25Spgoyettedevice	sdtemp: sysmon_envsys
1541.24Spgoyetteattach	sdtemp at iic
1551.24Spgoyettefile	dev/i2c/sdtemp.c		sdtemp
1561.24Spgoyette
1571.51Smatt# DS1672 Real Time Clock
1581.51Smattdevice	ds1672rtc
1591.51Smattattach	ds1672rtc at iic
1601.51Smattfile	dev/i2c/ds1672.c		ds1672rtc
1611.51Smatt
1621.22Sjkunz# ADM1021
1631.23Snakayamadevice	admtemp: sysmon_envsys
1641.22Sjkunzattach	admtemp at iic
1651.22Sjkunzfile	dev/i2c/adm1021.c		admtemp
1661.26Spgoyette
1671.26Spgoyette# SMSC LPC47M192 hardware monitor
1681.26Spgoyettedevice	smscmon: sysmon_envsys
1691.26Spgoyetteattach	smscmon at iic
1701.26Spgoyettefile	dev/i2c/smscmon.c		smscmon
1711.28Skiyohara
1721.28Skiyohara# G760a FAN controller
1731.28Skiyoharadevice	g760a: sysmon_envsys
1741.28Skiyoharaattach	g760a at iic
1751.28Skiyoharafile	dev/i2c/g760a.c			g760a
1761.33Shannken
1771.33Shannken# IBM Hawk Integrated Systems Management Processor
1781.33Shannkendevice	ibmhawk: sysmon_envsys
1791.33Shannkenattach	ibmhawk at iic
1801.33Shannkenfile	dev/i2c/ibmhawk.c		ibmhawk
1811.46Sjmcneill
1821.46Sjmcneill# TI TPS65950 OMAP Power Management and System Companion Device
1831.47Sjmcneilldevice	tps65950pm: sysmon_wdog
1841.46Sjmcneillattach	tps65950pm at iic
1851.46Sjmcneillfile	dev/i2c/tps65950.c		tps65950pm
1861.48Srkujawa
1871.48Srkujawa# TI TPS65217
1881.48Srkujawadevice	tps65217pmic: sysmon_envsys
1891.48Srkujawaattach	tps65217pmic at iic
1901.48Srkujawafile	dev/i2c/tps65217pmic.c 		tps65217pmic
1911.48Srkujawa
1921.49Srkujawa# Microchip MCP980x
1931.49Srkujawadevice	mcp980x: sysmon_envsys
1941.49Srkujawaattach	mcp980x at iic
1951.49Srkujawafile	dev/i2c/mcp980x.c 		mcp980x
1961.49Srkujawa
1971.50Ssoren# Nuvoton W83795G/ADG Hardware Monitor
1981.50Ssorendevice	w83795g: gpiobus, sysmon_envsys, sysmon_wdog
1991.50Ssorenattach	w83795g at iic
2001.50Ssorenfile	dev/i2c/w83795g.c 		w83795g
201