summaryrefslogtreecommitdiff
path: root/zephyr/program/myst/src/power_signals.c
blob: 83b27cf87e578fffd2507b5bc2ad149aa8c7dc68 (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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/* Copyright 2023 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "ap_power/ap_power.h"
#include "charger.h"
#include "chipset.h"
#include "config.h"
#include "driver/amd_stb.h"
#include "gpio/gpio_int.h"
#include "gpio_signal.h"
#include "hooks.h"
#include "i2c.h"
#include "ioexpander.h"
#include "power.h"
#include "power/amd_x86.h"
#include "throttle_ap.h"
#include "timer.h"

/* Power Signal Input List */
/* TODO: b/218904113: Convert to using Zephyr GPIOs */
const struct power_signal_info power_signal_list[] = {
	[X86_SLP_S3_N] = {
		.gpio = GPIO_PCH_SLP_S3_L,
		.flags = POWER_SIGNAL_ACTIVE_HIGH,
		.name = "SLP_S3_DEASSERTED",
	},
	[X86_SLP_S5_N] = {
		.gpio = GPIO_PCH_SLP_S5_L,
		.flags = POWER_SIGNAL_ACTIVE_HIGH,
		.name = "SLP_S5_DEASSERTED",
	},
	[X86_S0_PGOOD] = {
		.gpio = GPIO_S0_PGOOD,
		.flags = POWER_SIGNAL_ACTIVE_HIGH,
		.name = "S0_PGOOD",
	},
/* looks like we don't have this on Myst.. but POWER_SIGNAL_COUNT is needed */
	[X86_S5_PGOOD] = {
		.gpio = GPIO_S5_PGOOD,
		.flags = POWER_SIGNAL_ACTIVE_HIGH,
		.name = "S5_PGOOD",
	},
};
BUILD_ASSERT(ARRAY_SIZE(power_signal_list) == POWER_SIGNAL_COUNT);

static void handle_prochot(bool asserted, void *data);

const struct prochot_cfg prochot_cfg = {
	.gpio_prochot_in = GPIO_CPU_PROCHOT,
	.callback = handle_prochot,
};

/* Chipset hooks */
static void baseboard_suspend_change(struct ap_power_ev_callback *cb,
				     struct ap_power_ev_data data)
{
	switch (data.event) {
	default:
		return;

	case AP_POWER_SUSPEND:
		/* Disable display backlight and retimer */
		gpio_pin_set_dt(GPIO_DT_FROM_NODELABEL(gpio_ec_disable_disp_bl),
				1);
		break;

	case AP_POWER_RESUME:
		/* Enable retimer and display backlight */
		gpio_pin_set_dt(GPIO_DT_FROM_NODELABEL(gpio_ec_disable_disp_bl),
				0);
		/* Any retimer tuning can be done after the retimer turns on */
		break;
	}
}

static void check_charger_prochot(void)
{
	print_charger_prochot(CHARGER_SOLO);
}
DECLARE_DEFERRED(check_charger_prochot);

static void handle_prochot(bool asserted, void *data)
{
	if (asserted) {
		ccprints("Prochot asserted externally");
		hook_call_deferred(&check_charger_prochot_data, 0);
	} else
		ccprints("Prochot deasserted externally");
}

static void baseboard_init(void)
{
	static struct ap_power_ev_callback cb;

	/* Setup a suspend/resume callback */
	ap_power_ev_init_callback(&cb, baseboard_suspend_change,
				  AP_POWER_RESUME | AP_POWER_SUSPEND);
	ap_power_ev_add_callback(&cb);
	/* Enable Power Group interrupts. */
	gpio_enable_dt_interrupt(GPIO_INT_FROM_NODELABEL(int_pg_groupc_s0));
	gpio_enable_dt_interrupt(GPIO_INT_FROM_NODELABEL(int_pg_lpddr_s3));

	/* Enable thermtrip interrupt */
	gpio_enable_dt_interrupt(GPIO_INT_FROM_NODELABEL(int_soc_thermtrip));

	/* Enable prochot interrupt */
	gpio_enable_dt_interrupt(GPIO_INT_FROM_NODELABEL(int_prochot));
	throttle_ap_config_prochot(&prochot_cfg);
}
DECLARE_HOOK(HOOK_INIT, baseboard_init, HOOK_PRIO_POST_I2C);

/**
 * b/275949288: On G3->S5, wait for RSMRST_L to be deasserted before asserting
 * PCH_PWRBTN_L.  This can be as long as ~65ms after cold boot.  Then wait an
 * additional delay of T1a defined in the EDS before changing the power button.
 */
#define RSMRST_WAIT_DELAY 65
#define EDS_PWR_BTN_RSMRST_T1A_DELAY 16
void board_pwrbtn_to_pch(int level)
{
	timestamp_t start;

	/* Add delay for G3 exit if asserting PWRBTN_L and RSMRST_L is low. */
	if (!level &&
	    !gpio_pin_get_dt(GPIO_DT_FROM_NODELABEL(gpio_ec_soc_rsmrst_l))) {
		start = get_time();
		do {
			usleep(500);
			if (gpio_pin_get_dt(GPIO_DT_FROM_NODELABEL(
				    gpio_ec_soc_rsmrst_l)))
				break;
		} while (time_since32(start) < (RSMRST_WAIT_DELAY * MSEC));

		if (!gpio_pin_get_dt(
			    GPIO_DT_FROM_NODELABEL(gpio_ec_soc_rsmrst_l)))
			ccprints("Error pwrbtn: RSMRST_L still low");

		msleep(EDS_PWR_BTN_RSMRST_T1A_DELAY);
	}
	gpio_pin_set_dt(GPIO_DT_FROM_NODELABEL(gpio_ec_mech_pwr_btn_odl),
			level);
}

/* Note: signal parameter unused */
void baseboard_set_soc_pwr_pgood(enum gpio_signal unused)
{
	gpio_pin_set_dt(GPIO_DT_FROM_NODELABEL(gpio_ec_soc_pwr_good),
			gpio_pin_get_dt(GPIO_DT_FROM_NODELABEL(
				gpio_pg_pcore_s0_r_od)) &&
				gpio_pin_get_dt(GPIO_DT_FROM_NODELABEL(
					gpio_pg_groupc_s0_od)));
}

void baseboard_s0_pgood(enum gpio_signal signal)
{
	baseboard_set_soc_pwr_pgood(signal);

	/* Chain off power signal interrupt handler for PG_PCORE_S0_R_OD */
	power_signal_interrupt(signal);
}

/* Note: signal parameter unused */
void baseboard_set_en_pwr_pcore(enum gpio_signal unused)
{
	/*
	 * EC must AND signals PG_LPDDR5_S3_OD, PG_GROUPC_S0_OD, and
	 * EN_PWR_S0_R
	 */
	gpio_pin_set_dt(
		GPIO_DT_FROM_NODELABEL(gpio_pg_pcore_s0_r_od),
		gpio_pin_get_dt(GPIO_DT_FROM_NODELABEL(gpio_pg_lpddr5_s3_od)) &&
			gpio_pin_get_dt(
				GPIO_DT_FROM_NODELABEL(gpio_pg_groupc_s0_od)) &&
			gpio_pin_get_dt(
				GPIO_DT_FROM_NODELABEL(gpio_en_pwr_s0)));

	/* Update EC_SOC_PWR_GOOD based on our results */
	baseboard_set_soc_pwr_pgood(unused);
}

void baseboard_en_pwr_s0(enum gpio_signal signal)
{
	/* EC must AND signals SLP_S3_L and PG_PWR_S5 */
	gpio_pin_set_dt(
		GPIO_DT_FROM_NODELABEL(gpio_en_pwr_s0),
		gpio_pin_get_dt(GPIO_DT_FROM_NODELABEL(gpio_slp_s3_l)) &&
			gpio_pin_get_dt(
				GPIO_DT_FROM_NODELABEL(gpio_pg_pwr_s5)));

	/* Change EN_PWR_PCORE_S0_R if needed*/
	baseboard_set_en_pwr_pcore(signal);

	/* Now chain off to the normal power signal interrupt handler. */
	power_signal_interrupt(signal);
}

void baseboard_s5_pgood(enum gpio_signal signal)
{
	/* Continue to our signal AND-ing and power interrupt */
	baseboard_en_pwr_s0(signal);
}

void baseboard_set_en_pwr_s3(enum gpio_signal signal)
{
	/* Chain off the normal power signal interrupt handler */
	power_signal_interrupt(signal);
}

void baseboard_soc_thermtrip(enum gpio_signal signal)
{
	ccprints("SoC thermtrip reported, shutting down");
	chipset_force_shutdown(CHIPSET_SHUTDOWN_THERMAL);
}