summaryrefslogtreecommitdiff
path: root/driver/ppc/nx20p348x.h
blob: 94e7a8d06eda5cfb7605485e8478db23c62ebcd8 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* Copyright 2018 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* NX20P348x Type-C Power Path Controller */

#ifndef __CROS_EC_NX20P348X_H
#define __CROS_EC_NX20P348X_H

#include "common.h"
#include "ppc/nx20p348x_public.h"

/*
 * This PPC hard-codes the over voltage protect of Vbus at 6.8V in dead-battery
 * mode. If we ever are every going to drop the PD rail, we need to first ensure
 * that Vbus is negotiated to below 6.8V otherwise we can lock out Vbus.
 */
#define NX20P348X_SAFE_RESET_VBUS_MV 5000

/* NX20P348x register addresses */
#define NX20P348X_DEVICE_ID_REG 0x00
#define NX20P348X_DEVICE_STATUS_REG 0x01
#define NX20P348X_SWITCH_CONTROL_REG 0x02
#define NX20P348X_SWITCH_STATUS_REG 0x03
#define NX20P348X_INTERRUPT1_REG 0x04
#define NX20P348X_INTERRUPT2_REG 0x05
#define NX20P348X_INTERRUPT1_MASK_REG 0x06
#define NX20P348X_INTERRUPT2_MASK_REG 0x07
#define NX20P348X_OVLO_THRESHOLD_REG 0x08
#define NX20P348X_HV_SRC_OCP_THRESHOLD_REG 0x09
#define NX20P348X_5V_SRC_OCP_THRESHOLD_REG 0x0A
#define NX20P348X_DEVICE_CONTROL_REG 0x0B

/* Device Control Register (0x0B) */
#define NX20P3483_CTRL_FRS_AT BIT(3)
#define NX20P348X_CTRL_DB_EXIT BIT(2)
#define NX20P348X_CTRL_VBUSDIS_EN BIT(1)
#define NX20P348X_CTRL_LDO_SD BIT(0)

/* Device Status Modes (0x01) */
#define NX20P3481_DEVICE_MODE_MASK 0x3
#define NX20P3483_DEVICE_MODE_MASK 0x7
#define NX20P348X_MODE_DEAD_BATTERY 0
/* After dead battery, mode values are different between 3481 and 3483 */
#define NX20P3481_MODE_NORMAL 1
#define NX20P3481_MODE_FRS 2
#define NX20P3481_MODE_STANDBY 3

#define NX20P3483_MODE_HV_SNK 1
#define NX20P3483_MODE_5V_SRC 2
#define NX20P3483_MODE_HV_SRC 3
#define NX20P3483_MODE_STANDBY 4

/* Switch Control Register (0x02) */
#define NX20P3481_SWITCH_CONTROL_5VSRC BIT(2)
#define NX20P3481_SWITCH_CONTROL_HVSRC BIT(1)
#define NX20P3481_SWITCH_CONTROL_HVSNK BIT(0)

/* Switch Status Register (0x03) */
#define NX20P348X_SWITCH_STATUS_5VSRC BIT(2)
#define NX20P348X_SWITCH_STATUS_HVSRC BIT(1)
#define NX20P348X_SWITCH_STATUS_HVSNK BIT(0)
#define NX20P348X_SWITCH_STATUS_DEBOUNCE_MSEC 25
#define NX20P348X_SWITCH_STATUS_MASK 0x7

/* Internal 5V VBUS Switch Current Limit Settings (min) */
#define NX20P348X_ILIM_MASK 0xF
#define NX20P348X_ILIM_0_400 0
#define NX20P348X_ILIM_0_600 1
#define NX20P348X_ILIM_0_800 2
#define NX20P348X_ILIM_1_000 3
#define NX20P348X_ILIM_1_200 4
#define NX20P348X_ILIM_1_400 5
#define NX20P348X_ILIM_1_600 6
#define NX20P348X_ILIM_1_800 7
#define NX20P348X_ILIM_2_000 8
#define NX20P348X_ILIM_2_200 9
#define NX20P348X_ILIM_2_400 10
#define NX20P348X_ILIM_2_600 11
#define NX20P348X_ILIM_2_800 12
#define NX20P348X_ILIM_3_000 13
#define NX20P348X_ILIM_3_200 14
#define NX20P348X_ILIM_3_400 15

/* HV VBUS over voltage threshold settings V_mV*/
#define NX20P348X_OVLO_THRESHOLD_MASK 0x7
#define NX20P348X_OVLO_06_0 0
#define NX20P348X_OVLO_06_8 1
#define NX20P348X_OVLO_10_0 2
#define NX20P348X_OVLO_11_5 3
#define NX20P348X_OVLO_14_0 4
#define NX20P348X_OVLO_17_0 5
#define NX20P348X_OVLO_23_0 6

/* Interrupt 1 Register Bits (0x04) */
#define NX20P348X_INT1_DBEXIT_ERR BIT(7)
#define NX20P3481_INT1_FRS_DET BIT(6)
#define NX20P348X_INT1_OV_5VSRC BIT(4)
#define NX20P348X_INT1_RCP_5VSRC BIT(3)
#define NX20P348X_INT1_SC_5VSRC BIT(2)
#define NX20P348X_INT1_OC_5VSRC BIT(1)
#define NX20P348X_INT1_OTP BIT(0)

/* Interrupt 2 Register Bits (0x05) */
#define NX20P348X_INT2_EN_ERR BIT(7)
#define NX20P348X_INT2_RCP_HVSNK BIT(6)
#define NX20P348X_INT2_SC_HVSNK BIT(5)
#define NX20P348X_INT2_OV_HVSNK BIT(4)
#define NX20P348X_INT2_RCP_HVSRC BIT(3)
#define NX20P348X_INT2_SC_HVSRC BIT(2)
#define NX20P348X_INT2_OC_HVSRC BIT(1)
#define NX20P348X_INT2_OV_HVSRC BIT(0)

/**
 * Board override for NX20P348X init.
 *
 * @param port: The Type-C port which triggered the interrupt.
 */
__override_proto int board_nx20p348x_init(int port);

#endif /* defined(__CROS_EC_NX20P348X_H) */