From 0ffb94cca22fc37c5d2697b3fafbb5983b761eb5 Mon Sep 17 00:00:00 2001 From: Michael Rogenmoser Date: Thu, 31 Mar 2022 17:16:32 +0200 Subject: [PATCH] udma_i2c: repair port connections from update --- Bender.yml | 2 +- rtl/udma_subsystem/udma_subsystem.sv | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Bender.yml b/Bender.yml index b3ef38fb..e1cd1341 100644 --- a/Bender.yml +++ b/Bender.yml @@ -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 } diff --git a/rtl/udma_subsystem/udma_subsystem.sv b/rtl/udma_subsystem/udma_subsystem.sv index e9e953ed..4e9a97f3 100644 --- a/rtl/udma_subsystem/udma_subsystem.sv +++ b/rtl/udma_subsystem/udma_subsystem.sv @@ -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 ), @@ -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] ),