summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2002-06-30Make sure interrupts are disabled at init and attempt better termination.Steve Murphree
2002-06-30New aicasm synced with FreeBSD.Steve Murphree
2002-06-30This file is no longer needed.Steve Murphree
2002-06-30When duplicating isa_attach_args structures to build several attachementMiod Vallat
possibilities for isapnp devices, make sure to carry the original ia_ic member. Although mostly unused on i386, it is vital on alpha. This makes isapnp on alpha attach without panicing.
2002-06-30The #@$% message about the #$%@ cable down is going to drive me @#%$ insane.Artur Grabowski
I'm not using this built-in tulip because it sucks and I want it to SHUT UP!
2002-06-30allocate sockaddr_dl for ifnet in if_alloc_sadl(), as we don't always knowJun-ichiro itojun Hagino
the size of sockaddr_dl on if_attach() - for instance, see ether_ifattach(). from netbsd. fgs ok
2002-06-29Be sure to correctly initialize the ahc_softc members before usingMiod Vallat
ahc_inb(), to prevent an early panic. This could only affect non-i386 architectures.
2002-06-29Add Brazilian keymap (iso275). Create by me and tested byMats O Jansson
gustavo.rios@transport.alstom.com. -moj
2002-06-29Latinamerica keymap from Gerardo Santana Gomez Garrido <santana@openbsd.org.mx>.Mats O Jansson
-moj
2002-06-28Whoops, don't actually register for MODEXP yetJason Wright
2002-06-28Implement MODEXP as MODMUL for debugging purposes until I understand theJason Wright
args for MODEXP.
2002-06-28support for PCI_PRODUCT_INTEL_PRO_100_VM_3; ok art@Markus Friedl
2002-06-28syncMarkus Friedl
2002-06-28more ICH4 fxp chips; sync names w/ NetBSD; ok art@Markus Friedl
2002-06-28Move the calculation of sc_link->openings to after the printf aboutTodd C. Miller
tagged queueing which is where it was last time around. This fixes a panic I was seeing when there were lots of transactions (e.g. when i read my mail).
2002-06-28actually, new new ahc uses these after allTodd C. Miller
2002-06-28actually, new new ahc uses these after allTodd C. Miller
2002-06-28not used by new ahc driverTodd C. Miller
2002-06-28Return of new ahcSteve Murphree
2002-06-27missing parenthesis in this macro.Federico G. Schwindt
2002-06-26stp at sparc will map this card always as big-endian.Federico G. Schwindt
2002-06-26cardbus fwohci support.Thierry Deval
from NetBSD
2002-06-26various fixes + some KNFThierry Deval
ok itojun@
2002-06-26configrom input failover + some KNFThierry Deval
ok itojun@
2002-06-26pointer safeguards + some KNFThierry Deval
ok itojun@
2002-06-26Kill __FUNCTION__.Marc Espie
2002-06-26rm duplicated decl of fwohci/fwlynxJun-ichiro itojun Hagino
2002-06-25un __P() -ify.Jun-ichiro itojun Hagino
2002-06-25Unbreak config on pci architectures without firewire devices.Miod Vallat
2002-06-25IEEE1394 infrastructure part.Jun-ichiro itojun Hagino
IP-over-FW and SCSI over FW are being worked on.
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-25Add RID to get the DBM adjustment factor; imp@freebsd.orgTodd C. Miller
2002-06-25Handle REASREQ packets earlier when processing an associationTodd C. Miller
request. We need to eat the MAC address of the packet before we go looking at the SSID and such. Doing do is sufficient to make Cisco cards associate with HostAP. From FreeBSD (jhay).
2002-06-24oops. don't initialize wi_flags and wi_hostap_info here; fixes sparc.Federico G. Schwindt
somehow i didn't commit this. from denver airport.
2002-06-23If we receive a packet with our BSSID from an unassociated station,Todd C. Miller
tell the station to disassociate itself. This fixes a problem when the HostAP reboots but stations still think they are associated. With this change the station will re-associate properly. Change wihap_sta_disassoc() to take an array of u_int8_t (ether addr) instead of a struct wihap_sta_info * to make the above change possible. This is also consistent with wihap_sta_deauth().
2002-06-23cleanup WI_IS_BE macrosTheo de Raadt
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-22Fix typo in WI_FLAGS_HAS_ROAMING, noticed by fgs@Todd C. Miller
2002-06-22use 8-bits when accessing the wi_cor_offset; millert@ ok.Federico G. Schwindt
2002-06-21Clear wi_hostap_info.apflags in wi_attach() to guarantee wihap_shutdown()Todd C. Miller
doesn't do the wrong thing with quick card insert/ejects.
2002-06-21skeleton queue handling for the enc/auth piece of the chip (fed with nops viaJason Wright
timeout for now).
2002-06-21system call argument rewriting framework via stackgap; okay art@Niels Provos
2002-06-21regenMarkus Friedl
2002-06-21add some ICH4 devices; ok deraadt@Markus Friedl
2002-06-21regen.Federico G. Schwindt
2002-06-21add support for Netgear MA401RA (Prism-2.5)Henning Brauer
2002-06-21make this more quiet on card insertion.Federico G. Schwindt
2002-06-21missing tab.Federico G. Schwindt
2002-06-21Add some missing casts of sc->wi_txbuf -> caddr_tTodd C. Miller
2002-06-21Don't set WI_FLAGS_ATTACHED in sc->wi_flags until after mi attachTodd C. Miller
routines have been called. Avoids a panic when you insert & eject a card very quickly on a slow machine.