summaryrefslogtreecommitdiff
path: root/src/mainboard/lippert/toucan-af/romstage.c
diff options
context:
space:
mode:
authorMike Banon <mikebdp2@gmail.com>2020-02-13 16:29:11 +0000
committerPatrick Georgi <pgeorgi@google.com>2020-02-24 13:55:18 +0000
commit6ed9df448b4d025a4caa01b594fca90724eef691 (patch)
tree551d09700056b14b5f1da551c1b8e537aaad8c65 /src/mainboard/lippert/toucan-af/romstage.c
parentc896df7f158cf759906f4f164330fb552bbe0fec (diff)
downloadcoreboot-6ed9df448b4d025a4caa01b594fca90724eef691.tar.xz
mb/lippert/toucan-af: Switch away from ROMCC_BOOTBLOCK
Warning: Not tested on hardware. Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Signed-off-by: Mike Banon <mikebdp2@gmail.com> Change-Id: I22774a6d6a32c2fb8340f5ac678befe0d5f8ad75 Reviewed-on: https://review.coreboot.org/c/coreboot/+/38878 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/lippert/toucan-af/romstage.c')
-rw-r--r--src/mainboard/lippert/toucan-af/romstage.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/mainboard/lippert/toucan-af/romstage.c b/src/mainboard/lippert/toucan-af/romstage.c
deleted file mode 100644
index ebbe4fc0df..0000000000
--- a/src/mainboard/lippert/toucan-af/romstage.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2011 Advanced Micro Devices, Inc.
- *
- * 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.
- */
-
-#include <northbridge/amd/agesa/state_machine.h>
-#include <superio/winbond/common/winbond.h>
-#include <superio/winbond/w83627dhg/w83627dhg.h>
-#include <sb_cimx.h>
-
-#define SERIAL_DEV PNP_DEV(0x4e, W83627DHG_SP1)
-
-void board_BeforeAgesa(struct sysinfo *cb)
-{
- sb_Poweron_Init();
- winbond_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
-}