summaryrefslogtreecommitdiff
path: root/sys/dev/pci
AgeCommit message (Collapse)Author
2006-06-01de-static and formatting.Brad Smith
2006-06-01enable hardware RX checksum offload.Brad Smith
2006-06-01formattingBrad Smith
2006-05-31xcs -> xscBrad Smith
2006-05-31Damnit! no static functions in the kernelJason Wright
2006-05-31- stop counting input/output bytes in the driver as this is taken care ofBrad Smith
in ether_input/ether_output. - only count input packets when sure the packet can be received as opposed to counting it unconditionally, then potentially running into an error and then dropping the packet. ok reyk@
2006-05-31we should support all these sas controllersDavid Gwynne
2006-05-31allow mpi to attach to the scsi controllers again. however, mpt will attachDavid Gwynne
to them by default, so disable mpt to get mpi to attach. requested by deraadt@
2006-05-31we dont do domain validation on real scsi controllers (as opposed to sasDavid Gwynne
and fc controllers), so mpi will be slower than mpt for io on those hbas. for now. ifdef the scsi stuff out till we make it go fast, and so we can enable mpi everywhere.
2006-05-31allow TULIP_TXTIMER to fit in the softc field tulip_txtimer.Brad Smith
From NetBSD
2006-05-31fix Jumbo frames on strict alignment architectures by allocating a new mbuf andBrad Smith
copying the Ethernet header to the new mbuf. The new mbuf is then prepended into the existing mbuf chain. From FreeBSD ok reyk@ pascoe@ jason@
2006-05-31Use the watchdog(4) framework for watchdog services instead of rollingMichael Knudsen
more or less the same code. This means that all our watchdog drivers use the framework, and that they all can be configured using sysctl kern.watchdog.{period,auto}, and they can all use watchdogd. At least for now we still support the /dev/wdt0 char device and userland poking using ioctl. Testing by < jg ! rilk , com >, many thanks! ok deraadt
2006-05-29add the sas1064 as a supported deviceDavid Gwynne
2006-05-29Do not cast a bus_addr_t back in to a pointer as these types may not beMiod Vallat
compatible; plus this makes a computation clearer. ok damien@
2006-05-29NVIDIA nForce MCP04 (some kind of nForce4) AC97 should work hereJonathan Gray
as well going by the Linux driver. "fine by me" jason@
2006-05-29garbage collect NFE_NO_JUMBO.Brad Smith
2006-05-28- force the maximum receivable frame size down to 1518 bytes forBrad Smith
strict alignment architectures for the time being. - remove the m_adj() on non-strict alignment architectures as this seems to resolve the Jumbo crashing issue. tested by a few developers. ok reyk@
2006-05-28Support for standard SD host controllers like the Ricoh 5C822, a smallUwe Stuehler
generic bus layer, and SCSI emulation for SD/MMC memory cards.
2006-05-28always set if_hardmtu.Brad Smith
2006-05-28regenJonathan Gray
2006-05-28Add a few more devices from submitted dmesgs.Jonathan Gray
2006-05-28use if_hardmtu for MTU ioctl handler.Brad Smith
2006-05-28- remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.Brad Smith
- use if_hardmtu for MTU ioctl handlers. ok reyk@
2006-05-28unknown ioctl is ENOTTY not EINVALJason Wright
2006-05-27With the National variants of the sis(4) chip make sure toBrad Smith
check for multicast ranges and then switch into allmulti mode, before touching the receive filter. This fixes an issue noticed by a few devlopers where sis(4) will stop receiving traffic when switched into allmulti mode. ok claudio@
2006-05-27remove FreeBSD specific code.Brad Smith
2006-05-27add mpi(4), an alternative (replacement) driver for lsi logic fusion mptDavid Gwynne
controllers currently supported by mpt(4). ok marco@
2006-05-27remove IFCAP_JUMBO_MTU interface capabilities flag and set if_hardmtu in a fewBrad Smith
more drivers. ok reyk@
2006-05-27regenReyk Floeter
2006-05-27add Option UMTS 3G+Reyk Floeter
2006-05-26rename jumbo mtu to if_hardmtu; ok brad reykTheo de Raadt
2006-05-25formattingBrad Smith
2006-05-25formatting; ok bradJason Wright
2006-05-25automatic rate control (AMRR) + cosmetic and small fixesDamien Bergamini
2006-05-23regenBrad Smith
2006-05-23add Myrcicom Z8E.Brad Smith
2006-05-23according to the Linux 8139cp driver the TTTech MC322 adapter usesBrad Smith
the 8139C+ chipset, so attach with re(4) instead of rl(4). ok dlg@
2006-05-22Warn the user if the powerhook could not be established during attach. ForDavid Gwynne
extra correctness check that it is set before trying to disestablish it at detach. Whether you can detach a pci ohci controller is a separate issue. Inspired by krw@'s change in ohci.c 1.67 for PR #5128. ok krw@
2006-05-22Expunge all #if defined(__NetBSD__) and #if defined(__FreeBSD__) crud.Kenneth R Westerback
Misused in many cases anyway. ok dlg@
2006-05-21Add generic management function.Marco Peereboom
Redo ccb_state flags so that we can actually sleep on it. Redo mfi_get_info to use new mgmt function. Add rw_locks for mgmt interface. Make BIOCINQ dynamic.
2006-05-21recognise the perc4/dc firmwareDavid Gwynne
2006-05-20more radiotap.Damien Bergamini
2006-05-20more rx radiotap statsDamien Bergamini
2006-05-20- fix monitor modeDamien Bergamini
- cosmetic in wpi_dma_contig_alloc()
2006-05-20- fix CCK mask for 802.11b/onlyDamien Bergamini
- add beacon command for future IBSS or HostAP mode support
2006-05-20- fix short slot time and short preamble settingsDamien Bergamini
- fix basic rates setting - fix check for WEP encryption (authreq frames might require encryption in shared mode) - cleanup a few things while i'm here
2006-05-20fix pci resource allocation in em, don't crash!Reyk Floeter
fix by brad@
2006-05-20remove commented out and unused capabilities flags.Brad Smith
2006-05-20set if_jumbo_mtu and the IFCAP_JUMBO_MTU capabilities flag whereBrad Smith
appropriate. ok reyk@
2006-05-20simplify MTU ioctl switch case.Brad Smith