summaryrefslogtreecommitdiff
path: root/driver/usb_mux/it5205.c
blob: de3d950c86b289257017e4aa9c2f08fa4abe2a4f (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* Copyright 2017 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 *
 * ITE IT5205 Type-C USB alternate mode mux.
 */

#include "common.h"
#include "i2c.h"
#include "it5205.h"
#include "util.h"

#define MUX_STATE_DP_USB_MASK (USB_PD_MUX_USB_ENABLED | USB_PD_MUX_DP_ENABLED)

static int it5205_read(const struct usb_mux *me, uint8_t reg, int *val)
{
	return i2c_read8(me->i2c_port, me->i2c_addr_flags, reg, val);
}

static int it5205_write(const struct usb_mux *me, uint8_t reg, uint8_t val)
{
	return i2c_write8(me->i2c_port, me->i2c_addr_flags, reg, val);
}

static int it5205h_sbu_update(const struct usb_mux *me, uint8_t reg,
			      uint8_t mask, enum mask_update_action action)
{
	return i2c_update8(me->i2c_port, IT5205H_SBU_I2C_ADDR_FLAGS, reg, mask,
			   action);
}

static int it5205h_sbu_field_update(const struct usb_mux *me, uint8_t reg,
				    uint8_t field_mask, uint8_t set_value)
{
	return i2c_field_update8(me->i2c_port, IT5205H_SBU_I2C_ADDR_FLAGS, reg,
				 field_mask, set_value);
}

struct mux_chip_id_t {
	uint8_t chip_id;
	uint8_t reg;
};

static const struct mux_chip_id_t mux_chip_id_verify[] = {
	{ '5', IT5205_REG_CHIP_ID3 },
	{ '2', IT5205_REG_CHIP_ID2 },
	{ '0', IT5205_REG_CHIP_ID1 },
	{ '5', IT5205_REG_CHIP_ID0 },
};

static int it5205_init(const struct usb_mux *me)
{
	int i, val, ret;

	/* bit[0]: mux power on, bit[7-1]: reserved. */
	ret = it5205_write(me, IT5205_REG_MUXPDR, 0);
	if (ret)
		return ret;
	/*  Verify chip ID registers. */
	for (i = 0; i < ARRAY_SIZE(mux_chip_id_verify); i++) {
		ret = it5205_read(me, mux_chip_id_verify[i].reg, &val);
		if (ret)
			return ret;

		if (val != mux_chip_id_verify[i].chip_id)
			return EC_ERROR_UNKNOWN;
	}

	if (IS_ENABLED(CONFIG_USB_MUX_IT5205H_SBU_OVP)) {
		RETURN_ERROR(it5205h_sbu_field_update(
			me, IT5205H_REG_VSR, IT5205H_VREF_SELECT_MASK,
			IT5205H_VREF_SELECT_3_3V));

		RETURN_ERROR(it5205h_sbu_field_update(me, IT5205H_REG_CSBUOVPSR,
						      IT5205H_OVP_SELECT_MASK,
						      IT5205H_OVP_3_68V));

		RETURN_ERROR(it5205h_sbu_update(
			me, IT5205H_REG_ISR, IT5205H_ISR_CSBU_MASK, MASK_CLR));

		RETURN_ERROR(it5205h_enable_csbu_switch(me, true));
	}

	return EC_SUCCESS;
}

enum ec_error_list it5205h_enable_csbu_switch(const struct usb_mux *me, bool en)
{
	return it5205h_sbu_update(me, IT5205H_REG_CSBUSR, IT5205H_CSBUSR_SWITCH,
				  en ? MASK_SET : MASK_CLR);
}

/* Writes control register to set switch mode */
static int it5205_set_mux(const struct usb_mux *me, mux_state_t mux_state,
			  bool *ack_required)
{
	uint8_t reg;

	/* This driver does not use host command ACKs */
	*ack_required = false;

	/* This driver treats safe mode as none */
	if (mux_state == USB_PD_MUX_SAFE_MODE)
		mux_state = USB_PD_MUX_NONE;

	switch (mux_state & MUX_STATE_DP_USB_MASK) {
	case USB_PD_MUX_USB_ENABLED:
		reg = IT5205_USB;
		break;
	case USB_PD_MUX_DP_ENABLED:
		reg = IT5205_DP;
		break;
	case MUX_STATE_DP_USB_MASK:
		reg = IT5205_DP_USB;
		break;
	default:
		reg = 0;
		break;
	}

	if (mux_state & USB_PD_MUX_POLARITY_INVERTED)
		reg |= IT5205_POLARITY_INVERTED;

	return it5205_write(me, IT5205_REG_MUXCR, reg);
}

/* Reads control register and updates mux_state accordingly */
static int it5205_get_mux(const struct usb_mux *me, mux_state_t *mux_state)
{
	int reg, ret;

	ret = it5205_read(me, IT5205_REG_MUXCR, &reg);
	if (ret)
		return ret;

	switch (reg & IT5205_DP_USB_CTRL_MASK) {
	case IT5205_USB:
		*mux_state = USB_PD_MUX_USB_ENABLED;
		break;
	case IT5205_DP:
		*mux_state = USB_PD_MUX_DP_ENABLED;
		break;
	case IT5205_DP_USB:
		*mux_state = MUX_STATE_DP_USB_MASK;
		break;
	default:
		*mux_state = 0;
		break;
	}

	if (reg & IT5205_POLARITY_INVERTED)
		*mux_state |= USB_PD_MUX_POLARITY_INVERTED;

	return EC_SUCCESS;
}

static int it5205_enter_low_power_mode(const struct usb_mux *me)
{
	int rv;

	/* Turn off all switches */
	rv = it5205_write(me, IT5205_REG_MUXCR, 0);

	if (rv)
		return rv;

	/* Power down mux */
	return it5205_write(me, IT5205_REG_MUXPDR, IT5205_MUX_POWER_DOWN);
}

const struct usb_mux_driver it5205_usb_mux_driver = {
	.init = &it5205_init,
	.set = &it5205_set_mux,
	.get = &it5205_get_mux,
	.enter_low_power_mode = &it5205_enter_low_power_mode,
};