summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
2005-11-13untested kgdb support for amd64. prolly needs more work whenFederico G. Schwindt
getting and setting the registers, but it's a start. kettenis@ ok.
2005-11-13move kgdb_connect and kgdb_panic into MI. looked by miod@ and kettenis@Federico G. Schwindt
2005-11-13need cast to vaddr_tMartin Reindl
found the hard way by deraadt@
2005-11-13convert more MD macros to their MI counterparts, this timeMartin Reindl
i386_round_page(), i386_trunc_page(), i386_btop() and i386_ptob()
2005-11-13splimp -> splvmBrad Smith
ok drahn@
2005-11-12Pass a struct proc * to ISHPMMADDR instead of abusing curproc in it.Miod Vallat
2005-11-12Compute a rough estimate of exactly how much memory uvm_init() will allocate,Miod Vallat
so as to correctly size the initial PT pages, to prevent the early initialization from invoking pmap_enter_ptpage() [chicken and egg problem]. Much better than the previous arithmetic.
2005-11-12Constify, and simplify hdgetinfo() which only gets called for known disks.Miod Vallat
2005-11-12Provide useful information if we panic due to looping interrupts.Miod Vallat
2005-11-12Print HP-IB disk geometry the same way we print SCSI disk geometriesMiod Vallat
(especially, with the size in MB).
2005-11-12Add lmtemp at maciic.Mark Kettenis
2005-11-12no longer require boot_osflags being set to 'a' in the SRM for going ↵Martin Reindl
multiuser; setting boot_osflags to 's' explicitly will get us to singleuser as usual; very old SRM versions can only set 'a' or 's', but are still fine because we ignore 'a' now and default to multiuser idea and ok deraadt@, jsg@, testing by many final ok miod@
2005-11-12Add i2cbus to smu and i2c to maciic.Mark Kettenis
2005-11-12VIA Rhine ethernet worksMartin Reindl
ok brad@
2005-11-12Make sure we only touch associated processes of physical buffers.Pedro Martelletto
Okay deraadt@.
2005-11-12print memory the same way as it is done on i386/amd64.Dale Rahn
2005-11-12do not print boot_file, noone caresTheo de Raadt
2005-11-11round clock upTheo de Raadt
2005-11-11remove old debug code in boot()Theo de Raadt
2005-11-11first key is scanned based on interrupt. but if a key is held downTheo de Raadt
(ie. shift) then we cound on timeouts to re-scan the keyboard. 8 scans a second was too slow. change to 20 scans a second, which makes (hit the keys repeatedly, do not use auto-repeat) NNNNNN work just like nnnnnn does. ok drahn, sort of ok-chatter from miod
2005-11-11make power button cause suspend after .25 seconds (was 3 seconds)Theo de Raadt
and safe-shutdown after 3 seconds (was 6 seconds) ok uwe semi-ok drahn we will see if anyone wants these numbers fudged more in the future
2005-11-11Remove machdep.booted_kernel sysctl of questionable usefulness.Miod Vallat
ok deraadt@
2005-11-11Enable or disable keyclick on attach, based upon the PROM keyboard-click?Miod Vallat
property. Tested with type 3 and type 4 keyboards.
2005-11-11Add i2c controller support.Mark Kettenis
2005-11-11Simplify a computation in a can't happen diagnostic message.Miod Vallat
2005-11-11Add maciic(4), an OpenFirware aware version of iic(4).Mark Kettenis
2005-11-11fix kgdb compilation; input and ok miod@.Federico G. Schwindt
2005-11-11Switch to sensors thread.Mark Kettenis
2005-11-11disable ahc0 at isa until we find the bugs that cause this to blow upTheo de Raadt
on a few rare machines. of course, by the time we do, they might all have lots their smoke anyways. it is probably because of the vlbus/eisa addressing it tries to do. ok krw
2005-11-10only 4 bits of an irq number are valid to set (just in case)Michael Shalayeff
2005-11-10do not use the array index before a range check is doneMichael Shalayeff
2005-11-10make sure to ignore >4g and split on 4g memory segments from the bios map; ↵Michael Shalayeff
tom@ ok
2005-11-10sensors.h is not used here, so remove the includeDavid Gwynne
ok grange@
2005-11-10remove unused header.Federico G. Schwindt
2005-11-09use atop() and ptoa()Martin Reindl
tested by jolan@
2005-11-09splimp -> splnetBrad Smith
2005-11-09splimp -> splnetBrad Smith
2005-11-08Frequency scaling detection for IBM 970FX.Mark Kettenis
ok drahn@
2005-11-08Add support for 64-bit SPRs.Mark Kettenis
ok drahn@
2005-11-08We need 64-bit and altivec instructions, so might just as well allow anyMark Kettenis
powerpc instruction. ok drahn@
2005-11-08use atop()Martin Reindl
2005-11-07add some needed defs for upcoming kgdb support.Federico G. Schwindt
2005-11-07KGDB_DEVNAME should use com.Federico G. Schwindt
2005-11-07remove vtophys() on *ppc.Brad Smith
ok drahn@
2005-11-06Kill deprecated vm_offset_t and vm_size_t types on vax.Miod Vallat
2005-11-06Factorize setregs() code to m68k-common location.Miod Vallat
2005-11-06Invoke regdump() on abort if compiled without DDB support.Miod Vallat
2005-11-06Homogeneize all PSR field tests in user-provided structures. No functionalMiod Vallat
change.
2005-11-06Add keyboard bell support.Miod Vallat
2005-11-06byebye Mach macrosMartin Reindl
testing and ok kettenis@, hshoexer@