summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-11-06Kill deprecated vm_offset_t and vm_size_t types on vax.Miod Vallat
2005-11-06load DSP code on all 5421's for now.Brad Smith
2005-11-06correctly track the falling edge of a media state change in mii_phy_tick().Brad Smith
2005-11-06- remove spl from attachBrad Smith
- de-allocate resources on failure to attach
2005-11-06Factorize setregs() code to m68k-common location.Miod Vallat
2005-11-06Invoke regdump() on abort if compiled without DDB support.Miod Vallat
2005-11-06Homogeneize all PSR field tests in user-provided structures. No functionalMiod Vallat
change.
2005-11-06Add keyboard bell support.Miod Vallat
2005-11-06Make comments match reality, space the code a bit while at itPedro Martelletto
2005-11-06Use ANSI-style function declarations and deregister, no binary changePedro Martelletto
2005-11-06Use ANSI-style function declarations, no binary change, okay jsg@Pedro Martelletto
2005-11-06byebye Mach macrosMartin Reindl
testing and ok kettenis@, hshoexer@
2005-11-06move some macros from mii.h to miivar.hBrad Smith
2005-11-06enable midi@pcppi and sequencerJolan Luff
2005-11-06re-merge old brgphy_mii_phy_auto().Brad Smith
2005-11-06- move MIIF_NOISOLATE so its set before calling PHY_RESET().Brad Smith
- lower wait for completion time in eephy_mii_phy_auto() from 5 secs to 500 ms.
2005-11-06add DSP init code for BCM54K2.Brad Smith
values derived from Linux's sungem_phy driver.
2005-11-06split the DSP code into separate functions as done inBrad Smith
the FreeBSD brgphy driver.
2005-11-06Add attachment of ki2c at memc as well as macobio, wil be used on G5.Dale Rahn
2005-11-06clean up some early but unused work on bio support.David Gwynne
ok marco@ krw@
2005-11-06add a comment explaining what the 5401 DSP code does.Brad Smith
2005-11-06Replace obsolete comment with one that better describes reality.Pedro Martelletto
2005-11-05Don't go through the mountpoint vnode list if we want to skip them all.Pedro Martelletto
Based on a similar change made to NFS. Tested by many, thanks.
2005-11-05Add bus_space_alloc and _free.Marco Peereboom
from jason@
2005-11-05Check the screen number before using it as an index.Uwe Stuehler
"correct" miod@
2005-11-05add or enable lmc(4)Brad Smith
2005-11-05add bus_dma and big endian support.Brad Smith
From NetBSD Thanks to Jason Ackley for testing on i386/amd64/sparc64 with both T1 and T3 cards. "looks ok" dlg@
2005-11-05add init code for BCM5421.Brad Smith
values derived from Linux's sungem_phy driver, same init code also exists in Apple's GMAC driver too.
2005-11-05regenBrad Smith
2005-11-05BCM5421K2 -> BCM54K2Brad Smith
2005-11-05speeling fixDavid Gwynne
2005-11-05split from ki2c.cBrad Smith
2005-11-05some driver cleanup, ANSI/KNF and more consistency between the drivers.Brad Smith
ok joris@
2005-11-05Don't tempt fate by TAILQ_REMOVE()'ing inside TAILQ_FOREACH(), even ifKenneth R Westerback
we currently return immediately after the remove. Use for() idiom instead of TAILQ_FOREACH. Make clear we are doing a TAILQ_REMOVE() by eliminating wrapper function.
2005-11-05Move displaying rf/pa type to rtw_rf_attach to simplify code.Jonathan Gray
ok reyk@
2005-11-05Eliminate 'Overlapping Command Attempted' errors on non-tagged drives byKenneth R Westerback
a) Ensuring only one command is started at a time on such targets. b) Not fiddling with pSRB fields until it is really going to be started. c) Testing for a pending interrupt before starting to send stuff to the card. Found when testing queue.h stuff.
2005-11-04Change DEBUG conditionals into PMAP_DEBUG; no functional change.Miod Vallat
2005-11-04Add an extra flags argument to uvm_io(), to specify whether we want to fixMiod Vallat
the protection of the memory mapping we're doing I/O on, or if we want to leave them as they are. This should only be necessary for breakpoint insertion in code, so we'll only use it for ptrace requests. Initially from art@ after discussion with kettenis@ millert@ and I, tested by many.
2005-11-04don't bother setting error in em_attach() since it'sBrad Smith
not being used anyway.
2005-11-04- splimp -> splnetBrad Smith
- remove spl from attach - fix dmesg printing - de-allocate resources on failure to attach - remove redundant checks just before pci_mapreg_map() - use pci_mapreg_type()
2005-11-04- splimp -> splnetBrad Smith
- remove spl's from attach - fix dmesg printing - de-allocate resources on failure to attach
2005-11-04remove uneeded debug function.Jonathan Gray
2005-11-04Move access to RF tranceiver functions to be via callbacks.Jonathan Gray
"looks fine" reyk@
2005-11-04remove useless prototype; ok drahn@Uwe Stuehler
2005-11-04crank pf_state and pf_src_node byte and packet counters to u_in64_t, sinceRyan Thomas McBride
we're breaking pfsync compatibility this cycle anyways. Requested by djm@, ok henning@, 'wheee!' deraadt@
2005-11-04Add carp_hash() - hash the ethernet address of the ARP request and useRyan Thomas McBride
the result to determine which carp interface should answer rather than simply using the ip address. Fixes breakage debugged by Matt Bradford <m.bradford@isrc.qut.edu.au> 'just commit' deraadt@
2005-11-04only build powernow pieces as appropriate for config'd cpu typesTed Unangst
2005-11-04RCS Id tagUwe Stuehler
2005-11-03fix commentMartin Reindl
ok miod@
2005-11-03- fix error message printed when pci_mapreg_map() fails.Brad Smith
- initialize error to 0 in pcn_ioctl().