aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/hatch/variants/baseboard/include/baseboard/gpio.h
blob: 5d6311ba24363f6e7df9b71b0f6974d704f4123c (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
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2018 Google LLC
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef BASEBOARD_GPIO_H
#define BASEBOARD_GPIO_H

#include <soc/gpio.h>

#define GPIO_EC_IN_RW	        GPP_C22

#define GPIO_PCH_WP	        GPP_C20

/* Memory configuration board straps */
#define GPIO_MEM_CONFIG_0	GPP_F20
#define GPIO_MEM_CONFIG_1	GPP_F21
#define GPIO_MEM_CONFIG_2	GPP_F11
#define GPIO_MEM_CONFIG_3	GPP_F22


/* EC wake pin is LAN_WAKE# */
#define GPE_EC_WAKE		GPE0_LAN_WAK

/* eSPI virtual wire reporting */
#define EC_SCI_GPI		GPE0_ESPI

/* EC sync irq is GPP_C13_IRQ */
#define EC_SYNC_IRQ             GPP_C13_IRQ

#endif /* BASEBOARD_GPIO_H */