diff options
author | Werner Zeh <werner.zeh@siemens.com> | 2017-10-16 08:44:15 +0200 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2017-10-19 15:13:45 +0000 |
commit | 0e35eb2434026293db5ab2e466c479b91d634311 (patch) | |
tree | 2d3a71e3f20fa4ab89a298703d1e26db69bd387b /src/mainboard | |
parent | 4bf11ce2b5de81ec0bd6799f4830a48c7376c122 (diff) | |
download | coreboot-0e35eb2434026293db5ab2e466c479b91d634311.tar.xz |
siemens/mc_bdx1: Initialize GPIOs
Add GPIO initialization for mc_bdx1 mainboard. Call init_gpios() as
early as possible as FSP will set up things (like hiding PCI devices)
rather early. If connections on the mainboard are dependent on GPIO
settings then FSP can screw things up (e.g. disabling not yet connected
PCI root ports).
Change-Id: I003277cfb871f861900b7fcdc5ec851d4c1c1e6a
Signed-off-by: Werner Zeh <werner.zeh@siemens.com>
Reviewed-on: https://review.coreboot.org/22035
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/siemens/mc_bdx1/gpio.h | 92 | ||||
-rw-r--r-- | src/mainboard/siemens/mc_bdx1/romstage.c | 5 |
2 files changed, 96 insertions, 1 deletions
diff --git a/src/mainboard/siemens/mc_bdx1/gpio.h b/src/mainboard/siemens/mc_bdx1/gpio.h new file mode 100644 index 0000000000..5b5555d204 --- /dev/null +++ b/src/mainboard/siemens/mc_bdx1/gpio.h @@ -0,0 +1,92 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2017 Siemens AG + * + * 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 MC_BDX1_GPIO_H_ +#define MC_BDX1_GPIO_H_ + +#include <soc/gpio.h> + +static const struct gpio_config mc_bdx1_gpio_config[] = { + PCH_GPIO_OUT_LOW(0), + PCH_GPIO_OUT_LOW(1), + PCH_GPIO_INPUT(2), + PCH_GPIO_INPUT(3), + PCH_GPIO_INPUT(4), + PCH_GPIO_INPUT(5), + PCH_GPIO_OUT_LOW(6), + PCH_GPIO_INPUT_INVERT(7), + PCH_GPIO_OUT_LOW(8), + PCH_GPIO_NATIVE(9), + PCH_GPIO_NATIVE(10), + PCH_GPIO_NATIVE(11), + PCH_GPIO_INPUT(12), + PCH_GPIO_NATIVE(14), + PCH_GPIO_INPUT_INVERT(15), + PCH_GPIO_OUT_LOW(16), + PCH_GPIO_NATIVE(17), + PCH_GPIO_OUT_HIGH(18), + PCH_GPIO_NATIVE(19), + PCH_GPIO_NATIVE(20), + PCH_GPIO_NATIVE(21), + PCH_GPIO_NATIVE(22), + PCH_GPIO_NATIVE(23), + PCH_GPIO_INPUT(24), + PCH_GPIO_OUT_HIGH(25), + PCH_GPIO_NATIVE(26), + PCH_GPIO_INPUT(27), + PCH_GPIO_OUT_HIGH(28), + PCH_GPIO_OUT_HIGH(29), + PCH_GPIO_NATIVE(30), + PCH_GPIO_INPUT(31), + PCH_GPIO_NATIVE(32), + PCH_GPIO_NATIVE(33), + PCH_GPIO_OUT_HIGH(35), + PCH_GPIO_NATIVE(36), + PCH_GPIO_NATIVE(37), + PCH_GPIO_NATIVE(38), + PCH_GPIO_NATIVE(39), + PCH_GPIO_INPUT(40), + PCH_GPIO_INPUT(41), + PCH_GPIO_INPUT(42), + PCH_GPIO_NATIVE(43), + PCH_GPIO_NATIVE(44), + PCH_GPIO_NATIVE(45), + PCH_GPIO_NATIVE(46), + PCH_GPIO_NATIVE(48), + PCH_GPIO_INPUT(49), + PCH_GPIO_NATIVE(50), + PCH_GPIO_NATIVE(51), + PCH_GPIO_NATIVE(52), + PCH_GPIO_NATIVE(53), + PCH_GPIO_NATIVE(54), + PCH_GPIO_NATIVE(55), + PCH_GPIO_NATIVE(57), + PCH_GPIO_NATIVE(58), + PCH_GPIO_NATIVE(59), + PCH_GPIO_NATIVE(60), + PCH_GPIO_NATIVE(61), + PCH_GPIO_NATIVE(62), + PCH_GPIO_NATIVE(65), + PCH_GPIO_OUT_LOW(67), + PCH_GPIO_NATIVE(68), + PCH_GPIO_NATIVE(69), + PCH_GPIO_NATIVE(70), + PCH_GPIO_NATIVE(71), + PCH_GPIO_INPUT(72), + PCH_GPIO_NATIVE(74), + PCH_GPIO_NATIVE(75), + PCH_GPIO_END +}; + +#endif /* MC_BDX1_GPIO_H_ */ diff --git a/src/mainboard/siemens/mc_bdx1/romstage.c b/src/mainboard/siemens/mc_bdx1/romstage.c index cf52c01f04..eec8f04d3d 100644 --- a/src/mainboard/siemens/mc_bdx1/romstage.c +++ b/src/mainboard/siemens/mc_bdx1/romstage.c @@ -3,6 +3,7 @@ * * Copyright (C) 2013 Google Inc. * Copyright (C) 2015 Intel Corp. + * Copyright (C) 2017 Siemens AG * * 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 @@ -17,6 +18,8 @@ #include <stddef.h> #include <soc/romstage.h> #include <drivers/intel/fsp1_0/fsp_util.h> +#include <soc/gpio.h> +#include "gpio.h" /** * /brief mainboard call for setup that needs to be done before fsp init @@ -24,7 +27,7 @@ */ void early_mainboard_romstage_entry(void) { - + init_gpios(mc_bdx1_gpio_config); } /** |