Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-05-10 | Make the time getting frame buffer depth earlier. Without this | Kenji Aoyama | |
modification, bitmap console depth is always 4, because consinit() is called before cpu_startup(). And use frame buffer depth bits(1,4,8) rather than mask value(0x01, 0x0f, 0xff), same as the value in ROM work area. ok miod@ | |||
2004-05-10 | When external power is not available, the tadpole video hardware gets | Miod Vallat | |
stuck in a weird mode, where not all acceleration functions are available, and I could not figure out how to reset the chip strongly enough to leave this mode. Try to compensate by checking whether the external power has been removed, when we set up the accelerated rasops (this will not cope with power being removed after bootup, yet). | |||
2004-05-09 | Add option ISP_COMPILE_1000_FW, as done in GENERIC; recommended by mjacob@. | Miod Vallat | |
2004-05-09 | Replace the event queue with a bit mask of slots needing attention, as | Miod Vallat | |
done in stp(4). | |||
2004-05-09 | Eliminate verbosity parameter to scsi_print_sense and the associated | Kenneth R Westerback | |
chunk of code. It was never executed unless you were debugging a mvmex8k 'vs' device. ok miod@ (mvmex8k bits) marco@ deraadt@ | |||
2004-05-08 | Remove spurious initialization; drahn@ ok | Miod Vallat | |
2004-05-08 | In pmap_enu*(), be sure to splx() on low memory conditions. | Miod Vallat | |
2004-05-08 | Do not duplicate fragments from <machine/conf.h>. | Miod Vallat | |
2004-05-08 | Better bus_dmamap_load() implementation which does not use vtophys(), | Miod Vallat | |
from macppc. Also properly handle BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE in bus_dmamap_sync(). | |||
2004-05-08 | Kill whitespace at EOL | Miod Vallat | |
2004-05-08 | Correct values for the pci_routes[] pci-to-mpic interrupt routing table, | Miod Vallat | |
per the MVME2600APG. | |||
2004-05-08 | Enable ichpcib(4) in GENERIC and on all media. | Alexander Yurchenko | |
ok deraadt@ | |||
2004-05-08 | Put back ichpcib(4), it works now. | Alexander Yurchenko | |
2004-05-07 | spllower should return the previous level, to match other archs. | Ted Unangst | |
"looks right" miod | |||
2004-05-07 | Replace the old ssh(4) NCR53C710 scsi driver with a pcctwo attachment for | Miod Vallat | |
the MI osiop(4) driver. This improves performance very slighly and should also improve reliability. Tested on 25MHz (50MHz osiop) and 33MHz (66MHz osiop) MVME187 boards. | |||
2004-05-07 | bus_dma(9) implementation for mvme88k, mostly based upon powerpc. | Miod Vallat | |
2004-05-07 | Introduce a new cmmu operation, cachectl_pa, similar to cachectl, but taking | Miod Vallat | |
a pa instead of a pmap_kernel va. The cachectl operation is now deprecated and will disappear soon. | |||
2004-05-07 | Make #endif /* foo */ comments really match the #if condition. | Miod Vallat | |
2004-05-07 | Do not rely upon a fictitious MAXPHYSMEM value, but rather the actual | Miod Vallat | |
physical memory size, to decide the end of /dev/*mem, as well as default cacheability for mappings. | |||
2004-05-07 | Add new file <machine/conf.h> and clean up console code and structures. | Kenji Aoyama | |
From miod@ | |||
2004-05-07 | Some clean up, especially delete unused nvram related part. From miod@ | Kenji Aoyama | |
2004-05-07 | Compute the size of the kernel page table at runtime, depending upon the | Miod Vallat | |
board we run on, and its default mappings from pmap_table, rather than trying to compute a "fits all" value at compile time. | |||
2004-05-07 | This chunk was not supposed to be commited now. | Alexander Yurchenko | |
2004-05-06 | back out kernel breakage. Be more careful damnit | Theo de Raadt | |
2004-05-06 | Typo | Miod Vallat | |
2004-05-06 | spaces | Alexander Yurchenko | |
2004-05-06 | Move speedstep code to a separate ichpcib(4) driver. | Alexander Yurchenko | |
It attaches instead of pcib(4) and provides its usual functionality (attaching isa bus) by calling pcibattach() in the attach routine. ok miod deraadt | |||
2004-05-06 | Do not leak resources if bus_space_map() fails during attach, or we don't | Miod Vallat | |
recognize the board address. | |||
2004-05-06 | When the NVRAM is toast and we have to guess the CPU speed, choose a safer | Miod Vallat | |
value depending upon the board type. This really only affects on-board SCSI on 1x7 anyway. | |||
2004-05-06 | ARM is yet another char == unsigned char platform. add the define to make | Dale Rahn | |
the header files do the right thing, pointed out by miod@ | |||
2004-05-05 | write cpuhdr with info needed by libkvm to crash dumps. | Marco S Hyman | |
2004-05-05 | errx shall be used here | Michael Shalayeff | |
2004-05-05 | much easier tlb handler branch patching | Michael Shalayeff | |
2004-05-05 | do not engage HPT on PCXT' (yet) | Michael Shalayeff | |
2004-05-04 | better faster scooter^Winterrupts; miod@ testing | Michael Shalayeff | |
2004-05-04 | Move _bus_space_unmap() to machdep.c so it can be used not | Alexander Yurchenko | |
only by the rbus code. Also knf it and sync with bus_space_unmap(). ok millert@ | |||
2004-05-04 | Remove useless ``elm'' argument from the SIMPLEQ_REMOVE_HEAD macro. | Alexander Yurchenko | |
This matches our SLIST behaviour and NetBSD's SIMPLEQ as well. ok millert krw deraadt | |||
2004-05-04 | Always ask the user for the root device if we are "swap generic" and the | Miod Vallat | |
boot device is not known, as other arches do. | |||
2004-05-03 | Sync with NetBSD, Fixes a problem identified with regress/.../ieeefp/round. | Dale Rahn | |
2004-05-03 | Remove OpenBSD/pegaos, this has been announced before but delayed until | Dale Rahn | |
the tree was stable. No point in code supporting a company which screws its employees being in the OpenBSD tree. | |||
2004-05-03 | This file is long dead now. | Miod Vallat | |
2004-04-30 | Correctly cope with unaligned memory pointers in d16_b*() | Miod Vallat | |
2004-04-30 | allow for ccd on ramdisk; per weissmanndude's request and testing | Michael Shalayeff | |
2004-04-30 | Fix logic botch resulting in a too optimistic openings value. | Miod Vallat | |
2004-04-29 | Repair depend phase | Miod Vallat | |
2004-04-29 | Bugfix sync with mvme68k: | Miod Vallat | |
- wait until all RX processing is over to invoke ddb upon break - turn off the most annoying log() messages unless option DEBUG | |||
2004-04-29 | Typos | Miod Vallat | |
2004-04-29 | Continue factorizing m88k common code, this time files in <arch>/<arch> | Miod Vallat | |
which were copied verbatim from mvme88k to luna88k. This requires backing out syntactic sugar in mvme88k kernel configuration files which would deduct the required processor types from the board models, as the common code only depends upon the M88100 and M88110 defines. | |||
2004-04-29 | luna88k needs a <machine/profile.h> as well, so share it with mvme88k. | Miod Vallat | |
2004-04-29 | Correctly initialize the hardware's memory address on MVME376, it uses | Miod Vallat | |
A24 accesses. Fixes the reccurent timeout problems. |