summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2020-11-21 13:45:34 +0000
committerMichael Niewöhner <foss@mniewoehner.de>2020-11-23 12:02:09 +0000
commit79c42635ae9f5be496ead2d760a63d0ab40a5f14 (patch)
treecdd254bef4c8694c5a5df026a4a6b02d576ab9e3 /src
parentce4ecfed577ab4b9e06ad6cd0b30d5d9f536877b (diff)
downloadcoreboot-79c42635ae9f5be496ead2d760a63d0ab40a5f14.tar.gz
coreboot-79c42635ae9f5be496ead2d760a63d0ab40a5f14.tar.bz2
coreboot-79c42635ae9f5be496ead2d760a63d0ab40a5f14.zip
mb/clevo/cml-u: Get rid of cnl_configure_pads()
Get rid of cnl_configure_pads() since it is a hack for the FSP. Instead, hook up to the mainboard_ops driver and configure the GPIOs using .init. Tested on clevo/l140cu and it still boots. Change-Id: I75dd15ab6d2b3b72b3ad0398df87b349fd00bc3c Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47835 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/clevo/cml-u/ramstage.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/mainboard/clevo/cml-u/ramstage.c b/src/mainboard/clevo/cml-u/ramstage.c
index 037409cd6a48..824adfc13449 100644
--- a/src/mainboard/clevo/cml-u/ramstage.c
+++ b/src/mainboard/clevo/cml-u/ramstage.c
@@ -1,11 +1,13 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#include <soc/ramstage.h>
+#include <device/device.h>
#include <variant/gpio.h>
-void mainboard_silicon_init_params(FSP_S_CONFIG *params)
+static void init_mainboard(void *chip_info)
{
- /* Configure pads prior to SiliconInit() in case there's any
- dependencies during hardware initialization. */
- cnl_configure_pads(gpio_table, ARRAY_SIZE(gpio_table));
+ gpio_configure_pads(gpio_table, ARRAY_SIZE(gpio_table));
}
+
+struct chip_operations mainboard_ops = {
+ .init = init_mainboard,
+};