vt: Add vd_bitblt_argbThis blit an ARGB image on the dedicated vd.This also adds vt_fb_bitblt_argb which will works for most of the vt backendsDifferential Revision: https://reviews.freebsd.org/
vt: Add vd_bitblt_argbThis blit an ARGB image on the dedicated vd.This also adds vt_fb_bitblt_argb which will works for most of the vt backendsDifferential Revision: https://reviews.freebsd.org/D45929Reviewed by: tsoomeSponsored by: Beckhoff Automation GmbH & Co. KG(cherry picked from commit b93028d8cd3aafc883b5f0ecec65a8a2a30af7f3)
show more ...
sys: Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of BSD-2-Clause.Discussed with: pfgMFC After: 3 daysSponsored by: Netflix
pmap_unmapdev/bios: Accept a pointer instead of a vm_offset_t.This matches the return type of pmap_mapdev/bios.Reviewed by: kib, markjSponsored by: DARPADifferential Revision: https://reviews.f
pmap_unmapdev/bios: Accept a pointer instead of a vm_offset_t.This matches the return type of pmap_mapdev/bios.Reviewed by: kib, markjSponsored by: DARPADifferential Revision: https://reviews.freebsd.org/D36548
vt: export RGB offsets with FBIO_GETRGBOFFSAdd a new ioctl to vt to make it possible to export RGB offsetsset by vt drivers. This is needed to fix colors on X and Mesaon some machines, especially
vt: export RGB offsets with FBIO_GETRGBOFFSAdd a new ioctl to vt to make it possible to export RGB offsetsset by vt drivers. This is needed to fix colors on X and Mesaon some machines, especially on modern PowerPC64 BE ones.With the appropriate changes in SCFB, to use this ioctl to findout the correct RGB offsets, this fixes wrong colors on Talos IIand Blackbird, when used with their built-in video cards.Reviewed by: alfredoSponsored by: Instituto de Pesquisas Eldorado (eldorado.org.br)Differential Revision: https://reviews.freebsd.org/D29000
Remove "All Rights Reserved" from FreeBSD Foundation sys/ copyrightsThese ones were unambiguous cases where the Foundation was the onlylisted copyright holder (in the associated license block).S
Remove "All Rights Reserved" from FreeBSD Foundation sys/ copyrightsThese ones were unambiguous cases where the Foundation was the onlylisted copyright holder (in the associated license block).Sponsored by: The FreeBSD Foundation
efifb,vbefb: implement vd_finiThis removes the pmap entry when switching away to e.g. drm fb.Differential Revision: https://reviews.freebsd.org/D29020MFC After: 1 month
Add VT driver for VBE framebuffer deviceImplement vt_vbefb to support Vesa Bios Extensions (VBE) framebuffer with VT.vt_vbefb is built based on vt_efifb and is assuming similar data forinitializa
Add VT driver for VBE framebuffer deviceImplement vt_vbefb to support Vesa Bios Extensions (VBE) framebuffer with VT.vt_vbefb is built based on vt_efifb and is assuming similar data forinitialization, use MODINFOMD_VBE_FB to identify the structure vbe_fbin kernel metadata.struct vbe_fb, is populated by boot loader, and is passed to kernel viametadata payload.Differential Revision: https://reviews.freebsd.org/D27373