Move the drivers to a separate sub-directory
[profile/ivi/intel-emgd-kmod.git] / drivers / emgd / pal / sdvo / sdvo_port.h
1 /*
2  *-----------------------------------------------------------------------------
3  * Filename: sdvo_port.h
4  * $Revision: 1.9 $
5  *-----------------------------------------------------------------------------
6  * Copyright (c) 2002-2010, Intel Corporation.
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a copy
9  * of this software and associated documentation files (the "Software"), to deal
10  * in the Software without restriction, including without limitation the rights
11  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12  * copies of the Software, and to permit persons to whom the Software is
13  * furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24  * THE SOFTWARE.
25  *
26  *-----------------------------------------------------------------------------
27  * Description:
28  *  Main include file for SDVO port driver
29  *-----------------------------------------------------------------------------
30  */
31
32 #ifndef _SDVO_PORT_H_
33 #define _SDVO_PORT_H_
34
35 #include <config.h>
36 #include <igd_pd.h>
37 #include <pd.h>
38 #include <pd_print.h>
39
40 /* #define DEBUG 0 */
41
42 /*  ............................................................................ */
43 #ifndef ARRAY_SIZE
44 #define ARRAY_SIZE(p) (sizeof(p)/sizeof((p)[0]))
45 #endif
46
47 #include "sdvo_intf.h"
48 #include "sdvo_attr.h"
49 #include "sdvo_hdmi.h"
50
51 /*  ............................................................................ */
52 #ifndef CONFIG_MICRO
53 #define SDVO_GET_ATTR_NAME(p_attr)      p_attr->name
54 #else
55 #define SDVO_GET_ATTR_NAME(p_attr)      ""
56 #endif
57
58 /*  ............................................................................ */
59 unsigned char sdvo_write_i2c_reg(sdvo_device_context_t *p_Ctx, i2c_reg_t offset,
60         i2c_reg_t value);
61 unsigned char sdvo_read_i2c_reg(sdvo_device_context_t *p_Ctx, unsigned char offset,
62         i2c_reg_t *p_Value);
63
64
65 int sdvo_is_multi_display_device(sdvo_device_context_t *p_ctx);
66
67 /*OKI Workaround*/
68 #define VENDOR_ID_OKI 0x81
69
70
71 #endif  /*  _SDVO_PORT_H_ */