Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix pastos; ok deraadt@. | 2005-11-17 | 1 | -10/+10 | |
| | |||||
* | grok adt7467 somewhat, and fan disconnects | 2005-11-17 | 1 | -5/+23 | |
| | |||||
* | basic driver for adt7460 found in some machines | 2005-11-17 | 2 | -1/+245 | |
| | |||||
* | Fix typo. | 2005-11-16 | 1 | -2/+2 | |
| | |||||
* | basic driver for apple fcu fan controller. can read up to 6 fan rpm's | 2005-11-16 | 2 | -1/+190 | |
| | | | | | and up to 2 fan pwms. we do not yet adjust the fan speeds, because we do not have a death wish | ||||
* | Add support for MAX6642. | 2005-11-16 | 1 | -24/+46 | |
| | | | | ok deraadt@ | ||||
* | driver for maxim ds1631, might work, might not! | 2005-11-16 | 2 | -1/+117 | |
| | |||||
* | driver for the philips pca9554 i2c gpio device | 2005-11-16 | 2 | -1/+262 | |
| | |||||
* | driver for adm1030 i2c temp + fan controller | 2005-11-15 | 2 | -1/+158 | |
| | |||||
* | Driver for the TAOS TSL2560/61 light sensors. | 2005-11-15 | 2 | -1/+242 | |
| | |||||
* | differentiate the older chip without the 4 adc | 2005-11-15 | 1 | -33/+51 | |
| | |||||
* | read the channel register, hopefully initialized by some rom (Yes, Apple | 2005-11-15 | 1 | -12/+46 | |
| | | | | | | does in their rom, but not in their kernel code). This tells us if the 2 AIN/FAN pins are wired as AIN or FAN (G4 xserve fans, G5 xserve more voltage readings..); ok kettenis | ||||
* | temperature readings of 0x80 mean "diode not connected", i think; kettenis ok | 2005-11-15 | 1 | -3/+6 | |
| | |||||
* | Start monitoring operations such that values actually change. | 2005-11-15 | 1 | -1/+18 | |
| | | | | ok deraadt@ | ||||
* | simple driver for the Analog Devices AD7417/7418 (does not cope right | 2005-11-15 | 2 | -2/+186 | |
| | | | | with 7416 without ADC yet) | ||||
* | avoid integer overflow in fan speed calculations, from kettenis | 2005-11-15 | 1 | -9/+16 | |
| | | | | also, if things appear majorly wonky, mark sensors invalid | ||||
* | driver for the maxim6690 i2c dual temperature sensor | 2005-11-15 | 2 | -1/+189 | |
| | |||||
* | instead of passing OF nodes down to the drivers, pass name/compat string | 2005-11-15 | 4 | -21/+26 | |
| | | | | | | pointers. This lets their match() functions actually make real decisions. OF-capable machines will pass name/compat pointers, but other machines will not. grudging ok kettenis | ||||
* | move lm87 to dev/i2c; ok kettenis | 2005-11-15 | 2 | -1/+247 | |
| | |||||
* | code was totally borked, if it failed to detect a LM77 it left the | 2005-11-13 | 1 | -7/+7 | |
| | | | | type as 0; ok kettenis | ||||
* | Unbreak i386. | 2005-11-12 | 1 | -3/+3 | |
| | |||||
* | Define attachment-like attribute i2c and attach lmtemp to that instead of iic. | 2005-11-12 | 1 | -3/+4 | |
| | |||||
* | Use sensors thread instead of timeouts. | 2005-11-11 | 2 | -10/+4 | |
| | | | | ok dlg@, "slap it in" deraadt@ | ||||
* | Add basic audio playback support for the Zaurus SL-C3000. | 2005-04-15 | 1 | -0/+317 | |
| | | | | ok dlg@ drahn@ uwe@ deraadt@ | ||||
* | Cosmetics... | 2005-03-08 | 1 | -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 importing | 2004-05-24 | 1 | -1/+5 | |
| | |||||
* | lmtemp(4) -- National Semiconductor LM75/LM77 temperature sensor driver. | 2004-05-23 | 3 | -1/+406 | |
| | | | | | | | 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. Thorpe | 2004-05-23 | 7 | -0/+787 | |
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@ |