summaryrefslogtreecommitdiff
path: root/driver/tcpm/fusb307.h
blob: 3f1f12901dd12a55da8109c7dd50ee5f6e2f6b43 (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
/* Copyright 2020 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.
 */

/* USB Power delivery port management */
/* For Fairchild FUSB307 */
#ifndef __CROS_EC_FUSB307_H
#define __CROS_EC_FUSB307_H

#include "usb_pd.h"

#define FUSB307_I2C_ADDR_FLAGS 0x50

#define TCPC_REG_RESET		0xA2
#define TCPC_REG_RESET_PD_RESET	BIT(1)
#define TCPC_REG_RESET_SW_RESET	BIT(0)

#define TCPC_REG_GPIO1_CFG		0xA4
#define TCPC_REG_GPIO1_CFG_GPO1_VAL	BIT(2)
#define TCPC_REG_GPIO1_CFG_GPI1_EN	BIT(1)
#define TCPC_REG_GPIO1_CFG_GPO1_EN	BIT(0)

int fusb307_power_supply_reset(int port);

extern const struct tcpm_drv fusb307_tcpm_drv;

#endif /* __CROS_EC_FUSB307_H */