diff options
author | Jonathan A. Kollasch <jakllsch@kollasch.net> | 2013-10-20 12:48:56 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-10-26 10:13:30 -0400 |
commit | e9a3e12c5afd552dda482edd37d845974148f26e (patch) | |
tree | 3ef66e7eec46e9bd86f4039724dabd9251ba3fc2 /src/util.h | |
parent | 83d60b3c474bf36d7510625911c81c45c9c771cc (diff) | |
download | seabios-e9a3e12c5afd552dda482edd37d845974148f26e.tar.gz |
vgahooks: add SM720 VGA BIOS hooks for WIN Enterprises MB-60470
Add vgahooks to support the SMI SM720 VGA BIOS used on the
WIN Enterprises MB-60470. The response from smi_157f14() is necessary
for the CRT output to turn on. The response from smi_157f02() is used
to configure which connector(s) output is routed to.
As I lack hardware to test LCD panel output, I've selected CRT-only
output on the MB-60470 as this prevents the CRT output from being scaled
to the resolution of the LCD panel.
Signed-off-by: Jonathan A. Kollasch <jakllsch@kollasch.net>
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -218,6 +218,7 @@ void lpt_setup(void); // vgahooks.c void handle_155f(struct bregs *regs); +void handle_157f(struct bregs *regs); void vgahook_setup(struct pci_device *pci); |