diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-08-19 17:44:49 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-08-19 17:44:49 +0000 |
commit | 59fb9a2bfa704422aa3ed64bd21d32bc18c64aa9 (patch) | |
tree | 3936e369cbe0cf3c5f7c272beb14894785aa65c1 /payloads/libpayload/drivers/video | |
parent | 96f57aee0ac571378ee29d1a27a24114ea10a1c3 (diff) | |
download | coreboot-59fb9a2bfa704422aa3ed64bd21d32bc18c64aa9.tar.xz |
add functions to query cursor position to video layer
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Jordan Crouse <jordan.crouse@amd.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3520 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/drivers/video')
-rw-r--r-- | payloads/libpayload/drivers/video/video.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/payloads/libpayload/drivers/video/video.c b/payloads/libpayload/drivers/video/video.c index 8448b78e52..78f410be34 100644 --- a/payloads/libpayload/drivers/video/video.c +++ b/payloads/libpayload/drivers/video/video.c @@ -141,6 +141,26 @@ void video_console_putchar(unsigned int ch) video_console_fixup_cursor(); } +void video_console_get_cursor(unsigned int *x, unsigned int *y, unsigned int *en) +{ + *x=0; + *y=0; + *en=0; + + if (console->get_cursor) + console->get_cursor(x, y, en); + + *x = cursorx; + *y = cursory; +} + +void video_console_set_cursor(unsigned int x, unsigned int y) +{ + cursorx = x; + cursory = y; + video_console_fixup_cursor(); +} + int video_console_init(void) { int i; |