diff options
author | Felix Singer <felixsinger@posteo.net> | 2020-11-21 13:38:05 +0000 |
---|---|---|
committer | Michael Niewöhner <foss@mniewoehner.de> | 2020-11-23 12:01:56 +0000 |
commit | ce4ecfed577ab4b9e06ad6cd0b30d5d9f536877b (patch) | |
tree | a779ac2ecfd0298cfd13935d3689d32f302696c2 /src/mainboard/clevo/cml-u/variants | |
parent | e7265a9b10c0bb8169891b3927ebe9e2d31cdd18 (diff) |
mb/clevo/cml-u: Move bootblock.c and ramstage.c to mb level
Change-Id: Ifca49c656f259b08fb8ab47fe36e93c146f25266
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/47834
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard/clevo/cml-u/variants')
-rw-r--r-- | src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc | 2 | ||||
-rw-r--r-- | src/mainboard/clevo/cml-u/variants/l140cu/bootblock.c | 10 | ||||
-rw-r--r-- | src/mainboard/clevo/cml-u/variants/l140cu/ramstage.c | 11 |
3 files changed, 0 insertions, 23 deletions
diff --git a/src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc b/src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc index 57ad0ca19f..0e47d8680f 100644 --- a/src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc +++ b/src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc @@ -1,4 +1,2 @@ -bootblock-y += bootblock.c romstage-y += romstage.c -ramstage-y += ramstage.c SPD_SOURCES = samsung-K4AAG165WA-BCTD diff --git a/src/mainboard/clevo/cml-u/variants/l140cu/bootblock.c b/src/mainboard/clevo/cml-u/variants/l140cu/bootblock.c deleted file mode 100644 index 427b02328f..0000000000 --- a/src/mainboard/clevo/cml-u/variants/l140cu/bootblock.c +++ /dev/null @@ -1,10 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ - -#include <bootblock_common.h> -#include <gpio.h> -#include <variant/gpio.h> - -void bootblock_mainboard_init(void) -{ - gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table)); -} diff --git a/src/mainboard/clevo/cml-u/variants/l140cu/ramstage.c b/src/mainboard/clevo/cml-u/variants/l140cu/ramstage.c deleted file mode 100644 index 037409cd6a..0000000000 --- a/src/mainboard/clevo/cml-u/variants/l140cu/ramstage.c +++ /dev/null @@ -1,11 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ - -#include <soc/ramstage.h> -#include <variant/gpio.h> - -void mainboard_silicon_init_params(FSP_S_CONFIG *params) -{ - /* Configure pads prior to SiliconInit() in case there's any - dependencies during hardware initialization. */ - cnl_configure_pads(gpio_table, ARRAY_SIZE(gpio_table)); -} |