Home

Awesome

hdmi

English | Français | Help translate

hdmi

SystemVerilog code for HDMI 1.4b video/audio output on an FPGA.

Why?

Most free and open source HDMI source (computer/gaming console) implementations actually output a DVI signal, which HDMI sinks (TVs/monitors) are backwards compatible with. To support audio and other HDMI-only functionality, a true HDMI signal must be sent. The code in this repository lets you do that without having to license an HDMI IP block from anyone.

Demo: VGA-compatible text mode, 720x480p on a Dell Ultrasharp 1080p Monitor

GIF showing VGA-compatible text mode on a monitor

License

This project is dual-licensed under MIT and Apache 2.0.

SPDX-License-Identifier: MIT OR Apache-2.0

Usage

  1. Take files from src/ and add them to your own project. If you use hdlmake, you can add this repository itself as a remote module.
  2. Other helpful modules for displaying text / generating sound are also available in this GitHub organization.
  3. Consult the simple usage example in top/top.sv.
  4. See hdmi-demo for code that runs the demo as seen the demo GIF.
  5. Read through the parameters in hdmi.sv and tailor any instantiations to your situation.
  6. Please create an issue if you run into a problem or have any questions. Make sure you have consulted the troubleshooting section first.

Platform Support

To-do List (upon request)

Pixel Clock

You'll need to set up a PLL for producing the two HDMI clocks. The pixel clock for each supported format is shown below:

Video ResolutionVideo ID Code(s)Refresh RatePixel Clock FrequencyProgressive/Interlaced
640x480160Hz25.2MHzP
640x480159.94Hz25.175MHzP
720x4802, 360Hz27.027MHzP
720x4802, 359.94Hz27MHzP
720x57617, 1850Hz27MHzP
1280x720460Hz74.25MHzP
1280x720459.94Hz74.176MHzP
1280x7201950Hz74.25MHzP
1920x10801660Hz148.5MHzP
1920x10801659.94Hz148.352MHzP
1920x10803430Hz74.25MHzP
1920x10803429.97Hz74.176MHzP
3840x2160 (not ready)97, 10760Hz594MHzP
3840x216095, 10530Hz297MHzP

The second clock is a clock 5 times as fast as the pixel clock. Even if your FPGA only has a single PLL, the Altera MegaWizard (or the Xilinx equivalent) should still be able to produce both. See hdl-util/hdmi-demo for example PLLs.

L-PCM Audio Bitrate / Sampling Frequency

Both audio bitrate and frequency are specified as parameters of the HDMI module. Bitrate can be any value from 16 through 24. Below is a simple mapping of sample frequency to the appropriate parameter

WARNING: the audio can be REALLY LOUD if you use the full dynamic range with hand-generated waveforms! Using less dynamic range means you won't be deafened! (i.e. audio_sample >> 8 )

Sampling FrequencyAUDIO_RATE value
32 kHz32000
44.1 kHz44100
88.2 kHz88200
176.4 kHz176400
48 kHz48000
96 kHz96000
192 kHz192000

Source Device Information Code

This code is sent in the Source Product Description InfoFrame via SOURCE_DEVICE_INFORMATION to give HDMI sinks an idea of what capabilities an HDMI source might have. It may be used for displaying a relevant icon in an input list (i.e. DVD logo for a DVD player).

CodeSource Device Information
0x00Unknown
0x01Digital Set-top Box
0x02DVD Player
0x03Digital VHS
0x04HDD Videorecorder
0x05Digital Video Camera
0x06Digital Still Camera
0x07Video CD
0x08Game
0x09PC General
0x0aBlu-Ray Disc
0x0bSuper Audio CD
0x0cHD DVD
0x0dPortable Media Player

Things to be aware of / Troubleshooting

Licensing

Dual-licensed under Apache License 2.0 and MIT License.

HDMI Adoption

I am NOT a lawyer, the below advice is given based on discussion from a Hacker News post and my research.

HDMI itself is not a royalty free technology, unfortunately. You are free to use it for testing, development, etc. but to receive the HDMI LA's (licensing administration) blessing to create and sell end-user products:

The manufacturer of the finished end-user product MUST be a licensed HDMI Adopter, and The finished end-user product MUST satisfy all requirements as defined in the Adopter Agreement including but not limited to passing compliance testing either at an HDMI ATC or through self-testing.

Becoming an adopter means you have to pay a flat annual fee (~ $1k-$2k) and a per device royalty (~ $0.05). If you are selling an end-user device and DO NOT want to become an adopter, you can turn on the DVI_OUTPUT parameter, which will disable any HDMI-only logic, like audio.

Please consult your lawyer if you have any concerns. Here are a few noteworthy cases that may help you make a decision:

Alternative Implementations

If you know of another good alternative, open an issue and it will be added.

Reference Documents

These documents are not hosted here! They are available on Library Genesis and at other locations.

Special Thanks