summaryrefslogtreecommitdiff
path: root/sys/dev/sio/sio_pci.c
Commit message (Collapse)AuthorAgeFilesLines
* Add yet a patch for the patchwork quilt called sio(4):Poul-Henning Kamp2003-02-271-0/+4
| | | | | | | Allow people set set flags on pci based SIO ports. Notes: svn path=/head/; revision=111620
* Whatever dumbass wrote sio_pci.c didn't include a detach method.Warner Losh2003-02-161-0/+1
| | | | | | | | | | | | | | Wearing said pointy hat, correct the oversight and hope nobody notices. # this should make xircom modems happier to detach once other bugs with # the cardbus layer are fixed. Noticed by: scottl Conical Hat to: imp Notes: svn path=/head/; revision=111014
* Add PCI id for Quatech SSCLP-200/300 lowprofile single-port RS422/485 card.Poul-Henning Kamp2003-01-311-0/+7
| | | | Notes: svn path=/head/; revision=110155
* Add PCI ID and configuration hint for Netmos Nm9845 PCI 6-ports serialMaxim Sobolev2002-07-101-0/+1
| | | | | | | | | | card. Submitted by: Oleg Antoshin <oleh@at2000.kiev.ua> MFC after: 3 days Notes: svn path=/head/; revision=99739
* Add PCI ID for the SeaLevel Ultra 530.PCI single port card.John Baldwin2002-03-201-0/+1
| | | | | | | Sponsored by: The Weather Channel Notes: svn path=/head/; revision=92822
* Remove __P.Alfred Perlstein2002-03-201-3/+3
| | | | Notes: svn path=/head/; revision=92739
* Add device ID for Xircom modem. Also add work around from gwk@sgi.comWarner Losh2002-03-161-1/+1
| | | | | | | | | | | to put the device into 8 bit mode a second time. This appears to have no ill effects on other devices, and appears to be necessary for the xircom modem. Submitted by: gwk@sgi.com, many others that found his patch in the archives. Notes: svn path=/head/; revision=92401
* Add pc98 support.Yoshihiro Takahashi2002-01-311-0/+3
| | | | Notes: svn path=/head/; revision=90010
* Add support for different serial clock frequencies and not just theJohn Hay2002-01-301-2/+2
| | | | | | | | | | standard one of 1.8432MHz. This will be used by the puc (PCI "universal" communication card) device driver. Reviewed by: bde Notes: svn path=/head/; revision=89986
* bde suggests that sio really wants to manage its own softc. ThisWarner Losh2001-11-261-3/+1
| | | | | | | | | | | | allows us to move the sio softc data structure back into sio.c and reduce the complexity of the non sio.c sio files. Submitted by: bde # I didn't fix the locking issues that bruce also submitted. Notes: svn path=/head/; revision=86909
* Break out the bus front ends into their own files. RewriteWarner Losh2001-10-231-0/+147
sio_pccard_detach to use new siodetach. Add an extra arg to sioprobe to tell driver to probe/not probe the device for IRQs. This incorporates most of Bruce's review material. I'm at a good checkpoint, but there will be more to come based on bde's further reviews. Reviewed by: bde Notes: svn path=/head/; revision=85365