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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
|
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
*
* @author Rama, Meka(v.meka@samsung.com)
Sangwoo, Park(sw5771.park@samsung.com)
Jamie, Oh (jung-min.oh@samsung.com)
* @date 2011-03-11
*
*/
#ifndef ANDROID_SEC_HWC_UTILS_H_
#define ANDROID_SEC_HWC_UTILS_H_
#include <stdlib.h>
#include <hardware/hardware.h>
#include <hardware/hwcomposer.h>
#include <fcntl.h>
#include <errno.h>
#include <cutils/log.h>
#ifdef BOARD_USE_V4L2_ION
#include <ion.h>
#include "s5p_fimc_v4l2.h"
#include "sec_utils_v4l2.h"
#else
#include <linux/videodev.h>
#include "s5p_fimc.h"
#include "sec_utils.h"
#endif
#include <linux/android_pmem.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <hardware/gralloc.h>
#include "linux/fb.h"
#include "s3c_lcd.h"
#include "s3c_mem.h"
#include "sec_format.h"
//#define HWC_DEBUG
#if defined(BOARD_USES_FIMGAPI)
#include "sec_g2d.h"
//#define SUB_TITLES_HWC
#endif
#define NUM_OF_WIN (2)
#define NUM_OF_WIN_BUF (2)
#define NUM_OF_MEM_OBJ (1)
#if (NUM_OF_WIN_BUF < 2)
#define ENABLE_FIMD_VSYNC
#endif
#define MAX_RESIZING_RATIO_LIMIT (63)
#ifdef SAMSUNG_EXYNOS4x12
#ifdef BOARD_USE_V4L2_ION
#define PP_DEVICE_DEV_NAME "/dev/video4"
#else
#define PP_DEVICE_DEV_NAME "/dev/video3"
#endif
#endif
#ifdef SAMSUNG_EXYNOS4210
#define PP_DEVICE_DEV_NAME "/dev/video1"
#endif
#define S3C_MEM_DEV_NAME "/dev/s3c-mem"
#define PMEM_DEVICE_DEV_NAME "/dev/pmem_gpu1"
#ifdef BOARD_USE_V4L2_ION
#undef USE_HW_PMEM
#else
#define USE_HW_PMEM
#endif
#define PMEM_SIZE (1920 * 1280 * 2)
struct sec_rect {
int32_t x;
int32_t y;
int32_t w;
int32_t h;
};
struct sec_img {
uint32_t f_w;
uint32_t f_h;
uint32_t w;
uint32_t h;
uint32_t format;
uint32_t base;
uint32_t offset;
uint32_t paddr;
uint32_t uoffset;
uint32_t voffset;
int usage;
int mem_id;
int mem_type;
};
inline int SEC_MIN(int x, int y)
{
return ((x < y) ? x : y);
}
inline int SEC_MAX(int x, int y)
{
return ((x > y) ? x : y);
}
struct s3c_mem_t {
int fd;
struct s3c_mem_alloc mem_alloc[NUM_OF_MEM_OBJ];
};
#ifdef USE_HW_PMEM
typedef struct __sec_pmem_alloc {
int fd;
int total_size;
int offset;
int size;
unsigned int virt_addr;
unsigned int phys_addr;
} sec_pmem_alloc_t;
typedef struct __sec_pmem {
int pmem_master_fd;
void *pmem_master_base;
int pmem_total_size;
sec_pmem_alloc_t sec_pmem_alloc[NUM_OF_MEM_OBJ];
} sec_pmem_t;
inline size_t roundUpToPageSize(size_t x)
{
return (x + (PAGE_SIZE-1)) & ~(PAGE_SIZE-1);
}
#endif
struct hwc_win_info_t {
int fd;
int size;
sec_rect rect_info;
uint32_t addr[NUM_OF_WIN_BUF];
int buf_index;
int power_state;
int blending;
int layer_index;
int status;
int vsync;
#ifdef BOARD_USE_V4L2_ION
int ion_fd;
#endif
struct fb_fix_screeninfo fix_info;
struct fb_var_screeninfo var_info;
struct fb_var_screeninfo lcd_info;
};
enum {
HWC_WIN_FREE = 0,
HWC_WIN_RESERVED,
};
enum {
HWC_UNKNOWN_MEM_TYPE = 0,
HWC_PHYS_MEM_TYPE,
HWC_VIRT_MEM_TYPE,
};
struct hwc_context_t {
hwc_composer_device_t device;
/* our private state goes below here */
struct hwc_win_info_t win[NUM_OF_WIN];
struct fb_var_screeninfo lcd_info;
s5p_fimc_t fimc;
#ifdef SUB_TITLES_HWC
sec_g2d_t g2d;
#endif
struct s3c_mem_t s3c_mem;
#ifdef USE_HW_PMEM
sec_pmem_t sec_pmem;
#endif
int num_of_fb_layer;
int num_of_hwc_layer;
int num_2d_blit_layer;
uint32_t layer_prev_buf[NUM_OF_WIN];
};
typedef enum _LOG_LEVEL {
HWC_LOG_DEBUG,
HWC_LOG_WARNING,
HWC_LOG_ERROR,
} HWC_LOG_LEVEL;
#define SEC_HWC_LOG_TAG "SECHWC_LOG"
#ifdef HWC_DEBUG
#define SEC_HWC_Log(a, ...) ((void)_SEC_HWC_Log(a, SEC_HWC_LOG_TAG, __VA_ARGS__))
#else
#define SEC_HWC_Log(a, ...) \
do { \
if (a == HWC_LOG_ERROR) \
((void)_SEC_HWC_Log(a, SEC_HWC_LOG_TAG, __VA_ARGS__)); \
} while (0)
#endif
extern void _SEC_HWC_Log(HWC_LOG_LEVEL logLevel, const char *tag, const char *msg, ...);
/* copied from gralloc module ..*/
typedef struct {
native_handle_t base;
/* These fields can be sent cross process. They are also valid
* to duplicate within the same process.
*
* A table is stored within psPrivateData on gralloc_module_t (this
* is obviously per-process) which maps stamps to a mapped
* PVRSRV_CLIENT_MEM_INFO in that process. Each map entry has a lock
* count associated with it, satisfying the requirements of the
* Android API. This also prevents us from leaking maps/allocations.
*
* This table has entries inserted either by alloc()
* (alloc_device_t) or map() (gralloc_module_t). Entries are removed
* by free() (alloc_device_t) and unmap() (gralloc_module_t).
*
* As a special case for framebuffer_device_t, framebuffer_open()
* will add and framebuffer_close() will remove from this table.
*/
#define IMG_NATIVE_HANDLE_NUMFDS 1
/* The `fd' field is used to "export" a meminfo to another process.
* Therefore, it is allocated by alloc_device_t, and consumed by
* gralloc_module_t. The framebuffer_device_t does not need a handle,
* and the special value IMG_FRAMEBUFFER_FD is used instead.
*/
int fd;
#if 1
int format;
int magic;
int flags;
int size;
int offset;
int base_addr;
#define IMG_NATIVE_HANDLE_NUMINTS ((sizeof(uint64_t) / sizeof(int)) + 4 + 6)
#else
#define IMG_NATIVE_HANDLE_NUMINTS ((sizeof(IMG_UINT64) / sizeof(int)) + 4)
#endif
/* A KERNEL unique identifier for any exported kernel meminfo. Each
* exported kernel meminfo will have a unique stamp, but note that in
* userspace, several meminfos across multiple processes could have
* the same stamp. As the native_handle can be dup(2)'d, there could be
* multiple handles with the same stamp but different file descriptors.
*/
uint64_t ui64Stamp;
/* We could live without this, but it lets us perform some additional
* validation on the client side. Normally, we'd have no visibility
* of the allocated usage, just the lock usage.
*/
int usage;
/* In order to do efficient cache flushes we need the buffer dimensions
* and format. These are available on the android_native_buffer_t,
* but the platform doesn't pass them down to the graphics HAL.
*
* TODO: Ideally the platform would be modified to not require this.
*/
int width;
int height;
int bpp;
}
__attribute__((aligned(sizeof(int)),packed)) sec_native_handle_t;
int window_open (struct hwc_win_info_t *win, int id);
int window_close (struct hwc_win_info_t *win);
int window_set_pos (struct hwc_win_info_t *win);
int window_get_info (struct hwc_win_info_t *win, int win_num);
int window_pan_display(struct hwc_win_info_t *win);
int window_show (struct hwc_win_info_t *win);
int window_hide (struct hwc_win_info_t *win);
int window_get_global_lcd_info(int fd, struct fb_var_screeninfo *lcd_info);
int createFimc (s5p_fimc_t *fimc);
int destroyFimc(s5p_fimc_t *fimc);
int runFimc(struct hwc_context_t *ctx,
struct sec_img *src_img, struct sec_rect *src_rect,
struct sec_img *dst_img, struct sec_rect *dst_rect,
uint32_t transform);
#ifdef SUB_TITLES_HWC
int runG2d(struct hwc_context_t *ctx,
g2d_rect *src_rect, g2d_rect *dst_rect,
uint32_t transform);
int destroyG2d(sec_g2d_t *g2d);
int createG2d(sec_g2d_t *g2d);
#endif
int createMem (struct s3c_mem_t *mem, unsigned int index, unsigned int size);
int destroyMem(struct s3c_mem_t *mem);
int checkMem (struct s3c_mem_t *mem, unsigned int index, unsigned int size);
#ifdef USE_HW_PMEM
int createPmem (sec_pmem_t *pm, unsigned int size);
int destroyPmem(sec_pmem_t *pm);
int checkPmem (sec_pmem_t *pm, unsigned int index, unsigned int size);
#endif
#endif /* ANDROID_SEC_HWC_UTILS_H_*/
|