summaryrefslogtreecommitdiffstats
path: root/sys/dev/ic/vga.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* change wsdisplay attribute type from long to uint32_tjsg2020-05-251-12/+12
* rename wsdisplay alloc_attr() to pack_attr()jsg2020-05-251-6/+6
* restore VGA fonts on VT switchjsg2020-05-171-1/+2
* Don't attempt to reset the state of the flip-flop associated with thejsg2020-05-161-7/+1
* The fonts we are looping through in vga_selectfont() are the builtinfcambus2017-06-171-8/+2
* sizes for free(); ok sthen semariederaadt2015-09-091-2/+2
* When attaching on an alpha system, get the current textmode resolution bymiod2015-07-261-3/+66
* Shuffle include file ordering in preparation for future changes in vgavar.h,miod2015-07-181-2/+2
* Restore user-loaded vga fonts upon X11->VT switch and upon resume; frommiod2015-03-291-7/+24
* In vga_load_font(), keep track of the font bits being passed by the caller,miod2015-03-291-8/+15
* Some reallocarray() use; review Jean-Philippe Ouellet, patrick keshishianderaadt2014-07-131-6/+5
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-4/+4
* No longer store fonts added with the WSDISPLAYIO_LDFONT ioctl into themiod2013-10-201-2/+33
* Use C99 named initializers for struct wsdisplay_accessops fields.miod2013-10-201-10/+10
* Remove never enabled WSCONS_SUPPORT_PCVTFONTS code.miod2013-10-191-147/+2
* Make sure that, when a particular mapchar() can't find a proper glyph for themiod2013-10-181-2/+2
* Use wsemuldisplaydevsubmatch.kettenis2013-07-061-16/+3
* Provide a way for *drm(4) to prevent the VGA text console wsdisplay(4) instancekettenis2013-03-181-2/+6
* Sprinkle spltty around code which plays with either the video memory ormiod2011-04-031-9/+18
* ansify function definitions, and constify a few arrays while there.miod2010-08-281-108/+35
* Try to save the vga hardware state around suspend, and also redisplay themiod2010-08-081-23/+7
* Change the wsdisplay_emulops return types from void to int; emulops will nowmiod2009-09-051-6/+10
* Backing store for ega and vga virtual console is not allocated until themiod2009-08-121-3/+5
* make various strings ("can't map mem space" and similar) more consistentsthen2009-03-291-4/+4
* change M_WAITOK --> M_WAITOK | M_CANFAILchl2009-02-151-2/+2
* Save the text mode color palette upon startup, and restore it whenmiod2009-02-011-3/+78
* Make agp(4) attach at vga(4) instead of pchb(4). This is because sometimesoga2008-03-161-2/+16
* More easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...'.krw2007-10-011-3/+2
* Remove _KERNEL_OPT leftovers.miod2007-02-111-5/+1
* Evil typo; spotted by Thorsten Glasermiod2007-02-061-2/+2
* In alloc_attr(), make sure xxansitopc[] indicies are within bounds.miod2006-12-021-3/+3
* Change the getchar wsdisplay_accessops function to not return amiod2006-11-291-5/+6
* Add an unpack_attr function to struct wsdisplay_emulops, to match themiod2006-11-291-3/+43
* Add a new member to struct wsemuldisplaydev_attach_args, for a frame buffermiod2006-11-291-1/+2
* If option PCDISPLAY_SOFTCURSOR, force the hardware cursor off every timemiod2006-09-291-1/+2
* Be sure to always return an error for unrecognized ioctls. Found by matthieu@miod2005-01-311-1/+2
* Let wsdisplay drivers return zero for WSDISPLAYIO_[GS]VIDEO ioctls - mostmiod2005-01-051-5/+7
* Use list and queue macros where applicable to make the code easier to read;miod2004-12-261-3/+3
* Do not allow loading a font in an used font slot; discussed with and ok mickey@miod2004-12-251-4/+5
* fix memory leak on deleting a screen; from janjaap@stack.nl via pr3977mickey2004-11-041-4/+16
* Easy one! Remove two redundant assignments.pefo2004-08-061-3/+1
* Fix a botched strchr() inlining in vga_load_font and avoid dereferencingmillert2004-02-271-6/+7
* Replace suspect strncpy with strlcpy to ensure null termination.krw2003-05-171-2/+2
* support for the agp gart on various agp chipsets.mickey2002-07-121-11/+3
* Final __P removal plus some cosmetic fixupsmillert2002-03-141-9/+9
* First round of __P removal in sysmillert2002-03-141-25/+25
* Avoid warning when building with vga on isa without vga on pci; ok mickey@tholo2001-08-031-2/+2
* allocate memory w/ NOWAIT during autoconf time and check for NULL returnmickey2001-05-161-2/+4
* inplement screen burner in screenblank(1) style (no program though).mickey2001-05-081-12/+41
* support a hook for vga_pci-based ioctls; aaron@ ookmickey2001-05-081-25/+11