diff options
author | Tim Crawford <tcrawford@system76.com> | 2022-07-17 16:21:52 -0600 |
---|---|---|
committer | Martin Roth <martin.roth@amd.corp-partner.google.com> | 2022-07-23 20:03:25 +0000 |
commit | 0d27fb8c44eab9af22001b342b807cd761469750 (patch) | |
tree | b173b895f557d3c6178d4a02aee6bf4e9e06c461 /src/mainboard/system76/tgl-u/bootblock.c | |
parent | ff93c93fefbe19e0f149c70eac816a69ec011ac6 (diff) |
mb/system76/tgl-u: Convert lemp10 to variant setup
Change-Id: I11f2ebb94b0e9a3e2c18c5b2071ccc3e03c16655
Signed-off-by: Tim Crawford <tcrawford@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64525
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/system76/tgl-u/bootblock.c')
-rw-r--r-- | src/mainboard/system76/tgl-u/bootblock.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mainboard/system76/tgl-u/bootblock.c b/src/mainboard/system76/tgl-u/bootblock.c new file mode 100644 index 0000000000..ae416b4e77 --- /dev/null +++ b/src/mainboard/system76/tgl-u/bootblock.c @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include <bootblock_common.h> +#include <gpio.h> +#include <mainboard/gpio.h> + +void bootblock_mainboard_early_init(void) +{ + mainboard_configure_early_gpios(); +} |