summaryrefslogtreecommitdiff
path: root/common/espi.c
blob: 0a747d3bdac02c129e715067f7d599fb249795b1 (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
/* Copyright 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_PERIPHERAL_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)
{
	if (espi_signal_is_vw(signal))
		return espi_vw_names[signal - VW_SIGNAL_START];

	return NULL;
}


int espi_signal_is_vw(int signal)
{
	return ((signal >= VW_SIGNAL_START) && (signal < VW_SIGNAL_END));
}