summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-01-14Fix these.Dale Rahn
2005-01-14Support reboot and powerdown.Uwe Stuehler
ok drahn@
2005-01-14Fix direction.Dale Rahn
2005-01-14split re(4) into bus-independent code (ic/re.c) and PCI front-endPeter Valchev
(pci/if_re_pci.c) for soon-to-come cardbus support; ok deraadt
2005-01-14minor prototypes style; ok deraadtPeter Valchev
2005-01-14commit this #if 0 del now.Dale Rahn
2005-01-14prototypes for recently added functions.Dale Rahn
2005-01-14This should be mostly reasonable, most of the keys sane.Dale Rahn
2005-01-14Most (all?) of the keys.Dale Rahn
2005-01-14del obioDale Rahn
2005-01-14Support special 'Fn' keys, at least most of them.Dale Rahn
2005-01-14put the return key on the right key, Del not backspace, still needs altgrDale Rahn
2005-01-13Stage one of wscons support.Dale Rahn
2005-01-13fix a critical bug that made the kernel crash under heavy upstream trafficDamien Bergamini
load. pointed out by jcs@
2005-01-13keyboard driver for zaurus, needs connect to wscons still.Dale Rahn
2005-01-13'quick' function for actual gpio operations, set/clear/read, setdir, clearirqDale Rahn
2005-01-13destatic/inlineDale Rahn
2005-01-13die staticDale Rahn
2005-01-13do not keep references to obio in this.Dale Rahn
2005-01-13dont play with obio, this was very likely always wrong.Dale Rahn
2005-01-13unneeded, bye.Dale Rahn
2005-01-13Drop obio, attach lcd directly to pxaip. Fixes interrupt problems.Dale Rahn
2005-01-13we only need one copy of wsmux.Dale Rahn
2005-01-13dont make this dependant on bus_space_generic, that is bogus.Dale Rahn
keep the define for compat for now.
2005-01-13add usb serial things, ucomm attaches at least.Dale Rahn
2005-01-13protect pfkeyv2_dump_walker with spltdb(). Noticed by mpech@, thanks!Hans-Joerg Hoexer
ok ho@ markus@
2005-01-13HTML page does not seem to exist anymore so point to the PDF for now.Brad Smith
2005-01-12Intel 82443BX DRAM address errata seems to be fixed in the latest revisionsAlexander Yurchenko
of the chipset. Inspired from netbsd pr by scottr@NetBSD.org. ok theo
2005-01-12Try a watchdog reset (that powers off the zaurus) before cpu_reset().Uwe Stuehler
ok drahn@
2005-01-12fix kernel building with option UBSA_DEBUG.Moritz Jodeit
ok dlg@ henning@
2005-01-12Don't call ahc_setup_data() after calling ahc_execute_scb() since theKenneth R Westerback
scb may have been freed or made active. Only affects XS_RESET case. More correctly mirrors FreeBSD code. Already done to aic79xx_openbsd.c in r1.16.
2005-01-12Fix an off by one in the critical section clearing code. The code wasKenneth R Westerback
adjusting twice for the instruction pointer indicating the *next* instruction to execute. From FreeBSD r1.101.
2005-01-11Pass device names on intr_establish() call, other drivers need this too.Dale Rahn
2005-01-11rename via_shutdown() to via_powerdown() and remove unused prototype toMartin Reindl
shrink diff to NetBSD ok miod
2005-01-11oppsDale Rahn
2005-01-11pretty print in dmesgTheo de Raadt
2005-01-11first cut at interrupt stats.Dale Rahn
2005-01-11Let 'boot' and 'ls' take arguments of the form [device:][file].Uwe Stuehler
2005-01-11correctly deal with unspecified (zero) interface number in IPV6_MULTICAST_IF,Damien Miller
IPV6_{JOIN,LEAVE}_GROUP ioctls; ok itojun@
2005-01-11Reliability fixes:Miod Vallat
- Let the loop initialize completely before attempting to probe its devices. Fixes the "no answer from device 1" problem. - Handle ``loop unplugged'' events and force detach of all children in this case.
2005-01-10Make sure bogus values don't make their way into tcp_xmit_timer() calculations.Ryan Thomas McBride
- Ignore ts_ecr if it is 0, or the resulting rtt is out of range. (use tp->t_rtttime instead) - Initialise tcp_now to 1, to avoid the 500ms window where a valid ts_ecr of 0 could be ignored. - Convert out-of-range rtt values to valid ones in tcp_xmit_timer(). ok frantzen@ markus@
2005-01-10Correctly limit interrupts on the 'last' register, added support toDale Rahn
detect pxa27x vs previous.
2005-01-10make it compile, sighTheo de Raadt
2005-01-10spacingTheo de Raadt
2005-01-10spacingTheo de Raadt
2005-01-10It turns out the extiospace static storage shrinkage was too much for largeMiod Vallat
frame buffers; go back to a larger, yet reasonable, size.
2005-01-10proper SET_PC_REGS,Marc Espie
okay kettenis@, something-vaguely-looking-like-an-okay mickey@
2005-01-10OpenBSD tagsUwe Stuehler
2005-01-10remove unnecessary rlphy_reset(), mii_phy_tick() andBrad Smith
some clean up. fixes issue with axe@usb. Tested by a number of developers and users.
2005-01-10from netbsd uplcom.c revision 1.37:David Gwynne
Make sure that we call uplcom_set_line_state() to get consistent state between our idea of flow controll settings and the chips one. In uplcom_set_line_state use the same value as the manufacturer suggests, since the previously used (umodem based) values do not seem to work. It is not completely clear what happened here - either the "not calling uplcom_set_line_state" due to luck prevented the non working state to be discovered or there are variants of the chip that need the old values. During testing none such chips have been found - if they ever apear we might have to make this function more intelligent, depending on the chip in use.