summaryrefslogtreecommitdiffstats
path: root/sys/dev/i2c/files.i2c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* adm1025 ... another day, another chip..deraadt2005-12-221-1/+6
|
* First attempt to have a table of known I2C slave devices that wegrange2005-12-191-1/+2
| | | | | | | | have drivers for. iic(4) will scan the bus for them and try to attach an appropriate driver. For now iic(4) scans for all possible addresses for debugging purposes. ok deraadt@
* basic driver for adt7460 found in some machinesderaadt2005-11-171-1/+6
|
* basic driver for apple fcu fan controller. can read up to 6 fan rpm'sderaadt2005-11-161-1/+6
| | | | | and up to 2 fan pwms. we do not yet adjust the fan speeds, because we do not have a death wish
* driver for maxim ds1631, might work, might not!deraadt2005-11-161-1/+6
|
* 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@