summaryrefslogtreecommitdiffstats
path: root/sys/dev/onewire/onewire.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* provide size to free(9)deraadt2017-04-031-2/+2
|
* remove uneeded proc.h includesjsg2014-09-141-2/+1
| | | | ok mpi@ kspillner@
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
| | | | after discussions with beck deraadt kettenis.
* simplify kthread_create(). no more stdargderaadt2013-11-181-2/+2
| | | | ok matthew guenther mikeb
* Fix various glitches in queue macro usage.guenther2013-04-101-4/+2
| | | | ok millert@
* Remove config_activate() and DVACT_ACTIVATE. PCMCIA's the only thingmatthew2011-07-031-3/+1
| | | | | | | | that's ever used it, and it's long since been changed to use DVACT_{QUIESCE,SUSPEND,RESUME} instead. ok deraadt@, dlg@; miod@ also agreed with this idea when I brought it up a few weeks ago
* Get rid of devact enum, substitute it with an int and coresponding defines.pirofti2009-10-131-3/+3
| | | | | | This is needed for the addition of further suspend/resume actions. Okay deraadt@, marco@.
* Remember the id of all devices found, not only those for which a drivermiod2009-01-021-10/+10
| | | | | | | has attached. Prevents spurious "not configured" messages at every bus rescan. Prodded by and ok fries@
* Allow a 1-Wire controller to request an immediate scan, and also to preventmiod2008-04-071-1/+11
| | | | | | | periodic scans. ok grange@ (until this gets replaced with a proper notification mechanism to avoid unnecessary bus polling).
* MALLOC -> mallocgilles2007-10-091-4/+4
| | | | ok krw@
* Rework bus scanning code so that most of work could be offloadedgrange2006-10-081-67/+90
| | | | the hardware. And fix another bug in the search algorithm.
* Reduce max number of devices per bus to 16.grange2006-09-301-2/+2
|
* Allow to offload the match rom command to hardware.grange2006-09-301-1/+6
|
* Convert from using lockmgr to rwlock.grange2006-09-301-8/+8
|
* Extend bus master interface so that block read/write operationsgrange2006-09-291-19/+29
| | | | can be offloaded to hardware.
* Fix a nasty bug in the search algorithm, i was just lucky not to spot itgrange2006-08-031-7/+11
| | | | | before. Problem found and patch provided by Jeff Rizzo <riz@NetBSD.org> a long long time ago. Thanks!
* Dallas 1-Wire bus support. Includes the following drivers:grange2006-03-041-0/+452
gpioow(4) 1-Wire bus bit-banging through GPIO pin onewire(4) 1-Wire bus driver owid(4) 1-Wire ID family type device owtemp(4) 1-Wire temperature family type device Drivers for RS-232 and USB bus masters will follow. ok deraadt@