資料介紹

Table of Contents
ADV7511 Xilinx Evaluation Boards Reference Design
Introduction
The ADV7511 is a 225 MHz High-Definition Multimedia Interface (HDMI?) transmitter. It is part of the Artix-7 AC701, Kintex-7 KC705, Virtex-7 VC707, Zynq ZC702, Zynq ZC706 and the Zynq ZED evaluation boards. This reference design provides the video and audio interface between the FPGA and ADV7511 on board. The video uses a 16bit 422 YCbCr interface (except VC707 which uses 36bit 444 RGB interface) and the audio uses a single bit SPDIF interface.
Supported Carriers
Required Hardware
- AC701/KC705/VC707/ZC702/ZC706/Zed board.
- HDMI Monitor.
Required Software
- We upgrade the Xilinx tools on every release. The supported version number can be found in our git repository .
- A UART terminal (Tera Term/Hyperterminal) - baud rate 115200
Running Demo (SDK) Program
The following steps will get your system up and running.
- To begin, connect an HDMI cable between the board HDMI out and the HDMI monitor. After the hardware setup, turn the power on to the board.
- Download the ADV7511 HDMI Transmitter Library and install it. Go to the installation folder → Src and copy the TX folder into the no-OS repo folder → projects → adv7511.
- Build the HDL project according to the Building HDL wiki and copy the resulting .hdf file to the no-OS repo folder → projects → adv7511.
- Choose the carrier board in the software by uncommenting the appropriate define in the src/app_config.h file. For example, if the Zedboard carrier is needed, uncomment the #define PLATFORM_ZED in the file.
- Build the software project according to the Github wiki.50
If programming was successful, you should be seeing messages appear on the terminal as shown in figure below.
The reference design contains an example of how to:
- Initialize the ADV7511 High-Definition Multimedia Interface (HDMI?) transmitter.
- Check current AVR operating mode and depending on this result set the AV mute state.
- Display an image and play a sound.
Using the reference design
Functional description
Xilinx block diagram
ADV7511 block diagram
The reference design consists of two independent pcore modules.
The video part consists of an AXI DMAC interface and the ADV7511 video interface. The ADV7511 interface consists of a 16bit YCbCr 422 with separate synchroinzation signals. The DMA streams frame data to this core. The internal buffers of this pcore are small (1k) and do NOT buffer any frames as such. Additional resources may cause loss of synchronization due to DDR bandwidth requirements. The video core is capable of supporting any formats through a set of parameter registers (given below). The pixel clock is generated internal to the device and must be configured for the correct pixel frequency. It also allows a programmable color pattern for debug purposes. A zero to one transition on the enable bits trigger the corresponding action for HDMI enable and color pattern enable.
The reference design defaults to the 1080p video mode. Users may change the video settings by programming the following registers. The core requires a corresponding pixel clock to generate the video. This clock must be generated externally.
HSYNC count: is the total horizontal pixel clocks of the video, for 1080p this is 2200.
HSYNC width: is the pulse width in pixel clocks, for 1080p this is 44.
HSYNC DE Minimum: is the number of pixel clocks for the start of active video and is the sum of horizontal sync width and back porch, for 1080p this is 192 (44 + 148).
HSYNC DE Maximum: is the number of pixel clocks for the end of active video and is the sum of horizontal sync width, back porch and the active video count, for 1080p this is 2112 (44 + 148 + 1920).
VSYNC count: is the total vertical pixel clocks of the video, for 1080p this is 1125.
VSYNC width: is the pulse width in pixel clocks, for 1080p this is 5.
VSYNC DE Minimum: is the number of pixel clocks for the start of active video and is the sum of vertical sync width and back porch, for 1080p this is 41 (5 + 36).
VSYNC DE Maximum: is the number of pixel clocks for the end of active video and is the sum of vertical sync width, back porch and the active video count, for 1080p this is 1121 (5 + 36 + 1080).
Note that the pixel frequency for 1080p is 148.5MHz.
The reference design reads 24bits of RGB data from DDR and performs color space conversion (RGB to YCbCr) and down sampling (444 to 422). If bypassed, the lower 16bits of DDR data is passed to the HDMI interface as it is.
A color pattern register provides a quick check of any RGB values on the monitor. If enabled, the register data is used as the pixel data for the entire frame.
The audio part consists of an AXI DMAC interface and the ADV7511 spdif audio interface. The audio clock is derived from the bus clock. A programmable register (see below) controls the division factor. The audio data is read from the DDR as two 16bit words for the left and right channels. It is then transmitted on the SPDIF frame. The sample frequency and format may be controlled using the registers below. The reference design defaults to 48KHz.
Registers
Please refer to the regmap.txt file inside the pcores.
Audio Registers (axi_spdif_tx)
QW Address1 | Bits | Default | Name | Description |
---|---|---|---|---|
0x00 | 23:20 | 0 | mode | Sample format 0 to 8 (0-16bit, 8-24bit). |
15:8 | 0 | ratio | Clock divider for the transmit frequency = bus_clock/(1+ratio). | |
1 | 0 | txdata | Transmit data buffer enable (0x1) or disable (0x0). | |
0 | 0 | txenable | Transmitter enable (0x1) or disable (0x0). | |
0x01 | 7:6 | 0 | frequency | Sample frequency 0(44.1KHz), 1(48KHz), 2(32KHz) or 3(sample rate converter) (RO). |
3 | 0 | gstat | Generation status original/commercially pre-recorded data (0x1) or none (0x0) (RO). | |
2 | 0 | pre-emphasis | Pre-emphasis 50/15s (0x1) or none (0x0) (RO). | |
1 | 0 | copy | Copy permitted (0x1) or inhibited (0x0) (RO). | |
0 | 0 | audio | Data format is non-audio (0x1) or audio (0x0) (RO). | |
1. For AXI-Lite byte addresses, multiply by 4. |
Using the Software Reference Design
The Software Reference Design uses the ADV7511 Transmitter Library which is a collection of APIs that provide a consistent interface to ADV7511. The library is a software layer that sits between the application and the TX hardware and it is intended to serve two purposes:
- Provide the application with a set of APIs that can be used to configure HDMI TX hardware without the need for low-level register access. This makes the application portable across different revisions of the hardware and even across different hardware modules.
- Provide basic services to aid the application in controlling the TX module, such as interrupt service routine, HDCP high-level control and status information.
The documentation for the library's API can be accessed here: ADV7511 Transmitter API Documentation
The project contains 2 components: the Reference Design files and the ADV7511 Transmitter Library. All the components have to be downloaded from the links provided in the Downloads section.
Serial Setup
- The no-OS drivers source code does the following actions:
- Initializes the HDMI core;
- Initializes the ADV7511 part;
- Transmits to a HDMI capable monitor an image whoose resolution can be changed by typing in the terminal a number from 0 to 6;
- Transmits to a HDMI capable monitor a sound.
- This is what is transmitted through UART:
As an alternative an UART terminal can be used to capture the output of the example program. The number of used UART port depends on the computer's configuration. The following settings must be used in the UART terminal:
- Baud Rate: 115200bps
- Data: 8 bit
- Parity: None
- Stop bits: 1 bit
- Flow Control: none
Downloads
The HDL Reference Designs and the no-OS Software can be downloaded from the Analog Devices Github.
HDL Reference Designs:
- AC701 HDL Reference Design for Vivado: https://github.com/analogdevicesinc/hdl/tree/hdl_2017_r1/projects/adv7511/ac701
- KC705 HDL Reference Design for Vivado: https://github.com/analogdevicesinc/hdl/tree/hdl_2017_r1/projects/adv7511/kc705
- vC707 HDL Reference Design for Vivado: https://github.com/analogdevicesinc/hdl/tree/hdl_2017_r1/projects/adv7511/vc707
- ZC702 HDL Reference Design for Vivado: https://github.com/analogdevicesinc/hdl/tree/master/projects/adv7511/zc702
- ZC706 HDL Reference Design for Vivado: https://github.com/analogdevicesinc/hdl/tree/master/projects/adv7511/zc706
- ZED HDL Reference Design for Vivado: https://github.com/analogdevicesinc/hdl/tree/master/projects/adv7511/zed
no-OS Software:
- Questions? Ask Help & Support.
More information
- KC705原理圖 0次下載
- AN-1270: 基于ADV7511/ADV7511W/ADV7513的視頻發(fā)生器
- ADV7511 IBIS型號
- FMC插入器&Xilinx KC705參考設(shè)計
- AD7656-1 FMC-SDP轉(zhuǎn)接器和評估板/Xilinx KC705參考設(shè)計
- AD7658-1 FMC-SDP轉(zhuǎn)接器和評估板/Xilinx KC705參考設(shè)計
- AD9833 FMC-SDP轉(zhuǎn)接器和評估板/Xilinx KC705參考設(shè)計
- AD9671評估板、ADC-FMC轉(zhuǎn)接器和Xilinx KC705參考設(shè)計
- AD5780 FMC-SDP轉(zhuǎn)接器和評估板/Xilinx KC705參考設(shè)計
- AD5449 FMC-SDP轉(zhuǎn)接器和評估板/Xilinx KC705參考設(shè)計
- CN0204 FMC-SDP轉(zhuǎn)接器和評估板/Xilinx KC705參考設(shè)計
- AD7980 FMC-SDP轉(zhuǎn)接器和評估板/Xilinx KC705參考設(shè)計
- ADV7511 HDMI變送器Linux驅(qū)動程序
- AD7988-1 FMC-SDP轉(zhuǎn)接器和評估板/Xilinx KC705參考設(shè)計
- AD7683 FMC-SDP轉(zhuǎn)接器和評估板/Xilinx KC705參考設(shè)計
- 使用Xilinx FPGA實現(xiàn)OFDM系統(tǒng) 1085次閱讀
- 一款CMOS,低壓,單通道,導(dǎo)通電阻為2Ω的單刀單擲開關(guān)CBMG701/702 1052次閱讀
- 基于MPC-ZC1工控單板的物聯(lián)網(wǎng)監(jiān)測控制系統(tǒng)設(shè)計 1265次閱讀
- 通過EsDA工具和MPC-ZC1平臺實現(xiàn)串口MQTT服務(wù)器 1136次閱讀
- ADI視頻編碼器EI3擴(kuò)展板的主要特性及應(yīng)用 3008次閱讀
- 中控智慧科技識別終端AI702簡介 5712次閱讀
- HDMI高清顯示接口驅(qū)動的傳輸原理 9157次閱讀
- Vivado下的仿真詳細(xì)過程 3.7w次閱讀
- ZYNQ結(jié)構(gòu)簡介_ZED-Board特征及應(yīng)用 6922次閱讀
- 補(bǔ)償導(dǎo)線kx和kc區(qū)別 1.6w次閱讀
- EMIO方式模擬I2C時序?qū)?b class="flag-6" style="color: red">ADV7511進(jìn)行讀寫 3996次閱讀
- 基于FPGA的DDR3 SDRAM控制器用戶接口設(shè)計 3662次閱讀
- 賽靈思ZYNQ-7000架構(gòu) 8158次閱讀
- Kevin學(xué)ZED之3:知一點點所以然 1207次閱讀
- Kevin學(xué)ZED之7:交叉編譯初探 953次閱讀
下載排行
本周
- 1AN-1267: 使用ADSP-CM408F ADC控制器的電機(jī)控制反饋采樣時序
- 1.41MB | 3次下載 | 免費(fèi)
- 2AN158 GD32VW553 Wi-Fi開發(fā)指南
- 1.51MB | 2次下載 | 免費(fèi)
- 3AN148 GD32VW553射頻硬件開發(fā)指南
- 2.07MB | 1次下載 | 免費(fèi)
- 4AN-1154: 采用恒定負(fù)滲漏電流優(yōu)化ADF4157和ADF4158 PLL的相位噪聲和雜散性能
- 199.28KB | 次下載 | 免費(fèi)
- 5AN-960: RS-485/RS-422電路實施指南
- 380.8KB | 次下載 | 免費(fèi)
- 6EE-249:使用VisualDSP在ADSP-218x DSP上實現(xiàn)軟件疊加
- 60.02KB | 次下載 | 免費(fèi)
- 7AN-1111: 使用ADuCM360/ADuCM361時的降低功耗選項
- 306.09KB | 次下載 | 免費(fèi)
- 8AN-904: ADuC7028評估板參考指南
- 815.82KB | 次下載 | 免費(fèi)
本月
- 1ADI高性能電源管理解決方案
- 2.43 MB | 450次下載 | 免費(fèi)
- 2免費(fèi)開源CC3D飛控資料(電路圖&PCB源文件、BOM、
- 5.67 MB | 138次下載 | 1 積分
- 3基于STM32單片機(jī)智能手環(huán)心率計步器體溫顯示設(shè)計
- 0.10 MB | 130次下載 | 免費(fèi)
- 4使用單片機(jī)實現(xiàn)七人表決器的程序和仿真資料免費(fèi)下載
- 2.96 MB | 44次下載 | 免費(fèi)
- 5美的電磁爐維修手冊大全
- 1.56 MB | 24次下載 | 5 積分
- 6如何正確測試電源的紋波
- 0.36 MB | 18次下載 | 免費(fèi)
- 7感應(yīng)筆電路圖
- 0.06 MB | 10次下載 | 免費(fèi)
- 8萬用表UT58A原理圖
- 0.09 MB | 9次下載 | 5 積分
總榜
- 1matlab軟件下載入口
- 未知 | 935121次下載 | 10 積分
- 2開源硬件-PMP21529.1-4 開關(guān)降壓/升壓雙向直流/直流轉(zhuǎn)換器 PCB layout 設(shè)計
- 1.48MB | 420062次下載 | 10 積分
- 3Altium DXP2002下載入口
- 未知 | 233088次下載 | 10 積分
- 4電路仿真軟件multisim 10.0免費(fèi)下載
- 340992 | 191367次下載 | 10 積分
- 5十天學(xué)會AVR單片機(jī)與C語言視頻教程 下載
- 158M | 183335次下載 | 10 積分
- 6labview8.5下載
- 未知 | 81581次下載 | 10 積分
- 7Keil工具M(jìn)DK-Arm免費(fèi)下載
- 0.02 MB | 73810次下載 | 10 積分
- 8LabVIEW 8.6下載
- 未知 | 65988次下載 | 10 積分
評論