aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/denverton_ns/upd_display.c
diff options
context:
space:
mode:
authorMariusz Szafranski <mariuszx.szafranski@intel.com>2017-08-02 17:28:17 +0200
committerPatrick Georgi <pgeorgi@google.com>2017-09-05 13:39:54 +0000
commita404133547c98094a326f60b83e1576ba94b8c06 (patch)
tree59847d084c0462833878627491cfbf3e67fca4af /src/soc/intel/denverton_ns/upd_display.c
parent84c4987eae9f8686e6d92e38ee18744d69576f2d (diff)
soc/intel/denverton_ns: Add support for Intel Atom C3000 SoC
This change adds support for Intel Atom C3000 SoC ("Denverton" and "Denverton-NS"). Code is partially based on Apollo Lake/Skylake code. Change-Id: I53d69aede3b92f1fe06b74a96cc40187fb9825f1 Signed-off-by: Mariusz Szafranski <mariuszx.szafranski@intel.com> Reviewed-on: https://review.coreboot.org/20861 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: FEI WANG <wangfei.jimei@gmail.com>
Diffstat (limited to 'src/soc/intel/denverton_ns/upd_display.c')
-rw-r--r--src/soc/intel/denverton_ns/upd_display.c141
1 files changed, 141 insertions, 0 deletions
diff --git a/src/soc/intel/denverton_ns/upd_display.c b/src/soc/intel/denverton_ns/upd_display.c
new file mode 100644
index 0000000000..076ffec8d7
--- /dev/null
+++ b/src/soc/intel/denverton_ns/upd_display.c
@@ -0,0 +1,141 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2016 - 2017 Intel Corp.
+ *
+ * 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; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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 <arch/cpu.h>
+#include <console/console.h>
+#include <fsp/util.h>
+#include <lib.h>
+
+/* Display the UPD parameters for MemoryInit */
+void soc_display_fspm_upd_params(
+ const FSPM_UPD *fspm_old_upd,
+ const FSPM_UPD *fspm_new_upd)
+{
+ const FSP_M_CONFIG *new;
+ const FSP_M_CONFIG *old;
+
+ old = &fspm_old_upd->FspmConfig;
+ new = &fspm_new_upd->FspmConfig;
+
+ printk(BIOS_SPEW, "UPD values for MemoryInit:\n");
+
+ #define DISPLAY_UPD(field) \
+ fsp_display_upd_value(#field, sizeof(old->field), \
+ old->field, new->field)
+
+ DISPLAY_UPD(PcdSmmTsegSize);
+ DISPLAY_UPD(PcdFspDebugPrintErrorLevel);
+ DISPLAY_UPD(PcdSpdSmbusAddress_0_0);
+ DISPLAY_UPD(PcdSpdSmbusAddress_0_1);
+ DISPLAY_UPD(PcdSpdSmbusAddress_1_0);
+ DISPLAY_UPD(PcdSpdSmbusAddress_1_1);
+ DISPLAY_UPD(PcdMrcRmtSupport);
+ DISPLAY_UPD(PcdMrcRmtCpgcExpLoopCntValue);
+ DISPLAY_UPD(PcdMrcRmtCpgcNumBursts);
+ DISPLAY_UPD(PcdMemoryPreservation);
+ DISPLAY_UPD(PcdFastBoot);
+ DISPLAY_UPD(PcdEccSupport);
+ DISPLAY_UPD(PcdHsuartDevice);
+ DISPLAY_UPD(PcdMemoryDown);
+ DISPLAY_UPD(PcdEnableSATA0);
+ DISPLAY_UPD(PcdEnableSATA1);
+ DISPLAY_UPD(PcdEnableIQAT);
+ DISPLAY_UPD(PcdSmbusSpdWriteDisable);
+ DISPLAY_UPD(PcdEnableMeShutdown);
+ DISPLAY_UPD(PcdEnableXhci);
+ DISPLAY_UPD(PcdDdrFreq);
+ DISPLAY_UPD(PcdMmioSize);
+ DISPLAY_UPD(PcdMeHeciCommunication);
+ DISPLAY_UPD(PcdHsioLanesNumber);
+ DISPLAY_UPD(PcdFiaMuxConfigPtr);
+ DISPLAY_UPD(PcdHalfWidthEnable);
+ DISPLAY_UPD(PcdTclIdle);
+ DISPLAY_UPD(PcdInterleaveMode);
+ DISPLAY_UPD(PcdMemoryThermalThrottling);
+ DISPLAY_UPD(PcdSkipMemoryTest);
+ DISPLAY_UPD(PcdUsb2Port1Pin);
+ DISPLAY_UPD(PcdUsb2Port2Pin);
+ DISPLAY_UPD(PcdUsb2Port3Pin);
+ DISPLAY_UPD(PcdUsb2Port4Pin);
+ DISPLAY_UPD(PcdUsb3Port1Pin);
+ DISPLAY_UPD(PcdUsb3Port2Pin);
+ DISPLAY_UPD(PcdUsb3Port3Pin);
+ DISPLAY_UPD(PcdUsb3Port4Pin);
+ DISPLAY_UPD(PcdIOxAPIC0_199);
+ DISPLAY_UPD(PcdDmapX16);
+
+ #undef DISPLAY_UPD
+
+ hexdump(fspm_new_upd, sizeof(*fspm_new_upd));
+}
+
+/* Display the UPD parameters for SiliconInit */
+void soc_display_fsps_upd_params(
+ const FSPS_UPD *fsps_old_upd,
+ const FSPS_UPD *fsps_new_upd)
+{
+ const FSP_S_CONFIG *new;
+ const FSP_S_CONFIG *old;
+
+ old = &fsps_old_upd->FspsConfig;
+ new = &fsps_new_upd->FspsConfig;
+
+ printk(BIOS_SPEW, "UPD values for SiliconInit:\n");
+
+ #define DISPLAY_UPD(field) \
+ fsp_display_upd_value(#field, sizeof(old->field), \
+ old->field, new->field)
+
+ DISPLAY_UPD(PcdBifurcationPcie0);
+ DISPLAY_UPD(PcdBifurcationPcie1);
+ DISPLAY_UPD(PcdActiveCoreCount);
+ DISPLAY_UPD(PcdCpuMicrocodePatchBase);
+ DISPLAY_UPD(PcdCpuMicrocodePatchSize);
+ DISPLAY_UPD(PcdEnablePcie0);
+ DISPLAY_UPD(PcdEnablePcie1);
+ DISPLAY_UPD(PcdEnableEmmc);
+ DISPLAY_UPD(PcdEnableGbE);
+ DISPLAY_UPD(PcdFiaMuxConfigRequestPtr);
+ DISPLAY_UPD(PcdPcieRootPort0DeEmphasis);
+ DISPLAY_UPD(PcdPcieRootPort1DeEmphasis);
+ DISPLAY_UPD(PcdPcieRootPort2DeEmphasis);
+ DISPLAY_UPD(PcdPcieRootPort3DeEmphasis);
+ DISPLAY_UPD(PcdPcieRootPort4DeEmphasis);
+ DISPLAY_UPD(PcdPcieRootPort5DeEmphasis);
+ DISPLAY_UPD(PcdPcieRootPort6DeEmphasis);
+ DISPLAY_UPD(PcdPcieRootPort7DeEmphasis);
+ DISPLAY_UPD(PcdEMMCDLLConfigPtr);
+ DISPLAY_UPD(PcdPcieRootPort0LinkSpeed);
+ DISPLAY_UPD(PcdPcieRootPort1LinkSpeed);
+ DISPLAY_UPD(PcdPcieRootPort2LinkSpeed);
+ DISPLAY_UPD(PcdPcieRootPort3LinkSpeed);
+ DISPLAY_UPD(PcdPcieRootPort4LinkSpeed);
+ DISPLAY_UPD(PcdPcieRootPort5LinkSpeed);
+ DISPLAY_UPD(PcdPcieRootPort6LinkSpeed);
+ DISPLAY_UPD(PcdPcieRootPort7LinkSpeed);
+ DISPLAY_UPD(PcdPcieRootPort0Aspm);
+ DISPLAY_UPD(PcdPcieRootPort1Aspm);
+ DISPLAY_UPD(PcdPcieRootPort2Aspm);
+ DISPLAY_UPD(PcdPcieRootPort3Aspm);
+ DISPLAY_UPD(PcdPcieRootPort4Aspm);
+ DISPLAY_UPD(PcdPcieRootPort5Aspm);
+ DISPLAY_UPD(PcdPcieRootPort6Aspm);
+ DISPLAY_UPD(PcdPcieRootPort7Aspm);
+
+ #undef DISPLAY_UPD
+
+ hexdump(fsps_new_upd, sizeof(*fsps_new_upd));
+}