summaryrefslogtreecommitdiff
path: root/board/crota/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/crota/board.c')
-rw-r--r--board/crota/board.c29
1 files changed, 4 insertions, 25 deletions
diff --git a/board/crota/board.c b/board/crota/board.c
index 855eeabb81..04f64bd2a5 100644
--- a/board/crota/board.c
+++ b/board/crota/board.c
@@ -1,4 +1,4 @@
-/* Copyright 2022 The Chromium OS Authors. All rights reserved.
+/* Copyright 2022 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -10,13 +10,12 @@
#include "common.h"
#include "compile_time_macros.h"
#include "console.h"
-#include "extpower.h"
#include "gpio.h"
#include "gpio_signal.h"
#include "hooks.h"
#include "driver/accel_lis2dw12.h"
+#include "driver/accelgyro_bmi260.h"
#include "driver/accelgyro_lsm6dso.h"
-#include "driver/als_tcs3400.h"
#include "fw_config.h"
#include "hooks.h"
#include "lid_switch.h"
@@ -31,8 +30,8 @@
#include "gpio_list.h" /* Must come after other header files. */
/* Console output macros */
-#define CPRINTF(format, args...) cprintf(CC_CHARGER, format, ## args)
-#define CPRINTS(format, args...) cprints(CC_CHARGER, format, ## args)
+#define CPRINTF(format, args...) cprintf(CC_CHARGER, format, ##args)
+#define CPRINTS(format, args...) cprints(CC_CHARGER, format, ##args)
__override void board_cbi_init(void)
{
@@ -56,23 +55,3 @@ static void board_chipset_suspend(void)
gpio_set_level(GPIO_EC_KB_BL_EN_L, 1);
}
DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, board_chipset_suspend, HOOK_PRIO_DEFAULT);
-
-#ifdef CONFIG_USB_PORT_POWER_DUMB_CUSTOM_HOOK
-static void usb_port_startup(void)
-{
- gpio_set_level(GPIO_EN_PP5000_USBA_R, 1);
-}
-DECLARE_HOOK(HOOK_CHIPSET_STARTUP, usb_port_startup, HOOK_PRIO_DEFAULT);
-
-static void usba_power(void)
-{
- if (chipset_in_state(CHIPSET_STATE_ANY_OFF)) {
- if (extpower_is_present())
- gpio_set_level(GPIO_EN_PP5000_USBA_R, 1);
- else
- gpio_set_level(GPIO_EN_PP5000_USBA_R, 0);
- }
-}
-DECLARE_HOOK(HOOK_CHIPSET_SHUTDOWN, usba_power, HOOK_PRIO_DEFAULT);
-DECLARE_HOOK(HOOK_AC_CHANGE, usba_power, HOOK_PRIO_DEFAULT);
-#endif /* CONFIG_USB_PORT_POWER_DUMB_CUSTOM_HOOK */