saa7121.h
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:2k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  Copyright 2003 by Texas Instruments Incorporated.
  3.  *  All rights reserved. Property of Texas Instruments Incorporated.
  4.  *  Restricted rights to use, duplicate or disclose this code are
  5.  *  granted through contract.
  6.  *  
  7.  */
  8. /* "@(#) DDK 1.10.00.23 07-02-03 (ddk-b12)" */
  9. /********************************************************************************/
  10. /* saa7121.h file */
  11. /********************************************************************************/
  12. #ifndef _SAA7121_H
  13. #define _SAA7121_H       
  14. #include <std.h>
  15. #include <csl_stdinc.h>
  16. #include <csl_i2c.h>
  17. #include <edc.h>
  18. typedef struct SAA7121_Cursor {
  19.     Uint8 address;
  20.     Uint8 cursorBlock[256];
  21. }SAA7121_Cursor;
  22. typedef struct SAA7121_LookUpTable {
  23.     Uint8 address;
  24.     Uint8 tables[256][3];
  25. }SAA7121_LookUpTable;
  26. typedef enum SAA7121_AnalogFormat {
  27.     SAA7121_AFMT_SVIDEO = 0,
  28.     SAA7121_AFMT_RGB = 1,
  29.     SAA7121_AFMT_YPBPR = 1,
  30.     SAA7121_AFMT_COMPOSITE = 2
  31. } SAA7121_AnalogFormat;
  32. typedef enum SAA7121_InputFormat {
  33.     SAA7121_IFMT_RGB24_YCBCR444,
  34.     SAA7121_IFMT_RGB555,
  35.     SAA7121_IFMT_RGB565, 
  36.     SAA7121_IFMT_YCBCR422_NONEINTERLACED,
  37.     SAA7121_IFMT_YCBCR422_INTERLACED
  38. }SAA7121_InputFormat;
  39. typedef enum 
  40. {
  41.     SAA7121_MODE_NTSC720, 
  42.     SAA7121_MODE_PAL720,  
  43.     SAA7121_MODE_VGA,     
  44.     SAA7121_MODE_SVGA,    
  45.     SAA7121_MODE_XGA,     
  46.     SAA7121_MODE_HD480P60F,
  47.     SAA7121_MODE_HD720P60F,
  48.     SAA7121_MODE_HD1080I30F,
  49.     SAA7121_MODE_HD720P24F
  50. }SAA7121_Mode;
  51. typedef unsigned int SAA7121_Cmd;
  52. #define SAA7121_POWERDOWN           EDC_USER+1
  53. #define SAA7121_POWERUP             EDC_USER+2
  54. #define SAA7121_ENABLE_SLAVE_MODE   EDC_USER+3
  55. #define SAA7121_LOAD_CURSOR         EDC_USER+4
  56. #define SAA7121_LOAD_LUT            EDC_USER+5
  57. #define SAA7121_ENABLE_COLORBAR     EDC_USER+6
  58. typedef struct {
  59.   SAA7121_Mode         mode;           
  60.   I2C_Handle           hI2C;
  61. } SAA7121_ConfParams;
  62. extern EDC_Fxns SAA7121_Fxns;
  63. #endif