summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
1999-07-08no man page!Theo de Raadt
1999-07-08install into man8/arch subdirsTheo de Raadt
1999-07-08rightMichael Shalayeff
1999-07-08microtime(), s/cr15/eiem/, some comments, tabs vs spacesMichael Shalayeff
1999-07-07define vaddr_t, paddr_t, vsize_t and psize_tArtur Grabowski
1999-07-07typoMichael Shalayeff
1999-07-07The proper order of the ``introductory'' macros in a man page is .Dd/.Dt/.Os.Aaron Campbell
Out of the approximately 1450 man pages, only about 90 of them were wrong. Thanks to kwesterback@home.com for coming up with a script and patch to repair this. The patch also inserted a .Os macro in the few man pages that were missing one.
1999-07-06for CTRL-ALT-DEL, send SIGUSR1 to initprocTheo de Raadt
1999-07-05but make it work for multiple cards... i thinkTheo de Raadt
1999-07-05calculate ca_offset correctlyTheo de Raadt
1999-07-05header file changes for recent powerpc changes.Dale S. Rahn
1999-07-05Several changes here:Dale S. Rahn
(Some of these changes are work in progress and may change more later) locore.S: rearranged to remove most of the direct openfirmware references in the attempt to move all of the openfirmware pieces into ofw_ files. This could allow other firmware type to be supported easier. Also this keeps the openfirmware code grouped in the same files. OF_buf is now statically allocated in the data/bss section instead of allocated during initialization. machdep.c: change the order of vm initialization, Still considering removing the BATs from use. instead of calls directly to ppc_exit and ppc_boot these are now called via a firmware function pointer structure. Add iMac recognition to systems ofw_machdep.c: function pointer structure to allow different firmware to supply specific system functionality, normally startup and reset, including a hook to notify when bsd is about to go virtual, in case firmware calls need to act different after that time. Allow BSD to handle the virtual memory operations for openfirmware. this idea was copied from NetBSD macppc, It is not fully implemented, among other problems, openfirmware does not have a mechanism to add new mappings. ofwreal.S: Major rewrite of the firmware call code, It still copies a portion of the stack, but now does not restore exeception vectors. Modified to be similar in idea to NetBSD macppc with BSD handling the openfirmware VM faults/TLB misses. This still needs to be reviewed, Should be possible to not require any stack copy. opendev.c: OF_bus is not a pointer to the buffer, but is the buffer itself now. openfirm.c: OF_bus is not a pointer to the buffer, but is the buffer itself now. Dont panic if OF_boot fails, OF_boot can be called by panic. instead print and the hang in a spin loop. pmap.c: call the firmware function to get memory regions. Scale the PowerPC hash table size by size of real memory. Properly align the hash table based on the start, not just the size.
1999-07-05move some code under ifdef DDB, it uses a db_ function during the call.Dale S. Rahn
It is a debugging operation anyway.
1999-07-05Fix backtraces from ddb for powerpc, If addr is not specified, it willDale S. Rahn
start using the ddb_regs. If the address is specififed, start from the address.
1999-07-05Use a breakpoint to cause an exception to cause the registers to beDale S. Rahn
saved for debugging purposes.
1999-07-05correctly extract fields for disassembly.Dale S. Rahn
1999-07-05Recognize the 750 (G3) processor.Dale S. Rahn
1999-07-05don't cache pagetables on a microsparc 2, From NetBSDArtur Grabowski
1999-07-03remove redundant .Pp macrosAaron Campbell
1999-07-02consistent .Dd usage; proper format is: .Dd Month DD, YYYYAaron Campbell
1999-07-02Kludge to not get locked threads with UVM, XXXNiklas Hallqvist
1999-07-01lmc driver; ported by chris@dqc.orgTheo de Raadt
1999-07-01new mdoc'd bootpef(8), bootptest(8), vttest(1) man pages; kwesterback@home.comAaron Campbell
also repairs to mdoc.samples(7) and tcpdump(8)
1999-06-30do not allocate pv_entries for the block-mapped areaMichael Shalayeff
1999-06-29do not enable eisa by ourselves, better viper size printMichael Shalayeff
1999-06-29add rl & rlphyJason Wright
1999-06-29support for pnicJason Wright
1999-06-24fix cpu_switch panicMichael Shalayeff
1999-06-24manualy assign structuresMichael Shalayeff
1999-06-23no reason for audio on the RAMDISKTheo de Raadt
1999-06-23hme dma version for fas cardsTheo de Raadt
1999-06-23fdc's irq is 20Michael Shalayeff
1999-06-23regenMichael Shalayeff
1999-06-22add TI tokenring card id (gecko)Michael Shalayeff
1999-06-22sprintf unknown device's id numbers in hexMichael Shalayeff
1999-06-22once it proved itself to work on everything we can get to, bump a version to ↵Michael Shalayeff
1/2 (;
1999-06-22this change somehow escaped the fpregs commitMichael Shalayeff
1999-06-22do the trace cmdMichael Shalayeff
1999-06-22allow stack tracing up to the very bottom of the stack; also tabs vs spacesMichael Shalayeff
1999-06-22why underscore if we have dollarsMichael Shalayeff
1999-06-22all kinds of tricks w/ gcc flagsMichael Shalayeff
1999-06-22need more room... bump RELOCJason Wright
1999-06-22commented-out aeon supportTheo de Raadt
1999-06-22RAMDISK is floppy only; remove tc supportTheo de Raadt
1999-06-21avoid another sparc egcs bug, apparentlyTheo de Raadt
1999-06-21unexpectedly working disasmMichael Shalayeff
1999-06-18do not include fpu regs into trapframe, according to theMichael Shalayeff
lazy fpu context switching it could be well saved into pcb. this brings trapframe to 256 bytes (including 5 spare words). adjust all the code to deal w/ moved fpu regs save area.
1999-06-18regenMichael Shalayeff
1999-06-18shortify names a littleMichael Shalayeff
1999-06-17fix continuing from breakpoints on sparcArtur Grabowski