Change-Id: Icca8bac5e67f83dfc5a8f5ef1cb87c6432e0a236 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/20342 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
125 lines
3.3 KiB
C
125 lines
3.3 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2016 Arthur Heymans <arthur@aheymans.xyz>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <southbridge/intel/common/gpio.h>
|
|
|
|
static const struct pch_gpio_set1 pch_gpio_set1_mode = {
|
|
.gpio1 = GPIO_MODE_GPIO,
|
|
.gpio5 = GPIO_MODE_GPIO,
|
|
.gpio6 = GPIO_MODE_GPIO,
|
|
.gpio7 = GPIO_MODE_GPIO,
|
|
.gpio8 = GPIO_MODE_GPIO,
|
|
.gpio9 = GPIO_MODE_GPIO,
|
|
.gpio10 = GPIO_MODE_GPIO,
|
|
.gpio12 = GPIO_MODE_GPIO,
|
|
.gpio13 = GPIO_MODE_GPIO,
|
|
.gpio14 = GPIO_MODE_GPIO,
|
|
.gpio15 = GPIO_MODE_GPIO,
|
|
.gpio22 = GPIO_MODE_GPIO,
|
|
.gpio24 = GPIO_MODE_GPIO,
|
|
.gpio25 = GPIO_MODE_GPIO,
|
|
.gpio26 = GPIO_MODE_GPIO,
|
|
.gpio27 = GPIO_MODE_GPIO,
|
|
.gpio28 = GPIO_MODE_GPIO,
|
|
};
|
|
|
|
static const struct pch_gpio_set1 pch_gpio_set1_direction = {
|
|
.gpio1 = GPIO_DIR_INPUT,
|
|
.gpio5 = GPIO_DIR_OUTPUT,
|
|
.gpio6 = GPIO_DIR_OUTPUT,
|
|
.gpio7 = GPIO_DIR_INPUT,
|
|
.gpio8 = GPIO_DIR_INPUT,
|
|
.gpio9 = GPIO_DIR_INPUT,
|
|
.gpio10 = GPIO_DIR_INPUT,
|
|
.gpio12 = GPIO_DIR_OUTPUT,
|
|
.gpio13 = GPIO_DIR_INPUT,
|
|
.gpio14 = GPIO_DIR_OUTPUT,
|
|
.gpio15 = GPIO_DIR_INPUT,
|
|
.gpio22 = GPIO_DIR_OUTPUT,
|
|
.gpio24 = GPIO_DIR_OUTPUT,
|
|
.gpio25 = GPIO_DIR_INPUT,
|
|
.gpio26 = GPIO_DIR_INPUT,
|
|
.gpio27 = GPIO_DIR_INPUT,
|
|
.gpio28 = GPIO_DIR_INPUT,
|
|
};
|
|
|
|
static const struct pch_gpio_set1 pch_gpio_set1_level = {
|
|
#if IS_ENABLED(CONFIG_BOARD_APPLE_MACBOOK11) || \
|
|
IS_ENABLED(CONFIG_BOARD_APPLE_MACBOOK21)
|
|
.gpio5 = GPIO_LEVEL_LOW,
|
|
#else /* CONFIG_BOARD_APPLE_IMAC52 */
|
|
.gpio5 = GPIO_LEVEL_HIGH,
|
|
#endif
|
|
.gpio6 = GPIO_LEVEL_HIGH,
|
|
.gpio12 = GPIO_LEVEL_LOW,
|
|
.gpio14 = GPIO_LEVEL_HIGH,
|
|
.gpio22 = GPIO_LEVEL_HIGH,
|
|
.gpio24 = GPIO_LEVEL_LOW,
|
|
};
|
|
|
|
static const struct pch_gpio_set1 pch_gpio_set1_invert = {
|
|
.gpio1 = GPIO_INVERT,
|
|
.gpio7 = GPIO_INVERT,
|
|
#if IS_ENABLED(CONFIG_BOARD_APPLE_MACBOOK11) || \
|
|
IS_ENABLED(CONFIG_BOARD_APPLE_MACBOOK21)
|
|
.gpio13 = GPIO_INVERT,
|
|
#endif
|
|
};
|
|
|
|
static const struct pch_gpio_set1 pch_gpio_set1_blink = {
|
|
};
|
|
|
|
static const struct pch_gpio_set2 pch_gpio_set2_mode = {
|
|
#if IS_ENABLED(CONFIG_BOARD_APPLE_IMAC52)
|
|
.gpio35 = GPIO_MODE_GPIO,
|
|
#endif
|
|
.gpio38 = GPIO_MODE_GPIO,
|
|
.gpio39 = GPIO_MODE_GPIO,
|
|
.gpio48 = GPIO_MODE_GPIO,
|
|
};
|
|
|
|
static const struct pch_gpio_set2 pch_gpio_set2_direction = {
|
|
#if IS_ENABLED(CONFIG_BOARD_APPLE_IMAC52)
|
|
.gpio35 = GPIO_DIR_OUTPUT,
|
|
#endif
|
|
.gpio38 = GPIO_DIR_OUTPUT,
|
|
.gpio39 = GPIO_DIR_OUTPUT,
|
|
.gpio48 = GPIO_DIR_OUTPUT,
|
|
};
|
|
|
|
static const struct pch_gpio_set2 pch_gpio_set2_level = {
|
|
#if IS_ENABLED(CONFIG_BOARD_APPLE_IMAC52)
|
|
.gpio35 = GPIO_LEVEL_LOW,
|
|
#endif
|
|
.gpio38 = GPIO_LEVEL_HIGH,
|
|
.gpio39 = GPIO_LEVEL_HIGH,
|
|
.gpio48 = GPIO_LEVEL_HIGH,
|
|
};
|
|
|
|
const struct pch_gpio_map mainboard_gpio_map = {
|
|
.set1 = {
|
|
.mode = &pch_gpio_set1_mode,
|
|
.direction = &pch_gpio_set1_direction,
|
|
.level = &pch_gpio_set1_level,
|
|
.blink = &pch_gpio_set1_blink,
|
|
.invert = &pch_gpio_set1_invert,
|
|
},
|
|
.set2 = {
|
|
.mode = &pch_gpio_set2_mode,
|
|
.direction = &pch_gpio_set2_direction,
|
|
.level = &pch_gpio_set2_level,
|
|
},
|
|
};
|