summaryrefslogtreecommitdiff
path: root/zephyr/projects/intelrvp/src/usb_pd_policy_mecc_1_1.c
blob: a194b358f1da098f47b6199064ddc05c7286f464 (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
/* 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.
 */

#include "console.h"
#include "gpio.h"
#include "intelrvp.h"
#include "usb_mux.h"
#include "usbc_ppc.h"

#define CPRINTF(format, args...) cprintf(CC_USBPD, format, ##args)
#define CPRINTS(format, args...) cprints(CC_USBPD, format, ##args)

static inline void board_pd_set_vbus_discharge(int port, bool enable)
{
	if (tcpc_aic_gpios[port].ppc_intr_handler) {
		ppc_discharge_vbus(port, enable);
	} else {
		tcpc_discharge_vbus(port, enable);
	}
}

int pd_set_power_supply_ready(int port)
{
	int rv;

	/* Disable charging. */
	if (tcpc_aic_gpios[port].ppc_intr_handler) {
		rv = ppc_vbus_sink_enable(port, 0);
	} else {
		rv = tcpc_config[port].drv->set_snk_ctrl(port, 0);
	}

	if (rv) {
		return rv;
	}

	board_pd_set_vbus_discharge(port, false);

	/* Provide Vbus. */
	if (tcpc_aic_gpios[port].ppc_intr_handler) {
		rv = ppc_vbus_source_enable(port, 1);
	} else {
		tcpc_config[port].drv->set_src_ctrl(port, 1);
	}

	if (rv) {
		return rv;
	}

	/* Notify host of power info change. */
	pd_send_host_event(PD_EVENT_POWER_CHANGE);

	return EC_SUCCESS;
}

void pd_power_supply_reset(int port)
{
	int prev_en;

	prev_en = board_vbus_source_enabled(port);

	/* Disable VBUS. */
	if (tcpc_aic_gpios[port].ppc_intr_handler) {
		ppc_vbus_source_enable(port, 0);
	} else {
		tcpc_config[port].drv->set_src_ctrl(port, 0);
	}

	/* Enable discharge if we were previously sourcing 5V */
	if (prev_en) {
		board_pd_set_vbus_discharge(port, true);
	}

	/* Notify host of power info change. */
	pd_send_host_event(PD_EVENT_POWER_CHANGE);
}

int pd_check_vconn_swap(int port)
{
	/* Only allow vconn swap if PP3300 rail is enabled */
	return gpio_get_level(GPIO_EN_PP3300_A);
}

int pd_snk_is_vbus_provided(int port)
{
	if (tcpc_aic_gpios[port].ppc_intr_handler) {
		return ppc_is_vbus_present(port);
	} else {
		return tcpc_config[port].drv->check_vbus_level(port,
							       VBUS_PRESENT);
	}
}

int board_vbus_source_enabled(int port)
{
	if (is_typec_port(port)) {
		if (tcpc_aic_gpios[port].ppc_intr_handler) {
			return ppc_is_sourcing_vbus(port);
		} else {
			return tcpc_config[port].drv->get_src_ctrl(port);
		}
	}
	return 0;
}