summaryrefslogtreecommitdiff
path: root/sys/dev/pcmcia
AgeCommit message (Collapse)Author
2002-11-20Belkin F5D5020 support; from Michael J. Eisenhower.Federico G. Schwindt
2002-11-20Belkin F5D5020; from Michael J. Eisenhower.Federico G. Schwindt
2002-11-19Use queue.h macros instead of using the structure names directly.Jason Wright
2002-11-10regenMichael Shalayeff
2002-11-10match on gvc np0335; form George Lewis via pr2971Michael Shalayeff
2002-11-10fix logic.Federico G. Schwindt
2002-09-25better text for clause 3. pointed out by miod@.Federico G. Schwindt
2002-09-15make it at least compile; parts from maurice@amaze.nlTheo de Raadt
2002-08-17Arowana Fast-Ethernet support; patch by Thomas Delaet.Federico G. Schwindt
2002-08-17regen.Federico G. Schwindt
2002-08-17Arowana Fast-Ethernet; from Thomas Delaet.Federico G. Schwindt
2002-08-08D-Link DFE-670TXD support; reported and tested by RD Thrush <rd@thrush.com>.Federico G. Schwindt
2002-08-08regen.Federico G. Schwindt
2002-08-08D-Link DFE-670TXD entry from RD Thrush <rd@thrush.com>.Federico G. Schwindt
2002-07-29undrugs this.Federico G. Schwindt
- correct command in gprclose and gpropen. - fix tlvput logic. - change a few regs.
2002-07-10proper cdev_decl(gpr)Michael Shalayeff
2002-07-09move common declarations to if_wivar.h; mickey@ and millert@ ok.Federico G. Schwindt
2002-07-01when printing the size, use what we have map'ed, not what's in theFederico G. Schwindt
configuration.
2002-06-25Back out my change to pass in sc_dev.dv_xname to pcmcia_intr_establish().Todd C. Miller
It screws up printing in dmesg and doesn't actually help anything since interupts in "vmstat -i" show up as pcmcia*, not wi* or an*.
2002-06-22Add new flag, WI_FLAGS_BUS_PCMCIA and mark pcmcia attachment as such.Federico G. Schwindt
Replace ugly kludge with a macro that tests on sparc if it's pcmcia and tries to deal with it correctly (card mapped as be). This makes possible to have wi at pcmcia and pci on sparc64; from theo and myself. Tested with the PLX adapter and the SBus pcmcia bridge. millert@ ok.
2002-06-21regen.Federico G. Schwindt
2002-06-21add support for Netgear MA401RA (Prism-2.5)Henning Brauer
2002-06-20make this compile on sparc64; deraadt and millert ok.Federico G. Schwindt
2002-06-20Add ELSA / ZCOMAX XI-325 (and XI-325H); Ken SimpsonTodd C. Miller
2002-06-20regenTodd C. Miller
2002-06-19move initialization a bit later.Federico G. Schwindt
2002-06-17cosmetic changes in the copyright suggested by theo.Federico G. Schwindt
2002-06-17- make user ioctl's available via gprio.hFederico G. Schwindt
- correct tlvput checks. - replace delay with tsleep(9) per jason@ suggestion - implement GPR_RAM. - use bus_space_write_region_1(9).
2002-06-15unmap/free memory as well on detach.Federico G. Schwindt
2002-06-15GPR400 smartcard reader driver, some stuff still missing.Federico G. Schwindt
jason@ commented on it.
2002-06-09Pass in the device name to pcmcia_intr_establish() instead of ""Todd C. Miller
2002-06-09a step towards consistancy; in general:Todd T. Fries
'struct arpcom foo' -> 'struct arpcom sc_arpcom' ok itojun@
2002-06-08print address; millert@ ok.Federico G. Schwindt
2002-06-07regen.Federico G. Schwindt
2002-06-07Gemplus GPR400 smartcard reader.Federico G. Schwindt
2002-06-04spelling; raj@cerias.purdue.eduTheo de Raadt
2002-05-28regenMichael Shalayeff
2002-05-28add an id for nokia c110/c111; attach both w/ the if_wi_pcmcia ↵Michael Shalayeff
(prism1-prism2 clones, according to linux)
2002-05-06regen.Peter Valchev
2002-05-06Match D-Link DE-660+, tested by drewc@rift.com, ok fgsPeter Valchev
2002-04-17Clear flags indicating whether or not wi or hostap is active asTodd C. Miller
early as possible. Also the timeout_del() in wi_stop() to before we disable wi(4) so it doesn't fire at the wrong time. Joint effort between mickey@ and myself.
2002-04-17regenTodd C. Miller
2002-04-17Spectrum24 LA4100 is vendor id SYMBOL not SYMBOL2; from NetBSDTodd C. Miller
2002-04-07Don't reset COR in wi_reset(), break it out into its own function andTodd C. Miller
only call it from wi_attach() and wi_pcmcia_activate() (ie: just once). It would be nicer to have the COR reset be part of the bus-specific code but we need to know whether or not we have a Lucent card since old Lucent firmware revs get messed up on a COR soft reset. Even with the COR reset we still need to avoid initializing Symbol cards more than once. However, we *do* want to do a reset after returning from suspend. Therefore, rename wi_gone to wi_flags and store both the attach and init status in it. wi_reset() now checks wi_flags to see if the card should be initialized in the Symbol case. Info on initializing Symbol cards once from NetBSD.
2002-04-06For PLX-based bridge cards, move printing of pcmcia card CIS stringsTodd C. Miller
out of generic wi_attach() and into wi_pci_attach(). This means we can't print the CIS info for embedded cards like the NCP130 but since those don't have a "real" pcmcia card in them this is really not a problem. Also check to see that there is actually a pcmcia present and give and error if not. CIS magic number taken from the Linux orinoco driver; there may be a better way to do this.
2002-04-06Add support for Symbol cards and printing of the primary stationTodd C. Miller
firmware version. Adapted from NetBSD and the Linux orinoco driver. The Symbol firmware requires that we do a COR soft reset before initializing the card in wi_reset(). Also, setting WI_RID_ROAMING_MODE caused the Symbol card to go into a strange (non-working) mode with firmware 2.x.x. There are some other Symbol additions/oddities that will need to be addressed in the future.
2002-04-06regenMichael Shalayeff
2002-04-06actiontec wlan support; form jason@ackley.net via pr#2526Michael Shalayeff
2002-04-05Actually set wi_gone when we detach, based on what the an driver does.Todd C. Miller
2002-04-04wi_init() now takes a struct wi_softc * not a void * since an sc pointerTodd C. Miller
is available everywhere wi_init() is called. deraadt@ OK