Skip to content

Commit

Permalink
[FEATURE]: enable Device Tree on all PCI endpoints
Browse files Browse the repository at this point in the history
This enables pairing in driver on multi-endpoint cards
with generic ID ("COMBO-GENERIC").
  • Loading branch information
martinspinler committed Nov 4, 2024
1 parent aa7c069 commit 4f76480
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/comp/pcie/pcie_mod/comp/pcie_core/pcie_core_ptile.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ begin
-- =========================================================================

dt_g : for i in 0 to PCIE_ENDPOINTS-1 generate
constant dt_en : boolean := (i = 0);
constant dt_en : boolean := true;
begin
cii2cfg_ext_i: entity work.PCIE_CII2CFG_EXT
port map(
Expand Down
2 changes: 1 addition & 1 deletion core/comp/pcie/pcie_mod/comp/pcie_core/pcie_core_rtile.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,7 @@ begin
-- =========================================================================

dt_g : for i in 0 to PCIE_ENDPOINTS-1 generate
constant dt_en : boolean := (i = 0);
constant dt_en : boolean := true;
begin
cii2cfg_ext_i: entity work.PCIE_CII2CFG_EXT
port map(
Expand Down
2 changes: 1 addition & 1 deletion core/comp/pcie/pcie_mod/comp/pcie_core/pcie_core_usp.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -1492,7 +1492,7 @@ begin
-- =========================================================================

dt_g : for i in 0 to PCIE_ENDPOINTS-1 generate
constant dt_en : boolean := (i = 0);
constant dt_en : boolean := true;
begin
-- Device Tree ROM
pci_ext_cap_i: entity work.PCI_EXT_CAP
Expand Down

0 comments on commit 4f76480

Please sign in to comment.