Visible to Intel only — GUID: lpi1637641924913
Ixiasoft
Visible to Intel only — GUID: lpi1637641924913
Ixiasoft
2.3.1. Creating RX-Only or TX-Only Designs
To create an RX-only design, remove the HDMI TX Top and RX-TX Link modules. However, you need the CPU Subsystem to set the EDID value for the RX Core.
To use RX or TX-only components, remove the irrelevant blocks from the design.
User Requirements | Preserve | Remove | Add |
---|---|---|---|
HDMI RX only | RX Top |
|
— |
HDMI TX only |
|
|
Video Pattern Generator (custom module or generated from the Video and Image Processing (VIP) Suite) |
Aside from the RTL changes, you need to also edit the main.c script.
- For HDMI TX-only designs, decouple the wait for the HDMI RX lock status by doing the following:
- Remove the following lines:
rx_hdmi_lock = READ_PIO(PIO_IN0_BASE, PIO_RX_LOCKED_OFFSET, PIO_RX_LOCKED_WIDTH);
while (rx_hdmi_lock == 0) {
if (check_hpd_isr()) { break; }
// rx_vid_lock = READ_PIO(PIO_IN0_BASE, PIO_VID_LOCKED_OFFSET, PIO_VID_LOCKED_WIDTH);
rx_hdmi_lock = READ_PIO(PIO_IN0_BASE, PIO_RX_LOCKED_OFFSET, PIO_RX_LOCKED_WIDTH);
// Reconfig Tx after rx is locked
if (rx_hdmi_lock == 1) {
if (READ_PIO(PIO_IN0_BASE, PIO_LOOPBACK_MODE_OFFSET, PIO_LOOPBACK_MODE_WIDTH) == 1) {
rx_frl_rate = READ_PIO(PIO_IN0_BASE, PIO_RX_FRL_RATE_OFFSET, PIO_RX_FRL_RATE_WIDTH);
tx_xcvr_reconfig(rx_frl_rate);
} else {
tx_xcvr_reconfig(tx_frl_rate);
} } }
- Replace with:
tx_xcvr_reconfig(tx_frl_rate);
- Remove the following lines:
- For HDMI RX-only designs, keep only the following lines in the main.c script:
REDRIVER_INIT();
hdmi_rx_init();