Commit 1da448bb authored by Simon Glass's avatar Simon Glass Committed by Bin Meng
Browse files

x86: Silence some logging statements



Quite a few log_info() calls are included in the x86 code which should use
log_debug() instead. Convert them to reduce unwanted output.
Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent d0147fe8
...@@ -116,10 +116,10 @@ static int set_power_limits(struct udevice *dev) ...@@ -116,10 +116,10 @@ static int set_power_limits(struct udevice *dev)
/* Program package power limits in RAPL MSR */ /* Program package power limits in RAPL MSR */
msr_write(MSR_PKG_POWER_LIMIT, limit); msr_write(MSR_PKG_POWER_LIMIT, limit);
log_info("RAPL PL1 %d.%dW\n", tdp / power_unit, log_debug("RAPL PL1 %d.%dW\n", tdp / power_unit,
100 * (tdp % power_unit) / power_unit); 100 * (tdp % power_unit) / power_unit);
log_info("RAPL PL2 %d.%dW\n", pl2_val / power_unit, log_debug("RAPL PL2 %d.%dW\n", pl2_val / power_unit,
100 * (pl2_val % power_unit) / power_unit); 100 * (pl2_val % power_unit) / power_unit);
/* /*
* Sett RAPL MMIO register for Power limits. RAPL driver is using MSR * Sett RAPL MMIO register for Power limits. RAPL driver is using MSR
......
...@@ -42,7 +42,7 @@ static int locate_vbt(char **vbtp, int *sizep) ...@@ -42,7 +42,7 @@ static int locate_vbt(char **vbtp, int *sizep)
return -EINVAL; return -EINVAL;
} }
log_info("Found a VBT of %u bytes\n", size); log_debug("Found a VBT of %u bytes\n", size);
*sizep = size; *sizep = size;
*vbtp = vbt_data; *vbtp = vbt_data;
......
...@@ -67,7 +67,7 @@ static int snapshot_polarities(struct udevice *dev) ...@@ -67,7 +67,7 @@ static int snapshot_polarities(struct udevice *dev)
reg_start = start / IRQS_PER_IPC; reg_start = start / IRQS_PER_IPC;
reg_end = DIV_ROUND_UP(end, IRQS_PER_IPC); reg_end = DIV_ROUND_UP(end, IRQS_PER_IPC);
log_info("ITSS IRQ Polarities snapshot %p\n", priv->irq_snapshot); log_debug("ITSS IRQ Polarities snapshot %p\n", priv->irq_snapshot);
for (i = reg_start; i < reg_end; i++) { for (i = reg_start; i < reg_end; i++) {
uint reg = PCR_ITSS_IPC0_CONF + sizeof(u32) * i; uint reg = PCR_ITSS_IPC0_CONF + sizeof(u32) * i;
...@@ -89,11 +89,11 @@ static void show_polarities(struct udevice *dev, const char *msg) ...@@ -89,11 +89,11 @@ static void show_polarities(struct udevice *dev, const char *msg)
{ {
int i; int i;
log_info("ITSS IRQ Polarities %s:\n", msg); log_debug("ITSS IRQ Polarities %s:\n", msg);
for (i = 0; i < NUM_IPC_REGS; i++) { for (i = 0; i < NUM_IPC_REGS; i++) {
uint reg = PCR_ITSS_IPC0_CONF + sizeof(u32) * i; uint reg = PCR_ITSS_IPC0_CONF + sizeof(u32) * i;
log_info("IPC%d: 0x%08x\n", i, pcr_read32(dev, reg)); log_debug("IPC%d: 0x%08x\n", i, pcr_read32(dev, reg));
} }
} }
...@@ -115,7 +115,7 @@ static int restore_polarities(struct udevice *dev) ...@@ -115,7 +115,7 @@ static int restore_polarities(struct udevice *dev)
sizeof(priv->irq_snapshot)); sizeof(priv->irq_snapshot));
show_polarities(dev, "Before"); show_polarities(dev, "Before");
log_info("priv->irq_snapshot %p\n", priv->irq_snapshot); log_debug("priv->irq_snapshot %p\n", priv->irq_snapshot);
reg_start = start / IRQS_PER_IPC; reg_start = start / IRQS_PER_IPC;
reg_end = DIV_ROUND_UP(end, IRQS_PER_IPC); reg_end = DIV_ROUND_UP(end, IRQS_PER_IPC);
......
...@@ -390,7 +390,7 @@ int nhlt_serialise_oem_overrides(struct acpi_ctx *ctx, struct nhlt *nhlt, ...@@ -390,7 +390,7 @@ int nhlt_serialise_oem_overrides(struct acpi_ctx *ctx, struct nhlt *nhlt,
size_t oem_table_id_len; size_t oem_table_id_len;
int ret; int ret;
log_info("ACPI: * NHLT\n"); log_debug("ACPI: * NHLT\n");
sz = nhlt_current_size(nhlt); sz = nhlt_current_size(nhlt);
/* Create header */ /* Create header */
......
...@@ -139,7 +139,7 @@ static int fsp_video_acpi_write_tables(const struct udevice *dev, ...@@ -139,7 +139,7 @@ static int fsp_video_acpi_write_tables(const struct udevice *dev,
struct igd_opregion *opregion; struct igd_opregion *opregion;
int ret; int ret;
printf("ACPI: * IGD OpRegion\n"); log_debug("ACPI: * IGD OpRegion\n");
opregion = (struct igd_opregion *)ctx->current; opregion = (struct igd_opregion *)ctx->current;
ret = intel_gma_init_igd_opregion((struct udevice *)dev, opregion); ret = intel_gma_init_igd_opregion((struct udevice *)dev, opregion);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment