aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2018-10-24 02:16:12 -0500
committerStewart Smith <stewart@linux.ibm.com>2018-10-25 07:08:28 +1100
commit9b9be42009e12d4fd9f90b806a091591cd6c4966 (patch)
tree97ee30ce5f0e2f2e322aee8332f2ffe782c14bc4
parenta92f432eae5b51d3b5a4b635b459ad84b2ab2240 (diff)
downloadskiboot-9b9be42009e12d4fd9f90b806a091591cd6c4966.zip
skiboot-9b9be42009e12d4fd9f90b806a091591cd6c4966.tar.gz
skiboot-9b9be42009e12d4fd9f90b806a091591cd6c4966.tar.bz2
Quieten 'warnings' now that SIO is disabled
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r--core/pci-quirk.c3
-rw-r--r--platforms/astbmc/common.c11
2 files changed, 11 insertions, 3 deletions
diff --git a/core/pci-quirk.c b/core/pci-quirk.c
index 3a85836..1007e96 100644
--- a/core/pci-quirk.c
+++ b/core/pci-quirk.c
@@ -34,7 +34,8 @@ static void quirk_astbmc_vga(struct phb *phb __unused,
mcr_scu_mpll = ast_ahb_readl(MCR_SCU_MPLL);
mcr_scu_strap = ast_ahb_readl(MCR_SCU_STRAP);
} else {
- prlog(PR_WARNING, "Assumed platform default parameters for %s\n",
+ /* Previously we would warn, now SIO disabled by design */
+ prlog(PR_INFO, "Assumed platform default parameters for %s\n",
__func__);
revision = bmc_platform->hw->scu_revision_id;
mcr_configuration = bmc_platform->hw->mcr_configuration;
diff --git a/platforms/astbmc/common.c b/platforms/astbmc/common.c
index 10aed3f..64eba9a 100644
--- a/platforms/astbmc/common.c
+++ b/platforms/astbmc/common.c
@@ -413,8 +413,15 @@ void astbmc_early_init(void)
prerror("PLAT: AST IO initialisation failed!\n");
ast_setup_sio_mbox(MBOX_IO_BASE, MBOX_LPC_IRQ);
- } else
- prlog(PR_WARNING, "PLAT: AST SIO unavailable!\n");
+ } else {
+ /*
+ * This may or may not be an error depending on if we set up
+ * hiomap or not. In the old days it *was* an error, but now
+ * with the way we configure the BMC hardware, this is actually
+ * the not error case.
+ */
+ prlog(PR_INFO, "PLAT: AST SIO unavailable!\n");
+ }
/* Setup UART and use it as console */
uart_init();