DVB Standard#
Digital Video Broadcasting (DVB) is a complete digital television solution, which includes DVB-C (Digital Video Broadcasting - Cable), DVB-T (Digital Video Broadcasting - Terrestrial), and DVB-S (Digital Video Broadcasting - Satellite). Below, we mainly introduce the DVB-S system.
DVB-S is the standard for digital satellite broadcasting, with advantages such as wide coverage and large program capacity. The signal uses RS(188,204) and convolutional coding in a concatenated manner, with QPSK modulation.
Basic Principles of DVB-S Channel Coding and Modulation#
Principle Block Diagram#
According to the ETSI DVB-S standard, the principle block diagram is shown below.
Due to the significant impact of power limitations on DTH services provided by satellites, the main design goal should be noise and interference resistance rather than spectral efficiency. To achieve high energy efficiency without excessively compromising spectral efficiency, the system should use QPSK modulation along with convolutional codes and RS codes in a concatenated manner.
Interface#
Channel Coding#
TS Stream Adaptation Unit (Adaptation)#
The input TS stream is packaged according to the MPEG-2 format with a fixed length, where the packet length is 188, and the frame header is a synchronization word . The DVB-S standard requires that every 8 TS packets form a superframe, with the 8 synchronization headers in the superframe inverted to , while the remaining synchronization headers remain unchanged. Additionally, null packets must be automatically inserted, adding 16 zeros after the data packet to extend the length of the 188-length data packet to a length of 204, establishing clock matching and interface connection with the subsequent channel coding module.
Scrambling Unit (Energy Dispersal)#
The baseband signal contains many sequences of consecutive "1s" or "0s," which can lead to a significant amount of low-frequency components in the baseband signal spectrum, making it unfavorable for signal transmission in the channel and for clock signal extraction at the receiver. Therefore, scrambling is used to convert the TS stream into a pseudo-random sequence. The schematic of the randomization in the DVB-S standard is as follows:
The polynomial for generating the pseudo-random binary sequence is as follows:
Scrambling is processed in units of superframes composed of 8 data packets. At the start of processing each unit, the sequence is loaded into the register for scrambling. The synchronization word of the data packet is not subjected to scrambling.
RS Coding#
The outer code uses RS coding, which has the ability to correct both random and burst errors, with a more effective correction for burst errors. The coding format used in DVB-S is RS(239,255) truncated to obtain RS(188,204) coding, with a maximum correctable length of 8 bytes, starting from the synchronization word or .
Brief Description of the Encoding Principle#
Assuming the information polynomial is
The code generation polynomial is
where , then the expanded form of the generating polynomial is
After dividing by , the remainder is a polynomial of degree 15 in , and its 16 coefficients are the generated 16 check bytes, which are added to the 188-length data packet to complete the encoding.
Convolutional Interleaving#
During the digital signal transmission process, some burst interference can lead to a series of data errors that may exceed the error correction range of the RS code. Convolutional interleaving can disperse the erroneous characters, making the channel behave like a nearly memoryless channel. In DVB-S, a convolutional interleaver with a depth of 12 is used. The block diagram of interleaving and deinterleaving is as follows:
Convolutional Coding#
The inner code uses a type convolutional code, with a coding efficiency of , consisting of 6 shift registers and 2 modulo-2 adders, where 1 bit signal generates 2 bits of coded signal, with a constraint length of 7.
When the channel quality is good, the coded signal can be punctured to improve channel utilization.
Matlab Simulation#
TS Stream Adaptation and Scrambling Module#
CLKdivide#
The bitrate of a high-definition television signal is , so the rate of the binary signal is , and the input data is of type , making the input signal rate . Therefore, the CLKdivide module divides the clock down to and .
sigSource#
This module generates the input TS stream signal and produces the start, end, and enable signals for RS encoding. Since a pause is required after outputting each 188-byte length data packet to insert null packets, an enable system is used, which pulls down the enable signal to insert null packets after counting 188 times.
HeaderProcess#
This module performs rate conversion and superframe grouping on the input TS stream, combining every eight data packets into a superframe and inverting the first synchronization word from to , while generating the enable signal for sigSource. It also generates control signals for the scrambling module.
The first Multiport Switch is used for inserting null packets, while the second Multiport Switch is used to invert the first synchronization word of the superframe.
myScrambler#
Designed according to the scrambling generation polynomial. The scrambling enable signal generated by HeaderProcess is pulled down exactly when the input synchronization word is present, and scrambling is not performed. The scrambling reset signal reloads the initial sequence “100101010000000” after one superframe has been input.
Simulation Data#
RS Coding Module#
Using the module from HDL Coder, since the clock rate is , a triggering module needs to be added to ensure that RS encoding is performed at the symbol rate .
Convolutional Interleaving#
Similarly, a triggering module is added to ensure that the interleaving speed is at the symbol rate .
uint8 to binary Module#
First, the input data is bitwise ANDed to extract each bit of data, which is then output bit by bit using a Multiport Switch. The enable rate of the counter is 8 times the symbol rate .
Convolutional Coding#
If no puncturing is performed, the coding efficiency is . Puncturing can also be performed to achieve coding efficiencies of . Within a certain bandwidth, the greater the coding efficiency, the greater the transmission efficiency, while the error correction capability decreases.
Vivado Implementation#
Most of the Vivado code is generated by HDL Coder or generated coefficient files from Matlab, which are then imported into Vivado's IP cores.
DataSource_Scrambler#
When generating HDL code directly, the sigSource module in the DataSource_Scrambler module does not meet timing requirements due to the establishment time at a frequency of . Therefore, the following configuration is made before generating HDL:
After adding a level of pipeline at the output, the timing can pass after synthesis and routing. Additionally, a delay module is added at all output signals of this module to form a pipeline.
Scrambling Module#
It can be seen that after every 8 data packets are input, the initial value of the internal D flip-flop of the scrambler is reset, while the inverted synchronization word is not subjected to scrambling.
Data Alignment#
During the simulation process, it was found that the synchronization word and the enable signal for RS encoding were not aligned. Therefore, the following module was added:
By delaying the output enable signal by one data cycle, the synchronization of the signals can be ensured.
RS Coding#
The data from Modelsim is imported into Matlab for decoding, and it can be seen that all 188 data packets have been completely decoded.
Raised Cosine Roll-off Filter#
Matlab Filter Design#
According to the requirements of the DVB-S standard, the raised cosine roll-off factor is , and the filter coefficients are designed using Matlab's filterDesigner tool.
In the FPGA, the filter coefficients need to be fixed-point processed.
After quantizing the coefficients to 32 bits, the amplitude response is as follows:
After quantizing the coefficients to 16 bits, the amplitude response is as follows:
It can be seen that the amplitude response of the 16-bit quantization is almost the same as that of the 32-bit quantization. To save space, 16-bit quantization is used.
After quantization, click on Target → Xilinx Coefficient File to generate the .coe file.
Vivado FIR Filter Design#
Select Source as COE File.
The input sampling frequency must match the clock frequency, without oversampling.
In Implementation, select the coefficient type as signed, and set the bit width to .
The input signal is ±1, so the input bit width is 2, with the first bit as the sign bit. Set the output mode to full precision.
Waveform#
Using XDMA for Data Input and Output Acquisition#
The structural block diagram is shown above.
The overall structure of the project is shown above, with data written into the system through the XDMA M_AXIS_H2C interface. Since the width of the written data is , and the input width of the signal processing part in the project is 8bit, an AXISDataWidthConverter module is added to convert the width from 16BYTE to 1BYTE and write it into FIFO. The AXIGPIO module reads the FIFO's almost full signal. If the FIFO is full, the almost full signal is pulled high, stopping data writing. When reading the QPSK signal generated by DVB-S, the signal width has become larger due to raised cosine roll-off filtering and modulation. To reduce complexity, the modulation signal is zero-padded to 128bit before being output to the Host through the M_AXIS_C2H interface.
For the debugging process, see