summaryrefslogtreecommitdiff
path: root/drivers/video/wmt/devices/lcd-EKING-EK08009-70135.c
blob: 45ed2c2cd7f035c710e0bb9f3a3a9d1a133ffe09 (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
94
95
96
97
98
99
100
101
/*++
 * linux/drivers/video/wmt/lcd-EKING_EK08009-70135.c
 * WonderMedia video post processor (VPP) driver
 *
 * Copyright c 2013  WonderMedia  Technologies, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that 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, see <http://www.gnu.org/licenses/>.
 *
 * WonderMedia Technologies, Inc.
 * 4F, 533, Chung-Cheng Road, Hsin-Tien, Taipei 231, R.O.C
--*/

#define LCD_EKING_EK08009_C
/* #define DEBUG */
/*----------------------- DEPENDENCE -----------------------------------------*/
#include "../lcd.h"

/*----------------------- PRIVATE MACRO --------------------------------------*/
/* #define  LCD_EK08009_XXXX  xxxx    *//*Example*/

/*----------------------- PRIVATE CONSTANTS ----------------------------------*/
/* #define LCD_EK08009_XXXX    1     *//*Example*/

/*----------------------- PRIVATE TYPE  --------------------------------------*/
/* typedef  xxxx lcd_xxx_t; *//*Example*/

/*----------EXPORTED PRIVATE VARIABLES are defined in lcd.h  -------------*/
static void lcd_ek08009_power_on(void);
static void lcd_ek08009_power_off(void);

/*----------------------- INTERNAL PRIVATE VARIABLES - -----------------------*/
/* int  lcd_xxx;        *//*Example*/
lcd_parm_t lcd_ek08009_parm = {
	.bits_per_pixel = 18,
	.capability = LCD_CAP_CLK_HI,
	.vmode = {
	.name = "EKING EK08009",
	.refresh = 60,
	.xres = 800,
	.yres = 600,
	.pixclock = KHZ2PICOS(40000),
	.left_margin = 46,
	.right_margin = 210,
	.upper_margin = 24,
	.lower_margin = 12,
	.hsync_len = 1,
	.vsync_len = 1,
	.sync = 0,
	.vmode = 0,
	.flag = 0,
	},
	.initial = lcd_ek08009_power_on,
	.uninitial = lcd_ek08009_power_off,
};

/*--------------------- INTERNAL PRIVATE FUNCTIONS ---------------------------*/
/* void lcd_xxx(void); *//*Example*/

/*----------------------- Function Body --------------------------------------*/
static void lcd_ek08009_power_on(void)
{
	DPRINT("lcd_ek08009_power_on\n");

	/* TODO */
}

static void lcd_ek08009_power_off(void)
{
	DPRINT("lcd_ek08009_power_off\n");

	/* TODO */
}

lcd_parm_t *lcd_ek08009_get_parm(int arg)
{
	return &lcd_ek08009_parm;
}

int lcd_ek08009_init(void)
{
	int ret;

	ret = lcd_panel_register(LCD_EKING_EK08009,
		(void *) lcd_ek08009_get_parm);
	return ret;
} /* End of lcd_oem_init */
module_init(lcd_ek08009_init);

/*--------------------End of Function Body -----------------------------------*/
#undef LCD_EKING_EK08009_C