samus: Move board version to a separate file
This combines the board version reading and parsing to a separate file that is compiled in both romstage (for early serial output) and ramstage (for smbios tables). It also adds a new board version that is wrapped back to number zero as we are running out of available IDs. BUG=chrome-os-partner:32895 BRANCH=samus TEST=build and boot on samus EVT1 and EVT2 and check for proper board versions reported in console and smbios. Change-Id: I8c8f17708ced7167277a98529ff4597589f53095 Signed-off-by: Stefan Reinauer <reinauer@chromium.org> Original-Commit-Id: 3ab8bba1021a8dd41dd2210ba73efd2231eb596c Original-Change-Id: I2aa03e7486a9581f94dc4e12f6f29eb0c5b3bdbb Original-Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/229041 Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/9473 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
dd281edcfa
commit
432762410e
|
@ -28,3 +28,6 @@ smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c
|
||||||
|
|
||||||
romstage-y += pei_data.c
|
romstage-y += pei_data.c
|
||||||
ramstage-y += pei_data.c
|
ramstage-y += pei_data.c
|
||||||
|
|
||||||
|
romstage-y += board_version.c
|
||||||
|
ramstage-y += board_version.c
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2014 Google Inc.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; version 2 of the License.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <ec/google/chromeec/ec.h>
|
||||||
|
#include "board_version.h"
|
||||||
|
|
||||||
|
const char *samus_board_version(void)
|
||||||
|
{
|
||||||
|
switch (google_chromeec_get_board_version()) {
|
||||||
|
case SAMUS_EC_BOARD_VERSION_EVT1:
|
||||||
|
return "EVT1";
|
||||||
|
case SAMUS_EC_BOARD_VERSION_EVT2:
|
||||||
|
return "EVT2";
|
||||||
|
case SAMUS_EC_BOARD_VERSION_EVT3:
|
||||||
|
return "EVT3";
|
||||||
|
case SAMUS_EC_BOARD_VERSION_EVT4:
|
||||||
|
return "EVT4";
|
||||||
|
default:
|
||||||
|
return "Unknown";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2014 Google Inc.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; version 2 of the License.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef SAMUS_BOARD_VERSION_H
|
||||||
|
#define SAMUS_BOARD_VERSION_H
|
||||||
|
|
||||||
|
#define SAMUS_EC_BOARD_VERSION_EVT1 3
|
||||||
|
#define SAMUS_EC_BOARD_VERSION_EVT2 4
|
||||||
|
#define SAMUS_EC_BOARD_VERSION_EVT3 5
|
||||||
|
#define SAMUS_EC_BOARD_VERSION_EVT4 0
|
||||||
|
|
||||||
|
const char *samus_board_version(void);
|
||||||
|
|
||||||
|
#endif
|
|
@ -22,10 +22,6 @@
|
||||||
|
|
||||||
#include <ec/google/chromeec/ec_commands.h>
|
#include <ec/google/chromeec/ec_commands.h>
|
||||||
|
|
||||||
#define SAMUS_EC_BOARD_VERSION_EVT 3
|
|
||||||
#define SAMUS_EC_BOARD_VERSION_EVT2 4
|
|
||||||
#define SAMUS_EC_BOARD_VERSION_EVT3 5
|
|
||||||
|
|
||||||
#define EC_SCI_GPI 36 /* GPIO36 is EC_SCI# */
|
#define EC_SCI_GPI 36 /* GPIO36 is EC_SCI# */
|
||||||
#define EC_SMI_GPI 34 /* GPIO34 is EC_SMI# */
|
#define EC_SMI_GPI 34 /* GPIO34 is EC_SMI# */
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
#include <arch/io.h>
|
#include <arch/io.h>
|
||||||
#include <arch/interrupt.h>
|
#include <arch/interrupt.h>
|
||||||
#include <boot/coreboot_tables.h>
|
#include <boot/coreboot_tables.h>
|
||||||
#include <ec/google/chromeec/ec.h>
|
#include "board_version.h"
|
||||||
#include "ec.h"
|
#include "ec.h"
|
||||||
|
|
||||||
void mainboard_suspend_resume(void)
|
void mainboard_suspend_resume(void)
|
||||||
|
@ -41,15 +41,7 @@ void mainboard_suspend_resume(void)
|
||||||
|
|
||||||
const char *smbios_mainboard_version(void)
|
const char *smbios_mainboard_version(void)
|
||||||
{
|
{
|
||||||
switch (google_chromeec_get_board_version()) {
|
return samus_board_version();
|
||||||
case SAMUS_EC_BOARD_VERSION_EVT:
|
|
||||||
return "EVT";
|
|
||||||
case SAMUS_EC_BOARD_VERSION_EVT2:
|
|
||||||
return "EVT2";
|
|
||||||
case SAMUS_EC_BOARD_VERSION_EVT3:
|
|
||||||
return "EVT3";
|
|
||||||
}
|
|
||||||
return "Unknown";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mainboard_init(device_t dev)
|
static void mainboard_init(device_t dev)
|
||||||
|
|
|
@ -30,6 +30,8 @@
|
||||||
#include <soc/romstage.h>
|
#include <soc/romstage.h>
|
||||||
#include <mainboard/google/samus/spd/spd.h>
|
#include <mainboard/google/samus/spd/spd.h>
|
||||||
#include <mainboard/google/samus/gpio.h>
|
#include <mainboard/google/samus/gpio.h>
|
||||||
|
#include <ec/google/chromeec/ec.h>
|
||||||
|
#include "board_version.h"
|
||||||
|
|
||||||
void mainboard_romstage_entry(struct romstage_params *rp)
|
void mainboard_romstage_entry(struct romstage_params *rp)
|
||||||
{
|
{
|
||||||
|
@ -40,8 +42,7 @@ void mainboard_romstage_entry(struct romstage_params *rp)
|
||||||
if (rp->power_state->prev_sleep_state != SLEEP_STATE_S3)
|
if (rp->power_state->prev_sleep_state != SLEEP_STATE_S3)
|
||||||
google_chromeec_kbbacklight(100);
|
google_chromeec_kbbacklight(100);
|
||||||
|
|
||||||
printk(BIOS_INFO, "MLB: board version %d\n",
|
printk(BIOS_INFO, "MLB: board version %s\n", samus_board_version());
|
||||||
google_chromeec_get_board_version());
|
|
||||||
|
|
||||||
/* Ensure the EC and PD are in the right mode for recovery */
|
/* Ensure the EC and PD are in the right mode for recovery */
|
||||||
google_chromeec_early_pd_init();
|
google_chromeec_early_pd_init();
|
||||||
|
|
Loading…
Reference in New Issue