summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/sti.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* change wsdisplay attribute type from long to uint32_tjsg2020-05-251-14/+14
* rename wsdisplay alloc_attr() to pack_attr()jsg2020-05-251-6/+6
* integer overflow for two range checksderaadt2017-06-111-3/+3
* sizes for free(); ok sthen semariederaadt2015-09-091-3/+3
* Work-in-progress support for non-accelerated X11 on *some* sti(4) frame buffers;miod2015-04-051-59/+355
* Fix unsigned vs signed comparison in for() loop condition causing an infinitemiod2015-04-031-2/+2
* Replace a plethora of historical protection options with justderaadt2014-11-161-2/+2
* Fix format strings in STIDEBUG code.miod2014-08-301-6/+6
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-5/+5
* Reduce uvm include madness. Use <uvm/uvm_extern.h> instead ofmpi2014-03-281-2/+2
* Retire hp300, mvme68k and mvme88k ports. These ports have no users, keepingmiod2014-03-181-44/+1
* revert previous commit; didn't intend to commit those bitskettenis2014-02-201-16/+5
* Avoid printing the "nvram corrupt" message for onboard 2200s found on Sunkettenis2014-02-201-5/+16
* Use C99 named initializers for struct wsdisplay_accessops fields.miod2013-10-201-7/+6
* Make sure that, when a particular mapchar() can't find a proper glyph for themiod2013-10-181-2/+2
* add support for the reverse video attribute in sti(4)mikeb2012-05-061-11/+18
* Missing argument in STIDEBUG printfmiod2011-09-191-2/+2
* So, it turns out that models 362 and 382 built-in frame buffer only shows upmiod2011-08-181-4/+3
* Do not use NULL in integer comparisons. No functional change.miod2011-04-071-2/+2
* Change the wsdisplay_emulops return types from void to int; emulops will nowmiod2009-09-051-13/+25
* Split sti structures into rom-related information and screen-relatedmiod2009-02-061-371/+474
* The new font selection logic would loop and consume all kmem on promsmiod2009-02-061-2/+2
* Oops, correct logic when requested font index is out of bounds. Thankfullymiod2009-01-291-2/+2
* If the rom contains a monitor table, look for an entry matching ourmiod2009-01-281-25/+85
* More easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...'.krw2007-10-011-3/+2
* We can not consider the first sti region as always mapped, since on pcimiod2007-06-171-16/+15
* Make sure to pass valid extended initialization structure pointers inmiod2007-06-171-3/+7
* Keep the wsscreen_descr in the softc, to allow sti of different textmiod2007-01-121-26/+18
* Add the ability for a sti backend to specify callbacks to disable and enablemiod2007-01-111-4/+48
* Allow sti_attach_common() to return an error code, and do not fall intomiod2007-01-111-15/+33
* Read word-mode rom regions with bus_space_read_raw_region instead ofmiod2006-12-181-15/+19
* Change sti attachment to pass an array of base addresses for the sti regions,miod2006-12-181-11/+12
* Better sti_mapchar() implementation, matches Latin char indexes to HP Romanmiod2006-12-161-4/+51
* Add an unpack_attr function to struct wsdisplay_emulops, to match themiod2006-11-291-4/+15
* Use uvm_km_alloc() instead of uvm_km_alloc1(), so that the latter canmiod2006-11-291-2/+2
* Add a new member to struct wsemuldisplaydev_attach_args, for a frame buffermiod2006-11-291-1/+2
* Clear sti display on console attach, now that the bootloader leaves usmiod2006-08-221-1/+8
* Introduce sti_rom_size() which will compute the size of a card's rom, andmiod2006-04-161-14/+23
* Split sti softc in two structures, one device-related for regular devicemiod2005-02-271-192/+288
* sti colormap fixes:miod2005-01-241-7/+18
* bus_space_map() sti regions with BUS_SPACE_MAP_CACHEABLE if they have themiod2005-01-231-2/+4
* Two sti(4) changes necessary for hp300:miod2005-01-231-24/+44
* Let wsdisplay drivers return zero for WSDISPLAYIO_[GS]VIDEO ioctls - mostmiod2005-01-051-1/+3
* oops missed to set devtype here rather than in sti_sgc.c:1.23mickey2004-11-031-1/+3
* allocate ext-cfg memory if was requestd in dd_stimemreqmickey2004-09-141-1/+12
* only map the rom and do not touch the hpa space getting rid of memsize define that was not really true; plus tested by otto@ and miod@mickey2003-12-161-4/+9
* typos from Tom Cosgrove;jmc2003-10-211-2/+2
* fix the offsets in decoding byte rom dd (verified per manual); miod@ okmickey2003-08-211-15/+17
* give better depth and cmsizemickey2003-08-191-3/+4
* implement WSDISPLAYIO_{GET,PUT}CMAP; untestedmickey2003-08-191-4/+69