diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-11-28 16:44:51 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-05-01 15:39:26 +0200 |
commit | ab56b3b11c34b5315fadc2147f5d1a860dccc419 (patch) | |
tree | 9ef7fe2cb506240b40f9da73392c0fe8b3c93bd9 /src/lib | |
parent | 926a8d1262c09fda9868f73cf0241140ccf09ec9 (diff) |
ChromeOS: Remove oprom_is_loaded
A global flag oprom_is_loaded was used to indicate to
U-boot that VGA option ROM was loaded and run, or that
native VGA init was completed on GMA device.
Implement this feature without dependency to CHROMEOS option
and replace use of global variable oprom_is_loaded with call
to gfx_get_init_done().
Change-Id: I7e1afd752f18e5346dabdee62e4f7ea08ada5faf
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/4309
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/bootmode.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lib/bootmode.c b/src/lib/bootmode.c index 156321f790..98184901df 100644 --- a/src/lib/bootmode.c +++ b/src/lib/bootmode.c @@ -17,6 +17,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <rules.h> #include <bootmode.h> #if CONFIG_CHROMEOS || CONFIG_VBOOT_VERIFY_FIRMWARE #include <vendorcode/google/chromeos/chromeos.h> @@ -61,3 +62,19 @@ int recovery_mode_enabled(void) return 0; } #endif /* CONFIG_BOOTMODE_STRAPS */ + +#if ENV_RAMSTAGE +static int gfx_init_done = -1; + +int gfx_get_init_done(void) +{ + if (gfx_init_done < 0) + return 0; + return gfx_init_done; +} + +void gfx_set_init_done(int done) +{ + gfx_init_done = done; +} +#endif |