summaryrefslogtreecommitdiffstats
path: root/sys/dev/i2c/files.i2c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* driver for the philips pca9554 i2c gpio devicederaadt2005-11-161-1/+6
|
* driver for adm1030 i2c temp + fan controllerderaadt2005-11-151-1/+6
|
* Driver for the TAOS TSL2560/61 light sensors.kettenis2005-11-151-1/+6
|
* simple driver for the Analog Devices AD7417/7418 (does not cope rightderaadt2005-11-151-2/+7
| | | | with 7416 without ADC yet)
* driver for the maxim6690 i2c dual temperature sensorderaadt2005-11-151-1/+6
|
* move lm87 to dev/i2c; ok kettenisderaadt2005-11-151-1/+6
|
* Unbreak i386.kettenis2005-11-121-3/+3
|
* Define attachment-like attribute i2c and attach lmtemp to that instead of iic.kettenis2005-11-121-3/+4
|
* Cosmetics...tdeval2005-03-081-2/+2
| | | | | Mainly remove space between locators parens, replace spaces with tabs where appropriate and consistently align dependencies.
* tiny comments sync with netbsd, was lost during importinggrange2004-05-241-1/+5
|
* lmtemp(4) -- National Semiconductor LM75/LM77 temperature sensor driver.grange2004-05-231-1/+6
| | | | | | | Based on the driver from NetBSD (r) written by Jason R. Thorpe, adapted for our sensors infrastructure and with LM77 support. ok deraadt@
* I2C framework originally written by Steve C. Woodford and Jason R. Thorpegrange2004-05-231-0/+10
for NetBSD (r). This framework supports various i2c master controllers: - dumb bit-bang controllers - a few styles of automated controllers that give you control over sending start/stop conditions on the i2c bus - automated controllers that are too smart for its own good, giving software no control over start/stop conditions - smbus controllers by emulating smbus protocol with i2c commands i2c slave devices need their addresses to be specified in the kernel config file, no device discovery presented. ok deraadt@