Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-09-22 | Bring some enhancements and fixes to fdc(4) from NetBSD: | Miod Vallat | |
- better state machine, will prevent "eject fd0" with an empty drive to spin. - will not attach fd children to fdc if no floppy drive is present (though the PROM usually finds this for us). - use biowait() in fdformat() instead of rolling our own. - drop 5"1/4 formats table. - cope with non 512 bytes per sector formats. | |||
2004-09-22 | Bring in libsa code for proper %llx printf display; necessary for /boot. | Miod Vallat | |
ok deraadt@ | |||
2004-09-22 | infrastructure for central, fhc(mainbus/central), and clock@fhc | Jason Wright | |
2004-09-22 | firehose controller driver (not quite working) for the e4500 (and others) | Jason Wright | |
2004-09-22 | driver for the "central" controller on the E4500 (and others) [fhc and ↵ | Jason Wright | |
others to follow] | |||
2004-09-22 | Add systrace support. | Miod Vallat | |
2004-09-22 | Remove unused option CPU. | Alexander Yurchenko | |
ok deraadt@ | |||
2004-09-22 | On single SCSI slot O2's the first disk is numbered 2 (the slot number) | Per Fogelstrom | |
by the ARCS Bios. To make the kernel pick up the right sd number offset the slots if the CPU is a R10K or larger. R10K's and up are those with single disk slots. A more correct solution would be to dig down and check the SCSI ID's, but right now this solutions works OK. | |||
2004-09-22 | Partially revert 1.9, the new mod/ref accounting has issues with mmap(). | Miod Vallat | |
2004-09-21 | change sbus0 to sbus* for consistency, miod@ | Dale Rahn | |
2004-09-21 | Allow for multiple sbus host bridges. eg, on e4500. from jason, ok miod | Dale Rahn | |
2004-09-21 | nswbuf is long dead; also silence debug printf unless option DEBUG. | Miod Vallat | |
2004-09-21 | trap() should return a 64 bit value now. | Miod Vallat | |
2004-09-21 | Make RM7K get L3 cache from config reg. cleanup | Per Fogelstrom | |
2004-09-21 | $OpenBSD$ tag | Alexander Yurchenko | |
2004-09-21 | /dev/ptm support for sgi. | Miod Vallat | |
2004-09-21 | Previous commit removed proper caching when growing segmaps by mistake; | Miod Vallat | |
spotted by pefo@ | |||
2004-09-21 | Nuke commons. | Miod Vallat | |
2004-09-20 | Move <machine/pte.h> to mips64 land. | Miod Vallat | |
2004-09-20 | addres -> address | Miod Vallat | |
2004-09-20 | There was one CF_5_xx constant left in the 52xx code, change it to CF_52_xx | Miod Vallat | |
(purely cosmetic, as these constant share the same values). | |||
2004-09-20 | // is not valid in asm. doh... | Per Fogelstrom | |
2004-09-20 | Some cleanups for RM52x0 cpus. | Per Fogelstrom | |
2004-09-20 | Homogeneize with other platforms' Makefiles; mainly adds the ability to | Miod Vallat | |
compile a kernel with propolice disabled, and only disable the log() and printf() gcc builtins. | |||
2004-09-20 | splraise can be inlined or not by define | Per Fogelstrom | |
2004-09-20 | Add support for R10K cpu class | Per Fogelstrom | |
2004-09-20 | Add support for R10K cpu class | Per Fogelstrom | |
2004-09-20 | R10K cpu class cache support | Per Fogelstrom | |
2004-09-19 | constify speedtabs and make ttspeedtab() take a const struct speedtab * | Michael Shalayeff | |
2004-09-19 | nop missing in bd slot | Per Fogelstrom | |
2004-09-19 | do not blindly assume console has been mapped | Michael Shalayeff | |
2004-09-19 | turn totalphysmem into physmem and name old physmem into smth it really is | Michael Shalayeff | |
2004-09-18 | hierarchy is spelled hierarchy, from Jonathan Gray | Ted Unangst | |
2004-09-18 | for unconfigured devices also print model number | Michael Shalayeff | |
2004-09-18 | use ret0 instead of r28 to match how it's done later in the code | Michael Shalayeff | |
2004-09-18 | add puc; ok miod | Peter Valchev | |
2004-09-18 | do not match on elroy and mercury bridges | Michael Shalayeff | |
2004-09-18 | map rodata rdonly in case it gets pushed out of the text batc | Michael Shalayeff | |
2004-09-18 | fix typo in puc(4) line comment (universial->universal) | Peter Valchev | |
2004-09-18 | oops | Michael Shalayeff | |
2004-09-17 | In vmapbuf(), pass VM_PROT_READ | VM_PROT_WRITE as flags hints too. | Miod Vallat | |
2004-09-17 | Now that we can check for pmap_extract() failure properly, do so. | Miod Vallat | |
2004-09-17 | Long-due mips pmap potpourri: | Miod Vallat | |
- un-__P()ee. - remove splimp() protection. - allow pmap_extract() to return FALSE, dammit! XXX some code under arch/mips64 considers pa == 0 as failure, instead of checking the return value of pmap_extract(). Free commits. - do not peek at uvm vm_page flags for ref/mod accounting, but use real MD flags in pv lists, and implement pmap_is_* and pmap_clear_*, so uvm (which knows better) does the right thing. - debug code #ifdef PMAPDEBUG, not #ifdef DIAGNOSTIC. - merge pmap_init() and pmap_pinit(), pmap_destroy() and pmap_release(), and update comments. - better pmap_enter() logic, from NetBSD. - do not use IS_VM_PHYSADDR() to know if we can use PHYS_TO_VM_PAGE() unchecked. Instead, compute PHYS_TO_VM_PAGE(), and check it against NULL. Saves a vm_physseg_find() call each time. - pass vm_page_t to internal function whenever possible, rather than paddr_t, so that PHYS_TO_VM_PAGE() needs not be computed again. - in the same way, do not compute PHYS_TO_KSEG0(foo) several times in a row (though PHYS_TO_KSEG0 is trivial). - allow userspace address to cross 0x80000000 (may be useful in the future). - implement PMAP_CANFAIL. As a bonus: - switch from HAVE_PMAP_PHYSSEG to HAVE_VM_PAGE_MD. - remove dead (pre-pmap_pv_pool) code. - KNF fixes. | |||
2004-09-17 | Crank MSIZE and NMBCLUSTERS, per other 64bit arches. | Miod Vallat | |
2004-09-17 | Properly setup register ra in sendsig() in 64bit world. | Miod Vallat | |
2004-09-17 | Kill an assembler warning. | Miod Vallat | |
2004-09-17 | Remove option EON from kernel and options(4) | Mathieu Sauve-Frankel | |
ok henning@ | |||
2004-09-16 | Remove remnants of dale's debugled() code, and quiet early boot process more. | Miod Vallat | |
ok drahn@ | |||
2004-09-16 | Correctly read the symbol table pointers passed by the boot code. | Miod Vallat | |
2004-09-16 | Only one script text is necessary... | Miod Vallat | |