summaryrefslogtreecommitdiff
path: root/drivers/video/wmt/ge/ge_accel.h
blob: c6934daaaf6a080bf97ae95cb038e30d12dd02b5 (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
/*
 * Copyright (c) 2008-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
 */

#ifndef GE_ACCEL_H
#define GE_ACCEL_H

#include <linux/init.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/fb.h>

#ifndef __KERNEL__
#define __KERNEL__
#endif

#define GE_DEBUG 0
#define FB_ACCEL_WMT 0x8910
#define MAX_XRES 1920
#define MAX_YRES 1080
#define GE_FB_NUM 3

#define HAVE_MALI
#define HAVE_VPP

extern int vbl;
extern int vsync;

unsigned int phy_mem_end(void);
unsigned int phy_mem_end_sub(unsigned int size);
int ge_init(struct fb_info *info);
int ge_exit(struct fb_info *info);
int ge_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg);
int ge_pan_display(struct fb_var_screeninfo *var, struct fb_info *info);
int ge_sync(struct fb_info *info);
int ge_release(struct fb_info *info);
int ge_blank(int mode, struct fb_info *info);
int ge_suspend(struct fb_info *info);
int ge_resume(struct fb_info *info);

void ge_vo_get_default_var(struct fb_var_screeninfo *var);
void ge_vo_wait_vsync(void);

#ifdef HAVE_VPP
#include "../vpp.h"
extern void vpp_wait_vsync(int idx, int cnt);
extern void wmtfb_set_mutex(struct fb_info *info, int lock);
extern int vpp_get_info(int fbn, struct fb_var_screeninfo *var);
extern int vpp_pan_display(struct fb_var_screeninfo *var, struct fb_info *info);
extern int vpp_set_blank(struct fb_info *info, int blank);
extern int vpp_set_par(struct fb_info *info);
extern int wmtfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info);
#endif /* HAVE_VPP */

#ifdef HAVE_MALI
extern unsigned int mali_ump_secure_id;
extern unsigned int (*mali_get_ump_secure_id)(unsigned int addr,
					      unsigned int size);
extern void         (*mali_put_ump_secure_id)(unsigned int ump_id);
#endif /* HAVE_MALI */

#endif