summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
2003-12-22Correctly handle vme attachments which specify a larger ca_len size thanMiod Vallat
initially expected.
2003-12-21-fno-builtin-* finally testedMarc Espie
2003-12-21Switch db_expr_t from int to long, per consistency with all other arches.Miod Vallat
ok drahn@
2003-12-21Unused.Miod Vallat
2003-12-21Switch db_expr_t from int to long, per consistency with other platforms.Miod Vallat
2003-12-20Pass -WformatMiod Vallat
2003-12-20Fix an uninitialized variable.Miod Vallat
2003-12-20Pass -Wformat, fix a few uninitialized variables as well.Miod Vallat
2003-12-20Pass -WformatMiod Vallat
2003-12-20add pentium 4 thermal control circuit (tcc) driver. can use this toTed Unangst
limit power consumption with the hw.setperf sysctl. tested by beck and grange
2003-12-20Don't let microtime() return a struct timeval with exactly 1000000 microseconds.Miod Vallat
2003-12-20- .Xr biosboot(8) in SEE ALSOJason McIntyre
- wording improvement - correct description of example from Tom Cosgrove;
2003-12-20Pass -Wformat.Miod Vallat
2003-12-20Passl -Wformat. Fix some blatant -Wuninitialized errors as well.Miod Vallat
2003-12-19add cpu_ecxfeature to cpu.h, and stop locally externing it and cpu_feature.Ted Unangst
ok deraadt@
2003-12-19Pass -Wformat, and silence a few vme* debug printf.Miod Vallat
2003-12-19Pass -Wformat.Miod Vallat
2003-12-19The physical address of a pmap's segment table is only used to compute anMiod Vallat
apr value used in pmap_activate(). So, rather than storing the address in the pmap structure, store the precomputed apr value...
2003-12-19Unbreak ramdisk kernel after tedu's changes.Alexander Yurchenko
ok deraadt@
2003-12-19When temporarily unlocking a pmap, do not release the spl as well.Miod Vallat
While there, get rid of that ugly PT_FREE() macro.
2003-12-19Make this compile after the struct was reordered. OK tedu@Todd C. Miller
2003-12-18add new hw sysctls, cpuspeed and setperf to control cpu frequency.Ted Unangst
convert longrun support to use new sysctls. add enhanced speedstep support, based on code by Michael Eriksson. idea, help testing & ok deraadt@
2003-12-18oops; pointed out by brunoTheo de Raadt
2003-12-18Fix for monotomic time, lasttb is now in sync with 'time'. ok otto@Dale Rahn
2003-12-18spls do not protect cpu_itmr and thus time might jump back sometimes due to ↵Michael Shalayeff
cpu_itmr modified to a higher value than a read itmr; found and testing by miod@
2003-12-18Move -DDYNAMIC_CRC_TABLE into the main libz MakefileTodd C. Miller
2003-12-17attempt to power down voyager (untested); miod okTheo de Raadt
2003-12-17Always use the nitty-gritty name for cr16.Miod Vallat
2003-12-17in the real mem print do not include reserved for prom into used by openbsdMichael Shalayeff
2003-12-17figure out the used prom size in probe() and pass that into attach that will ↵Michael Shalayeff
map rom proper instead of a fixed size that is not enough in a generic case
2003-12-17For some reason sparc64 seems to need the equivalent of -I/sys whereTodd C. Miller
the others do not.
2003-12-17remove unneeded bits introduced in previous commitTodd C. Miller
2003-12-17Simply include the main libz Makefile instead of trying to roll our own.Todd C. Miller
2003-12-17Simply include the main libz Makefile instead of trying to roll our own.Todd C. Miller
2003-12-17Simply include the main libz Makefile instead of trying to roll our own.Todd C. Miller
2003-12-17bad me, left commented code in here...Jason Wright
2003-12-17Add ccd(4) and ccdconfig(8) to CD ramdisk; needs changes in upgrade.shTodd C. Miller
to be useful. deraadt@ OK
2003-12-16a bit more shrinking. do not bother printing the drive bus interfaces,Theo de Raadt
saves more space.
2003-12-16reenable sti1 as the issues has been resolvedMichael Shalayeff
2003-12-16uncessary defnsJason Wright
2003-12-16Don't need linear mappings here eitherJason Wright
2003-12-16don't do a linear mapping (prevents warnings on the leopard)Jason Wright
2003-12-16clean the cpu types and syncMichael Shalayeff
2003-12-16only map the rom and do not touch the hpa space getting rid of memsize ↵Michael Shalayeff
define that was not really true; plus tested by otto@ and miod@
2003-12-16shorten terminal baud rate change stringsTheo de Raadt
2003-12-16becuaseTheo de Raadt
2003-12-14the extended long (bracketed) cpu names are not useful to anyone -- they areTheo de Raadt
just trivia -- and they bloat the ramdisk kernels by a fair bit. remove them.
2003-12-14Replace pmap_testbit/pmap_changebit sequences with a tailor-made pmap_unsetbitMiod Vallat
routine, in order to speed up pmap_clear_modify() and pmap_clear_reference().
2003-12-14Remove unnecessary trunc_page() calls, and change pmap_enter() logic toMiod Vallat
match m68k.
2003-12-14In pmap_testbit, always update the attribute flags for the pv list hander.Miod Vallat
Fixes a regression introduced in the conversion from physseg to VM_PAGE_MD.