1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <southbridge/intel/common/gpio.h>
4 static const struct pch_gpio_set1 pch_gpio_set1_mode
= {
5 .gpio1
= GPIO_MODE_GPIO
, /* HDD_PRESENCE# */
6 .gpio6
= GPIO_MODE_GPIO
, /* Unknown (Pulled high by R215 to VCC3B) */
7 .gpio7
= GPIO_MODE_GPIO
, /* BDC_PRESENCE# */
8 .gpio8
= GPIO_MODE_GPIO
, /* H8_WAKE# */
9 .gpio9
= GPIO_MODE_GPIO
, /* RTC_BAT_IN# */
10 .gpio10
= GPIO_MODE_GPIO
, /* Unknown (Pulled high by R700 to VCC3M) */
11 .gpio12
= GPIO_MODE_GPIO
, /* H8SCI# */
12 .gpio13
= GPIO_MODE_GPIO
, /* SLICE_ON_3M# */
13 .gpio14
= GPIO_MODE_GPIO
, /* Unknown (Pulled high by R321 to VCC3) */
14 .gpio15
= GPIO_MODE_GPIO
, /* Unknown (Pulled high by R258 to VCC3) */
15 .gpio22
= GPIO_MODE_GPIO
, /* FWH_WP# */
16 .gpio24
= GPIO_MODE_GPIO
,
17 .gpio25
= GPIO_MODE_GPIO
, /* MDC_KILL# */
18 .gpio26
= GPIO_MODE_GPIO
,
19 .gpio27
= GPIO_MODE_GPIO
,
20 .gpio28
= GPIO_MODE_GPIO
,
23 static const struct pch_gpio_set1 pch_gpio_set1_direction
= {
24 .gpio1
= GPIO_DIR_INPUT
,
25 .gpio6
= GPIO_DIR_INPUT
,
26 .gpio7
= GPIO_DIR_INPUT
,
27 .gpio8
= GPIO_DIR_INPUT
,
28 .gpio9
= GPIO_DIR_INPUT
,
29 .gpio10
= GPIO_DIR_INPUT
,
30 .gpio12
= GPIO_DIR_INPUT
,
31 .gpio13
= GPIO_DIR_INPUT
,
32 .gpio14
= GPIO_DIR_INPUT
,
33 .gpio15
= GPIO_DIR_INPUT
,
34 .gpio22
= GPIO_DIR_INPUT
,
35 .gpio24
= GPIO_DIR_OUTPUT
,
36 .gpio25
= GPIO_DIR_OUTPUT
,
37 .gpio26
= GPIO_DIR_OUTPUT
,
38 .gpio27
= GPIO_DIR_OUTPUT
,
39 .gpio28
= GPIO_DIR_OUTPUT
,
42 static const struct pch_gpio_set1 pch_gpio_set1_level
= {
43 .gpio24
= GPIO_LEVEL_HIGH
,
44 .gpio25
= GPIO_LEVEL_HIGH
,
45 .gpio26
= GPIO_LEVEL_LOW
,
46 .gpio27
= GPIO_LEVEL_HIGH
,
47 .gpio28
= GPIO_LEVEL_HIGH
,
50 static const struct pch_gpio_set1 pch_gpio_set1_invert
= {
55 .gpio12
= GPIO_INVERT
,
56 .gpio13
= GPIO_INVERT
,
59 static const struct pch_gpio_set1 pch_gpio_set1_blink
= {
62 static const struct pch_gpio_set2 pch_gpio_set2_mode
= {
63 .gpio33
= GPIO_MODE_GPIO
, /* HDD_PRESENCE_2# */
64 .gpio36
= GPIO_MODE_GPIO
, /* PLANARID0 */
65 .gpio37
= GPIO_MODE_GPIO
, /* PLANARID1 */
66 .gpio38
= GPIO_MODE_GPIO
, /* PLANARID2 */
67 .gpio39
= GPIO_MODE_GPIO
, /* PLANARID3 */
68 .gpio48
= GPIO_MODE_GPIO
, /* FWH_TBL# */
71 static const struct pch_gpio_set2 pch_gpio_set2_direction
= {
72 .gpio33
= GPIO_DIR_OUTPUT
,
73 .gpio36
= GPIO_DIR_INPUT
,
74 .gpio37
= GPIO_DIR_INPUT
,
75 .gpio38
= GPIO_DIR_INPUT
,
76 .gpio39
= GPIO_DIR_INPUT
,
77 .gpio48
= GPIO_DIR_OUTPUT
,
80 static const struct pch_gpio_set2 pch_gpio_set2_level
= {
81 .gpio33
= GPIO_LEVEL_HIGH
,
82 .gpio48
= GPIO_LEVEL_HIGH
,
85 const struct pch_gpio_map mainboard_gpio_map
= {
87 .mode
= &pch_gpio_set1_mode
,
88 .direction
= &pch_gpio_set1_direction
,
89 .level
= &pch_gpio_set1_level
,
90 .blink
= &pch_gpio_set1_blink
,
91 .invert
= &pch_gpio_set1_invert
,
94 .mode
= &pch_gpio_set2_mode
,
95 .direction
= &pch_gpio_set2_direction
,
96 .level
= &pch_gpio_set2_level
,