From e4953299464ca66da6a5766d1a9e782ab6f9eaae Mon Sep 17 00:00:00 2001 From: Wai-Hong Tam Date: Mon, 28 Jun 2021 11:48:22 -0700 Subject: herobrine_npcx9: Remove 3.3V rail control The 3.3V rail is not controlled by EC. Remove the control. BRANCH=None BUG=b:192253134 TEST=Built the herobrine_npcx9 image successfully. Change-Id: Id03f0b4943ce0cc19b7ac286e866d06339719223 Signed-off-by: Wai-Hong Tam Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2993215 Reviewed-by: Keith Short --- board/herobrine_npcx9/build.mk | 1 - board/herobrine_npcx9/power.c | 22 ---------------------- 2 files changed, 23 deletions(-) delete mode 100644 board/herobrine_npcx9/power.c diff --git a/board/herobrine_npcx9/build.mk b/board/herobrine_npcx9/build.mk index ae0d63b202..b84e3e6f68 100644 --- a/board/herobrine_npcx9/build.mk +++ b/board/herobrine_npcx9/build.mk @@ -15,6 +15,5 @@ board-y+=battery.o board-y+=board.o board-y+=hibernate.o board-y+=led.o -board-y+=power.o board-y+=switchcap.o board-y+=usbc_config.o diff --git a/board/herobrine_npcx9/power.c b/board/herobrine_npcx9/power.c deleted file mode 100644 index 0a55b49d3d..0000000000 --- a/board/herobrine_npcx9/power.c +++ /dev/null @@ -1,22 +0,0 @@ -/* Copyright 2021 The Chromium OS Authors. All rights reserved. - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -#include "gpio.h" -#include "hooks.h" - -void board_chipset_pre_init(void) -{ - /* Turn on the 3.3V rail */ - gpio_set_level(GPIO_EN_PP3300_A, 1); -} -DECLARE_HOOK(HOOK_CHIPSET_PRE_INIT, board_chipset_pre_init, HOOK_PRIO_DEFAULT); - -void board_chipset_shutdown_complete(void) -{ - /* Turn off the 3.3V and 5V rails. */ - gpio_set_level(GPIO_EN_PP3300_A, 0); -} -DECLARE_HOOK(HOOK_CHIPSET_SHUTDOWN_COMPLETE, board_chipset_shutdown_complete, - HOOK_PRIO_DEFAULT); -- cgit v1.2.1