aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/emgd/emgd/include/tnc/igd_tnc_wa.h
blob: f42110ba7c6068dabefde9ca4f3b8414bcc8bc7f (plain)
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
/* -*- pse-c -*-
 *-----------------------------------------------------------------------------
 * Filename: igd_tnc_wa.h
 * $Revision: 1.4 $
 *-----------------------------------------------------------------------------
 * Copyright © 2002-2010, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 *
 *-----------------------------------------------------------------------------
 * Description:
 *  This header file contains the Device Dependent information used with
 *  the IEGD HAL for the Atom E6xx family of supported chips.
 *  Note: This file should be included into a C file as <tnc/igd_tnc_wa.h> and
 *  not <igd_tnc_wa.h> this will insure that multiple device dependent
 *  igd_cmd.h files can be included into a single C source.
 *-----------------------------------------------------------------------------
 */

#ifndef _IGD_TNC_WA_H
#define _IGD_TNC_WA_H

#define LNC_CLOCK 200000
#define LIMIT_TOTAL_CHECK_DISPLAY 10
#define T0 0
#define T1 1
#define WA_TUNE \
	((tnc_wa_timing_t *)&tune)
/* Graphic core Revision ID for Atom E6xx stepping */
#define TNC_A0_RID			0x2
#define TNC_B0_RID			0x3
#define SDVO_CRC_CTRL_REG	0x61050
#define SDVO_BUFF_CTRL_REG	0x61170
#define TNC_HTOTAL_TUNED	0x8000

typedef struct _tnc_wa_timing_t{
	short htotal;
	short delta;
	short flag;
	short counter;
	unsigned int crc_red;
	unsigned int crc_green;
	unsigned int crc_blue;
}tnc_wa_timing_t;

static tnc_wa_timing_t tune = {0, 0, 0, 0, 0, 0, 0,};

typedef union
{
       unsigned int pixel;
       struct
	   {
			   unsigned int bit0             :1;  
               unsigned int bit1             :1;  
               unsigned int bit2             :1;  
               unsigned int bit3             :1;  
               unsigned int bit4             :1;  
               unsigned int bit5             :1;  
               unsigned int bit6             :1;  
               unsigned int bit7             :1;  
               unsigned int bit8             :1;  
               unsigned int bit9             :1;  
               unsigned int bit10             :1;  
               unsigned int bit11             :1;  
               unsigned int bit12             :1;  
               unsigned int bit13             :1;  
               unsigned int bit14             :1;  
               unsigned int bit15             :1;  
               unsigned int bit16             :1;  
               unsigned int bit17             :1;  
               unsigned int bit18             :1;  
               unsigned int bit19             :1;  
               unsigned int bit20             :1;  
               unsigned int bit21             :1;  
               unsigned int bit22             :1;  
               unsigned int bitExtra          :1;  
               unsigned int bitRest           :8;  
       } bit;
} pixel_crc_t;


#endif