summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2002-03-27make sure error is set to zero on the pci write case for user confJason Wright
2002-03-27knf (case labels align with switch)Jason Wright
2002-03-27From FreeBSD: check for FIFO becoming unfull correctly, in the case of ↵Niklas Hallqvist
consumer index wrapping. Improve an internal API. ok mickey@
2002-03-27Avoid using bus_space_map2() on the rom (was too lazy to deal with endian =),Jason Wright
instead use bus_space_map() and bus_space_read_1() to gaurantee correct endian; speed isn't an issue here (well, as long as some joker doesn't ship a 16MB vga rom...)
2002-03-27Make a shadow copy of the bios rom (if available) and make it available via mmapJason Wright
Also, don't hardcode the length of the pixel memory in vgafb_mmap(), use the size provided by pci_mem_find.
2002-03-27bus_space_mmap wants the paddr not the handleJason Wright
2002-03-26Add support for the TMD7160 dumb PCI-ISA bridge (similar in function toTodd C. Miller
the PLX905x). Info gleaned from patches to the Linux wlan driver from NDC. This makes the NDC NCP130 rev A2 work.
2002-03-26regenTodd C. Miller
2002-03-26o 0x15e8 is National Datacomm Corp, not CoregaTodd C. Miller
o Add NDC NCP130 PCI Prism2 boards (2 flavors)
2002-03-26Change default logging level from none to urgent. Should never printDaniel Hartmeier
anything, and if it does, it should be reported.
2002-03-26m_freem(NULL) bad style, ok jason@Niklas Hallqvist
2002-03-26Fix 128bit WEP on prism2; from FreeBSDTodd C. Miller
2002-03-26Permit compiling with DEBUG; Joey Coleman <joeycoleman@acm.org>Jason Wright
2002-03-26enforce higher spl such that ccbs do not get fired upon in timeouts and ↵Michael Shalayeff
other places where we call for resource allocations which do no proper spl protection these days
2002-03-26iop can to onto thisTheo de Raadt
2002-03-26Only allow valid device PAs to be mmapped.Dale Rahn
2002-03-26On the wdc_obio controller if one device is UDMA capable and one is not,Dale Rahn
downgrade the UDMA device to DMA. Works around a problem with old combo drives on some Apple machines.
2002-03-26regenMichael Shalayeff
2002-03-26a clone of Eumitcom WL11000P -- USR11000P; from lj7@usa.netMichael Shalayeff
2002-03-26need to mask out the upper part for the fpu version on printMichael Shalayeff
2002-03-26if cannot guess cpu model default to the lowest supported oneMichael Shalayeff
2002-03-26$OpenBSD$Hugh Graham
2002-03-26Map all of the io/mem spaces providedJason Wright
2002-03-26Honor psratio for addupc_task(), as other arches do.Miod Vallat
2002-03-26Fix problems the ahc driver was having with the recent changes toKenneth R Westerback
scsiconf.c. The fact that both this ('original') ahc driver and the new ahc driver (since reverted) crashed if devices capable of tagged queuing were not correctly flagged as such must be a clue to some interesting problem. a) Restore marking of appropriate devices as tagged. b) Use TAG_ENB define instead of MSG_SIMPLE_Q_TAG when manipulating hscb->control. Both were defined to the same value, but TAG_ENB is the define used to extract the bit later on. c) Delete unused field 'tagdisable'. ok millert@, also tested by naddy@
2002-03-25Ignore 'keep state' for ICMP errors whose inner headers mismatch stateDaniel Hartmeier
but are passed by rules. Found by Henning Brauer.
2002-03-25add ioctl DIOCKILLSTATES to shootdown a subset of the state table. allowsMike Frantzen
discrimination on src/dst ips and netmask, src/dst port range and protocol. ok dhartmei@
2002-03-25add {SPLAY,RB}_INITIALIZER and {SPLAY,RB}_EMPTY() to be more consistentMike Frantzen
with queue.h. ok niels@
2002-03-25regenMichael Shalayeff
2002-03-25another intel gbt etherMichael Shalayeff
2002-03-25spellingTheo de Raadt
2002-03-25support 630ETi; from wyllie@dilex.netMichael Shalayeff
2002-03-25some fw versions return even more data in the an_ltv_status; form Gabriel ↵Michael Shalayeff
Kihlman <gk@univits.se>
2002-03-25revert the pmap stuff to 0221, so we can bootNiklas Hallqvist
2002-03-25Gremlins always escape when you commit from the bad tree. An extra semicolonMiod Vallat
this time.
2002-03-25This was part of the newer ahc driver which has been backed outTodd C. Miller
2002-03-25I could have sworn I commited this, must have gone localNiklas Hallqvist
and later overwritten at my repos sync, sigh. Do not treat pcb_onfault as a procedure, it is a continuation point, thus necessarily needs to be at ther same stack depth as the region covered by the onfault handler.
2002-03-25dhartmei@ and I have been both running uaudio devices on macppc successfullylebel
for the past few weeks. drahn@ agrees.
2002-03-24This is ridiculous. Put the same dc vs de on the floppy as the kernel. How ↵Theo de Raadt
did you forget about this, Nate?
2002-03-24from martin@netbsd:Michael Shalayeff
Remove RAY_USE_AMEM. This option claimed to use attribute memory access for the registers, which was true, but actually the same as the driver did without this option. What it realy did is work around a stupid bug in the driver that did not use the "offset" result from the pcmcia_mem_map call mapping the CIS memory. We got away with this for a long time since on i386 and typical pcmcia bridged the offset returned will be 0. It always failed (without RAY_USE_AMEM=1) if the check for a different function CCR aliases in pcmcia.c failed and mapped the CCR base new - this time at the CCR base of this function (0xf00), so all register acceses (that had 0xf00 added) happened way off in neverland. Now we do not hardcode the CCR base to the register definitions, but instead use the offset returned by pcmcia_mem_map. This makes the driver work with and without CCR base aliases being found.
2002-03-24double m_free() - niklas@openbsdJun-ichiro itojun Hagino
2002-03-24after codec reset wait for 1/2 sec; from mark@mcs.vuw.ac.nz ↵Michael Shalayeff
(http://mail-index.netbsd.org/port-i386/2002/03/18/0000.html)
2002-03-24m_freem(NULL) bad style, ok jason@Niklas Hallqvist
2002-03-24deref of NULL in out of mbuf situation, ok jason@Niklas Hallqvist
2002-03-24non-access itlb fault puts the addr in isr:ior, not pcsq:pcoqMichael Shalayeff
2002-03-24WCCP support (trivial hack, it's not the complete protocol, but it'llAngelos D. Keromytis
accept packets from Cisco boxes) --- from joeycoleman@acm.org
2002-03-24handle NS Geode GX1; wd@ics.nara-wu.ac.jpTheo de Raadt
2002-03-23mvme88k varargs cleanup 2/2Miod Vallat
2002-03-23typo repair; openbsd@davidkrause.comTheo de Raadt
2002-03-23Add variables for config(8) -e time tweak of systemV shared memoryMarc Espie
parameters. Ok millert@, miod@, maja@