summaryrefslogtreecommitdiff
path: root/sys/dev/ieee488/pcii.c
Commit message (Collapse)AuthorAgeFilesLines
* Catchup with filtersWarner Losh2007-02-231-1/+1
| | | | Notes: svn path=/head/; revision=166914
* Make resources do the right thing by design instead of accident.Poul-Henning Kamp2006-01-141-2/+1
| | | | | | | Found with: Coverity Prevent(tm) Notes: svn path=/head/; revision=154343
* Use new bus_space/resource convenience functions.Poul-Henning Kamp2005-09-241-67/+50
| | | | | | | Pretend the 10-bit I/O ISA addressing is not our problem. Notes: svn path=/head/; revision=150525
* Split the ibfoo API into its own file.Poul-Henning Kamp2005-02-121-0/+1
| | | | | | | | Implement ibdma() (only affects ibrd() mode) Implement ibeot() Notes: svn path=/head/; revision=141747
* Allocate more space for softc. Amazing my machine survived this.Poul-Henning Kamp2005-02-061-1/+1
| | | | Notes: svn path=/head/; revision=141423
* Further elaborate the GPIB driver. We now support a minimal subset ofPoul-Henning Kamp2005-02-061-263/+31
| | | | | | | the ibfoo() API. Notes: svn path=/head/; revision=141398
* Forgot to mark the IRQ as MPSAFE.Poul-Henning Kamp2005-02-011-1/+5
| | | | Notes: svn path=/head/; revision=141123
* Add a IEEE488 driver for PCIIA compatible cards.Poul-Henning Kamp2005-02-011-0/+419
This driver implements "unaddressed listen only mode", which is what printers and plotters commonly do on GP-IB busses. This means that you can capture print/plot like output from your instruments by configuring them as necessary (good luck!) and cat -u /dev/gpib0l > /tmp/somefile Since there is no way to know when no more output is comming you will have to ctrl-C the cat process when it is done (that is why the -u is important). Notes: svn path=/head/; revision=141121