summaryrefslogtreecommitdiff
path: root/chip/it83xx
diff options
context:
space:
mode:
authorJett Rink <jettrink@chromium.org>2018-03-22 10:18:49 -0600
committerchrome-bot <chrome-bot@chromium.org>2018-03-26 17:03:27 -0700
commit6a7fb0d39bf84d7199f0a3f1f9a32cd85dc1113e (patch)
tree66ed0813f563bb89527da05dbb1fa884b0e86df7 /chip/it83xx
parentb57ad0e1b82f87e7882e3bd7d05b8e994ad5a414 (diff)
downloadchrome-ec-6a7fb0d39bf84d7199f0a3f1f9a32cd85dc1113e.tar.gz
lpc: remove lpc_host_reset
No one is using this method and it implies that all chipset should support the RCIN# Virtual Wire if using eSPI. Only large core chips use RCIN#; small core chips don't. This method was introduced for skylake and has since been replaced since CL:575947 was merged. BRANCH=none BUG=none TEST=build all Change-Id: Ic541e3d61d1e0ecc64a0bb12385bdada40f0acf2 Signed-off-by: Jett Rink <jettrink@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/975904
Diffstat (limited to 'chip/it83xx')
-rw-r--r--chip/it83xx/lpc.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/chip/it83xx/lpc.c b/chip/it83xx/lpc.c
index 231dd25ece..bde0ebf0c1 100644
--- a/chip/it83xx/lpc.c
+++ b/chip/it83xx/lpc.c
@@ -703,20 +703,6 @@ static void lpc_init(void)
*/
DECLARE_HOOK(HOOK_INIT, lpc_init, HOOK_PRIO_INIT_LPC);
-void lpc_host_reset(void)
-{
- /* Host Reset Control will assert RCIN# */
-#ifdef CONFIG_ESPI_VW_SIGNALS
- espi_vw_set_wire(VW_RCIN_L, 0);
- udelay(10);
- espi_vw_set_wire(VW_RCIN_L, 1);
-#else
- gpio_set_level(GPIO_SYS_RESET_L, 0);
- udelay(10);
- gpio_set_level(GPIO_SYS_RESET_L, 1);
-#endif
-}
-
#ifndef CONFIG_ESPI_VW_SIGNALS
void lpcrst_interrupt(enum gpio_signal signal)
{