summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2002-04-05Add another check for sc->wi_gone; from FreeBSDTodd C. Miller
2002-04-05Actually set wi_gone when we detach, based on what the an driver does.Todd C. Miller
2002-04-04lithuanian kbdmap, made from the script at http://open.bsd.ltMichael Shalayeff
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
2002-04-04Catch broken devices on sparc64 (where broken == devices that don't haveJason Wright
a function 0). Many thanks to Joey Coleman <joeycoleman@acm.org> for fixing this.
2002-04-03The PLX version of the NDC NCP130 PCI card w/ embedded Prism2 doesTodd C. Miller
not map the PLX registers so the driver cannot enable interrupts on the PLX chip (this is OK since the card's EEPROM does it for us). To work around this we check that what we expect to be the PLX registers are a) I/O mapped and b) have a non-zero size. OK mickey@
2002-04-03In Host-AP mode, set IBSS SSID to the normal network id. This makesTodd C. Miller
"ifconfig nwid FOO" work correctly in Host-AP mode.
2002-04-03move the "ukbd_enable: %s: bad call on=%d" from DIAGNOSTIC to UKBD_DEBUGJason Wright
2002-04-03deal with ccb shortage correctly, ok mickey@Niklas Hallqvist
2002-04-03- read the rx completion register exactly once.Jason Wright
- don't complain about still owned descriptors tested by myself and Joey Coleman <joeycoleman@acm.org>
2002-04-03back out ALTQ diff which breaks it; see PR 2517Theo de Raadt
2002-04-03gx doesn't actually do bitbangingNathan Binkert
2002-04-02gx doesn't use vtophysNathan Binkert
2002-04-02keylen is either 8 (40 bit secret ) or 16 (104 bit)Markus Friedl
wrong index used for RC4SWAP during key setup IV is stored in little endian format; works for millert@
2002-04-02match on BCM5421S. ok deraadtDale Rahn
2002-04-02syncDale Rahn
2002-04-02add xxBROADCOM 0x000e as BCM5421S, ok deraadt@Dale Rahn
2002-04-02add support for Marvell 88E1000 Gigabit PHY, model 6;lebel
from nate@, with one forgotten closing ) and a typo. :)
2002-04-02synclebel
2002-04-02Marvell 88E1000 Gigabit PHY, model 6; from nate@lebel
2002-04-02Add some new IDs for the Marvell Gigabit PHYNathan Binkert
2002-04-02syncNathan Binkert
2002-04-02Add gx(4)Nathan Binkert
This driver is for the Intel gigabit cards including those based on 82542, 82543 and 82544 chips. Base driver from FreeBSD Support for 82544 from me.
2002-04-02syncNathan Binkert
2002-04-02Fix the names for the Intel Gigabit cardsNathan Binkert
2002-04-02fix keyid encoding wi_tx_keyMarkus Friedl
2002-04-02Prism2 firmware should be reported as version a.b.c not a.b variant c.Todd C. Miller
Only Lucent uses the 'variant' form. Also, prism2 firmware 0.8.2 does WEP w/o requiring promisc mode (from NetBSD). OK mickey@
2002-04-02regenTodd C. Miller
2002-04-023Com AirConnect 3CRWE777A is really just a 3CRWE737A in disguise.Todd C. Miller
They use 3CRWE777A because that is the part number for the PCI adapter it comes with but the card can be used w/o it.
2002-04-02always reset promisc in hostap mode (a comment added), a couple of ↵Michael Shalayeff
formatiing and byte-swapping fixens as well
2002-04-01freem mbuf on input pkt check failureMichael Shalayeff
2002-04-01Add support for a bunch of new adapters.Nathan Binkert
Sync with NetBSD. ok deraadt
2002-04-01syncNathan Binkert
2002-04-01More USB devices.Nathan Binkert
From NetBSD ok deraadt
2002-04-01killed a char accidentallyMichael Shalayeff
2002-04-01need to splsoftclock here too, i think i've got 'em all nowMichael Shalayeff
2002-04-01always check for bad IVsMarkus Friedl
2002-04-01Missing splx in suser() check.Todd C. Miller
2002-04-01skip bad IVs; ok provos@/deraadt@Markus Friedl
2002-04-01Don't have dc and de return the same match value in any case.Nathan Binkert
Comment the reasoning for the various return values in dc_pci_match. dc is preferred over de on all archs except for alpha where de is used. The main reason dc is not preferred on alpha is that it doesn't fit on the floppy, so RAMDISK and GENERIC would have different drivers for the same device which is rather confusing.
2002-04-01- add support for PDC20268R (not tested) and PDC20269Grigoriy Orlov
- fix interrupt handling when IRQ is shared - cable detection - sync with NetBSD Work by Alexander Yurchenko <grange@rt.mipt.ru>
2002-04-01Add support for PowerStorm 4D20 TGA boqrds with IBM 561 ramdac (akaMatthieu Herrb
32bit TGA) From NetBSD, ok deraadt@.
2002-04-01Only call dc_ramdac_intr if initialized(). Fixes a panic whenMatthieu Herrb
starting Xtga. From NetBSD. ok deraadt@
2002-04-01a few typos from pechkinMichael Shalayeff
2002-04-01Use WI_RID_DATA_RATES not WI_RID_SUPPORT_RATE to get the list ofTodd C. Miller
supported data rates. Fixes rate probing on Lucent cards. Figured out from reading the Linux orinoco driver.
2002-04-01No Mickey, that corega card is just a rebadged NDC card.Todd C. Miller
Make this actually compile again.
2002-04-01todd killed a corega cardMichael Shalayeff
2002-03-31add a new mode to wsdisplay, WSDISPLAYIO_MODE_DUMBFB. This mode isJason Wright
functionally equivalent what used to be WSDISPLAYIO_MODE_MAPPED, which now means a "native" mapping. vgafb_mmap() returns pci relative mappings in WSDISPLAYIO_MODE_MAPPED and linear framebuffer mappings in WSDISPLAYIO_MODE_DUMBFB
2002-03-31Limit pci register map size to 256kNathan Binkert
ok deraadt, art, mickey
2002-03-31Fix logic thinko. In AP mode we were never calling wihap_check_tx() ifTodd C. Miller
the IFF_PROMISC flag was set (e.g. in bridge mode). Found by mickey@ There still seems to be an issue with Lucent stations reporting 1Mbs when the AP is in bridge mode though.