Stefan thinks they don't add value. Command used: sed -i -e '/file is part of /d' $(git grep "file is part of " |egrep ":( */\*.*\*/\$|#|;#|-- | *\* )" | cut -d: -f1 |grep -v crossgcc |grep -v gcov | grep -v /elf.h |grep -v nvramtool) The exceptions are for: - crossgcc (patch file) - gcov (imported from gcc) - elf.h (imported from GNU's libc) - nvramtool (more complicated header) The removed lines are: - fmt.Fprintln(f, "/* This file is part of the coreboot project. */") -# This file is part of a set of unofficial pre-commit hooks available -/* This file is part of coreboot */ -# This file is part of msrtool. -/* This file is part of msrtool. */ - * This file is part of ncurses, designed to be appended after curses.h.in -/* This file is part of pgtblgen. */ - * This file is part of the coreboot project. - /* This file is part of the coreboot project. */ -# This file is part of the coreboot project. -# This file is part of the coreboot project. -## This file is part of the coreboot project. --- This file is part of the coreboot project. -/* This file is part of the coreboot project */ -/* This file is part of the coreboot project. */ -;## This file is part of the coreboot project. -# This file is part of the coreboot project. It originated in the - * This file is part of the coreinfo project. -## This file is part of the coreinfo project. - * This file is part of the depthcharge project. -/* This file is part of the depthcharge project. */ -/* This file is part of the ectool project. */ - * This file is part of the GNU C Library. - * This file is part of the libpayload project. -## This file is part of the libpayload project. -/* This file is part of the Linux kernel. */ -## This file is part of the superiotool project. -/* This file is part of the superiotool project */ -/* This file is part of uio_usbdebug */ Change-Id: I82d872b3b337388c93d5f5bf704e9ee9e53ab3a9 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
65 lines
1.9 KiB
C
65 lines
1.9 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <AGESA.h>
|
|
#include <northbridge/amd/agesa/BiosCallOuts.h>
|
|
#include <northbridge/amd/agesa/state_machine.h>
|
|
|
|
#include <vendorcode/amd/agesa/f15tn/Proc/Fch/FchPlatform.h>
|
|
|
|
const BIOS_CALLOUT_STRUCT BiosCallouts[] =
|
|
{
|
|
{AGESA_DO_RESET, agesa_Reset },
|
|
{AGESA_READ_SPD, agesa_ReadSpd },
|
|
{AGESA_READ_SPD_RECOVERY, agesa_NoopUnsupported },
|
|
{AGESA_RUNFUNC_ONAP, agesa_RunFuncOnAp },
|
|
{AGESA_GET_IDS_INIT_DATA, agesa_EmptyIdsInitData },
|
|
{AGESA_HOOKBEFORE_DQS_TRAINING, agesa_NoopSuccess },
|
|
{AGESA_HOOKBEFORE_EXIT_SELF_REF, agesa_NoopSuccess },
|
|
{AGESA_GNB_GFX_GET_VBIOS_IMAGE, agesa_GfxGetVbiosImage }
|
|
};
|
|
const int BiosCalloutsLen = ARRAY_SIZE(BiosCallouts);
|
|
|
|
/**
|
|
* MSI MS-7721 board ALC887-VD Verb Table
|
|
*
|
|
* Copied from `/sys/class/sound/hwC1D3/init_pin_configs` when running
|
|
* the vendor BIOS.
|
|
*/
|
|
const CODEC_ENTRY ms7721_alc887_VerbTbl[] = {
|
|
{0x11, 0x411111f0},
|
|
{0x12, 0x411111f0},
|
|
{0x14, 0x01014410},
|
|
{0x15, 0x01011412},
|
|
{0x16, 0x01016411},
|
|
{0x17, 0x01012414},
|
|
{0x18, 0x01a19c30},
|
|
{0x19, 0x02a19c40},
|
|
{0x1a, 0x0181343f},
|
|
{0x1b, 0x02214c20},
|
|
{0x1c, 0x411111f0},
|
|
{0x1d, 0x4007f603},
|
|
{0x1e, 0x411111f0},
|
|
{0x1f, 0x411111f0}
|
|
};
|
|
|
|
static const CODEC_TBL_LIST CodecTableList[] =
|
|
{
|
|
{0x10ec0887, (CODEC_ENTRY*)&ms7721_alc887_VerbTbl[0]},
|
|
{(UINT32)0x0FFFFFFFF, (CODEC_ENTRY*)0x0FFFFFFFFUL}
|
|
};
|
|
|
|
void board_FCH_InitReset(struct sysinfo *cb_NA, FCH_RESET_DATA_BLOCK *FchParams_reset)
|
|
{
|
|
FchParams_reset->LegacyFree = CONFIG(HUDSON_LEGACY_FREE);
|
|
}
|
|
|
|
void board_FCH_InitEnv(struct sysinfo *cb_NA, FCH_DATA_BLOCK *FchParams_env)
|
|
{
|
|
/* Azalia Controller OEM Codec Table Pointer */
|
|
FchParams_env->Azalia.AzaliaOemCodecTablePtr = (CODEC_TBL_LIST *)(&CodecTableList[0]);
|
|
|
|
/* Fan Control */
|
|
FchParams_env->Imc.ImcEnable = FALSE;
|
|
FchParams_env->Hwm.HwMonitorEnable = FALSE;
|
|
FchParams_env->Hwm.HwmFchtsiAutoPoll = FALSE;/* 1 enable, 0 disable TSI Auto Polling */
|
|
}
|