diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2022-01-11 16:22:35 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-01-25 03:19:15 +0000 |
commit | a8d7c043f67aee61280b3851e938f2c1de252f06 (patch) | |
tree | e278a155f6b2e5362c26c21533fbabe29fb5ae98 /src/mainboard/amd/chausie/bootblock.c | |
parent | 421c7d1a9904f1f74d017c053da9cc4a4e1586aa (diff) |
mb/amd/chausie: add mainboard as copy of mb/amd/majolica
To have the new AMD Sabrina SoC code tested, add the AMD Chausie
mainboard as a copy of Majolica. This patch also changes the name from
Majolica to Chausie, selects the Sabrina SoC instead of the Cezanne SoC
and comments out the APCB_SOURCES since those aren't available in the
3rdparty/blobs repository yet.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ic7b18f7a6ae5b8365234dd1227e0b1f7f37279da
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61079
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/mainboard/amd/chausie/bootblock.c')
-rw-r--r-- | src/mainboard/amd/chausie/bootblock.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/amd/chausie/bootblock.c b/src/mainboard/amd/chausie/bootblock.c new file mode 100644 index 0000000000..f768f3f778 --- /dev/null +++ b/src/mainboard/amd/chausie/bootblock.c @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#include <bootblock_common.h> +#include "gpio.h" + +void bootblock_mainboard_early_init(void) +{ + mainboard_program_early_gpios(); +} |