mb/google: Move ECFW_RW setting for non-ChromeEC boards
The boolean is stored in ChromeOS NVS, not GNVS. Change-Id: I5c424a052d484228a456f8f0ad4fb0bed3165e09 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50877 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
8a1fcf4754
commit
bc441c72ce
|
@ -17,8 +17,6 @@ static inline void *acpi_get_gnvs(void) { return NULL; }
|
|||
static inline int acpi_reset_gnvs_for_wake(struct global_nvs **gnvs) { return -1; }
|
||||
#endif
|
||||
|
||||
void gnvs_set_ecfw_rw(void);
|
||||
|
||||
/*
|
||||
* These functions populate the gnvs structure in acpi table.
|
||||
* Defined as weak in common acpi as gnvs structure definition is
|
||||
|
|
|
@ -14,13 +14,6 @@ void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|||
gnvs->s5u0 = 0;
|
||||
gnvs->s5u1 = 0;
|
||||
|
||||
// TODO: MLR
|
||||
// The firmware read/write status is a "virtual" switch and
|
||||
// will be handled elsewhere. Until then hard-code to
|
||||
// read/write instead of read-only for developer mode.
|
||||
if (CONFIG(CHROMEOS_NVS))
|
||||
gnvs_set_ecfw_rw();
|
||||
|
||||
// the lid is open by default.
|
||||
gnvs->lids = 1;
|
||||
|
||||
|
|
|
@ -68,5 +68,12 @@ static const struct cros_gpio cros_gpios[] = {
|
|||
|
||||
void mainboard_chromeos_acpi_generate(void)
|
||||
{
|
||||
// TODO: MLR
|
||||
// The firmware read/write status is a "virtual" switch and
|
||||
// will be handled elsewhere. Until then hard-code to
|
||||
// read/write instead of read-only for developer mode.
|
||||
if (CONFIG(CHROMEOS_NVS))
|
||||
chromeos_set_ecfw_rw();
|
||||
|
||||
chromeos_acpi_gpio_generate(cros_gpios, ARRAY_SIZE(cros_gpios));
|
||||
}
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <device/device.h>
|
||||
#include <ec/compal/ene932/ec.h>
|
||||
#include "ec.h"
|
||||
|
||||
#include <southbridge/intel/bd82x6x/pch.h>
|
||||
|
@ -21,9 +20,6 @@ void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|||
gnvs->s5u0 = 0;
|
||||
gnvs->s5u1 = 0;
|
||||
|
||||
if (CONFIG(CHROMEOS_NVS) && !parrot_ec_running_ro())
|
||||
gnvs_set_ecfw_rw();
|
||||
|
||||
/* EC handles all active thermal and fan control on Parrot. */
|
||||
gnvs->tcrt = CRITICAL_TEMPERATURE;
|
||||
gnvs->tpsv = PASSIVE_TEMPERATURE;
|
||||
|
|
|
@ -51,7 +51,7 @@ int get_recovery_mode_switch(void)
|
|||
return gpio;
|
||||
}
|
||||
|
||||
int parrot_ec_running_ro(void)
|
||||
static int parrot_ec_running_ro(void)
|
||||
{
|
||||
return !get_gpio(68);
|
||||
}
|
||||
|
@ -63,5 +63,8 @@ static const struct cros_gpio cros_gpios[] = {
|
|||
|
||||
void mainboard_chromeos_acpi_generate(void)
|
||||
{
|
||||
if (CONFIG(CHROMEOS_NVS) && !parrot_ec_running_ro())
|
||||
chromeos_set_ecfw_rw();
|
||||
|
||||
chromeos_acpi_gpio_generate(cros_gpios, ARRAY_SIZE(cros_gpios));
|
||||
}
|
||||
|
|
|
@ -43,7 +43,6 @@
|
|||
#ifndef __ACPI__
|
||||
extern void parrot_ec_init(void);
|
||||
u8 parrot_rev(void);
|
||||
int parrot_ec_running_ro(void);
|
||||
#endif
|
||||
|
||||
#endif // PARROT_EC_H
|
||||
|
|
|
@ -2,10 +2,6 @@
|
|||
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <device/device.h>
|
||||
#include <bootmode.h>
|
||||
#include <ec/quanta/it8518/ec.h>
|
||||
#include "ec.h"
|
||||
#include "onboard.h"
|
||||
|
||||
#include <southbridge/intel/bd82x6x/pch.h>
|
||||
|
@ -22,9 +18,6 @@ void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|||
gnvs->s5u0 = 0;
|
||||
gnvs->s5u1 = 0;
|
||||
|
||||
if (CONFIG(CHROMEOS_NVS) && !get_recovery_mode_switch())
|
||||
gnvs_set_ecfw_rw();
|
||||
|
||||
/* EC handles all thermal and fan control on Stout. */
|
||||
gnvs->tcrt = CRITICAL_TEMPERATURE;
|
||||
gnvs->tpsv = PASSIVE_TEMPERATURE;
|
||||
|
|
|
@ -81,5 +81,8 @@ static const struct cros_gpio cros_gpios[] = {
|
|||
|
||||
void mainboard_chromeos_acpi_generate(void)
|
||||
{
|
||||
if (CONFIG(CHROMEOS_NVS) && !get_recovery_mode_switch())
|
||||
chromeos_set_ecfw_rw();
|
||||
|
||||
chromeos_acpi_gpio_generate(cros_gpios, ARRAY_SIZE(cros_gpios));
|
||||
}
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_gnvs.h>
|
||||
#include <device/device.h>
|
||||
#include <ec/acpi/ec.h>
|
||||
#include <soc/nvs.h>
|
||||
|
||||
#include "thermal.h"
|
||||
|
@ -43,7 +42,4 @@ void mainboard_fill_gnvs(struct global_nvs *gnvs)
|
|||
gnvs->tpsv = PASSIVE_TEMPERATURE;
|
||||
gnvs->tmax = MAX_TEMPERATURE;
|
||||
gnvs->flvl = 5;
|
||||
|
||||
if (CONFIG(CHROMEOS_NVS) && ec_read(0xcb))
|
||||
gnvs_set_ecfw_rw();
|
||||
}
|
||||
|
|
|
@ -75,5 +75,8 @@ static const struct cros_gpio cros_gpios[] = {
|
|||
|
||||
void mainboard_chromeos_acpi_generate(void)
|
||||
{
|
||||
if (CONFIG(CHROMEOS_NVS) && ec_read(0xcb))
|
||||
chromeos_set_ecfw_rw();
|
||||
|
||||
chromeos_acpi_gpio_generate(cros_gpios, ARRAY_SIZE(cros_gpios));
|
||||
}
|
||||
|
|
|
@ -30,6 +30,7 @@ void mainboard_prepare_cr50_reset(void);
|
|||
void cbmem_add_vpd_calibration_data(void);
|
||||
void chromeos_set_me_hash(u32*, int);
|
||||
void chromeos_set_ramoops(void *ram_oops, size_t size);
|
||||
void chromeos_set_ecfw_rw(void);
|
||||
|
||||
/**
|
||||
* get_dsm_calibration_from_key - Gets value related to DSM calibration from VPD
|
||||
|
|
|
@ -76,7 +76,7 @@ void chromeos_set_ramoops(void *ram_oops, size_t size)
|
|||
chromeos_acpi->ramoops_len = size;
|
||||
}
|
||||
|
||||
void gnvs_set_ecfw_rw(void)
|
||||
void chromeos_set_ecfw_rw(void)
|
||||
{
|
||||
if (!chromeos_acpi)
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue