ec/google/chromeec: Remove ec_retimer_fw_update

Along with upstream kernel for Retimer firmware update, coreboot changes
the ec_retimer_fw_update format. This change removes this API and will
add implementation later once the dependent definition is complete.

BUG=b:186521258
TEST=Build image successfully.

Signed-off-by: John Zhao <john.zhao@intel.com>
Change-Id: I2d074b84fb3cb87b443871104b72b6c316af5279
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52710
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
John Zhao 2021-04-27 09:44:06 -07:00 committed by Tim Wawrzynczak
parent 0d2d9db143
commit 7d365be915
1 changed files with 0 additions and 22 deletions

View File

@ -241,25 +241,3 @@ const char *ec_retimer_fw_update_path(void)
{ {
return "\\_SB_.PCI0.LPCB.EC0_.RFWU"; return "\\_SB_.PCI0.LPCB.EC0_.RFWU";
} }
void ec_retimer_fw_update(void *arg)
{
const char *RFWU = ec_retimer_fw_update_path();
/*
* Get information to set retimer info from Arg3[0]
* Local0 = DeRefOf (Arg3[0])
*/
acpigen_get_package_op_element(ARG3_OP, 0, LOCAL0_OP);
/*
* Write the EC RAM for Retimer Upgrade
* RFWU = LOCAL0
*/
acpigen_write_store();
acpigen_emit_byte(LOCAL0_OP);
acpigen_emit_namestring(RFWU);
/* Return (Zero) */
acpigen_write_return_integer(0);
}