summaryrefslogtreecommitdiffstats
path: root/sys/dev/digi
Commit message (Collapse)AuthorAgeFilesLines
* devsw_add() and cdevsw_remove() are no longer needed.phk2001-11-044-27/+0
|
* Send a .4 second BREAK rather than a .25 second break so thatbrian2001-09-231-2/+2
| | | | | | | | | we're at least consistent with what tcsendbreak(3) is documented to do. MFC after: 2 weeks Note, the MFC will be to sys/dev/dgb/dgm.c on the RELENG_4 branch
* KSE Milestone 2julian2001-09-121-7/+7
| | | | | | | | | | | | | | Note ALL MODULES MUST BE RECOMPILED make the kernel aware that there are smaller units of scheduling than the process. (but only allow one thread per process at this time). This is functionally equivalent to teh previousl -current except that there is a thread associated with each process. Sorry john! (your next MFC will be a doosie!) Reviewed by: peter@freebsd.org, dillon@freebsd.org X-MFC after: ha ha ha ha
* Allow individual ports to use alternate pin settings (swap dsr & cd)brian2001-06-202-12/+89
| | | | | | | | | | | via the new DIGIIO_SETALTPIN ioctl, and allow the port's ALTPIN setting to be queried via DIGIIO_GETALTPIN. The initial state and lock devices are normally used to set and/or lock ALTPIN settings although the device itself may also be used. ALTPIN settings are applied per-device and apply to both the callin and callout device at the same time.
* Use linker_reference_module() instead of hard-coding the digi_*brian2001-06-181-14/+7
| | | | module path.
* Credit John Prince and Eric Hernes for their work.brian2001-06-182-1/+6
|
* MALLOC -> malloc, FREE -> freebrian2001-05-221-5/+5
|
* #include <digi/*.h> -> #include <dev/digi/*.h>brian2001-05-193-9/+9
| | | | Suggested by: bde
* Fairwell digiio.h (moved to src/sys/sys)brian2001-05-191-61/+0
|
* digiio.h has moved to /usr/include/sysbrian2001-05-193-7/+7
|
* digiModel_t -> enum digi_modelbrian2001-05-173-10/+5
| | | | Remove a forgotton and unused structure.
* Remove all the mutex stuff - suggested by jhbbrian2001-05-084-49/+12
| | | | | | Tidy up includes, credit Slawa Olhovchenkov, John Prince and Eric Hernes for their efforts and add a couple of missing parenthesis around return expressions.
* sys/mutex.h requires sys/lock.h for LINTbrian2001-05-071-0/+1
| | | | Re-spotted by: phk
* Change COM_LOCK/COM_UNLOCK to a regular mutex - still conditional onbrian2001-05-074-25/+25
| | | | SMP being defined.
* Make LINT compile again.brian2001-05-061-0/+1
| | | | Spotted by: phk
* Only define DEBUG if it's undefined. This should eventually go, butbrian2001-05-021-0/+2
| | | | can stay for now in case of problems.
* Add a ``digi'' driver.brian2001-05-0233-0/+44161
This driver supports PCI Xr-based and ISA Xem Digiboard cards. dgm will go away soon if there are no problems reported. For now, configuring dgm into your kernel warns that you should be using digi. This driver is probably close to supporting Xi, Xe and Xeve cards, but I wouldn't expect them to work properly (hardware donations welcome). The digi_* pseudo-drivers are not drivers themselves but contain the BIOS and FEP/OS binaries for various digiboard cards and are auto-loaded and auto-unloaded by the digi driver at initialisation time. They *may* be configured into the kernel, but waste a lot of space if they are. They're intended to be left as modules. The digictl program is (mainly) used to re-initialise cards that have external port modules attached such as the PC/Xem.
OpenPOWER on IntegriCloud