For the RZ/A1 RSK Board, some resistor changes are needed in order to route all the LVDS signals to the CN17 connector. On the RSK board, the defaults 0-Ohm resistor populations for P5_5 is for RAW NAND flash, and P5_7 is for SPDIF_OUT (S/PDIF digital audio interface).
RZA1H Display-it Kit Multiplexed lines. |
RZA1H Display-it Kit PCB Layout Resister Location. Replace resisters R167 and R169. Place these resisters in the empty slots R170 and R168 |
RZA1H Display-it Kit Board View. Shows the location of resister R167 and R169. |
While the LVDS is supported in all the RZA1 Drivers the parallel TFT is used for demos. A simple LVDS and parallel demos is available here. The demos includes the full FreeRTOS SDK for the RZA1H and RZA1M. The demo shows a color black ground that switches between 8 colors. This demo is recommended to verify that the hardware is working, the the VDC Display driver graphics layer is configured correctly, and the display driver control signals (TCON) are correct. Below shows where the configurations are located in the project.
The below code snippets show where to enable the LVDS. Simple set the preprocessor define LVDS = 1;
#if ( TARGET_BOARD == TARGET_BOARD_RSK ) #define LVDS 1 /* 0 or 1 */ #if (LVDS==0) #include "lcd/rsk_tft_clk.h" /* user define */ #include "lcd/rsk_tft_ch0.h" /* QE for Video Display Controller 5 output header file */ #elif (LVDS==1) #include "lcd/rsk_lvds_clk.h" /* user define */ #include "lcd/rsk_lvds_ch0.h" /* QE for Video Display Controller 5 output header file */ #endif
#if (TARGET_BOARD == TARGET_BOARD_RSK) #define LVDS 1 /* 0 or 1 */ #if (LVDS == 0) /* RSK TFT (RGB888) Panel clock : LCD0_CLK ... P11_15, 5th alternative function HSYNC : LCD0_TCON2 ... P11_12, 5th alternative function VSYNC : LCD0_TCON3 ... P11_11, 5th alternative function DE : LCD0_TCON4 ... P11_10, 5th alternative function LCD0_DATA R[7:0] : LCD0_DATA[23:16] ... P10_0 ~ P10_7, 5th alternative function G[7:0] : LCD0_DATA[15:8] ... P10_8 ~ P10_15, 5th alternative function B[7:0] : LCD0_DATA[7:0] ... P11_0 ~ P11_7, 5th alternative function */
The clock and display settings for the LVDS are located here.