summaryrefslogtreecommitdiff
path: root/sys/arch/i386
AgeCommit message (Collapse)Author
2001-06-08Change the paddr_t pmap_extract(struct pmap *, vaddr_t) interface toArtur Grabowski
boolean_t pmap_extract(struct pmap *, vaddr_t, paddr_t *). Matches NetBSD. Tested by various people on various platforms.
2001-06-08it seems that via has 7, not 4 pci interrupt lines.Michael Shalayeff
this fixes unmapped interrupts on some via-based boards, reported by angelos@, tested w/ aaron@, millert@, jason@. in any case must not break currently working boards.
2001-06-07fix typo in wi* at pciTodd C. Miller
2001-06-06wi* @ pciTodd C. Miller
2001-06-05License clarification from David Mazieres, ok deraadt@Peter Valchev
2001-05-29pcvt no moreMichael Shalayeff
2001-05-29remove this used to be great console driver; x11 builds w/o it all fine; ↵Michael Shalayeff
aaron@, todd@, matthieu@ ok
2001-05-17convert mbuf and cluster allocation to pool, mostly from NetBSDNiels Provos
okay art@ miod@
2001-05-17It's Daylight Saving Time, not Savings. Fix comments.Peter Valchev
Discussed with pjanzen@
2001-05-17remove bcopyb and bcopyw, they're not used nowdays; mickey@ aaron@ ok.Federico G. Schwindt
2001-05-16No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok)Hakan Olsson
2001-05-16use SMALL_KERNEL optionTheo de Raadt
2001-05-16kill COMPAT_{09,10,11} kernel options. We still need kern_info_09.c and ↵Todd C. Miller
kern_ipc_10.c for other compat modules.
2001-05-14cleanTheo de Raadt
2001-05-13in bus_dmamap_load_mbuf(), segments start at zero, not one (merge error)Jason Wright
2001-05-13initial cut at /dev/crypto support. takes original mbuf "try, and discardTheo de Raadt
if we fail" semantics and extends to two varients of data movement: mbuf, or an iovec style block.
2001-05-13left tag uninitted in the good case in the last commit; jason@ pointed it outMichael Shalayeff
2001-05-12A number of buggy BIOS implementations leave the routerMichael Shalayeff
entry as 000:00:0, which is typically not the correct device/function. If the router device address is set to this value, and the compatible router entry is undefined (zero is the correct value to indicate undefined), then we work on the basis it is most likely an error, and search the entire device-space of bus 0 (but obviously starting with 000:00:0, in case that really is the right one). from Dave Sainty <dave@dtsp.co.nz>
2001-05-12always print the icu we've foundMichael Shalayeff
2001-05-11unify rd(4) even moreTheo de Raadt
2001-05-11unifyTheo de Raadt
2001-05-10Some locking protocol fixes and better enforcement of wiring limits.Artur Grabowski
From NetBSD.
2001-05-09More sync to NetBSD.Artur Grabowski
- Change pmap_change_wiring to pmap_unwire because it's only called that way. - Remove pmap_pageable because it's seldom implemented and when it is, it's either almost useless or incorrect. The same information is already passed to the pmap anyway by pmap_enter and pmap_unwire.
2001-05-08From netbsd: implementations of _bus_dmamap_load_mbuf() andJason Wright
_bus_dmamap_load_uio().
2001-05-08fix preposition in the printf msgMichael Shalayeff
2001-05-08on `out of data' condition print a warning and exit w/Michael Shalayeff
whatever current checksum we have gotten accumulated. this is somewhat conformant w/ what other archs are doing. from Camiel Dobbelaar <cd@sentia.nl>
2001-05-07tcic disableTheo de Raadt
2001-05-06increase version since we've removed -b; per fgsch@'s suggestionMichael Shalayeff
2001-05-06Update some comments wrt. the CLSIZE changes.Artur Grabowski
And remove that memory price comment from 1981. It is amusing, but also confusing because the math in there is only correct on vax.
2001-05-05PMAP_NEW and UVM are no longer optional on i386.Artur Grabowski
2001-05-05remove some private stuff people put into hereTheo de Raadt
2001-05-05Rename configure() to cpu_configure().Artur Grabowski
Move it from cpu_startup() to main().
2001-05-05Remove the (vaddr_t) casts inside the round_page and trunc_page macros.Artur Grabowski
We might want to use them on types that are bigger than vaddr_t. Fix all callers that pass pointers without casts.
2001-05-05Get rid of CLSIZE and all related stuff.Artur Grabowski
CLSIZE -> 1 CLBYTES -> PAGE_SIZE OLOFSET -> PAGE_MASK etc. At the same time some archs needed some cleaning in vmparam.h so that goes in at the same time.
2001-05-02document boot options, i dunno what -b does so i just do not mention it anymoreMichael Shalayeff
2001-05-01sync closer to GENERIC, make compile againTodd T. Fries
2001-05-01Remove PCVT cruft.Aaron Campbell
2001-05-01this is what i'm running these daysMichael Shalayeff
2001-05-01Remove PCVT file references.Aaron Campbell
2001-05-01trailing spacesMichael Shalayeff
2001-04-30Move proc0's TSS and LDT initialization to a separate functionArtur Grabowski
that's called at the end of configure instead of cpu_startup. Inspired by NetBSD.
2001-04-30Move gdt_init prototype to gdt.hArtur Grabowski
2001-04-24enable txp(4)Theo de Raadt
2001-04-23when we take a pci interrupt, upgrade it to level. but always ignoreTheo de Raadt
changes which force to edge, because it appears that a lot of via bios do not contain a full list of level interrupts. when we set such an interrupt to edge, we spin and hang. i suggested this behaviour change, and this fix is by northpoint mickey.
2001-04-22Remove -march=i{56}86 optimization because of compiler bug. This bugGrigoriy Orlov
results in system lockup, which many people report for 2.8 and -current when they doing a big network transfer. This problem affect only custom kernels in which only one cpu type enabled (option I586_CPU or I686_CPU). When lockup occur I can't switch between virtual wscons terminals. System continue respond to pings and forward ip packets. It is possible to enter into ddb. DDB show that several processes in runnable state, but it seems that task switching not occur. More and more processes becomes runnable. Stack of curproc looks like: > _end(e99d8fac, e0101dcc, 4, e0635a00, e99d8f80) at 0xe99d8f78 > _end(e99d8fa0, e028a62e, e99d8fac, 0, 0) at 0xe99d8f78 > ddb> Sometimes 'boot sync' cleanly unmount all file systems. I reproduce this bug by transfering two big files from ftp simultaneously. It seems that at least one process must perform a network transfer and two or more processes must fight for the processor. The following PRs probably a result of this problem: 1504, 1716, 1751, 1771, 1780. deraadt@ ok.
2001-04-22permit compilation without I586_CPU or I686_CPU; armin@wolfermann.orgTheo de Raadt
2001-04-19disable a few driversTheo de Raadt
2001-04-18Sync, and quadruple NMBCLUSTERSNiklas Hallqvist
2001-04-14eephy was already in thereTheo de Raadt
2001-04-14need eephy with wx nowmjacob