libpayload: Add a Geode video driver

Add a Geode video driver in lieu of VGA on Geode LX devices

Signed-off-by: Jordan Crouse <jordan.crouse@amd.com>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3233 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Jordan Crouse
2008-04-11 15:48:21 +00:00
parent e3aeb93a52
commit 54315533cc
6 changed files with 4997 additions and 0 deletions

View File

@@ -30,12 +30,19 @@
#include <libpayload.h>
#include <video_console.h>
#ifdef CONFIG_GEODE_VIDEO_CONSOLE
extern struct video_console geode_video_console;
#endif
#ifdef CONFIG_VGA_VIDEO_CONSOLE
extern struct video_console vga_video_console;
#endif
static struct video_console *console_list[] =
{
#ifdef CONFIG_GEODE_VIDEO_CONSOLE
&geode_video_console,
#endif
#ifdef CONFIG_VGA_VIDEO_CONSOLE
&vga_video_console,
#endif