Opencv 3.1 project on GR-PEACH board

Fork of gr-peach-opencv-project by the do

Committer:
thedo
Date:
Tue Jul 04 06:23:13 2017 +0000
Revision:
170:54ff26da7eb6
Parent:
166:3a9487d57a5c
project opencv 3.1 on GR PEACH board, no use SD card.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thedo 166:3a9487d57a5c 1 /*******************************************************************************
thedo 166:3a9487d57a5c 2 * DISCLAIMER
thedo 166:3a9487d57a5c 3 * This software is supplied by Renesas Electronics Corporation and is only
thedo 166:3a9487d57a5c 4 * intended for use with Renesas products. No other uses are authorized. This
thedo 166:3a9487d57a5c 5 * software is owned by Renesas Electronics Corporation and is protected under
thedo 166:3a9487d57a5c 6 * all applicable laws, including copyright laws.
thedo 166:3a9487d57a5c 7 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
thedo 166:3a9487d57a5c 8 * THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
thedo 166:3a9487d57a5c 9 * LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
thedo 166:3a9487d57a5c 10 * AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
thedo 166:3a9487d57a5c 11 * TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
thedo 166:3a9487d57a5c 12 * ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
thedo 166:3a9487d57a5c 13 * FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
thedo 166:3a9487d57a5c 14 * ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
thedo 166:3a9487d57a5c 15 * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
thedo 166:3a9487d57a5c 16 * Renesas reserves the right, without notice, to make changes to this software
thedo 166:3a9487d57a5c 17 * and to discontinue the availability of this software. By using this software,
thedo 166:3a9487d57a5c 18 * you agree to the additional terms and conditions found by accessing the
thedo 166:3a9487d57a5c 19 * following link:
thedo 166:3a9487d57a5c 20 * http://www.renesas.com/disclaimer
thedo 166:3a9487d57a5c 21 * Copyright (C) 2012 - 2015 Renesas Electronics Corporation. All rights reserved.
thedo 166:3a9487d57a5c 22 *******************************************************************************/
thedo 166:3a9487d57a5c 23 #include <string.h>
thedo 166:3a9487d57a5c 24 #include "DisplayBace.h"
thedo 166:3a9487d57a5c 25 #include "gr_peach_vdc5.h"
thedo 166:3a9487d57a5c 26
thedo 166:3a9487d57a5c 27 /**************************************************************************//**
thedo 166:3a9487d57a5c 28 * @brief Constructor of the DisplayBase class
thedo 166:3a9487d57a5c 29 * @param[in] None
thedo 166:3a9487d57a5c 30 * @retval None
thedo 166:3a9487d57a5c 31 ******************************************************************************/
thedo 166:3a9487d57a5c 32 DisplayBase::DisplayBase( void )
thedo 166:3a9487d57a5c 33 {
thedo 166:3a9487d57a5c 34 /* Lcd setting (default) */
thedo 166:3a9487d57a5c 35 _lcd_config.lcd_type = LCD_TYPE_PARALLEL_RGB; /* LVDS or Pararel RGB */
thedo 166:3a9487d57a5c 36 _lcd_config.intputClock = 66.67f; /* P1 clk [MHz] ex. 66.67 */
thedo 166:3a9487d57a5c 37 _lcd_config.outputClock = 40.00f; /* LCD clk [MHz] ex. 33.33 */
thedo 166:3a9487d57a5c 38
thedo 166:3a9487d57a5c 39 _lcd_config.lcd_outformat = LCD_OUTFORMAT_RGB888; /* Output format select */
thedo 166:3a9487d57a5c 40 _lcd_config.lcd_edge = EDGE_FALLING; /* Output phase control of LCD_DATA23 to LCD_DATA0 pin */
thedo 166:3a9487d57a5c 41
thedo 166:3a9487d57a5c 42 _lcd_config.h_toatal_period = (800u + 40u + 128u+ 88u); /* Free-running Hsync period */
thedo 166:3a9487d57a5c 43 _lcd_config.v_toatal_period = (600u + 1u + 4u + 23u); /* Free-running Vsync period */
thedo 166:3a9487d57a5c 44 _lcd_config.h_disp_widht = 800u; /* LCD display area size, horizontal width */
thedo 166:3a9487d57a5c 45 _lcd_config.v_disp_widht = 600u; /* LCD display area size, vertical width */
thedo 166:3a9487d57a5c 46 _lcd_config.h_back_porch = (128u+ 88u); /* LCD display horizontal back porch period */
thedo 166:3a9487d57a5c 47 _lcd_config.v_back_porch = (4u + 23u); /* LCD display vertical back porch period */
thedo 166:3a9487d57a5c 48
thedo 166:3a9487d57a5c 49 _lcd_config.h_sync_port = LCD_TCON_PIN_0; /* TCONn or Not use(-1) */
thedo 166:3a9487d57a5c 50 _lcd_config.h_sync_port_polarity = SIG_POL_NOT_INVERTED; /* Polarity inversion control of signal */
thedo 166:3a9487d57a5c 51 _lcd_config.h_sync_width = 128u; /* Hsync width */
thedo 166:3a9487d57a5c 52
thedo 166:3a9487d57a5c 53 _lcd_config.v_sync_port = LCD_TCON_PIN_1; /* TCONn or Not use(-1) */
thedo 166:3a9487d57a5c 54 _lcd_config.v_sync_port_polarity = SIG_POL_NOT_INVERTED; /* Polarity inversion control of signal */
thedo 166:3a9487d57a5c 55 _lcd_config.v_sync_width = 4u; /* Vsync width */
thedo 166:3a9487d57a5c 56
thedo 166:3a9487d57a5c 57 _lcd_config.de_port = LCD_TCON_PIN_NON; /* TCONn or Not use(-1) */
thedo 166:3a9487d57a5c 58 _lcd_config.de_port_polarity = SIG_POL_NOT_INVERTED; /* Polarity inversion control of signal */
thedo 166:3a9487d57a5c 59
thedo 166:3a9487d57a5c 60 /* Digital video input setting (default) */
thedo 166:3a9487d57a5c 61 _video_input_sel = INPUT_SEL_VDEC; /* Video decoder output signals */
thedo 166:3a9487d57a5c 62 _video_ext_in_config.inp_format = VIDEO_EXTIN_FORMAT_BT601;
thedo 166:3a9487d57a5c 63 _video_ext_in_config.inp_pxd_edge = EDGE_RISING; /* Clock edge select for capturing data */
thedo 166:3a9487d57a5c 64 _video_ext_in_config.inp_vs_edge = EDGE_RISING; /* Clock edge select for capturing Vsync signals */
thedo 166:3a9487d57a5c 65 _video_ext_in_config.inp_hs_edge = EDGE_RISING; /* Clock edge select for capturing Hsync signals */
thedo 166:3a9487d57a5c 66 _video_ext_in_config.inp_endian_on = OFF; /* External input bit endian change on/off */
thedo 166:3a9487d57a5c 67 _video_ext_in_config.inp_swap_on = OFF; /* External input B/R signal swap on/off */
thedo 166:3a9487d57a5c 68 _video_ext_in_config.inp_vs_inv = SIG_POL_NOT_INVERTED; /* External input DV_VSYNC inversion control */
thedo 166:3a9487d57a5c 69 _video_ext_in_config.inp_hs_inv = SIG_POL_INVERTED; /* External input DV_HSYNC inversion control */
thedo 166:3a9487d57a5c 70 _video_ext_in_config.inp_f525_625 = EXTIN_LINE_525; /* Number of lines for BT.656 external input */
thedo 166:3a9487d57a5c 71 _video_ext_in_config.inp_h_pos = EXTIN_H_POS_CRYCBY; /* Y/Cb/Y/Cr data string start timing to Hsync reference */
thedo 166:3a9487d57a5c 72 _video_ext_in_config.cap_vs_pos = 6u; /* Capture start position from Vsync */
thedo 166:3a9487d57a5c 73 _video_ext_in_config.cap_hs_pos = 302u; /* Capture start position form Hsync */
thedo 166:3a9487d57a5c 74 _video_ext_in_config.cap_width = 640u; /* Capture width */
thedo 166:3a9487d57a5c 75 _video_ext_in_config.cap_height = 468u; /* Capture height should be a multiple of 4 */
thedo 166:3a9487d57a5c 76 } /* End of constructor method () */
thedo 166:3a9487d57a5c 77
thedo 166:3a9487d57a5c 78 /**************************************************************************//**
thedo 166:3a9487d57a5c 79 * @brief Graphics initialization processing
thedo 166:3a9487d57a5c 80 * @param[in] lcd_config : LCD configuration
thedo 166:3a9487d57a5c 81 * @retval error code
thedo 166:3a9487d57a5c 82 ******************************************************************************/
thedo 166:3a9487d57a5c 83 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 84 DisplayBase::Graphics_init( lcd_config_t * lcd_config )
thedo 166:3a9487d57a5c 85 {
thedo 166:3a9487d57a5c 86 if( lcd_config != NULL ) {
thedo 166:3a9487d57a5c 87 _lcd_config.lcd_type = lcd_config->lcd_type; /* LVDS or Pararel RGB */
thedo 166:3a9487d57a5c 88 _lcd_config.intputClock = lcd_config->intputClock; /* P1 clk [MHz] ex. 66.67 */
thedo 166:3a9487d57a5c 89 _lcd_config.outputClock = lcd_config->outputClock; /* LCD clk [MHz] ex. 33.33 */
thedo 166:3a9487d57a5c 90
thedo 166:3a9487d57a5c 91 _lcd_config.lcd_outformat = lcd_config->lcd_outformat; /* Output format select */
thedo 166:3a9487d57a5c 92 _lcd_config.lcd_edge = lcd_config->lcd_edge; /* Output phase control of LCD_DATA23 to LCD_DATA0 pin */
thedo 166:3a9487d57a5c 93
thedo 166:3a9487d57a5c 94 _lcd_config.h_toatal_period = lcd_config->h_toatal_period; /* Free-running Hsync period */
thedo 166:3a9487d57a5c 95 _lcd_config.v_toatal_period = lcd_config->v_toatal_period; /* Free-running Vsync period */
thedo 166:3a9487d57a5c 96 _lcd_config.h_disp_widht = lcd_config->h_disp_widht; /* LCD display area size, horizontal width */
thedo 166:3a9487d57a5c 97 _lcd_config.v_disp_widht = lcd_config->v_disp_widht; /* LCD display area size, vertical width */
thedo 166:3a9487d57a5c 98 _lcd_config.h_back_porch = lcd_config->h_back_porch; /* LCD display horizontal back porch period */
thedo 166:3a9487d57a5c 99 _lcd_config.v_back_porch = lcd_config->v_back_porch; /* LCD display vertical back porch period */
thedo 166:3a9487d57a5c 100
thedo 166:3a9487d57a5c 101 _lcd_config.h_sync_port = lcd_config->h_sync_port; /* TCONn or Not use(-1) */
thedo 166:3a9487d57a5c 102 _lcd_config.h_sync_port_polarity = lcd_config->h_sync_port_polarity;/* Polarity inversion control of signal */
thedo 166:3a9487d57a5c 103 _lcd_config.h_sync_width = lcd_config->h_sync_width; /* Hsync width */
thedo 166:3a9487d57a5c 104
thedo 166:3a9487d57a5c 105 _lcd_config.v_sync_port = lcd_config->v_sync_port; /* TCONn or Not use(-1) */
thedo 166:3a9487d57a5c 106 _lcd_config.v_sync_port_polarity = lcd_config->v_sync_port_polarity;/* Polarity inversion control of signal */
thedo 166:3a9487d57a5c 107 _lcd_config.v_sync_width = lcd_config->v_sync_width; /* Vsync width */
thedo 166:3a9487d57a5c 108
thedo 166:3a9487d57a5c 109 _lcd_config.de_port = lcd_config->de_port; /* TCONn or Not use(-1) */
thedo 166:3a9487d57a5c 110 _lcd_config.de_port_polarity = lcd_config->de_port_polarity; /* Polarity inversion control of signal */
thedo 166:3a9487d57a5c 111 }
thedo 166:3a9487d57a5c 112
thedo 166:3a9487d57a5c 113 return (graphics_error_t)DRV_Graphics_Init( (drv_lcd_config_t *)&_lcd_config );
thedo 166:3a9487d57a5c 114 } /* End of method Graphics_init() */
thedo 166:3a9487d57a5c 115
thedo 166:3a9487d57a5c 116 /**************************************************************************//**
thedo 166:3a9487d57a5c 117 * @brief Graphics Video initialization processing
thedo 166:3a9487d57a5c 118 * @param[in] video_input_sel : Input select
thedo 166:3a9487d57a5c 119 * @param[in] video_ext_in_config : Digtal video input configuration
thedo 166:3a9487d57a5c 120 * @retval error code
thedo 166:3a9487d57a5c 121 ******************************************************************************/
thedo 166:3a9487d57a5c 122 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 123 DisplayBase::Graphics_Video_init( video_input_sel_t video_input_sel, video_ext_in_config_t * video_ext_in_config )
thedo 166:3a9487d57a5c 124 {
thedo 166:3a9487d57a5c 125 graphics_error_t error = GRAPHICS_OK;
thedo 166:3a9487d57a5c 126
thedo 166:3a9487d57a5c 127 if( _video_input_sel == INPUT_SEL_VDEC || _video_input_sel == INPUT_SEL_EXT ) {
thedo 166:3a9487d57a5c 128 _video_input_sel = video_input_sel;
thedo 166:3a9487d57a5c 129 } else {
thedo 166:3a9487d57a5c 130 error = GRAPHICS_PARAM_RANGE_ERR;
thedo 166:3a9487d57a5c 131 }
thedo 166:3a9487d57a5c 132
thedo 166:3a9487d57a5c 133 if( error == GRAPHICS_OK ) {
thedo 166:3a9487d57a5c 134 if( video_ext_in_config != NULL ) {
thedo 166:3a9487d57a5c 135 /* Signals supplied via the external input pins */
thedo 166:3a9487d57a5c 136 /* if using Video decoder output signals, not using value. */
thedo 166:3a9487d57a5c 137 _video_ext_in_config.inp_format = video_ext_in_config->inp_format;
thedo 166:3a9487d57a5c 138 _video_ext_in_config.inp_pxd_edge = video_ext_in_config->inp_pxd_edge;
thedo 166:3a9487d57a5c 139 _video_ext_in_config.inp_vs_edge = video_ext_in_config->inp_vs_edge;
thedo 166:3a9487d57a5c 140 _video_ext_in_config.inp_hs_edge = video_ext_in_config->inp_hs_edge;
thedo 166:3a9487d57a5c 141 _video_ext_in_config.inp_endian_on = video_ext_in_config->inp_endian_on;
thedo 166:3a9487d57a5c 142 _video_ext_in_config.inp_swap_on = video_ext_in_config->inp_swap_on;
thedo 166:3a9487d57a5c 143 _video_ext_in_config.inp_vs_inv = video_ext_in_config->inp_vs_inv;
thedo 166:3a9487d57a5c 144 _video_ext_in_config.inp_hs_inv = video_ext_in_config->inp_hs_inv;
thedo 166:3a9487d57a5c 145 _video_ext_in_config.inp_f525_625 = video_ext_in_config->inp_f525_625;
thedo 166:3a9487d57a5c 146 _video_ext_in_config.inp_h_pos = video_ext_in_config->inp_h_pos;
thedo 166:3a9487d57a5c 147 _video_ext_in_config.cap_vs_pos = video_ext_in_config->cap_vs_pos;
thedo 166:3a9487d57a5c 148 _video_ext_in_config.cap_hs_pos = video_ext_in_config->cap_hs_pos;
thedo 166:3a9487d57a5c 149 _video_ext_in_config.cap_width = video_ext_in_config->cap_width;
thedo 166:3a9487d57a5c 150 _video_ext_in_config.cap_height = video_ext_in_config->cap_height;
thedo 166:3a9487d57a5c 151 }
thedo 166:3a9487d57a5c 152 }
thedo 166:3a9487d57a5c 153 return (graphics_error_t)DRV_Graphics_Video_init( (drv_video_input_sel_t)video_input_sel,
thedo 166:3a9487d57a5c 154 (drv_video_ext_in_config_t *)&_video_ext_in_config );
thedo 166:3a9487d57a5c 155 } /* End of method Graphics_Video_init() */
thedo 166:3a9487d57a5c 156
thedo 166:3a9487d57a5c 157 /**************************************************************************//**
thedo 166:3a9487d57a5c 158 * @brief LCD I/O initialization processing
thedo 166:3a9487d57a5c 159 * @param[in] pin : Pointer of the pin assignment
thedo 166:3a9487d57a5c 160 * @param[in] pin_count : Total number of the pin assignment
thedo 166:3a9487d57a5c 161 * @retval error code
thedo 166:3a9487d57a5c 162 ******************************************************************************/
thedo 166:3a9487d57a5c 163 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 164 DisplayBase::Graphics_Lcd_Port_Init( PinName *pin, unsigned int pin_count )
thedo 166:3a9487d57a5c 165 {
thedo 166:3a9487d57a5c 166 return (graphics_error_t)DRV_Graphics_Lcd_Port_Init( pin, pin_count );
thedo 166:3a9487d57a5c 167 } /* End of method Graphics_Lcd_Port_Init() */
thedo 166:3a9487d57a5c 168
thedo 166:3a9487d57a5c 169 /**************************************************************************//**
thedo 166:3a9487d57a5c 170 * @brief LVDS I/O port initialization processing
thedo 166:3a9487d57a5c 171 * @param[in] pin : Pointer of the pin assignment
thedo 166:3a9487d57a5c 172 * @param[in] pin_count : Total number of the pin assignment
thedo 166:3a9487d57a5c 173 * @retval error code
thedo 166:3a9487d57a5c 174 ******************************************************************************/
thedo 166:3a9487d57a5c 175 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 176 DisplayBase::Graphics_Lvds_Port_Init( PinName *pin, unsigned int pin_count )
thedo 166:3a9487d57a5c 177 {
thedo 166:3a9487d57a5c 178 return (graphics_error_t)DRV_Graphics_Lvds_Port_Init( pin, pin_count );
thedo 166:3a9487d57a5c 179 } /* End of method Graphics_Lvds_Port_Init() */
thedo 166:3a9487d57a5c 180
thedo 166:3a9487d57a5c 181 /**************************************************************************//**
thedo 166:3a9487d57a5c 182 * @brief Digital video input I/O port initialization processing
thedo 166:3a9487d57a5c 183 * @param[in] pin : Pointer of the pin assignment
thedo 166:3a9487d57a5c 184 * @param[in] pin_count : Total number of the pin assignment
thedo 166:3a9487d57a5c 185 * @retval error code
thedo 166:3a9487d57a5c 186 ******************************************************************************/
thedo 166:3a9487d57a5c 187 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 188 DisplayBase::Graphics_Dvinput_Port_Init( PinName *pin, unsigned int pin_count )
thedo 166:3a9487d57a5c 189 {
thedo 166:3a9487d57a5c 190 return (graphics_error_t)DRV_Graphics_Dvinput_Port_Init( pin, pin_count );
thedo 166:3a9487d57a5c 191 } /* End of method Graphics_Dvinput_Port_Init() */
thedo 166:3a9487d57a5c 192
thedo 166:3a9487d57a5c 193 /**************************************************************************//**
thedo 166:3a9487d57a5c 194 * @brief IRQ interrupt handler setting
thedo 166:3a9487d57a5c 195 * @param[in] irq : VDC5 interrupt type
thedo 166:3a9487d57a5c 196 * @param[in] num : Interrupt line number
thedo 166:3a9487d57a5c 197 * @param[in] * callback : Interrupt callback function pointer
thedo 166:3a9487d57a5c 198 * @retval error code
thedo 166:3a9487d57a5c 199 ******************************************************************************/
thedo 166:3a9487d57a5c 200 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 201 DisplayBase::Graphics_Irq_Handler_Set( int_type_t irq, unsigned short num, void (* callback)(int_type_t) )
thedo 166:3a9487d57a5c 202 {
thedo 166:3a9487d57a5c 203 return (graphics_error_t)DRV_Graphics_Irq_Handler_Set( (vdc5_int_type_t)irq, num, (void (*)(vdc5_int_type_t))callback );
thedo 166:3a9487d57a5c 204 } /* End of method Graphics_Irq_Handler_Set() */
thedo 166:3a9487d57a5c 205
thedo 166:3a9487d57a5c 206 /**************************************************************************//**
thedo 166:3a9487d57a5c 207 * @brief Graphics surface read start processing
thedo 166:3a9487d57a5c 208 * @param[in] layer_id : Graphics layer ID
thedo 166:3a9487d57a5c 209 * @retval error code
thedo 166:3a9487d57a5c 210 ******************************************************************************/
thedo 166:3a9487d57a5c 211 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 212 DisplayBase::Graphics_Start( graphics_layer_t layer_id )
thedo 166:3a9487d57a5c 213 {
thedo 166:3a9487d57a5c 214 return (graphics_error_t)DRV_Graphics_Start( (drv_graphics_layer_t)layer_id );
thedo 166:3a9487d57a5c 215 } /* End of method Graphics_Start() */
thedo 166:3a9487d57a5c 216
thedo 166:3a9487d57a5c 217 /**************************************************************************//**
thedo 166:3a9487d57a5c 218 * @brief Graphics surface read stop processing
thedo 166:3a9487d57a5c 219 * @param[in] layer_id : Graphics layer ID
thedo 166:3a9487d57a5c 220 * @retval error code
thedo 166:3a9487d57a5c 221 ******************************************************************************/
thedo 166:3a9487d57a5c 222 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 223 DisplayBase::Graphics_Stop( graphics_layer_t layer_id )
thedo 166:3a9487d57a5c 224 {
thedo 166:3a9487d57a5c 225 return (graphics_error_t)DRV_Graphics_Stop( (drv_graphics_layer_t)layer_id );
thedo 166:3a9487d57a5c 226 } /* End of method Graphics_Stop() */
thedo 166:3a9487d57a5c 227
thedo 166:3a9487d57a5c 228 /**************************************************************************//**
thedo 166:3a9487d57a5c 229 * @brief Video surface write start processing
thedo 166:3a9487d57a5c 230 * @param[in] video_input_channel : Video input channel
thedo 166:3a9487d57a5c 231 * @retval error code
thedo 166:3a9487d57a5c 232 ******************************************************************************/
thedo 166:3a9487d57a5c 233 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 234 DisplayBase::Video_Start( video_input_channel_t video_input_channel )
thedo 166:3a9487d57a5c 235 {
thedo 166:3a9487d57a5c 236 graphics_error_t error = GRAPHICS_OK;
thedo 166:3a9487d57a5c 237
thedo 166:3a9487d57a5c 238 /* Digital video inputs : supporting video_input_channel 0 only. */
thedo 166:3a9487d57a5c 239 if( _video_input_sel == INPUT_SEL_EXT && video_input_channel == VIDEO_INPUT_CHANNEL_1 ) {
thedo 166:3a9487d57a5c 240 error = GRAPHICS_PARAM_RANGE_ERR;
thedo 166:3a9487d57a5c 241 }
thedo 166:3a9487d57a5c 242
thedo 166:3a9487d57a5c 243 if( error == GRAPHICS_OK ) {
thedo 166:3a9487d57a5c 244 error = (graphics_error_t)DRV_Video_Start( (drv_video_input_channel_t)video_input_channel );
thedo 166:3a9487d57a5c 245 }
thedo 166:3a9487d57a5c 246 return error;
thedo 166:3a9487d57a5c 247 } /* End of method Video_Start() */
thedo 166:3a9487d57a5c 248
thedo 166:3a9487d57a5c 249 /**************************************************************************//**
thedo 166:3a9487d57a5c 250 * @brief Video surface write stop processing
thedo 166:3a9487d57a5c 251 * @param[in] video_input_channel : Video input channel
thedo 166:3a9487d57a5c 252 * @retval error code
thedo 166:3a9487d57a5c 253 ******************************************************************************/
thedo 166:3a9487d57a5c 254 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 255 DisplayBase::Video_Stop( video_input_channel_t video_input_channel )
thedo 166:3a9487d57a5c 256 {
thedo 166:3a9487d57a5c 257 graphics_error_t error = GRAPHICS_OK;
thedo 166:3a9487d57a5c 258
thedo 166:3a9487d57a5c 259 /* Digital video inputs : supporting video_input_channel 0 only. */
thedo 166:3a9487d57a5c 260 if( _video_input_sel == INPUT_SEL_EXT && video_input_channel == VIDEO_INPUT_CHANNEL_1 ) {
thedo 166:3a9487d57a5c 261 error = GRAPHICS_PARAM_RANGE_ERR;
thedo 166:3a9487d57a5c 262 }
thedo 166:3a9487d57a5c 263
thedo 166:3a9487d57a5c 264 if( error == GRAPHICS_OK ) {
thedo 166:3a9487d57a5c 265 error = (graphics_error_t)DRV_Video_Stop(
thedo 166:3a9487d57a5c 266 (drv_video_input_channel_t)video_input_channel );
thedo 166:3a9487d57a5c 267 }
thedo 166:3a9487d57a5c 268 return error;
thedo 166:3a9487d57a5c 269 } /* End of method Video_Stop() */
thedo 166:3a9487d57a5c 270
thedo 166:3a9487d57a5c 271 /**************************************************************************//**
thedo 166:3a9487d57a5c 272 * @brief Graphics surface read process setting
thedo 166:3a9487d57a5c 273 *
thedo 166:3a9487d57a5c 274 * Description:<br>
thedo 166:3a9487d57a5c 275 * This function supports the following 4 image format.
thedo 166:3a9487d57a5c 276 * YCbCr422, RGB565, RGB888, ARGB8888
thedo 166:3a9487d57a5c 277 * @param[in] layer_id : Graphics layer ID
thedo 166:3a9487d57a5c 278 * @param[in] framebuff : Base address of the frame buffer
thedo 166:3a9487d57a5c 279 * @param[in] fb_stride : Line offset address of the frame buffer
thedo 166:3a9487d57a5c 280 * @param[in] gr_format : Format of the frame buffer read signal
thedo 166:3a9487d57a5c 281 * @param[in] wr_rd_swa : frame buffer swap setting
thedo 166:3a9487d57a5c 282 * - WR_RD_WRSWA_NON : Not swapped: 1-2-3-4-5-6-7-8
thedo 166:3a9487d57a5c 283 * - WR_RD_WRSWA_8BIT : Swapped in 8-bit units: 2-1-4-3-6-5-8-7
thedo 166:3a9487d57a5c 284 * - WR_RD_WRSWA_16BIT : Swapped in 16-bit units: 3-4-1-2-7-8-5-6
thedo 166:3a9487d57a5c 285 * - WR_RD_WRSWA_16_8BIT : Swapped in 16-bit units + 8-bit units: 4-3-2-1-8-7-6-5
thedo 166:3a9487d57a5c 286 * - WR_RD_WRSWA_32BIT : Swapped in 32-bit units: 5-6-7-8-1-2-3-4
thedo 166:3a9487d57a5c 287 * - WR_RD_WRSWA_32_8BIT : Swapped in 32-bit units + 8-bit units: 6-5-8-7-2-1-4-3
thedo 166:3a9487d57a5c 288 * - WR_RD_WRSWA_32_16BIT : Swapped in 32-bit units + 16-bit units: 7-8-5-6-3-4-1-2
thedo 166:3a9487d57a5c 289 * - WR_RD_WRSWA_32_16_8BIT : Swapped in 32-bit units + 16-bit units + 8-bit units: 8-7-6-5-4-3-2-1
thedo 166:3a9487d57a5c 290 * @param[in] gr_rect : Graphics display area
thedo 166:3a9487d57a5c 291 * @retval Error code
thedo 166:3a9487d57a5c 292 ******************************************************************************/
thedo 166:3a9487d57a5c 293 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 294 DisplayBase::Graphics_Read_Setting(
thedo 166:3a9487d57a5c 295 graphics_layer_t layer_id,
thedo 166:3a9487d57a5c 296 void * framebuff,
thedo 166:3a9487d57a5c 297 unsigned int fb_stride,
thedo 166:3a9487d57a5c 298 graphics_format_t gr_format,
thedo 166:3a9487d57a5c 299 wr_rd_swa_t wr_rd_swa,
thedo 166:3a9487d57a5c 300 rect_t * gr_rect )
thedo 166:3a9487d57a5c 301 {
thedo 166:3a9487d57a5c 302 rect_t rect;
thedo 166:3a9487d57a5c 303
thedo 166:3a9487d57a5c 304 rect.hs = gr_rect->hs + _lcd_config.h_back_porch;
thedo 166:3a9487d57a5c 305 rect.vs = gr_rect->vs + _lcd_config.v_back_porch;
thedo 166:3a9487d57a5c 306 rect.hw = gr_rect->hw;
thedo 166:3a9487d57a5c 307 rect.vw = gr_rect->vw;
thedo 166:3a9487d57a5c 308
thedo 166:3a9487d57a5c 309 return (graphics_error_t)DRV_Graphics_Read_Setting(
thedo 166:3a9487d57a5c 310 (drv_graphics_layer_t)layer_id,
thedo 166:3a9487d57a5c 311 framebuff,
thedo 166:3a9487d57a5c 312 fb_stride,
thedo 166:3a9487d57a5c 313 (drv_graphics_format_t)gr_format,
thedo 166:3a9487d57a5c 314 (drv_wr_rd_swa_t)wr_rd_swa,
thedo 166:3a9487d57a5c 315 (drv_rect_t *)&rect );
thedo 166:3a9487d57a5c 316 } /* End of method Graphics_Read_Setting() */
thedo 166:3a9487d57a5c 317
thedo 166:3a9487d57a5c 318 /**************************************************************************//**
thedo 166:3a9487d57a5c 319 * @brief Graphics surface read process changing
thedo 166:3a9487d57a5c 320 *
thedo 166:3a9487d57a5c 321 * Description:<br>
thedo 166:3a9487d57a5c 322 * This function is used to swap buffers.
thedo 166:3a9487d57a5c 323 *
thedo 166:3a9487d57a5c 324 * @param[in] layer_id : Graphics layer ID
thedo 166:3a9487d57a5c 325 * @param[in] framebuff : Base address of the frame buffer
thedo 166:3a9487d57a5c 326 * @retval Error code
thedo 166:3a9487d57a5c 327 ******************************************************************************/
thedo 166:3a9487d57a5c 328 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 329 DisplayBase::Graphics_Read_Change ( graphics_layer_t layer_id, void * framebuff)
thedo 166:3a9487d57a5c 330 {
thedo 166:3a9487d57a5c 331 return (graphics_error_t)DRV_Graphics_Read_Change(
thedo 166:3a9487d57a5c 332 (drv_graphics_layer_t)layer_id, framebuff );
thedo 166:3a9487d57a5c 333 } /* End of method Graphics_Read_Change() */
thedo 166:3a9487d57a5c 334
thedo 166:3a9487d57a5c 335 /**************************************************************************//**
thedo 166:3a9487d57a5c 336 * @brief Video surface write process setting
thedo 166:3a9487d57a5c 337 * This function set the video write process. Input form is weave
thedo 166:3a9487d57a5c 338 * (progressive) mode fixed.
thedo 166:3a9487d57a5c 339 * This function supports the following 3 image format.
thedo 166:3a9487d57a5c 340 * YCbCr422, RGB565, RGB888
thedo 166:3a9487d57a5c 341 * @param[in] video_input_ch : Video input channel
thedo 166:3a9487d57a5c 342 * @param[in] col_sys : Analog video signal color system
thedo 166:3a9487d57a5c 343 * @param[in] adc_vinsel : Video input pin
thedo 166:3a9487d57a5c 344 * @param[in] framebuff : Base address of the frame buffer
thedo 166:3a9487d57a5c 345 * @param[in] fb_stride [byte] : Line offset address of the frame buffer
thedo 166:3a9487d57a5c 346 * @param[in] video_format : Frame buffer video-signal writing format
thedo 166:3a9487d57a5c 347 * - VIDEO_FORMAT_YCBCR422 : YCBCR422 (2byte/px)
thedo 166:3a9487d57a5c 348 * - VIDEO_FORMAT_RGB565 : RGB565 (2byte/px)
thedo 166:3a9487d57a5c 349 * - VIDEO_FORMAT_RGB888 : RGB888 (4byte/px)
thedo 166:3a9487d57a5c 350 * @param[in] wr_rd_swa : frame buffer swap setting
thedo 166:3a9487d57a5c 351 * - WR_RD_WRSWA_NON : Not swapped: 1-2-3-4-5-6-7-8
thedo 166:3a9487d57a5c 352 * - WR_RD_WRSWA_8BIT : Swapped in 8-bit units: 2-1-4-3-6-5-8-7
thedo 166:3a9487d57a5c 353 * - WR_RD_WRSWA_16BIT : Swapped in 16-bit units: 3-4-1-2-7-8-5-6
thedo 166:3a9487d57a5c 354 * - WR_RD_WRSWA_16_8BIT : Swapped in 16-bit units + 8-bit units: 4-3-2-1-8-7-6-5
thedo 166:3a9487d57a5c 355 * - WR_RD_WRSWA_32BIT : Swapped in 32-bit units: 5-6-7-8-1-2-3-4
thedo 166:3a9487d57a5c 356 * - WR_RD_WRSWA_32_8BIT : Swapped in 32-bit units + 8-bit units: 6-5-8-7-2-1-4-3
thedo 166:3a9487d57a5c 357 * - WR_RD_WRSWA_32_16BIT : Swapped in 32-bit units + 16-bit units: 7-8-5-6-3-4-1-2
thedo 166:3a9487d57a5c 358 * - WR_RD_WRSWA_32_16_8BIT : Swapped in 32-bit units + 16-bit units + 8-bit units: 8-7-6-5-4-3-2-1
thedo 166:3a9487d57a5c 359 * @param[in] video_write_size_vw [px]: output v width
thedo 166:3a9487d57a5c 360 * @param[in] video_write_size_hw [px]: output h width
thedo 166:3a9487d57a5c 361 * @param[in] video_adc_vinsel : Input pin control
thedo 166:3a9487d57a5c 362 * @retval Error code
thedo 166:3a9487d57a5c 363 ******************************************************************************/
thedo 166:3a9487d57a5c 364 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 365 DisplayBase::Video_Write_Setting(
thedo 166:3a9487d57a5c 366 video_input_channel_t video_input_channel,
thedo 166:3a9487d57a5c 367 graphics_video_col_sys_t col_sys,
thedo 166:3a9487d57a5c 368 void * framebuff,
thedo 166:3a9487d57a5c 369 unsigned int fb_stride,
thedo 166:3a9487d57a5c 370 video_format_t video_format,
thedo 166:3a9487d57a5c 371 wr_rd_swa_t wr_rd_swa,
thedo 166:3a9487d57a5c 372 unsigned short write_buff_vw,
thedo 166:3a9487d57a5c 373 unsigned short write_buff_hw,
thedo 166:3a9487d57a5c 374 video_adc_vinsel_t video_adc_vinsel )
thedo 166:3a9487d57a5c 375
thedo 166:3a9487d57a5c 376 {
thedo 166:3a9487d57a5c 377 graphics_error_t error = GRAPHICS_OK;
thedo 166:3a9487d57a5c 378
thedo 166:3a9487d57a5c 379 if( _video_input_sel == INPUT_SEL_VDEC ) {
thedo 166:3a9487d57a5c 380 if( col_sys == COL_SYS_NTSC_358 || col_sys == COL_SYS_NTSC_443 || col_sys == COL_SYS_NTSC_443_60 ) {
thedo 166:3a9487d57a5c 381 if( (write_buff_vw / 2u) > 240u ) {
thedo 166:3a9487d57a5c 382 error = GRAPHICS_VIDEO_NTSC_SIZE_ERR;
thedo 166:3a9487d57a5c 383 }
thedo 166:3a9487d57a5c 384 } else {
thedo 166:3a9487d57a5c 385 if( (write_buff_vw / 2u) > 280u ) {
thedo 166:3a9487d57a5c 386 error = GRAPHICS_VIDEO_PAL_SIZE_ERR;
thedo 166:3a9487d57a5c 387 }
thedo 166:3a9487d57a5c 388 }
thedo 166:3a9487d57a5c 389
thedo 166:3a9487d57a5c 390 if( write_buff_hw > 800u ) {
thedo 166:3a9487d57a5c 391 error = GRAPHICS_PARAM_RANGE_ERR;
thedo 166:3a9487d57a5c 392 }
thedo 166:3a9487d57a5c 393 if( error == GRAPHICS_OK ) {
thedo 166:3a9487d57a5c 394 error = (graphics_error_t)DRV_Video_Write_Setting(
thedo 166:3a9487d57a5c 395 (drv_video_input_channel_t)video_input_channel,
thedo 166:3a9487d57a5c 396 (drv_graphics_video_col_sys_t)col_sys,
thedo 166:3a9487d57a5c 397 framebuff,
thedo 166:3a9487d57a5c 398 fb_stride,
thedo 166:3a9487d57a5c 399 (drv_video_format_t)video_format,
thedo 166:3a9487d57a5c 400 (drv_wr_rd_swa_t)wr_rd_swa,
thedo 166:3a9487d57a5c 401 write_buff_vw,
thedo 166:3a9487d57a5c 402 write_buff_hw,
thedo 166:3a9487d57a5c 403 (drv_video_adc_vinsel_t)video_adc_vinsel);
thedo 166:3a9487d57a5c 404 }
thedo 166:3a9487d57a5c 405 } else if( _video_input_sel == INPUT_SEL_EXT ) {
thedo 166:3a9487d57a5c 406 rect_t cap_area;
thedo 166:3a9487d57a5c 407
thedo 166:3a9487d57a5c 408 cap_area.hs = _video_ext_in_config.cap_hs_pos * 2;
thedo 166:3a9487d57a5c 409 cap_area.hw = _video_ext_in_config.cap_width * 2;
thedo 166:3a9487d57a5c 410 cap_area.vs = _video_ext_in_config.cap_vs_pos;
thedo 166:3a9487d57a5c 411 cap_area.vw = _video_ext_in_config.cap_height;
thedo 166:3a9487d57a5c 412
thedo 166:3a9487d57a5c 413 error = (graphics_error_t) DRV_Video_Write_Setting_Digital(
thedo 166:3a9487d57a5c 414 framebuff,
thedo 166:3a9487d57a5c 415 fb_stride,
thedo 166:3a9487d57a5c 416 (drv_video_format_t)video_format,
thedo 166:3a9487d57a5c 417 (drv_wr_rd_swa_t)wr_rd_swa,
thedo 166:3a9487d57a5c 418 write_buff_vw,
thedo 166:3a9487d57a5c 419 write_buff_hw,
thedo 166:3a9487d57a5c 420 (drv_rect_t *)&cap_area );
thedo 166:3a9487d57a5c 421 } else {
thedo 166:3a9487d57a5c 422 error = GRAPHICS_PARAM_RANGE_ERR;
thedo 166:3a9487d57a5c 423 }
thedo 166:3a9487d57a5c 424 return error;
thedo 166:3a9487d57a5c 425 } /* End of method Video_Write_Setting() */
thedo 166:3a9487d57a5c 426
thedo 166:3a9487d57a5c 427 /**************************************************************************//**
thedo 166:3a9487d57a5c 428 * @brief Graphics surface write process changing
thedo 166:3a9487d57a5c 429 * This function is used to swap buffers of the weave write processing.
thedo 166:3a9487d57a5c 430 * @param[in] video_input_ch : Video input channle
thedo 166:3a9487d57a5c 431 * @param[in] framebuff : Base address of the frame buffer
thedo 166:3a9487d57a5c 432 * @param[in] fb_stride : Line offset address of the frame buffer
thedo 166:3a9487d57a5c 433 * @retval Error code
thedo 166:3a9487d57a5c 434 ******************************************************************************/
thedo 166:3a9487d57a5c 435 DisplayBase::graphics_error_t
thedo 166:3a9487d57a5c 436 DisplayBase::Video_Write_Change (
thedo 166:3a9487d57a5c 437 video_input_channel_t video_input_channel, void * framebuff, uint32_t fb_stride )
thedo 166:3a9487d57a5c 438 {
thedo 166:3a9487d57a5c 439 return (graphics_error_t)DRV_Video_Write_Change(
thedo 166:3a9487d57a5c 440 (drv_video_input_channel_t)video_input_channel, framebuff, fb_stride );
thedo 166:3a9487d57a5c 441 } /* End of method Video_Write_Change() */
thedo 166:3a9487d57a5c 442
thedo 166:3a9487d57a5c 443 /* End of file */