TMDS Encoder (VHDL)

Logic Home

Code Download

Version 2.0: tmds_encoder.vhd (4.9 KB)
Corrected bug in the control signals

Version 1.0: no longer available

Features

  • VHDL source code of a transition-minimized differential signaling (TMDS) encoder
  • 8b/10b encoder compliant with the Digital Visual Interface (DVI) Specification, Section 3.2

Introduction

This details a TMDS encoder component, written in VHDL for use in CPLDs and FPGAs. The component reads data and control signals from user logic over a parallel interface, performs the encoding algorithm, and outputs the result in a parallel fashion. It was designed using Quartus II, version 13.1. Figure 1 illustrates a typical example of the TMDS encoder integrated into a system.

block_diagram

Figure 1. Example Implementation

Background

TMDS is a method for serially transmitting high-speed digital signals. The “transition minimized” part is realized by the 8b/10b encoding algorithm used by TMDS, which is implemented here in digital logic. This TMDS encoding is used in several digital communication interfaces, including the DVI and HDMI video interfaces. It is important to note that this TMDS encoding was created by Silicon Image in 1999 and is not the same as the original 8b/10b encoding introduced by IBM in 1983. The “differential signaling” part of the technique relates to the IO circuit and is not discussed in detail here.

The TMDS encoding algorithm reduces electromagnetic emissions, achieves DC balance on the wires, and still allows for reliable clock recovery. The encoding seeks to minimize the transitions (thus reducing interference between channels) while still retaining frequent enough transitions for clock recovery. By keeping the number of ones and zeros on the line nearly equal, the DC balance part of the encoding algorithm improves the noise margin.

Figure 2 shows the TMDS encoding algorithm.

Figure 2. Encoding Algorithm

For more information, see the DVI specification attached below in the Additional Information section. It explains the entire TMDS technology in detail.

Port Descriptions

Table 1 describes the TMDS encoder’s ports.

Table 1. Port Descriptions

Conclusion

This TMDS encoder is a programmable logic component that implements the 8b/10b encoding algorithm required by the DVI and HDMI video interfaces.

Additional Information

Digial Visual Interface DVI Specification, Revision 1.0, Digital Display Working Group dvi_spec-V1_0.pdf (1.3 MB)