aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/braswell/chip.c
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-07-07 18:46:51 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-07-09 12:44:04 +0000
commit96dec04207604fdd58ab2f76f8667542c03902e4 (patch)
treeec3d7474d6bf16f86097685d08003719524bbfc9 /src/soc/intel/braswell/chip.c
parentf7c551cf6efe103688bb39563a7dca692431d766 (diff)
soc/intel/braswell: Drop some BIOS_SPEW printk's
This reduces the differences between Bay Trail and Braswell. Change-Id: I60e4db72eed17cdeebd30b010f351e1ffc4187e3 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43182 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Diffstat (limited to 'src/soc/intel/braswell/chip.c')
-rw-r--r--src/soc/intel/braswell/chip.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/soc/intel/braswell/chip.c b/src/soc/intel/braswell/chip.c
index c81d307f52..c971cd1586 100644
--- a/src/soc/intel/braswell/chip.c
+++ b/src/soc/intel/braswell/chip.c
@@ -25,22 +25,6 @@ static struct device_operations cpu_bus_ops = {
static void enable_dev(struct device *dev)
{
- printk(BIOS_SPEW, "----------\n%s/%s (%s), type: %d\n", __FILE__, __func__,
- dev_name(dev), dev->path.type);
-
- printk(BIOS_SPEW, "vendor: 0x%04x. device: 0x%04x\n",
- pci_read_config16(dev, PCI_VENDOR_ID),
- pci_read_config16(dev, PCI_DEVICE_ID));
-
- printk(BIOS_SPEW, "class: 0x%02x %s\nsubclass: 0x%02x %s\n"
- "prog: 0x%02x\nrevision: 0x%02x\n",
- pci_read_config16(dev, PCI_CLASS_DEVICE) >> 8,
- get_pci_class_name(dev),
- pci_read_config16(dev, PCI_CLASS_DEVICE) & 0xff,
- get_pci_subclass_name(dev),
- pci_read_config8(dev, PCI_CLASS_PROG),
- pci_read_config8(dev, PCI_REVISION_ID));
-
/* Set the operations if it is a special bus type */
if (dev->path.type == DEVICE_PATH_DOMAIN) {
dev->ops = &pci_domain_ops;
@@ -314,7 +298,6 @@ void soc_display_silicon_init_params(const SILICON_INIT_UPD *old, SILICON_INIT_U
/* Called at BS_DEV_INIT_CHIPS time -- very early. Just after BS_PRE_DEVICE. */
static void soc_init(void *chip_info)
{
- printk(BIOS_SPEW, "%s/%s\n", __FILE__, __func__);
soc_init_pre_device(chip_info);
}