Skip to content

Commit

Permalink
udma_i2c: repair port connections from update
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Mar 31, 2022
1 parent 84a8d59 commit 0ffb94c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Bender.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies:
tech_cells_generic: { git: "https://github.com/pulp-platform/tech_cells_generic.git", version: 0.2.3 }
udma_core: { git: "https://github.com/pulp-platform/udma_core.git", version: 1.1.2 }
udma_uart: { git: "https://github.com/pulp-platform/udma_uart.git", version: 1.0.2 }
udma_i2c: { git: "https://github.com/pulp-platform/udma_i2c.git", version: 1.0.1 }
udma_i2c: { git: "https://github.com/pulp-platform/udma_i2c.git", version: 2.0.0 }
udma_i2s: { git: "https://github.com/pulp-platform/udma_i2s.git", version: 1.1.2 }
udma_qspi: { git: "https://github.com/pulp-platform/udma_qspi.git", version: 1.0.4 }
udma_sdio: { git: "https://github.com/pulp-platform/udma_sdio.git", version: 1.1.2 }
Expand Down
3 changes: 2 additions & 1 deletion rtl/udma_subsystem/udma_subsystem.sv
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,6 @@ module udma_subsystem
.sys_clk_i ( s_clk_periphs_core[PER_ID_I2C+g_i2c] ),
.periph_clk_i ( s_clk_periphs_per[PER_ID_I2C+g_i2c] ),
.rstn_i ( sys_resetn_i ),
.i2c_eot_o ( s_i2c_eot[g_i2c] ),

.cfg_data_i ( s_periph_data_to ),
.cfg_addr_i ( s_periph_addr ),
Expand Down Expand Up @@ -686,6 +685,8 @@ module udma_subsystem
.data_rx_ready_i ( s_rx_ch_ready[CH_ID_RX_I2C+g_i2c] ),

.err_o ( s_i2c_evt[g_i2c] ),
.eot_o ( s_i2c_eot[g_i2c] ),
.nack_o (),

.scl_i ( i2c_scl_i[g_i2c] ),
.scl_o ( i2c_scl_o[g_i2c] ),
Expand Down

0 comments on commit 0ffb94c

Please sign in to comment.