summaryrefslogtreecommitdiff
path: root/sys/dev/fb
Commit message (Expand)AuthorAgeFilesLines
* MFC 219886, 226100, 226111, 226341, 242529, 259015, 259016, 259019, 259049,Aleksandr Rybalko2014-03-272-0/+489
* MFC r262613:Dimitry Andric2014-03-262-8/+8
* MFC: r248799Jung-uk Kim2013-04-081-5/+6
* MFC: r227309 (partial)Marius Strobl2013-03-091-1/+1
* MFC r237203,r237223 (by phk):Konstantin Belousov2012-07-171-3/+11
* MFC: r233042, r233054, r233056, r233187Jung-uk Kim2012-03-271-53/+64
* MFC: r231843, r232061, r232063, r232065, r232069Jung-uk Kim2012-02-271-22/+22
* MFC: r231841, r231842Jung-uk Kim2012-02-272-3/+5
* MFC: r225931, r225932, r227000Marius Strobl2012-01-281-55/+57
* MFC r228445:Eitan Adler2012-01-121-0/+135
* MFC r226173, r227843, r227848 and r227908:Hans Petter Selasky2011-12-311-2/+1
* Use the preload_fetch_addr() and preload_fetch_size() convenienceMarcel Moolenaar2011-02-131-15/+17
* Fix segment:offset calculation of interrupt vector for relocated video BIOSJung-uk Kim2010-09-131-8/+6
* Disable video ROM shadowing by default as I originally intended. I foundJung-uk Kim2010-09-021-2/+2
* Make sure the interrupt entry point is within the video ROM range. We mustJung-uk Kim2010-08-311-9/+15
* Fix a debugging message under bootverbose. This address is not linear.Jung-uk Kim2010-08-251-1/+1
* Add an experimental feature to shadow video BIOS. Long ago, this trick wasJung-uk Kim2010-08-251-10/+57
* Protect shared palette and state buffer with a mutex. Remove defunctJung-uk Kim2010-08-071-14/+27
* Initialize a variable before its use.Jung-uk Kim2010-07-131-1/+1
* Preallocate buffers for palette and state. Do not save DAC registers asJung-uk Kim2010-07-131-83/+58
* Plug a possible memory leak.Jung-uk Kim2010-07-061-1/+1
* Fix a possible null pointer dereference. A patch for -STABLE wasJung-uk Kim2010-07-061-0/+2
* Use M_WAITOK for VESA BIOS initialization consistently.Jung-uk Kim2010-06-231-5/+5
* Let x86bios_alloc() pass contigmalloc(9) flags. Use it to set M_WAITOKJung-uk Kim2010-06-231-9/+7
* Remove unused i586 optimized bcopy/bzero/etc implementations that utilizeKonstantin Belousov2010-06-231-10/+1
* Restore the previous VESA mode after BIOS POST, just in case.Jung-uk Kim2010-05-181-0/+1
* Remove unnecessary pointer increment. A wrong pointer may be passed toJung-uk Kim2010-05-181-4/+4
* Allocate memory for VBE info block with malloc(9), not as static local.Jung-uk Kim2010-04-071-22/+28
* Do not penalize correct or correctable VESA mode tables by calling anotherJung-uk Kim2010-03-251-7/+14
* Teach VGA framebuffer about 8-bit palette format for VESA.Jung-uk Kim2010-03-242-12/+16
* Add my copyright here. It seems I have contributed enough code. :-)Jung-uk Kim2010-03-231-0/+1
* Be extremely careful when we determine bytes per scan line information.Jung-uk Kim2010-03-231-11/+54
* Fall back to VGA palette functions if VESA function failed and DAC is stillJung-uk Kim2010-03-231-11/+10
* Map entire video memory again. This is a partial backout of r203535.Jung-uk Kim2010-03-231-3/+4
* Yet another attempt to make palette loading more safer:Jung-uk Kim2010-02-231-24/+33
* Re-add accidentally removed pixel format for direct memory model.Jung-uk Kim2010-02-231-2/+42
* Fix FBIO_ADPINFO ioctl on amd64.Jung-uk Kim2010-02-231-3/+3
* Map and report actual video memory we need.Jung-uk Kim2010-02-061-81/+34
* Replace some homegrown functions with better/correct ones.Jung-uk Kim2010-02-051-46/+7
* Remove dead code and fix style(9) bugs.Jung-uk Kim2010-02-031-66/+77
* Use bytes per scan line from mode table. The previous implementation didJung-uk Kim2010-02-031-37/+13
* Correct virtual address of frame buffer for non-linear mode.Jung-uk Kim2010-02-031-1/+1
* Use VESA palette load/save functions if VESA BIOS says the current paletteJung-uk Kim2010-01-271-14/+22
* Update d_mmap() to accept vm_ooffset_t and vm_memattr_t.Robert Noland2009-12-298-28/+30
* - Remove a redundant check for dpms(4).Jung-uk Kim2009-11-121-2/+2
* - Partially revert hackish r198964 and r199002.Jung-uk Kim2009-11-121-1/+0
* Remove duplicate suspend/resume code from vga_pci.c and let vga(4) registerJung-uk Kim2009-11-061-0/+1
* Save/restore VGA state from vga_pci.c instead of relying on vga_isa.c.Jung-uk Kim2009-11-051-49/+5
* Do not probe video mode if we are not going to use it.Jung-uk Kim2009-11-041-7/+9
* Restore color palette format if we reset video mode.Jung-uk Kim2009-11-041-0/+2