summaryrefslogtreecommitdiff
path: root/sys/dev/cardbus
AgeCommit message (Collapse)Author
2005-05-16Use cardbus_matchbyid().Brad Smith
ok millert@ jsg@
2005-05-09PCI_{VENDOR,PRODUCT} -> CARDBUS_{VENDOR,PRODUCT} for correctness.Brad Smith
no functional change.
2005-05-09add cardbus_matchbyid(), mimics the PCI layers pci_matchbyid().Brad Smith
2005-04-11get rid of the lines on ehci attach that show the version and the companionDavid Gwynne
controllers. remove the insane amount of support code needed just for the printing of the companion controllers while here. zap it deraadt@ sure pascoe@
2005-03-30make the powerhooks the responsibility of the bus ohci is attached toDavid Gwynne
ok uwe@
2005-03-08Cosmetics...Thierry Deval
Mainly remove space between locators parens, replace spaces with tabs where appropriate and consistently align dependencies.
2005-03-05Clean up the tree from incomplete, unreliable and unsupported IEEE1394 code.Thierry Deval
Ok deraadt@, miod@
2005-02-22make ral compile on macppc.Damien Bergamini
pointed out by "barryg" (Barry Dexter A. Gonzaga).
2005-02-19fix dmesg output.Damien Bergamini
2005-02-18make sure bpfilter.h is included before including ralvar.h. fixes a panicDamien Bergamini
in if_ral_cardbus.c.
2005-02-16Fix scoping error when unhooking the interrupt handler. reyk@ okAaron Campbell
2005-02-15Driver for Ralink Technology RT2500 wireless adapters.Damien Bergamini
2005-02-10Remove redundant product name strings, simplify matching slightly.Jonathan Gray
2005-02-09Match D-Link DWL-610.Jonathan Gray
2005-01-16- recognize Microsoft PCI and CardBus adaptersBrad Smith
- recognize Hawking CardBus adapter - simplify 3Com switch case and fold in with ADMtek case - use 64-bit multicast hash for all instances of ADMtek 983 chipset Hawking CardBus adapter reported by Alec Berryman <alec at thened dot net> Microsoft adapters from FreeBSD dc(4) driver
2005-01-16get EEPROM width on all cards except for the original PNICBrad Smith
or XIRCOM cards. Based on the FreeBSD dc(4) driver.
2005-01-14rev 1.63Brad Smith
Avoid an unnecessary copy of a packet if it is already in a single mbuf. Introduce an additional device flag for those NICs which require the transmit buffers to be aligned to 32-bit boundaries. From FreeBSD
2005-01-14cardbus re(4) support (Realtek 8169) heavily based on if_rl.Peter Valchev
still work in progress but it works (this is committed through it), some PHY timeout issues to resolve
2005-01-14minor prototypes style; ok deraadtPeter Valchev
2005-01-04shrink dmesg outputJonathan Gray
2004-12-29from freebsd: ehci.c 1.13, ehci_pci.c 1.13, ehcireg.h 1.5, ehcivar.h 1.3David Gwynne
log message: Attempt to follow the correct procedure for synchronising with the system BIOS to disable legacy device emulation as per the "EHCI Extended Capability: Pre-OS to OS Handoff Synchronisation" section of the EHCI spec. BIOSes that implement legacy emulation using SMIs are supposed to disable the emulation when this procedure is performed. tested on various archs by jsg@ and me ok pascoe@, looks sane jsg@
2004-12-29Driver for Realtek 802.11 devices from NetBSD.Jonathan Gray
Not yet working.
2004-12-07ohci and ehci at cardbus support from netbsdDavid Gwynne
this relies on a fix to kthreads that is not yet committed, so it wont be enabled for now. my boss said it was ok to commit this while im at work. ok deraadt@ drahn@.
2004-11-23support the gpio found on ath(4) devices.Reyk Floeter
ok grange@
2004-11-20remove redundant commented out bits for com@cardbusBrad Smith
2004-11-20no tlp, we have dc.Brad Smith
2004-11-02imported Sam Leffler's ath driver for atheros multimode wireless nicsReyk Floeter
from NetBSD and FreeBSD. ok deraadt@
2004-10-07cardbusdevs -> pcidevsBrad Smith
From NetBSD
2004-09-18- Record handles for memory and IO spaceBrad Smith
- If the CIS pointer is all-0s, don't try to read the CIS. From NetBSD
2004-09-18add Linksys PCM200Brad Smith
From: Chuck Gagnon <gagnocg at mac dot com>
2004-09-17regenBrad Smith
2004-09-17add Linksys vendor ID and Linksys PCM200 IDBrad Smith
From: Chuck Gagnon <gagnocg at mac dot com>
2004-08-04interrupt coalescing on post 82557 chips; from freebsd via Dmitry Bogdan ↵Michael Shalayeff
<dsb@poi.dvo.ru>
2004-08-04Fix printing of revision string.Todd C. Miller
2004-08-02- Initialise all function's latency timer and cacheline size.Brad Smith
- Fix grammar in error message. From NetBSD ok deraadt@
2004-07-283Com OfficeConnect 3CRSHPW796 Cardbus card is atw(4) rev 1.5.Todd C. Miller
Patch based on info from Sigfred Håversen and David Young.
2004-07-25Store pci/cardbus revision number. From NetBSD (dyoung)Todd C. Miller
2004-07-25Program BARs before enabling memory or I/O access. From NetBSD (mycroft).Todd C. Miller
2004-07-25typo, enevt -> eventBrad Smith
2004-07-15- The card_attach_now flag hasn't been necessary or useful for some time.Brad Smith
Garbage collect the code and corresponding documentation. - some minor grammar/spelling fixes. From NetBSD, the documentation change changed slightly after a suggestion from jmc@ ok deraadt@
2004-07-15- Unmap space used to read tupleBrad Smith
- No need to zero clear temporary storage twice From NetBSD ok deraadt@
2004-07-15kill sc_intr_ackTodd C. Miller
2004-07-12typo, thise -> theseBrad Smith
2004-07-09attach to Planex and Corega Ethernet cards.Brad Smith
From NetBSD ok deraadt@
2004-07-09brings in a few fixes from NetBSD...Brad Smith
- fix typo in comment: resister -> register - Remove an unreachable return statement (and fix a whitespace nit) - Fix some DPRINTF statements to deal with bus_addr_t and bus_size_t types defined in terms if 'int' instead of 'long'. - use u_long for extent_alloc_subregion result instead of bus_addr_t ok deraadt@
2004-07-06regenBrad Smith
2004-07-06add Planex and Corega EthernetBrad Smith
2004-07-04- two typos, stallen -> stolenBrad Smith
- cast base correctly for format string From NetBSD ok deraadt@
2004-06-27stop passing an empty enaddr around since we figure out theBrad Smith
MAC address in the common attach code and not the PCI/CardBus specific portions, this was a side effect of the code being split to support CardBus. ok beck@
2004-06-22atw(4) driver from NetBSD (dyoung). Based in part on a port byTodd C. Miller
Matthew Gream. Unfortunately, the adm8211 card I have with me does not work correctly with the driver yet so real testing will have to wait until I get my hands on an adm8211-based DWL-650 or something similar.