Andrey Petrov has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39017 )
Change subject: WIP: skylake-sp: Hook up IIO code ......................................................................
WIP: skylake-sp: Hook up IIO code
This patch is a piece of CB:38549
TEST=On OCP Tioga Pass board this patchset successfully boots into linux kernel as payload.
Change-Id: I6f329de7bd4f18cc2e5c0002983816a4c6c7c5c2 --- M src/cpu/intel/xeonsp/cpu/skylake-sp/chip.c 1 file changed, 4 insertions(+), 15 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/17/39017/1
diff --git a/src/cpu/intel/xeonsp/cpu/skylake-sp/chip.c b/src/cpu/intel/xeonsp/cpu/skylake-sp/chip.c index ed68c5f..058cf2c 100644 --- a/src/cpu/intel/xeonsp/cpu/skylake-sp/chip.c +++ b/src/cpu/intel/xeonsp/cpu/skylake-sp/chip.c @@ -21,23 +21,12 @@ #include <device/pci_ops.h> #include <fsp/api.h> #include <lib.h> - -static void skxsp_pci_domain_read_resources(struct device *dev) -{ -} - -static void skxsp_pci_domain_set_resources(struct device *dev) -{ -} - -static void skxsp_pci_domain_scan_bus(struct device *dev) -{ -} +#include <soc/iio.h>
static struct device_operations pci_domain_ops = { - .read_resources = &skxsp_pci_domain_read_resources, - .set_resources = &skxsp_pci_domain_set_resources, - .scan_bus = &skxsp_pci_domain_scan_bus, + .read_resources = &pci_domain_read_resources, + .set_resources = &xeonsp_pci_domain_set_resources, + .scan_bus = &xeonsp_pci_domain_scan_bus, };
static void init_cpus(struct device *dev)
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/39017 )
Change subject: WIP: skylake-sp: Hook up IIO code ......................................................................
Patch Set 3: Code-Review+1
Andrey Petrov has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/39017 )
Change subject: WIP: skylake-sp: Hook up IIO code ......................................................................
Abandoned
killing in favor of new patchset