r_spea_api.h 14.3 KB
Newer Older
hu's avatar
hu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
/*
****************************************************************************
PROJECT : VLIB macro driver
FILE    : $Id: r_spea_api.h 15479 2018-01-11 14:04:31Z florian.zimmermann $
============================================================================ 
DESCRIPTION
Generic part of the macro driver
============================================================================
                            C O P Y R I G H T
============================================================================
                       Copyright (c) 2013 - 2014
                                  by 
                       Renesas Electronics (Europe) GmbH. 
                           Arcadiastrasse 10
                          D-40472 Duesseldorf
                               Germany
                          All rights reserved.
============================================================================

DISCLAIMER

LICENSEE has read, understood and accepted the terms and conditions defined in
the license agreement, especially the usage rights. In any case, it is
LICENSEE's responsibility to make sure that any user of the software complies
with the terms and conditions of the signed license agreement.

****************************************************************************
*/

#ifndef R_SPEA_API_H_
#define R_SPEA_API_H_

#ifdef __cplusplus
extern "C" {
#endif


/*******************************************************************************
  Title: SPEA Driver API 
  
  SPEA (Sprite Engine) driver API.

  SPEA driver controls SPEA H/W macro and accesses only register of SPEA H/W macro.

  An application using SPEA driver should include the following header files.

  * r_typedefs.h
  * r_spea_api.h
  
*/

/*******************************************************************************
  Section: Global Constants 
*/

/*******************************************************************************
  Constant:  R_SPEA_VERSION_HI and R_SPEA_VERSION_LO

  Driver version information  
*/

#define R_SPEA_VERSION_HI 1
#define R_SPEA_VERSION_LO 21



/*******************************************************************************
  Section: Global Types
*/


/*******************************************************************************
  Enum: r_spea_Error_t

  SPEA macro driver error code.
  
  If an error occures these enums give information about the
  reason.

  Values:
  R_SPEA_ERR_OK       - No error
  R_SPEA_ERR_NG       - Unspecified error
  R_SPEA_ERR_RANGE    - Out of range error 
  R_SPEA_ERR_PARAM    - Wrong Parameter
  R_SPEA_ERR_TIME     - Timeout 
  R_SPEA_ERR_ADDR     - Wrong address (not aligned correctly) 
*/

typedef enum
{
    R_SPEA_ERR_OK     = 0x00u,
    R_SPEA_ERR_NG     = 0x01u,
    R_SPEA_ERR_RANGE  = 0x02u,
    R_SPEA_ERR_PARAM  = 0x03u,
    R_SPEA_ERR_TIME   = 0x04u, 
    R_SPEA_ERR_ADDR   = 0x05u
} r_spea_Error_t;

/*******************************************************************************
  Enum: r_spea_Color_t

  Configuration data for a single Sprite 

  Values:
  R_SPEA_CM_8BPP      - color mode:  8 bit per pixel 
  R_SPEA_CM_18BPP     - color mode: 18 bit per pixel 
  R_SPEA_CM_24BPP     - color mode: 24 bit per pixel 
  R_SPEA_CM_LIMIT     - delimiter
*/

typedef enum
{
    R_SPEA_CM_8BPP    = 0x00,
    R_SPEA_CM_18BPP   = 0x01,
    R_SPEA_CM_24BPP   = 0x02,
    R_SPEA_CM_LIMIT   = 0x03
    
} r_spea_Color_t;


/*******************************************************************************
  Enum: r_spea_Unit_t

  List of Units in one Sprite engine macro  

  Values:
  R_SPEA_RLE0         - RLE 0
  R_SPEA_RLE1         - RLE 1 (D1M1A only)
  R_SPEA_RLE2         - RLE 2 (D1M1A only)
  R_SPEA_RLE3         - RLE 3 (D1M1A only)
  R_SPEA_SU_OFFSET    - Offset for correct index calculation
  R_SPEA_SU0          - Sprite unit 0 
  R_SPEA_SU1          - Sprite unit 1 
  R_SPEA_SU2          - Sprite unit 2
  R_SPEA_SU3          - Sprite unit 3 (D1M1A only)
  R_SPEA_SU_LAST      - delimiter 
*/

typedef enum
{
    R_SPEA_RLE0       = 0x00u,
    R_SPEA_RLE1       = 0x01u,
    R_SPEA_RLE2       = 0x02u,
    R_SPEA_RLE3       = 0x03u,
    R_SPEA_SU_OFFSET  = 0x04u,
    R_SPEA_SU0        = 0x05u,
    R_SPEA_SU1        = 0x06u,
    R_SPEA_SU2        = 0x07u,
    R_SPEA_SU3        = 0x08u,
    R_SPEA_SU_LAST    = 0x09u,
} r_spea_Unit_t;


/*******************************************************************************
  Enum: r_spea_UnitCapbs_t

  Capability per Unit

  Values:
  R_SPEA_SPEACAPBS_RLE    - select RLE unit
  R_SPEA_SPEACAPBS_SPRITE - select Sprite unit
  R_SPEA_SPEACAPBS_LAST   - delimiter

*/
typedef enum
{
    R_SPEA_SPEACAPBS_RLE    = 0x00u,
    R_SPEA_SPEACAPBS_SPRITE = 0x01u,
    R_SPEA_SPEACAPBS_LAST   = 0x02u,
} r_spea_UnitCapbs_t;



/*******************************************************************************
  Struct: r_spea_SpriteConfig_t

  Configuration data for a single Sprite 

  Members:
  Enable              - 1: Sprite enabled/visible, 0: disabled/not visible
  VSync               - Select what VSync (from VO0 or VO1) will trigger register update   
  SrcAddr             - Location of the sprite data in memory
  Height              - Sprite height in pixel 
  Width               - Sprite width in pixel
  PosX                - X Position in pixel on the virtual layer
  PosY                - y Position in pixel on the virtual layer    

*/
typedef struct 
{
    uint8_t            Enable; 
    uint8_t            VSync; 
    uint32_t           SrcAddr;
    uint16_t           Height; 
    uint16_t           Width; 
    uint16_t           PosX; 
    uint16_t           PosY; 
} r_spea_SpriteConfig_t; 


/*******************************************************************************
  Struct: r_spea_RleConfig_t

  Configuration data for a RLE unit

  Members:
  VirtStar            - Start address on the virtual layer 
  MemStart            - Start address in physical memory 
  ColorMode           - 8, 18, 24 bpp, see <r_spea_Color_t> 
  VideoOutID          - Axi busmaster ID to be served by the RLE unit    
*/


typedef struct 
{
    uint32_t          VirtStart; 
    uint32_t          MemStart; 
    r_spea_Color_t    ColorMode; 
    uint8_t           VideoOutID; 
} r_spea_RleConfig_t;

/*******************************************************************************
  Section: Global API Functions
*/

/*******************************************************************************
  Function: R_SPEA_GetVersionStr

  Get the driver version number in human readable form (string). 

  Parameters:
  void
  
  Returns:
  ReceiveString     - Pointer to receive string destination
  
*/

const int8_t * R_SPEA_GetVersionStr(void);

/*******************************************************************************
  Function: R_SPEA_GetMajorVersion

  Get the driver major version number. 

  Parameters:
  void
  
  Returns:
     - Major version number
  
*/

const uint16_t R_SPEA_GetMajorVersion(void); 

/*******************************************************************************
  Function: R_SPEA_GetMinorVersion

  Get the driver minor version number. 

  Parameters:
  void
  
  Returns:
     - Minor version number
  
*/

const uint16_t R_SPEA_GetMinorVersion(void); 

/*******************************************************************************
  Function: R_SPEA_Init

  Driver init function.

  Parameters:
  Unit          - Macro instance number
 
  Returns:
  see: <r_spea_Error_t>
*/

r_spea_Error_t R_SPEA_Init(uint32_t Unit);


/*******************************************************************************
  Function: R_SPEA_DeInit

  Driver deinit function.

  Parameters:
  Unit       - Macro Instance number

  Returns:
  see: <r_spea_Error_t>
*/

 r_spea_Error_t R_SPEA_DeInit(uint32_t Unit);


/*******************************************************************************
  Function: R_SPEA_SetSprite

  Set configuration for the given sprite.

  For D1M1A use Unit number 0...3, for other devices use Unit number 0

  Parameters:
  Unit          - SpriteEngine Macro instance number
  SpEng         - Sprite unit number 
  SpNum         - Sprite number (0 - 16)  
  SpConf        - Pointer to sprite configuration data, see <r_spea_SpriteConfig_t> 
  DispBpp       - Byte per pixel display setting, 
                  required for pixel to byte position calculation
 
  Returns:
  see: <r_spea_Error_t>
*/

r_spea_Error_t R_SPEA_SetSprite(uint32_t                Unit, 
                                uint8_t                 SpEng, 
                                uint8_t                 SpNum, 
                                r_spea_SpriteConfig_t  *SpConf,
                                uint8_t                 DispBpp);


/*******************************************************************************
  Function: R_SPEA_SetRle

  Set configuration for the given RLE.
  Always make sure to assign different ID (VideoOutID) for both RLE units 
  The device (and thus this function) function forbids using same ID for both RLE units
  After reset both IDs are 0. So make sure to first initialise RLE 1 with an ID != 0

  For D1M1A use Unit number 0...3, for other devices use Unit number 0
   

  Parameters:
  Unit           - SpriteEngine Macro instance number
  RleNum         - RLE unit number (0 or 1)  
  RleConf        - Pointer to RLE configuration data, see <r_spea_RleConfig_t> 
 
  Returns:
  see: <r_spea_Error_t>
*/

r_spea_Error_t R_SPEA_SetRle(uint32_t                Unit, 
                             uint8_t                 RleNum, 
                             r_spea_RleConfig_t     *RleConf);

/*******************************************************************************
  Function: R_SPEA_UnitEnable

  Enable or disable a given RLE or sprite unit 

  For D1M1A use Unit number 0...3, for other devices use Unit number 0

  Parameters:
  Unit          - Macro instance number
  SpUnit        - Unit identifier, see <r_spea_Unit_t>
  Enable        - 0: disable/pass through mode, 1: enable
 
  Returns:
  see: <r_spea_Error_t>
*/

r_spea_Error_t R_SPEA_UnitEnable(uint32_t Unit, r_spea_Unit_t SpUnit, uint8_t Enable);


/*******************************************************************************
  Function: R_SPEA_SpriteEnable

  Enable or disable a given sprite within one unit 

  For D1M1A use Unit number 0...3, for other devices use Unit number 0

  Parameters:
  Unit          - Macro instance number
  SpEng         - Sprite unit number (0 - 2)
  SpNum         - Sprite number (0 - 16)  
  Enable        - 0: disable/pass through mode, 1: enable
 
  Returns:
  see: <r_spea_Error_t>
*/

r_spea_Error_t R_SPEA_SpriteEnable(uint32_t      Unit, 
                                   uint8_t       SpEng, 
                                   uint8_t       SpNum, 
                                   uint8_t       Enable);


/*******************************************************************************
  Function: R_SPEA_SetSpritePos

  Set or change just the position (on the virtual layer) of a given sprite  

  For D1M1A use Unit number 0...3, for other devices use Unit number 0

  Parameters:
  Unit          - Macro instance number
  SpEng         - Sprite unit number (0 - 2)
  SpNum         - Sprite number (0 - 16)  
  PosX          - Horizontal position in pixel 
  PosY          - Vertical position in pixel 
  DispBpp       - Byte per pixel display (not sprite specific) setting, 
                  required for pixel to byte position calculation
  
  Returns:
  see: <r_spea_Error_t>
*/

r_spea_Error_t R_SPEA_SetSpritePos(uint32_t      Unit, 
                                   uint8_t       SpEng, 
                                   uint8_t       SpNum, 
                                   uint16_t      PosX,
                                   uint16_t      PosY,
                                   uint8_t       DispBpp);



/*******************************************************************************
  Function: R_SPEA_UnitUpdateActive

  Get the information if a register update is onging or finished for a given unit

  For D1M1A use Unit number 0...3, for other devices use Unit number 0

  Parameters:
  Unit          - Macro instance number
  SpUnit        - Unit identifier, see <r_spea_Unit_t>
  
  Returns:
  == 0 - updeate finished 
  != 0 - register update in progress  
*/

uint32_t R_SPEA_UnitUpdateActive(uint32_t Unit,  r_spea_Unit_t SpUnit);  

/*******************************************************************************
  Function: R_SPEA_UpdateUnit

  Set the register update request for the given unit     

  For D1M1A use Unit number 0...3, for other devices use Unit number 0

  Parameters:
  Unit          - Macro instance number
  SpUnit        - Unit identifier, see <r_spea_Unit_t>
  VSync         - Index of the Video Out's vsync to be used for update 
                  VOut0: 0; VOut1: 1
  Returns:
  see: <r_spea_Error_t>*/

r_spea_Error_t R_SPEA_UpdateUnit(uint32_t Unit,  r_spea_Unit_t SpUnit, uint8_t VSync);  


/*******************************************************************************
  Function: R_SPEA_SetErrorCallback

  Set a user function as error handler.
  
  When the driver detects any error, it will call this function.

  For D1M1A use Unit number 0...3, for other devices use Unit number 0

  Parameters:
  ErrorCallback - Pointer to a user function
  
  Returns:
  void
*/


void R_SPEA_SetErrorCallback(void (*ErrorCallback )(uint32_t Unit, uint32_t Error));

/*******************************************************************************
  Function: R_SPEA_UnitCapabilitiesSet

  Description:
   Configure the Video Output Layers to decode RLE compressed textures or to
   show sprite windows. Only one feature may be selected.

   This function affects both VO0 and VO1, the mapping of each parameter is shown below.
   Calling this function is only possible with VDCE/VOWE disabled.

   Currently this function is only useful on D1M1A, since other devices use a fixed unit layout.

  Parameter:
    Unit0 - Selects mode for VO0 Layer0 and VO1 Layer0
    Unit1 - Selects mode for VO0 Layer1 and VO1 Layer3
    Unit2 - Selects mode for VO0 Layer2 and VO1 Layer2
    Unit3 - Selects mode for VO0 Layer3 and VO1 Layer1

  Return value:
  See <r_spea_Error_t>.
*/

r_spea_Error_t R_SPEA_UnitCapabilitiesSet(r_spea_UnitCapbs_t Unit0,
                                          r_spea_UnitCapbs_t Unit1,
                                          r_spea_UnitCapbs_t Unit2,
                                          r_spea_UnitCapbs_t Unit3);

#ifdef __cplusplus
}
#endif

#endif /* R_SPEA_API_H_  */