summaryrefslogtreecommitdiff
path: root/sys/dev/sio/sio_isa.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove sio(4).Gleb Smirnoff2019-11-211-178/+0
| | | | | | | | | It had been disconnected from build in r181233 in 2008. Reviewed by: imp Notes: svn path=/head/; revision=354929
* Remove All Rights ReservedWarner Losh2019-02-051-1/+1
| | | | | | | | Remove the all rights reserved clause from my copyright, and make other minor tweaks needed where that might have created ambiguity. Notes: svn path=/head/; revision=343811
* Create a new ISA_PNP_INFO macro. Use this macro every where we haveWarner Losh2017-12-231-0/+1
| | | | | | | | | | ISA PNP card support (replace by hand version in if_ed). Move module declarations to the end of some files. Fix PCCARD_PNP_INFO to use nitems(). Remove some stale comments about pc98, turns out the comment was simply wrong. Notes: svn path=/head/; revision=327102
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
| | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Notes: svn path=/head/; revision=326255
* Add support for CIR1000 - Cirrus Logic V34 to the sio driverEitan Adler2012-11-131-0/+1
| | | | | | | | | | | PR: kern/44267 Submitted by: Michail Vidiassov <master@iaas.msu.ru> Arrival-Date: Sat Oct 19 07:30:00 PDT 2002 Approved by: cperciva (implicit) MFC after: 1 week Notes: svn path=/head/; revision=242996
* Allow the sio acpi attachment to be disabled (ie: use hints only). ThisPeter Wemm2007-11-301-0/+4
| | | | | | | | | | | | | hack means you can get the units and flags to match up more easily with serial consoles on machines with acpi tables that cause the com ports to be probed in the wrong order (and hence get the wrong sio unit number). This replaces the common alternative hack of editing the code to comment out the acpi attachment. This could go away entirely when device wiring patches are committed. Notes: svn path=/head/; revision=174116
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-291-1/+0
| | | | | | | | | and amd64. The optimization is a trivial on recent machines. Reviewed by: -arch (imp, marcel, dfr) Notes: svn path=/head/; revision=146734
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-061-1/+1
| | | | Notes: svn path=/head/; revision=139749
* Add detach methods so we can unload the sio module.Warner Losh2003-12-271-0/+1
| | | | Notes: svn path=/head/; revision=123910
* Fix copyright comment & FBSDID style nits.David E. O'Brien2003-08-251-1/+0
| | | | | | | Requested by: bde Notes: svn path=/head/; revision=119452
* Use __FBSDID().David E. O'Brien2003-08-241-1/+3
| | | | | | | Also some minor style cleanups. Notes: svn path=/head/; revision=119419
* Add E-Tech ISA PnP modem ID.Murray Stokely2003-05-161-0/+1
| | | | | | | | | | PR: kern/36692 Submitted by: Theo van Klaveren <t.vanklaveren@student.utwente.nl> Approved by: re (murray) MFC After: 3 days Notes: svn path=/head/; revision=115053
* Add _HID of IrDA module and Pen tablet onTakanori Watanabe2003-03-111-0/+2
| | | | | | | | | Tablet PC Acer Travel Mate C100. Sponsored by: ACER ,Alpha Omega, MYCOM , Synnex Notes: svn path=/head/; revision=112095
* Add another Askey ISA modem ID.David Malone2002-05-061-0/+1
| | | | | | | | PR: 35813 Submitted by: Chris Knight <chris@aims.com.au> Notes: svn path=/head/; revision=96105
* Fixed some style bugs in the removal of __P(()). The main ones wereBruce Evans2002-03-231-2/+2
| | | | | | | | | not removing tabs before "__P((", and not outdenting continuation lines to preserve non-KNF lining up of code with parentheses. Switch to KNF formatting and/or rewrap the whole prototype in some cases. Notes: svn path=/head/; revision=93010
* Remove __P.Alfred Perlstein2002-03-201-2/+2
| | | | Notes: svn path=/head/; revision=92739
* Add two IrDA controller ID: IBM TP240(Probably NSC compatible), and SMC IrCCTakanori Watanabe2002-03-031-0/+2
| | | | | | | controller. Notes: svn path=/head/; revision=91589
* 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
* Add PNP Id for Create Labs Phoneblaster.Sheldon Hearn2001-12-301-0/+1
| | | | | | | | PR: kern/32891 Submitted by: Louis Mamakos <louie@TransSys.COM> Notes: svn path=/head/; revision=88697
* bde suggests that sio really wants to manage its own softc. ThisWarner Losh2001-11-261-2/+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
* Add the PnP ID for a Rockwell 33.6k modem.Ian Dowse2001-11-181-0/+1
| | | | | | | | | PR: kern/23414 Submitted by: Ryuichiro Imura <imura@af.airnet.ne.jp> MFC after: 1 week Notes: svn path=/head/; revision=86545
* Break out the bus front ends into their own files. RewriteWarner Losh2001-10-231-0/+162
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