src/soc/intel: Document meaning of variables

Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com>
Change-Id: Iaf88f34cedd09e2461bb05050392e178ec84d5d0
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71664
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
This commit is contained in:
Maximilian Brune 2023-01-04 19:22:35 +01:00 committed by Lean Sheng Tan
parent 03bf97ad16
commit 27900ea9f8
4 changed files with 7 additions and 6 deletions

View File

@ -154,8 +154,8 @@ enum ddi_ports {
};
enum ddi_port_flags {
DDI_ENABLE_DDC = 1 << 0,
DDI_ENABLE_HPD = 1 << 1,
DDI_ENABLE_DDC = 1 << 0, // Display Data Channel
DDI_ENABLE_HPD = 1 << 1, // Hot Plug Detect
};
/*

View File

@ -22,8 +22,8 @@
/* Different memory topologies supported by the platform. */
enum mem_topology {
MEM_TOPO_MEMORY_DOWN = BIT(0),
MEM_TOPO_DIMM_MODULE = BIT(1),
MEM_TOPO_MEMORY_DOWN = BIT(0), // memory is soldered onto board
MEM_TOPO_DIMM_MODULE = BIT(1), // memory is composed of DIMM modules
MEM_TOPO_MIXED = MEM_TOPO_MEMORY_DOWN | MEM_TOPO_DIMM_MODULE,
};

View File

@ -15,6 +15,7 @@
enum pcie_rp_flags {
PCIE_RP_HOTPLUG = (1 << 0),
/* PCIE RP Latency Tolerance Report */
PCIE_RP_LTR = (1 << 1),
/* PCIE RP Advanced Error Report */
PCIE_RP_AER = (1 << 2),

View File

@ -51,8 +51,8 @@ enum ddi_ports {
};
enum ddi_port_flags {
DDI_ENABLE_DDC = 1 << 0,
DDI_ENABLE_HPD = 1 << 1,
DDI_ENABLE_DDC = 1 << 0, // Display Data Channel
DDI_ENABLE_HPD = 1 << 1, // Hot Plug Detect
};
/*