summaryrefslogtreecommitdiff
path: root/sys/dev/cardbus
AgeCommit message (Collapse)Author
2006-08-10- ANSI functionsBrad Smith
- de-register - remove return at the end of void functions - some cosmetic tweaking
2006-08-09On detach the bus space was not unmapped correctly which could lead toMarcus Glocker
a panic. Fix it. Diff received by Marc Winiger <mw@msys.ch> - thanks! ok claudio@
2006-08-08Some KNF.Marcus Glocker
2006-08-08Mention which MAC we are using (ACX100 or ACX111) and fixJonathan Gray
newline in cardbus attachment.
2006-08-03be more clear about failed mappingsTheo de Raadt
2006-08-03Enable also pretty printing of radio & address for cardbus.Marcus Glocker
2006-08-03Fix acx entry. Unbreaks kernel build.Marc Balmer
2006-08-03Add/Fix copyright notes.Marcus Glocker
2006-08-03Change to OpenBSD cvs tag.Marcus Glocker
2006-08-03Inital import for the acx(4) driver.Marcus Glocker
ok deraadt@ jsg@
2006-07-31puc@cardbus (only added (commented out) to whom has puc@pci enabled)Michael Shalayeff
tested on puc@pci by fkr and meself on the cardbus. still needs a bit more work but generally works. deraadt@ ok and some input from miod@
2006-07-12make dmesg lines openbsd-style, ok dlg@Jolan Luff
2006-07-01(fxp/re)_attach_common -> (fxp/re)_attachBrad Smith
2006-06-24de-register, ANSI functions and a little cleaning.Brad Smith
2006-06-21removal of '#ifdef rbus ... #else ...' directives, we use rbus in allFelix Kronlage
cases anyways, so we might as well remove code (the !rbus case) thats been dead throughout the last years and just use the rbus code without ifdefs. brad, miod "I am all for this diff" ok deraadt, mickey
2006-06-17add sys/timeout.hBrad Smith
2006-06-08attempt at correcting the comments to somewhat more proper englishFelix Kronlage
prodded by uwe@
2006-06-08substitute the Cardbus_conf_read/Cardbus_conf_write macros withFelix Kronlage
cardbus_conf_read/cardbus_conf_write. This makes fxp* at cardbus? work (again?) on macppc. tested by various users.
2006-06-04KNF and whitespace cleanup, no functional changeFelix Kronlage
ok mbalmer@
2006-06-02use the cardbus_conf_read/cardbus_conf_write macros instead of theFelix Kronlage
Cardbus_conf_read/Cardbus_conf_write ones, since the latters cause us to panic on macppc. ok pascoe@, uwe@, martin@
2006-06-01remove a comma from the attach line, makes dmesg prettierFelix Kronlage
2006-05-31order cdevs alphabetically by vendorFelix Kronlage
ok brad@
2006-05-30add Oxford CB950 to the list of devices having more than one BAR, soFelix Kronlage
that it can be attached properly
2006-05-29minor space nitPeter Valchev
2006-05-28remove the dev/isa/isavar.h include, as it is not neededFelix Kronlage
ok miod@, martin@
2006-05-28cleanup whitespaces, tabs are so much nicerFelix Kronlage
ok mbalmer@
2006-05-22Attach routines can fail before calling *hook_establish(), and theyKenneth R Westerback
often rely on the detach routine for cleanup. So be consistant and careful by checking for a NULL hook before calling *hook_disestablish in detach routines. ok mickey@ brad@ dlg@
2006-05-22Don't call powerhook_disestablish if there is no powerhook to disestablish.David Gwynne
This is possible if ohci_init fails in attach. Similar to krw@'s fix in ohci.c 1.67 for PR #5128. ok krw@
2006-04-23Recognize the D-Link DRP32TXD CardBus adapter. It is anotherBrad Smith
ADMTek AN983 clone. From FreeBSD
2006-04-16Use __func__ to get the current function name, no need to declare a variableMiod Vallat
for this...
2006-03-07Add support for the serial interface to the UMTS/GPRS/GSM modemJonathan Gray
portion of the Sony Ericsson GC89 card. From Felix Kronlage.
2006-01-29remove printf on ath_cardbus_power; reyk@ ok.Federico G. Schwindt
2006-01-09- add preliminary support for Ralink Technology RT2561, RT2561S and RT2661Damien Bergamini
chipsets in ral(4). - restructure the code a bit; split ic/ral.c into ic/rt2560.c and ic/rt2661.c - import the 8051 microcode files required by these chipsets. - more to come; there is currently no automatic rate control and some features are untested (hostap and ibss modes for instance). most of the pre-802.11n capabilities of the RT2661 chipset are not supported (like frame aggregation, piggy-back). MIMO should work though the performance/range gain has not been measured.
2006-01-01update for pcidevs name changeBrad Smith
2005-12-30remove the tailq used to locate ehci's companion controllers. i haveDavid Gwynne
absolutely no idea how this compiled since the usb_cardbus struct (which is what the list was made of) was defined in usb_cardbus.h. usb_cardbus.h was removed from the tree over 8 months ago. gcc must be crap.
2005-12-30remove #if __NetBSD__ and device_ptr_t. its more readable and lessDavid Gwynne
confusing now.
2005-12-30while looking for device_ptr_t typedef cruft i noticed #if __NetBSD__. whyDavid Gwynne
did i put that in? this cleans up the if __NetBSD__ goo
2005-12-07o do not break after first iteration but when we found a match.Federico G. Schwindt
o try to read the whole cis (but not more than len bytes) instead of the first 256 bytes. first one spotted by lint. mickey@, krw@ and deraadt@ ok.
2005-09-26minor knfTheo de Raadt
2005-09-26Share com probe code between com and pccom; allows us to get rid of awkwardMiod Vallat
code duplication in cardbus, pcmcia and puc attachments. Joint effort with fgs@; blessed deraadt@
2005-09-24Make atw_cardbus_power() not tell us its name every time it is called...Jonathan Gray
2005-09-22remove the very basic ath(4) rate control implementation and useReyk Floeter
rssadapt(9) instead. this may need some further work but now it's in the right place and shared with other drivers (like ral(4)). yes jsg@
2005-09-19knf.Federico G. Schwindt
2005-09-13some missing cleanup from the previous commit.Federico G. Schwindt
2005-09-13knf; no binary change.Federico G. Schwindt
2005-09-13make compile; goodMichael Shalayeff
2005-09-12Do not ouput anything unless option CARDBUS_DEBUG; ok fgs@Miod Vallat
2005-09-12knf plus use __func__; no functional change.Federico G. Schwindt
2005-09-12Do not leak memory if cardbus_read_exrom() fails; ok fgs@Miod Vallat
2005-09-12better cis string parsing. from drochner@netbsd.org; tested by jmc@.Federico G. Schwindt