summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Daly <jeffd@silicom-usa.com>2022-01-10 22:26:00 -0500
committerFelix Held <felix-coreboot@felixheld.de>2022-04-07 14:44:06 +0000
commitdc5d3f368babf0c7f4e841825528f60653fd9d95 (patch)
tree140413c8059d065a540cff3429e0fbde5149d5a1
parent29cad5a59e5f27088e113e6c068967a9da60ce92 (diff)
downloadcoreboot-dc5d3f368babf0c7f4e841825528f60653fd9d95.tar.gz
coreboot-dc5d3f368babf0c7f4e841825528f60653fd9d95.tar.bz2
coreboot-dc5d3f368babf0c7f4e841825528f60653fd9d95.zip
soc/intel/denverton_ns: add common device function macros
Add device function macros for Denverton similar to other SoCs Signed-off-by: Jeff Daly <jeffd@silicom-usa.com> Change-Id: I75daaf4907515f80a10c003eb473bbe557a42acc Reviewed-on: https://review.coreboot.org/c/coreboot/+/60990 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Mariusz SzafraƄski <mariuszx.szafranski@intel.com>
-rw-r--r--src/soc/intel/denverton_ns/include/soc/pci_devs.h121
1 files changed, 101 insertions, 20 deletions
diff --git a/src/soc/intel/denverton_ns/include/soc/pci_devs.h b/src/soc/intel/denverton_ns/include/soc/pci_devs.h
index a337b0d1e469..f62ea2b5c372 100644
--- a/src/soc/intel/denverton_ns/include/soc/pci_devs.h
+++ b/src/soc/intel/denverton_ns/include/soc/pci_devs.h
@@ -3,19 +3,28 @@
#ifndef _DENVERTON_NS_PCI_DEVS_H_
#define _DENVERTON_NS_PCI_DEVS_H_
+#include <device/pci_def.h>
+
/* All these devices live on bus 0 with the associated device and function */
#define _PCH_DEVFN(slot, func) PCI_DEVFN(PCH_DEV_SLOT_##slot, func)
#if !defined(__SIMPLE_DEVICE__)
#include <device/device.h>
-#include <device/pci_def.h>
#define _PCH_DEV(slot, func) pcidev_path_on_root(_PCH_DEVFN(slot, func))
#else
#define _PCH_DEV(slot, func) PCI_DEV(0, PCH_DEV_SLOT_##slot, func)
#endif
/* SoC transaction router */
+#define SA_DEV_SLOT_ROOT 0x0
+#define SA_DEVFN_ROOT PCI_DEVFN(SA_DEV_SLOT_ROOT, 0)
+#if defined(__SIMPLE_DEVICE__)
+#define SA_DEV_ROOT PCI_DEV(0, SA_DEV_SLOT_ROOT, 0)
+#else
+#include <device/device.h>
+#define SA_DEV_ROOT pcidev_path_on_root(PCI_DEVFN(SA_DEV_SLOT_ROOT, 0))
+#endif
#define SA_DEV 0x0
#define SA_FUNC 0
#define SOC_DEV SA_DEV
@@ -26,14 +35,45 @@
#define RAS_FUNC 0
/* Root Complex Event Collector */
+#define PCH_DEV_SLOT_RCEC 0x5
+#define PCH_DEVFN_RCEC _PCH_DEVFN(RCEC, 0)
+#define PCH_DEV_RCEC _PCH_DEV(RCEC, 0)
#define RCEC_DEV 0x5
#define RCEC_FUNC 0
/* Virtual Root Port 2 */
+#define PCH_DEV_SLOT_QAT 0x6
+#define PCH_DEVFN_QAT _PCH_DEVFN(QAT, 0)
+#define PCH_DEV_QAT _PCH_DEV(QAT, 0)
#define VRP2_DEV 0x6
#define VRP2_FUNC 0
/* PCIe Root Ports */
+#define PCH_DEV_SLOT_PCIE1 0x9
+#define PCH_DEVFN_PCIE1 _PCH_DEVFN(PCIE1, 0)
+#define PCH_DEV_PCIE1 _PCH_DEV(PCIE1, 0)
+#define PCH_DEV_SLOT_PCIE2 0xa
+#define PCH_DEVFN_PCIE2 _PCH_DEVFN(PCIE2, 0)
+#define PCH_DEV_PCIE2 _PCH_DEV(PCIE2, 0)
+#define PCH_DEV_SLOT_PCIE3 0xb
+#define PCH_DEVFN_PCIE3 _PCH_DEVFN(PCIE3, 0)
+#define PCH_DEV_PCIE3 _PCH_DEV(PCIE3, 0)
+#define PCH_DEV_SLOT_PCIE4 0xc
+#define PCH_DEVFN_PCIE4 _PCH_DEVFN(PCIE4, 0)
+#define PCH_DEV_PCIE4 _PCH_DEV(PCIE4, 0)
+#define PCH_DEV_SLOT_PCIE5 0xe
+#define PCH_DEVFN_PCIE5 _PCH_DEVFN(PCIE5, 0)
+#define PCH_DEV_PCIE5 _PCH_DEV(PCIE5, 0)
+#define PCH_DEV_SLOT_PCIE6 0xf
+#define PCH_DEVFN_PCIE6 _PCH_DEVFN(PCIE6, 0)
+#define PCH_DEV_PCIE6 _PCH_DEV(PCIE6, 0)
+#define PCH_DEV_SLOT_PCIE7 0x10
+#define PCH_DEVFN_PCIE7 _PCH_DEVFN(PCIE7, 0)
+#define PCH_DEV_PCIE7 _PCH_DEV(PCIE7, 0)
+#define PCH_DEV_SLOT_PCIE8 0x11
+#define PCH_DEVFN_PCIE8 _PCH_DEVFN(PCIE8, 0)
+#define PCH_DEV_PCIE8 _PCH_DEV(PCIE8, 0)
+
#define PCIE_DEV 0x09
#define MAX_PCIE_PORT 0x8
#define PCIE_PORT1_DEV 0x09
@@ -54,28 +94,56 @@
#define PCIE_PORT8_FUNC 0
/* SMBUS 2 */
+#define PCH_DEV_SLOT_SMBUS_HOST 0x12
+#define PCH_DEVFN_SMBUS_HOST _PCH_DEVFN(SMBUS_HOST, 0)
+#define PCH_DEV_SMBUS_HOST _PCH_DEV(SMBUS_HOST, 0)
#define SMBUS2_DEV 0x12
#define SMBUS2_FUNC 0
/* SATA */
+#define PCH_DEV_SLOT_SATA_0 0x13
+#define PCH_DEVFN_SATA_0 _PCH_DEVFN(SATA_0, 0)
+#define PCH_DEV_SATA_0 _PCH_DEV(SATA_0, 0)
+#define PCH_DEV_SLOT_SATA_1 0x14
+#define PCH_DEVFN_SATA_1 _PCH_DEVFN(SATA_1, 0)
+#define PCH_DEV_SATA_1 _PCH_DEV(SATA_1, 0)
#define SATA_DEV 0x13
#define SATA_FUNC 0
#define SATA2_DEV 0x14
#define SATA2_FUNC 0
/* xHCI */
+#define PCH_DEV_SLOT_XHCI 0x15
+#define PCH_DEVFN_XHCI _PCH_DEVFN(XHCI, 0)
+#define PCH_DEV_XHCI _PCH_DEV(XHCI, 0)
#define XHCI_DEV 0x15
#define XHCI_FUNC 0
/* Virtual Root Port 0 */
+#define PCH_DEV_SLOT_LAN0 0x16
+#define PCH_DEVFN_LAN0 _PCH_DEVFN(LAN0, 0)
+#define PCH_DEV_LAN0 _PCH_DEV(LAN0, 0)
#define VRP0_DEV 0x16
#define VRP0_FUNC 0
/* Virtual Root Port 1 */
+#define PCH_DEV_SLOT_LAN1 0x17
+#define PCH_DEVFN_LAN1 _PCH_DEVFN(LAN1, 0)
+#define PCH_DEV_LAN1 _PCH_DEVFN(LAN1, 0)
#define VRP1_DEV 0x17
#define VRP1_FUNC 0
/* CSME */
+#define PCH_DEV_SLOT_ME 0x18
+#define PCH_DEVFN_ME_HECI1 _PCH_DEVFN(ME, 0)
+#define PCH_DEVFN_ME_HECI2 _PCH_DEVFN(ME, 1)
+#define PCH_DEVFN_ME_HECI3 _PCH_DEVFN(ME, 4)
+#define PCH_DEVFN_ME_KT _PCH_DEVFN(ME, 3)
+#define PCH_DEV_ME_HECI1 _PCH_DEV(ME, 0)
+#define PCH_DEV_ME_HECI2 _PCH_DEV(ME, 1)
+#define PCH_DEV_ME_HECI3 _PCH_DEV(ME, 4)
+#define PCH_DEV_ME_KT _PCH_DEV(ME, 3)
+
#define ME_HECI_DEV 0x18
#define ME_HECI1_DEV ME_HECI_DEV
#define ME_HECI1_FUNC 0
@@ -89,6 +157,13 @@
#define ME_HECI3_FUNC 4
/* HSUART */
+#define PCH_DEV_SLOT_UART 0x1a
+#define PCH_DEVFN_UART0 _PCH_DEVFN(UART, 0)
+#define PCH_DEVFN_UART1 _PCH_DEVFN(UART, 1)
+#define PCH_DEVFN_UART2 _PCH_DEVFN(UART, 2)
+#define PCH_DEV_UART0 _PCH_DEV(UART, 0)
+#define PCH_DEV_UART1 _PCH_DEV(UART, 1)
+#define PCH_DEV_UART2 _PCH_DEV(UART, 2)
#define HSUART_DEV 0x1a
#define HSUART1_DEV HSUART_DEV
#define HSUART1_FUNC 0
@@ -98,6 +173,15 @@
#define HSUART3_FUNC 2
/* IE */
+#define PCH_DEV_SLOT_IE 0x1b
+#define PCH_DEVFN_IE_HECI1 _PCH_DEVFN(IE, 0)
+#define PCH_DEVFN_IE_HECI2 _PCH_DEVFN(IE, 1)
+#define PCH_DEVFN_IE_HECI3 _PCH_DEVFN(IE, 4)
+#define PCH_DEVFN_IE_KT _PCH_DEVFN(IE, 3)
+#define PCH_DEV_IE_HECI1 _PCH_DEV(IE, 0)
+#define PCH_DEV_IE_HECI2 _PCH_DEV(IE, 1)
+#define PCH_DEV_IE_HECI3 _PCH_DEV(IE, 4)
+#define PCH_DEV_IE_KT _PCH_DEV(IE, 3)
#define IE_HECI_DEV 0x1b
#define IE_HECI1_DEV IE_HECI_DEV
#define IE_HECI1_FUNC 0
@@ -111,10 +195,26 @@
#define IE_HECI3_FUNC 4
/* MMC Port */
+#define PCH_DEV_SLOT_EMMC 0x1c
+#define PCH_DEVFN_EMMC _PCH_DEVFN(EMMC, 0)
+#define PCH_DEV_EMMC _PCH_DEV(EMMC, 0)
#define MMC_DEV 0x1c
#define MMC_FUNC 0
/* Platform Controller Unit */
+#define PCH_DEV_SLOT_LPC 0x1f
+#define PCH_DEVFN_LPC _PCH_DEVFN(LPC, 0)
+#define PCH_DEVFN_P2SB _PCH_DEVFN(LPC, 1)
+#define PCH_DEVFN_PMC _PCH_DEVFN(LPC, 2)
+#define PCH_DEVFN_SMBUS _PCH_DEVFN(LPC, 4)
+#define PCH_DEVFN_SPI _PCH_DEVFN(LPC, 5)
+#define PCH_DEVFN_TRACE _PCH_DEVFN(LPC, 7)
+#define PCH_DEV_LPC _PCH_DEV(LPC, 0)
+#define PCH_DEV_P2SB _PCH_DEV(LPC, 1)
+#define PCH_DEV_PMC _PCH_DEV(LPC, 2)
+#define PCH_DEV_SMBUS _PCH_DEV(LPC, 4)
+#define PCH_DEV_SPI _PCH_DEV(LPC, 5)
+#define PCH_DEV_TRACE _PCH_DEV(LPC, 7)
#define PCU_DEV 0x1f
#define LPC_DEV PCU_DEV
#define LPC_FUNC 0
@@ -129,25 +229,6 @@
#define NPK_DEV PCU_DEV
#define NPK_FUNC 7
-/* TODO - New added */
-#define SA_DEV_SLOT_ROOT 0x00
-#define SA_DEVFN_ROOT PCI_DEVFN(SA_DEV_SLOT_ROOT, 0)
-#if defined(__SIMPLE_DEVICE__)
-#define SA_DEV_ROOT PCI_DEV(0, SA_DEV_SLOT_ROOT, 0)
-#endif
-
-#define PCH_DEV_SLOT_LPC 0x1f
-#define PCH_DEVFN_LPC _PCH_DEVFN(LPC, 0)
-#define PCH_DEVFN_P2SB _PCH_DEVFN(LPC, 1)
-#define PCH_DEVFN_PMC _PCH_DEVFN(LPC, 2)
-#define PCH_DEVFN_SMBUS _PCH_DEVFN(LPC, 4)
-#define PCH_DEVFN_SPI _PCH_DEVFN(LPC, 5)
-#define PCH_DEV_LPC _PCH_DEV(LPC, 0)
-#define PCH_DEV_P2SB _PCH_DEV(LPC, 1)
-#define PCH_DEV_PMC _PCH_DEV(LPC, 2)
-#define PCH_DEV_SMBUS _PCH_DEV(LPC, 4)
-#define PCH_DEV_SPI _PCH_DEV(LPC, 5)
-
/* VT-d support value to match FSP settings */
/* "PCH IOAPIC Config" */
#define PCH_IOAPIC_PCI_BUS 0xf0