summaryrefslogtreecommitdiffstats
path: root/sys/dev/digi/digi.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused ttys field.phk2004-10-141-1/+0
| | | | Spotted by: Peter Jeremy <PeterJeremy@optushome.com.au>
* Use generic tty code instead of local copies.phk2004-10-061-14/+0
|
* Introduce ttygone() which indicates that the hardware is detached.phk2004-07-111-1/+0
| | | | Move dtrwait logic to the generic TTY level.
* Remove the TIOCDCDTIMESTAMP option.phk2004-06-221-4/+0
| | | | | The RFC-2783 PPS-API (<sys/timepps.h>) provides better and more configurable service.
* Do the dreaded s/dev_t/struct cdev */phk2004-06-161-2/+2
| | | | Bump __FreeBSD_version accordingly.
* Consistently use the BSD u_int and u_short instead of the SYSV uint andjhb2003-08-071-3/+3
| | | | | | | ushort. In most of these files, there was a mixture of both styles and this change just makes them self-consistent. Requested by: bde (kern_ktrace.c)
* Don't use pessimal (u_short) types for i/o ports. This is mainly forbde2003-08-051-2/+2
| | | | | | | | | | completenss. The pessimization is tiny compared with i/o port slowness except on very old machines, but code that used signed short types for i/o ports was unpessimized long ago, and the macro that detected it recently started working for u_short types too. Use of bus space should have made this moot long ago. Not tested at runtime by: bde
* Yet another adjustment of digi_delay(). The delay is now consistentbrian2002-04-101-1/+2
| | | | irrespective of whether tsleep() or DELAY() is used.
* Change more uses of tsleep() to digi_delay() and make the loop counts morebrian2002-04-101-0/+1
| | | | sane.
* Fix warnings. The driver would be more useful with a DRIVER_MODULE()peter2002-02-271-0/+2
| | | | entry so that it actually can do something.
* Staticise the con_bios and digi_devclass variables, since they aren't neededmsmith2002-01-081-1/+0
| | | | by anything else.
* devsw_add() and cdevsw_remove() are no longer needed.phk2001-11-041-1/+0
|
* Allow individual ports to use alternate pin settings (swap dsr & cd)brian2001-06-201-0/+6
| | | | | | | | | | | 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.
* Credit John Prince and Eric Hernes for their work.brian2001-06-181-0/+3
|
* digiModel_t -> enum digi_modelbrian2001-05-171-1/+1
| | | | Remove a forgotton and unused structure.
* Remove all the mutex stuff - suggested by jhbbrian2001-05-081-7/+0
| | | | | | Tidy up includes, credit Slawa Olhovchenkov, John Prince and Eric Hernes for their efforts and add a couple of missing parenthesis around return expressions.
* Change COM_LOCK/COM_UNLOCK to a regular mutex - still conditional onbrian2001-05-071-0/+9
| | | | SMP being defined.
* 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-021-0/+204
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