Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-04-27 | strcpy/sprintf cleanup of sys/dev. miod@, deraadt@ says to commit. | Hakan Olsson | |
2003-03-28 | Fix the color inversion of the cursor (now it's not a solid block of black =) | Jason Wright | |
2003-03-28 | more register defns (from linux) | Jason Wright | |
2003-03-28 | Use the brand new types instead of WSDISPLAY_TYPE_UNKNOWN | Jason Wright | |
2003-03-28 | If console acceleration was not enabled, do not reinitialize the blitter | Miod Vallat | |
when leaving X11. | |||
2003-03-27 | map vid mem based on linebytes and height | Jason Wright | |
2003-03-27 | Whoops, the rest of the *CURS* ioctl support | Jason Wright | |
2003-03-27 | add support for *CURS* ioctls | Jason Wright | |
2003-03-27 | don't need linear maps here either | Jason Wright | |
2003-03-27 | map the vid mem based on linebytes and height | Jason Wright | |
2003-03-27 | const and static cleaning | Jason Wright | |
2003-03-27 | Don't need linear mappings in here. | Jason Wright | |
2003-03-20 | Compute linebytes and such earlier and use them to decide how much | Jason Wright | |
memory to map. (fixes the TGX+ running in 1280x1024x8 mode). ok miod, millert. | |||
2003-03-05 | make sure asi and sasi are set in the bustag. Fixes the le@lebuffer problem | Jason Wright | |
reported by Tyler Hardison. | |||
2003-02-17 | Add support for the Sun Enterprise 450 | Henric Jungheim | |
Reduce the size of a GENERIC kernel by ~190k Remove the nasty pointer/bus_space_handle_t casts Adds debug bus_space code including the ability to trace bus operations (it actually works now). The following rules are now followed (and verfified by the debug code): 1. A "bus_space_handle_t" may only be used with the "bus_space_tag_t" that created it. 2. Only "bus_space_map()" may create "bus_space_handle_t"s. 3. A "bus_space_handle_t" may not be modified after it has been created (other than being destroyed by "bus_space_unmap()"). Thanks to help from mcbride, marc, jason, drahn, to anyone that might have slipped my mind at the moment. ok jason@, deraadt@ | |||
2003-02-14 | always need softintr after rxexception (avoids uninitialized variable); ↵ | Jason Wright | |
pointed out by henric | |||
2003-02-12 | Labels must be followed by a statement. (Pointed out by gcc3.) | Henric Jungheim | |
ok jason@ | |||
2003-02-11 | be consistant on Hz vs hz | Michael Shalayeff | |
2003-02-09 | make ESP_SBUS_DEBUG compile | Jason Wright | |
2002-10-12 | Remove more '\n's from panic() statements. Both trailing and leading. | Kenneth R Westerback | |
Diff generated by Chris Kuethe. | |||
2002-10-04 | simplify format setup | Jason Wright | |
2002-09-10 | Set encodings correctly. | Jason Wright | |
2002-09-10 | Register more wsscreen properties to take advantage of wsemul_sun changes. | Jason Wright | |
2002-09-09 | Add support for audio capture (finally) and fix a bunch of stupid bugs. | Jason Wright | |
2002-08-31 | Always setup the RAMDAC (even if we're not the console) so when the display | Jason Wright | |
is cleared, it's cleared to a known color (white instead of whatever is put in the ramdac by the prom, usually cyan). | |||
2002-08-16 | Turn OFF (not ON) acceleration if revision < 5 | Jason Wright | |
2002-08-12 | Update rom cursor position if we're the console framebuffer | Jason Wright | |
2002-08-06 | Set RI_CLEAR if the card isn't the console framebuffer; based on discussion ↵ | Jason Wright | |
with miod. | |||
2002-08-05 | Force acceleration to be turned off if we encounter an old hardware | Miod Vallat | |
revision. Jason and I think that only someone out of his mind would plug an old dusty dual slot cgsix in an ultrra, but it's better to be safe anyways. ok jason@ | |||
2002-08-02 | Do correct bounds checking in get/set/put cmap routines. A few of | Todd C. Miller | |
these check were already OK but have been modified for consistency. Problem found by Silvio Cesare. | |||
2002-07-30 | - Whoops, I had the mode mask and value bits backwards | Jason Wright | |
- make sure FBC_MODE is reset when switching back to WSDISPLAYIO_MODE_EMUL | |||
2002-07-30 | - Allow disabling of console acceleration with cf_flags | Jason Wright | |
- handle native and dumb mappings separately | |||
2002-07-30 | handle dumbfb and mapped mode requests differently | Jason Wright | |
2002-07-26 | House cleaning (move reg defns into their own file), and be sure to drain | Jason Wright | |
the CG6 before starting operations. | |||
2002-07-26 | add support for hardware accelerated fill/copy; from NetBSD (committed from ↵ | Jason Wright | |
the acceptably fast non-X11 console of a U1) | |||
2002-07-25 | Adapt the framebuffer code to the WSDISPLAY_TYPE constant changes, and | Miod Vallat | |
add the necessary magic for wsemul_sun color handling. Initially based on a patch from jason@, then some tinkering by me. | |||
2002-06-21 | make this more quiet on card insertion. | Federico G. Schwindt | |
2002-06-21 | missing tab. | Federico G. Schwindt | |
2002-06-20 | indent. | Federico G. Schwindt | |
2002-06-20 | rename nell to stp. we do not always follow stupid solaris names | Theo de Raadt | |
2002-06-19 | more sbus->pcmcia pieces. | Federico G. Schwindt | |
2002-06-19 | - set the size correctly. | Federico G. Schwindt | |
- a few minor cosmetical changes. | |||
2002-06-19 | sbus pcmcia bridge driver (nell); from NetBSD. | Federico G. Schwindt | |
2002-06-14 | spelling; from Brian Poole <raj@cerias.purdue.edu> | Todd T. Fries | |
2002-06-04 | driver for the sbus bwtwo cards (completely untested). | Jason Wright | |
2002-06-03 | Convert from rcons to rasops | Jason Wright | |
2002-06-02 | Turn off timing if WSDISPLAY_BURN_VBLANK is set (which in turn puts most | Jason Wright | |
monitors in standby). | |||
2002-05-21 | Enable the blanker now that the X stuff is fixed | Jason Wright | |
2002-05-17 | Handle the removal of 'const' from structure definition. | mjacob | |
2002-05-13 | - Request 24bit dvma allocation if we fail to find an lebuffer to attach to | Jason Wright | |
- add bus_space_barrier's to the csr read/write functions - KNF and other cleaning |