projects/imageon_loopback: Add the option of setting hdmi_iic_rstn externally.
parent
176a4a4b76
commit
d7a0f1ffe3
|
@ -143,7 +143,7 @@ module system_top (
|
|||
inout [ 1:0] iic_mux_scl;
|
||||
inout [ 1:0] iic_mux_sda;
|
||||
|
||||
output hdmi_iic_rstn;
|
||||
inout hdmi_iic_rstn;
|
||||
inout hdmi_iic_scl;
|
||||
inout hdmi_iic_sda;
|
||||
|
||||
|
@ -183,8 +183,6 @@ module system_top (
|
|||
hdmi_tx_data <= hdmi_rx_data_in;
|
||||
end
|
||||
|
||||
assign hdmi_iic_rstn = 1'b1;
|
||||
|
||||
// instantiations
|
||||
|
||||
ODDR #(.INIT(1'b0)) i_clk_oddr (
|
||||
|
@ -202,6 +200,12 @@ module system_top (
|
|||
.do (gpio_i[32]),
|
||||
.dio (hdmiio_int));
|
||||
|
||||
ad_iobuf #(.DATA_WIDTH(1)) i_gpio_hdmi_iic_rstn (
|
||||
.dt (gpio_t[33]),
|
||||
.di (gpio_o[33]),
|
||||
.do (gpio_i[33]),
|
||||
.dio (hdmi_iic_rstn));
|
||||
|
||||
ad_iobuf #(
|
||||
.DATA_WIDTH(32)
|
||||
) i_iobuf (
|
||||
|
|
Loading…
Reference in New Issue