Skip to content

Commit

Permalink
Merge branch 'spinler-feat-enable_devicetree_on_all_endpoints' into '…
Browse files Browse the repository at this point in the history
…devel'

[FEATURE]: enable Device Tree on all PCI endpoints

See merge request ndk/ndk-fpga!98
  • Loading branch information
jakubcabal committed Nov 4, 2024
2 parents aa7c069 + 4f76480 commit c761b80
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 c761b80

Please sign in to comment.