summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2006-04-16regenBrad Smith
2006-04-16add support for the Asus MyPal A730 PocketPC.Brad Smith
From Steffen Schuetz <st dot sch at gmx dot net>
2006-04-16remove splnet usage from em_intr().Brad Smith
2006-04-16Handle input interrupts in a better manner.Jonathan Gray
It is only necessary to notify reading processes when the buffer is empty rather than on every input byte. From Alexandre Ratchov.
2006-04-16After fragment reassembly/trimming, pf must revalidate the mbuf tag of theChristopher Pascoe
altered chain. The cached tag may have already been freed via m_cat.
2006-04-16Convert the last remaining net-driver users of ether_input to ether_input_mbuf.Christopher Pascoe
sgec ok martin@ if_ie ok miod@ if_de, if_hp not in GENERIC ok brad@
2006-04-15Caps Lock key is special, even in raw mode, on the Domain keyboard, exactlyMiod Vallat
like on ADB keyboards. Must have been the 80's keyboard fashion. So when we see a Caps Lock event, produce the missing event as well for acceptable behaviour. This does not allow the Caps Lock key to be used for chording, though, so document this in the manpage (honestly, Ctrl and Caps Lock being adjacent, there is no point in swapping them on Domain keyboards, but you never know).
2006-04-15Access to the DART registers using bus_space instead of our own memoryMiod Vallat
mapped structures; this paves the way for hardware with more than one instance of the DART chip.
2006-04-15Remove DART defines from <machine/mvme188.h> (except for its base address),Miod Vallat
and compensate in clock.c which still needs to access a few of its registers. While there, access DART registers as bytes as advised in the manual, not as ints.
2006-04-15Invoke bus_space_unmap with the correct bus_space_handle_t upon attachmentMiod Vallat
failure.
2006-04-15syncMartin Reindl
2006-04-15VT8363 PCI-PCI bridge found in this dusty Sony Vaio FX201Martin Reindl
2006-04-15fail opening apm device if apm is disconnected; deradt okMichael Shalayeff
2006-04-15Repair FIOGETOWN operation; from Alexandre Ratchov.Miod Vallat
2006-04-15Sync proc_trampoline() and setregs() logic with sparc.Miod Vallat
2006-04-15Add a dummy device_register() function for now.Miod Vallat
2006-04-15Add explicit casts to the PTW arithmetic, mainly for PHYSMEM_BASE to beMiod Vallat
unsigned.
2006-04-15Correct dirlist for tags.Miod Vallat
2006-04-15Clean up <machine/mvme188.h> out of duplicate defines, sort them by relevance,Miod Vallat
add more comments.
2006-04-15Simplify MMU type printing.Miod Vallat
2006-04-15nmihand() is mvme88k only, move it out of m88k common area.Miod Vallat
2006-04-15make warning about missing HPT support DEBUG for nowMartin Reindl
ok mickey@
2006-04-15Add another nForce4 ISA bridge PCI device ID.Mark Kettenis
tested by cloder@
2006-04-15Don't bother setting the frequency entry in the available states tableGordon Willem Klok
to -1 we never check for it. (As has been the case on K8 for a long time). ok dlg@
2006-04-15Eliminate some pointers we dont use, originally for multiprocessor support,Gordon Willem Klok
K7 MP parts do not support Cool'N'Quiet. "also makes sense" dlg@
2006-04-15Rid k7_powernow_setperf() of some bad math, this code expected the valuesGordon Willem Klok
to be expressed in hertz not megahertz. "makes sense to me" dlg@
2006-04-15Change the return value in k7_powernow_setperf() from 1 to 0 so that itGordon Willem Klok
does not print "operation not permitted" even though the operation was successful. ok dlg@
2006-04-15Add a bunch more uplcom devices found in Linux driver.Jonathan Gray
2006-04-15regenJonathan Gray
2006-04-15A bunch of uplcom devices found in Linux driver.Jonathan Gray
2006-04-15Loop on the number of PST reported by the bios not a magic number.Gordon Willem Klok
Fixes PR 5075. "go for it" dlg@
2006-04-15check for IFF_RUNNING being set before calling gem_init().Brad Smith
2006-04-15Print out trap number as well as stringTobias Weingartner
representation. Ok tom@ quite some time ago.
2006-04-15Fix the NIOAPIC case as wellTobias Weingartner
2006-04-15regenBrad Smith
2006-04-15add the Broadcom BCM5706C and BCM5708C PHY ids.Brad Smith
From FreeBSD
2006-04-15Add support for non-RAID part of the ITExpress IT8212F.Jonathan Gray
From Hans-Guenter Weigand hgw at d1906.inka.de.
2006-04-14Remove final DUMMY_NOPS vestige of a macro as well.Tobias Weingartner
ok marco@
2006-04-14Nuke DUMMY_NOPS, cleanup.Tobias Weingartner
ok marco@
2006-04-14ANSIfy functions.Marco Peereboom
Spacing.
2006-04-14ANSIfy function names.Marco Peereboom
Spacing. KNF.
2006-04-14Minimal support for the HP98705 ``Tigershark'' TurboVRX frame bufferMiod Vallat
(using an overlay plane only for now). Bootblocks, text console and X11 are supported.
2006-04-14Compile hp300 stand with Wall or I'll never get motivated to make it clean.Miod Vallat
2006-04-14fix +12v conversion, because of stupid C; wilfriedTheo de Raadt
2006-04-14rm trailing whitespaceMartin Reindl
2006-04-14- Add BUS_DMA_STREAMING to data transfer map loads.Martin Reindl
- Use BUS_DMA_READ and BUS_DMA_WRITE in some obvious places. - Remove PCnet ID, it makes no sense having it here. - Remove code to map PCI_MAPREG_TYPE_MEM, which is not supported by 53c974. - Update technical manual URL. - Utilize bus_dma(9) functions more efficiently. from NetBSD; ok brad@
2006-04-13typoBrad Smith
2006-04-13Drop the ivec[] interrupt acknowledge address array, compute the addressMiod Vallat
itself in the interrupt dispatcher instead of accessing the array: this computation is of similar complexity, so why bother adding a memory indirection. No functional change.
2006-04-13Fix timeout initialization bug introduced in rev 1.8.Miod Vallat
2006-04-13Coverity ID 2311: in auixp_allocate_dma_chain() free dma variable ifBrad Smith
we are unable to allocate hardware dma descriptors. From NetBSD ok dlg@