diff options
author | Marc Jones <marcjones@sysproconsulting.com> | 2020-10-15 14:32:51 -0600 |
---|---|---|
committer | Marc Jones <marc@marcjonesconsulting.com> | 2020-10-30 17:13:31 +0000 |
commit | 1f500845b439b5f5bfb8aa34bed8e5db2e266ff7 (patch) | |
tree | 29a49f5cd99162229f42d0ba06cf04f3906f2739 /src/soc/intel/xeon_sp/include | |
parent | 9a0d4f8620557d2b69953c2b6016f2fdf7ee7a33 (diff) |
soc/intel/xeon_sp: Move common chip.c code
Move common CPX and SKX chip.c code to chip_common.c.
Change-Id: I158882ab15659858c2b13b4a3e02a26ef8d4ed3c
Signed-off-by: Marc Jones <marcjones@sysproconsulting.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46478
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jay Talbott <JayTalbott@sysproconsulting.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/soc/intel/xeon_sp/include')
-rw-r--r-- | src/soc/intel/xeon_sp/include/soc/chip_common.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/soc/intel/xeon_sp/include/soc/chip_common.h b/src/soc/intel/xeon_sp/include/soc/chip_common.h new file mode 100644 index 0000000000..339da07e4a --- /dev/null +++ b/src/soc/intel/xeon_sp/include/soc/chip_common.h @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef _CHIP_COMMON_H_ +#define _CHIP_COMMON_H_ + +void xeonsp_pci_domain_set_resources(struct device *dev); +void xeonsp_pci_domain_scan_bus(struct device *dev); +void attach_iio_stacks(struct device *dev); + +#endif /* _CHIP_COMMON_H_ */ |