soc/intel/common: Add a minimal PCI driver for IPU

Add a minimal PCI driver for Intel's IPU, this allows devices to be
added underneath it in the devicetree.

Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Change-Id: I531b293634a5d40112dc6af7b33fedb5e13f35e5
Reviewed-on: https://review.coreboot.org/c/coreboot/+/42812
Reviewed-by: Rizwan Qureshi <rizwan.qureshi@intel.com>
Reviewed-by: Christian Walter <christian.walter@9elements.com>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Tim Wawrzynczak 2020-06-25 10:01:46 -06:00
parent c85d7c59ac
commit c0199919e3
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,4 @@
config SOC_INTEL_COMMON_BLOCK_IPU
bool
help
Intel Image Processing Unit driver

View File

@ -0,0 +1 @@
ramstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_IPU) += ipu.c

View File

@ -0,0 +1,23 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <device/pci.h>
#include <device/pci_ids.h>
struct device_operations ipu_pci_ops = {
.read_resources = pci_bus_read_resources,
.set_resources = pci_dev_set_resources,
.enable_resources = pci_bus_enable_resources,
.scan_bus = scan_generic_bus,
.ops_pci = &pci_dev_ops_pci,
};
static const uint16_t pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_TGL_IPU,
PCI_DEVICE_ID_INTEL_JSL_IPU,
};
static const struct pci_driver intel_ipu __pci_driver = {
.ops = &ipu_pci_ops,
.vendor = PCI_VENDOR_ID_INTEL,
.devices = pci_device_ids,
};