summaryrefslogtreecommitdiff
path: root/board/mancomb/board.c
blob: 9fadf1ff593aefed995b39413e64c3ee4acd143e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* 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.
 */

/* Mancomb board-specific configuration */

#include "button.h"
#include "common.h"
#include "extpower.h"
#include "gpio.h"
#include "hooks.h"
#include "lid_switch.h"
#include "power.h"
#include "power_button.h"
#include "switch.h"
#include "tablet_mode.h"

#include "gpio_list.h" /* Must come after other header files. */

void board_get_bj_power(int *voltage, int *current)
{
	*voltage = 20000;
	*current = 6000;
}

static void board_init(void)
{
	/* TODO */
}
DECLARE_HOOK(HOOK_INIT, board_init, HOOK_PRIO_DEFAULT);