haswell boards: support added chromeos function

The get_write_protect_state() function was added to the
chromeos API that needs to be supported by the boards.
Implement this support.

Built and booted. Noted firmware select worked on an image with
RW firmware support. Also checked that recovery mode worked as
well by choosing the RO path.

Change-Id: Ifd213be25304163fc61d153feac4f5a875a40902
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/2855
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Aaron Durbin 2013-03-01 17:38:59 -06:00 committed by Stefan Reinauer
parent fd79562915
commit 0df4de9e96
3 changed files with 17 additions and 0 deletions

View File

@ -123,3 +123,8 @@ int get_recovery_mode_switch(void)
return (gp_lvl3 >> (69-64)) & 1;
}
int get_write_protect_state(void)
{
return 0;
}

View File

@ -71,3 +71,9 @@ int get_recovery_mode_switch(void)
{
return 0; // force off
}
int get_write_protect_state(void)
{
return 0;
}

View File

@ -71,3 +71,9 @@ int get_recovery_mode_switch(void)
{
return 0; // force off
}
int get_write_protect_state(void)
{
return 0;
}