aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/fizz/variants/baseboard/include/baseboard/gpio.h
blob: 1778b81cbcbb45e13f65d7304d8be88271fb3d7b (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
/*
 * This file is part of the coreboot project.
 *
 *
 * 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/gpe.h>
#include <soc/gpio.h>

/* EC in RW */
#define GPIO_EC_IN_RW		GPP_C6

/* BIOS Flash Write Protect */
#define GPIO_PCH_WP		GPP_C23

/* EC wake is LAN_WAKE# which is a special DeepSX wake pin */
#define GPE_EC_WAKE		GPE0_LAN_WAK

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

/* SKU_ID GPIOs */
#define GPIO_SKU_ID0		GPP_C12
#define GPIO_SKU_ID1		GPP_C13
#define GPIO_SKU_ID2		GPP_C14
#define GPIO_SKU_ID3		GPP_C15

/* OEM ID GPIOs */
#define GPIO_OEM_ID1		GPP_D10
#define GPIO_OEM_ID2		GPP_D11
#define GPIO_OEM_ID3		GPP_D12

#endif /* BASEBOARD_GPIO_H */