saa7105.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. /* saa7105.h file */
  11. /********************************************************************************/
  12. #ifndef _SAA7105_H
  13. #define _SAA7105_H       
  14. #include <std.h>
  15. #include <csl_stdinc.h>
  16. #include <csl_i2c.h>
  17. #include <edc.h>
  18. typedef struct SAA7105_Cursor {
  19.     Uint8 address;
  20.     Uint8 cursorBlock[256];
  21. }SAA7105_Cursor;
  22. typedef struct SAA7105_LookUpTable {
  23.     Uint8 address;
  24.     Uint8 tables[256][3];
  25. }SAA7105_LookUpTable;
  26. typedef enum SAA7105_AnalogFormat {
  27.     SAA7105_AFMT_SVIDEO = 0,
  28.     SAA7105_AFMT_RGB = 1,
  29.     SAA7105_AFMT_YPBPR = 1,
  30.     SAA7105_AFMT_COMPOSITE = 2
  31. } SAA7105_AnalogFormat;
  32. typedef enum SAA7105_InputFormat {
  33.     SAA7105_IFMT_RGB24_YCBCR444,
  34.     SAA7105_IFMT_RGB555,
  35.     SAA7105_IFMT_RGB565, 
  36.     SAA7105_IFMT_YCBCR422_NONEINTERLACED,
  37.     SAA7105_IFMT_YCBCR422_INTERLACED
  38. }SAA7105_InputFormat;
  39. typedef enum 
  40. {
  41.     SAA7105_MODE_NTSC720, 
  42.     SAA7105_MODE_PAL720,  
  43.     SAA7105_MODE_VGA,     
  44.     SAA7105_MODE_SVGA,    
  45.     SAA7105_MODE_XGA,     
  46.     SAA7105_MODE_HD480P60F,
  47.     SAA7105_MODE_HD720P60F,
  48.     SAA7105_MODE_HD1080I30F,
  49.     SAA7105_MODE_HD720P24F
  50. }SAA7105_Mode;
  51. typedef unsigned int SAA7105_Cmd;
  52. #define SAA7105_POWERDOWN           EDC_USER+1
  53. #define SAA7105_POWERUP             EDC_USER+2
  54. #define SAA7105_ENABLE_SLAVE_MODE   EDC_USER+3
  55. #define SAA7105_LOAD_CURSOR         EDC_USER+4
  56. #define SAA7105_LOAD_LUT            EDC_USER+5
  57. #define SAA7105_ENABLE_COLORBAR     EDC_USER+6
  58. typedef struct {
  59.   SAA7105_AnalogFormat aFmt;
  60.   SAA7105_Mode         mode;           
  61.   SAA7105_InputFormat  iFmt;
  62.   Bool                 enableSlaveMode;
  63.   Bool                 enableBT656Sync;
  64.   I2C_Handle           hI2C;
  65. } SAA7105_ConfParams;
  66. extern EDC_Fxns SAA7105_Fxns;
  67. #endif