summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/rtsx_pci.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add support for the Realtek RTS525Ajcs2017-09-061-19/+25
| | | | ok stsp
* Match on RTS522A. Found in 2016 thinkpads.jsg2016-04-261-1/+2
| | | | Tested by Bryan Vyhmeister on x260.
* In rtsx(4), condense the list of support chips in a comment, remove the unusedstsp2015-04-281-7/+4
| | | | | F_5227 flag, sort PCI IDs, and fix a typo in a comment. No functional change. from brad
* match on the RTS5249 found on the dell xps 13, treat it as a 5229jcs2015-03-281-1/+3
| | | | ok stsp
* RTL8411 works also, according to tiix@openmailboxderaadt2015-03-141-1/+2
|
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
| | | | | | | have any direct symbols used. Tested for indirect use by compiling amd64/i386/sparc64 kernels. ok tedu@ deraadt@
* Add support for the RTL8411B chipphessler2015-02-231-1/+2
| | | | | | Verified working by Peter Hansteen OK deraadt@, millert@, stsp@
* Enable rts5227, as found in my new Thinkpad x240.phessler2014-08-191-5/+15
| | | | | | | | | Shuffle the code around slightly, so we special case the 5209 chipset instead of semi-randomly. Tested on rts5227 by me, and rts5209 by stsp@ OK stsp@
* Make rtsx(4) attach to RTL8402 devices. Reported as working by Eric Huiban.stsp2014-05-181-2/+3
|
* Also match RTS5227 in rtsx(4). Works for me on the THinkPad X240.claudio2014-04-181-1/+2
| | | | | | This will give us basic support there are a few extra bits in the linux driver we ignore for now. Something to look at in the future. OK stsp@ mlarkin@ kettenis@
* Add support for the RTS5229 card reader to rtsx(4).stsp2013-11-061-5/+14
| | | | From Pedro Martelletto.
* Enable MSI for rtsx(4). Tested on i386 and amd64.stsp2013-01-051-2/+2
|
* Attach rtsx(4) only to devices using the 'undefined' PCI class, and dostsp2013-01-041-2/+8
| | | | | | | not ever attach sdhc(4) to devices matching the rtsx(4) vendor/product ID. Fixes an issue reported by Dave Anderson where on his hardware both drivers attached to apparently the same device which then failed to work reliably. ok deraadt
* Add rtsx(4), a new driver for the Realtek RTS5209 card reader.stsp2012-11-291-0/+105
This card reader does not comply to the standard SDHC interface supported by sdhc(4) and hence requires a custom driver. With help from uwe and mikeb. Useful hints were also provided by the author of the corresponding Linux driver (wwang at realsil com cn), thanks a lot! Tested by myself and weerd on i386 and amd64.