summaryrefslogtreecommitdiffstats
path: root/sys/modules/dpms
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2009-10-19 20:58:10 +0000
committerjkim <jkim@FreeBSD.org>2009-10-19 20:58:10 +0000
commit99279734b833c18edb9cfc47db1c920327e97fde (patch)
treed4a62e4e5d88debc2e3a4761c8ceea077f9a2ac1 /sys/modules/dpms
parent8f9031d9fe5f0fb11cd72dd010fbdac9560df819 (diff)
downloadFreeBSD-src-99279734b833c18edb9cfc47db1c920327e97fde.zip
FreeBSD-src-99279734b833c18edb9cfc47db1c920327e97fde.tar.gz
Rewrite x86bios and update its dependent drivers.
- Do not map entire real mode memory (1MB). Instead, we map IVT/BDA and ROM area separately. Most notably, ROM area is mapped as device memory (uncacheable) as it should be. User memory is dynamically allocated and free'ed with contigmalloc(9) and contigfree(9). Remove now redundant and potentially dangerous x86bios_alloc.c. If this emulator ever grows to support non-PC hardware, we may implement it with rman(9) later. - Move all host-specific initializations from x86emu_util.c to x86bios.c and remove now unnecessary x86emu_util.c. Currently, non-PC hardware is not supported. We may use bus_space(9) later when the KPI is fixed. - Replace all bzero() calls for emulated registers with more obviously named x86bios_init_regs(). This function also initializes DS and SS properly. - Add x86bios_get_intr(). This function checks if the interrupt vector is available for the platform. It is not necessary for PC-compatible hardware but it may be needed later. ;-) - Do not try turning off monitor if DPMS does not support the state. - Allocate stable memory for VESA OEM strings instead of just holding pointers to them. They may or may not be accessible always. Fix a memory leak of video mode table while I am here. - Add (experimental) BIOS POST call for vesa(4). This function calls VGA BIOS POST code from the current VGA option ROM. Some video controllers cannot save and restore the state properly even if it is claimed to be supported. Usually the symptom is blank display after resuming from suspend state. If the video mode does not match the previous mode after restoring, we try BIOS POST and force the known good initial state. Some magic was taken from NetBSD (and it was taken from vbetool, I believe.) - Add a loader tunable for vgapci(4) to give a hint to dpms(4) and vesa(4) to identify who owns the VESA BIOS. This is very useful for multi-display adapter setup. By default, the POST video controller is automatically probed and the tunable "hw.pci.default_vgapci_unit" is set to corresponding vgapci unit number. You may override it from loader but it is very unlikely to be necessary. Unfortunately only AGP/PCI/PCI-E controllers can be matched because ISA controller does not have necessary device IDs. - Fix a long standing bug in state save/restore function. The state buffer pointer should be ES:BX, not ES:DI according to VBE 3.0. If it ever worked, that's because BX was always zero. :-) - Clean up register initializations more clearer per VBE 3.0. - Fix a lot of style issues with vesa(4).
Diffstat (limited to 'sys/modules/dpms')
-rw-r--r--sys/modules/dpms/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/dpms/Makefile b/sys/modules/dpms/Makefile
index d1d58ff..4eabf14 100644
--- a/sys/modules/dpms/Makefile
+++ b/sys/modules/dpms/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
KMOD= dpms
-SRCS= bus_if.h device_if.h
+SRCS= bus_if.h device_if.h pci_if.h
.PATH: ${.CURDIR}/../../dev/dpms
SRCS+= dpms.c
OpenPOWER on IntegriCloud