summaryrefslogtreecommitdiff
path: root/common/espi.c
blob: 4c6a0ed1c22d66218df88d15b9f418b38b6e3b54 (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
/* Copyright (c) 2017 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.
 */

/* eSPI common functionality for Chrome EC */

#include "common.h"
#include "gpio.h"
#include "registers.h"
#include "espi.h"
#include "timer.h"
#include "util.h"


const char *espi_vw_names[] = {
	"VW_SLP_S3_L",
	"VW_SLP_S4_L",
	"VW_SLP_S5_L",
	"VW_SUS_STAT_L",
	"VW_PLTRST_L",
	"VW_OOB_RST_WARN",
	"VW_OOB_RST_ACK",
	"VW_WAKE_L",
	"VW_PME_L",
	"VW_ERROR_FATAL",
	"VW_ERROR_NON_FATAL",
	/* Merge bit 3/0 into one signal. Need to set them simultaneously */
	"VW_SLAVE_BTLD_STATUS_DONE",
	"VW_SCI_L",
	"VW_SMI_L",
	"VW_RCIN_L",
	"VW_HOST_RST_ACK",
	"VW_HOST_RST_WARN",
	"VW_SUS_ACK",
	"VW_SUS_WARN_L",
	"VW_SUS_PWRDN_ACK_L",
	"VW_SLP_A_L",
	"VW_SLP_LAN",
	"VW_SLP_WLAN",
};
BUILD_ASSERT(ARRAY_SIZE(espi_vw_names) == VW_SIGNAL_COUNT);


const char *espi_vw_get_wire_name(enum espi_vw_signal signal)
{
	int idx;

	if ((uint32_t)signal > VW_SIGNAL_BASE) {
		idx = (uint32_t)signal - (VW_SIGNAL_BASE + 1);
		if (idx < ARRAY_SIZE(espi_vw_names))
			return espi_vw_names[idx];
	}

	return NULL;
}


int espi_signal_is_vw(int signal)
{
	enum espi_vw_signal sig = (enum espi_vw_signal)signal;

	if ((sig > VW_SIGNAL_BASE) && (sig < VW_SIGNAL_BASE_END))
		return 1;

	return 0;
}