NetBSD/sys/dev/i2c/files.i2c

77 lines
1.6 KiB
Plaintext

# $NetBSD: files.i2c,v 1.5 2005/08/16 11:09:12 nonaka Exp $
define i2cbus { }
define i2cexec
device iic { addr, [size = -1] }
attach iic at i2cbus
file dev/i2c/i2c.c iic | i2cbus
file dev/i2c/i2c_exec.c iic | i2cbus | i2cexec
# Common module for bit-bang'ing an I2C bus
define i2c_bitbang
file dev/i2c/i2c_bitbang.c i2c_bitbang
#
# I2C client devices
#
# M41T00 Real Time Clock
device m41trtc
attach m41trtc at iic
file dev/i2c/m41t00.c m41trtc
# M41ST84 Real Time Clock
device strtc
attach strtc at iic
file dev/i2c/m41st84.c strtc
# MAX6900 Real Time Clock
device maxrtc
attach maxrtc at iic
file dev/i2c/max6900.c maxrtc
# Philips PCF8583 Real Time Clock
device pcfrtc
attach pcfrtc at iic
file dev/i2c/pcf8583.c pcfrtc
# Atmel/Microchip 24Cxx Serial EEPROM
define at24cxx_eeprom
device seeprom
attach seeprom at iic
file dev/i2c/at24cxx.c seeprom | at24cxx_eeprom
needs-flag
# National Semiconductor LM75 temperature sensor
device lmtemp: sysmon_envsys
attach lmtemp at iic
file dev/i2c/lm75.c lmtemp
# Dallas DS1307 Real Time Clock
device dsrtc
attach dsrtc at iic
file dev/i2c/ds1307.c dsrtc
# Xicor X1226 Real Time Clock
device xrtc
attach xrtc at iic
file dev/i2c/x1226.c xrtc
# Analog Devices ADT 7467 thermal monitor / fan controller
define adt7467c {}
device adt7467c: sysmon_envsys
attach adt7467c at iic
file dev/i2c/adt7467.c adt7467c
# Analog Devices ADM 1030 thermal monitor / fan controller
define adm1030c {}
device adm1030c: sysmon_envsys
attach adm1030c at iic
file dev/i2c/adm1030.c adm1030c
# RICOH RS5C372[AB] Real Time Clock
device rs5c372rtc
attach rs5c372rtc at iic
file dev/i2c/rs5c372.c rs5c372rtc