saa7121.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* saa7121.h - saa7121 initializations
  2.    Copyright (C) 1999 Nathan Laredo (laredo@gnu.org)
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    This program is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.    GNU General Public License for more details.
  11.    You should have received a copy of the GNU General Public License
  12.    along with this program; if not, write to the Free Software
  13.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  */
  15. #ifndef __SAA7121_H__
  16. #define __SAA7121_H__
  17. #define NTSC_BURST_START 0x19 /* 28 */
  18. #define NTSC_BURST_END 0x1d /* 29 */
  19. #define NTSC_CHROMA_PHASE 0x67 /* 5a */
  20. #define NTSC_GAINU 0x76 /* 5b */
  21. #define NTSC_GAINV 0xa5 /* 5c */
  22. #define NTSC_BLACK_LEVEL 0x2a /* 5d */
  23. #define NTSC_BLANKING_LEVEL 0x2e /* 5e */
  24. #define NTSC_VBI_BLANKING 0x2e /* 5f */
  25. #define NTSC_DAC_CONTROL 0x11 /* 61 */
  26. #define NTSC_BURST_AMP 0x3f /* 62 */
  27. #define NTSC_SUBC3 0x1f /* 63 */
  28. #define NTSC_SUBC2 0x7c /* 64 */
  29. #define NTSC_SUBC1 0xf0 /* 65 */
  30. #define NTSC_SUBC0 0x21 /* 66 */
  31. #define NTSC_HTRIG 0x72 /* 6c */
  32. #define NTSC_VTRIG 0x00 /* 6c */
  33. #define NTSC_MULTI 0x30 /* 6e */
  34. #define NTSC_CCTTX 0x11 /* 6f */
  35. #define NTSC_FIRST_ACTIVE 0x12 /* 7a */
  36. #define NTSC_LAST_ACTIVE 0x02 /* 7b */
  37. #define NTSC_MSB_VERTICAL 0x40 /* 7c */
  38. #define PAL_BURST_START 0x21 /* 28 */
  39. #define PAL_BURST_END 0x1d /* 29 */
  40. #define PAL_CHROMA_PHASE 0x3f /* 5a */
  41. #define PAL_GAINU 0x7d /* 5b */
  42. #define PAL_GAINV 0xaf /* 5c */
  43. #define PAL_BLACK_LEVEL 0x23 /* 5d */
  44. #define PAL_BLANKING_LEVEL 0x35 /* 5e */
  45. #define PAL_VBI_BLANKING 0x35 /* 5f */
  46. #define PAL_DAC_CONTROL 0x02 /* 61 */
  47. #define PAL_BURST_AMP 0x2f /* 62 */
  48. #define PAL_SUBC3 0xcb /* 63 */
  49. #define PAL_SUBC2 0x8a /* 64 */
  50. #define PAL_SUBC1 0x09 /* 65 */
  51. #define PAL_SUBC0 0x2a /* 66 */
  52. #define PAL_HTRIG 0x86 /* 6c */
  53. #define PAL_VTRIG 0x04 /* 6d */
  54. #define PAL_MULTI 0x20 /* 6e */
  55. #define PAL_CCTTX 0x15 /* 6f */
  56. #define PAL_FIRST_ACTIVE 0x16 /* 7a */
  57. #define PAL_LAST_ACTIVE 0x36 /* 7b */
  58. #define PAL_MSB_VERTICAL 0x40 /* 7c */
  59. /* Initialization Sequence */
  60.  
  61. static __u8 init7121ntsc[] = {
  62. 0x26, 0x0, 0x27, 0x0,
  63. 0x28, NTSC_BURST_START, 0x29, NTSC_BURST_END,
  64. 0x2a, 0x0, 0x2b, 0x0, 0x2c, 0x0, 0x2d, 0x0,
  65. 0x2e, 0x0, 0x2f, 0x0, 0x30, 0x0, 0x31, 0x0,
  66. 0x32, 0x0, 0x33, 0x0, 0x34, 0x0, 0x35, 0x0,
  67. 0x36, 0x0, 0x37, 0x0, 0x38, 0x0, 0x39, 0x0,
  68. 0x3a, 0x03, 0x3b, 0x0, 0x3c, 0x0, 0x3d, 0x0,
  69. 0x3e, 0x0, 0x3f, 0x0, 0x40, 0x0, 0x41, 0x0,
  70. 0x42, 0x0, 0x43, 0x0, 0x44, 0x0, 0x45, 0x0,
  71. 0x46, 0x0, 0x47, 0x0, 0x48, 0x0, 0x49, 0x0,
  72. 0x4a, 0x0, 0x4b, 0x0, 0x4c, 0x0, 0x4d, 0x0,
  73. 0x4e, 0x0, 0x4f, 0x0, 0x50, 0x0, 0x51, 0x0,
  74. 0x52, 0x0, 0x53, 0x0, 0x54, 0x0, 0x55, 0x0,
  75. 0x56, 0x0, 0x57, 0x0, 0x58, 0x0, 0x59, 0x0,
  76. 0x5a, NTSC_CHROMA_PHASE, 0x5b, NTSC_GAINU,
  77. 0x5c, NTSC_GAINV, 0x5d, NTSC_BLACK_LEVEL,
  78. 0x5e, NTSC_BLANKING_LEVEL, 0x5f, NTSC_VBI_BLANKING,
  79. 0x60, 0x0, 0x61, NTSC_DAC_CONTROL,
  80. 0x62, NTSC_BURST_AMP, 0x63, NTSC_SUBC3,
  81. 0x64, NTSC_SUBC2, 0x65, NTSC_SUBC1,
  82. 0x66, NTSC_SUBC0, 0x67, 0x80, 0x68, 0x80,
  83. 0x69, 0x80, 0x6a, 0x80, 0x6b, 0x29,
  84. 0x6c, NTSC_HTRIG, 0x6d, NTSC_VTRIG,
  85. 0x6e, NTSC_MULTI, 0x6f, NTSC_CCTTX,
  86. 0x70, 0xc9, 0x71, 0x68, 0x72, 0x60, 0x73, 0x0,
  87. 0x74, 0x0, 0x75, 0x0, 0x76, 0x0, 0x77, 0x0,
  88. 0x78, 0x0, 0x79, 0x0, 0x7a, NTSC_FIRST_ACTIVE,
  89. 0x7b, NTSC_LAST_ACTIVE, 0x7c, NTSC_MSB_VERTICAL,
  90. 0x7d, 0x0, 0x7e, 0x0, 0x7f, 0x0
  91. }; 
  92. #define INIT7121LEN (sizeof(init7121ntsc)/2)
  93. static __u8 init7121pal[] = {
  94. 0x26, 0x0, 0x27, 0x0,
  95. 0x28, PAL_BURST_START, 0x29, PAL_BURST_END,
  96. 0x2a, 0x0, 0x2b, 0x0, 0x2c, 0x0, 0x2d, 0x0,
  97. 0x2e, 0x0, 0x2f, 0x0, 0x30, 0x0, 0x31, 0x0,
  98. 0x32, 0x0, 0x33, 0x0, 0x34, 0x0, 0x35, 0x0,
  99. 0x36, 0x0, 0x37, 0x0, 0x38, 0x0, 0x39, 0x0,
  100. 0x3a, 0x03, 0x3b, 0x0, 0x3c, 0x0, 0x3d, 0x0,
  101. 0x3e, 0x0, 0x3f, 0x0, 0x40, 0x0, 0x41, 0x0,
  102. 0x42, 0x0, 0x43, 0x0, 0x44, 0x0, 0x45, 0x0,
  103. 0x46, 0x0, 0x47, 0x0, 0x48, 0x0, 0x49, 0x0,
  104. 0x4a, 0x0, 0x4b, 0x0, 0x4c, 0x0, 0x4d, 0x0,
  105. 0x4e, 0x0, 0x4f, 0x0, 0x50, 0x0, 0x51, 0x0,
  106. 0x52, 0x0, 0x53, 0x0, 0x54, 0x0, 0x55, 0x0,
  107. 0x56, 0x0, 0x57, 0x0, 0x58, 0x0, 0x59, 0x0,
  108. 0x5a, PAL_CHROMA_PHASE, 0x5b, PAL_GAINU,
  109. 0x5c, PAL_GAINV, 0x5d, PAL_BLACK_LEVEL,
  110. 0x5e, PAL_BLANKING_LEVEL, 0x5f, PAL_VBI_BLANKING,
  111. 0x60, 0x0, 0x61, PAL_DAC_CONTROL,
  112. 0x62, PAL_BURST_AMP, 0x63, PAL_SUBC3,
  113. 0x64, PAL_SUBC2, 0x65, PAL_SUBC1,
  114. 0x66, PAL_SUBC0, 0x67, 0x80, 0x68, 0x80,
  115. 0x69, 0x80, 0x6a, 0x80, 0x6b, 0x29,
  116. 0x6c, PAL_HTRIG, 0x6d, PAL_VTRIG,
  117. 0x6e, PAL_MULTI, 0x6f, PAL_CCTTX,
  118. 0x70, 0xc9, 0x71, 0x68, 0x72, 0x60, 0x73, 0x0,
  119. 0x74, 0x0, 0x75, 0x0, 0x76, 0x0, 0x77, 0x0,
  120. 0x78, 0x0, 0x79, 0x0, 0x7a, PAL_FIRST_ACTIVE,
  121. 0x7b, PAL_LAST_ACTIVE, 0x7c, PAL_MSB_VERTICAL,
  122. 0x7d, 0x0, 0x7e, 0x0, 0x7f, 0x0
  123. }; 
  124. #endif