-
Notifications
You must be signed in to change notification settings - Fork 80
/
sunxi_disp.c
278 lines (237 loc) · 9.59 KB
/
sunxi_disp.c
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
/*
* Copyright (c) 2013-2015 Jens Kuske <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <fcntl.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include "kernel-headers/sunxi_disp_ioctl.h"
#include "vdpau_private.h"
#include "sunxi_disp.h"
struct sunxi_disp_private
{
struct sunxi_disp pub;
int fd;
int video_layer;
int osd_layer;
__disp_layer_info_t video_info;
__disp_layer_info_t osd_info;
};
static void sunxi_disp_close(struct sunxi_disp *sunxi_disp);
static int sunxi_disp_set_video_layer(struct sunxi_disp *sunxi_disp, int x, int y, int width, int height, output_surface_ctx_t *surface);
static void sunxi_disp_close_video_layer(struct sunxi_disp *sunxi_disp);
static int sunxi_disp_set_osd_layer(struct sunxi_disp *sunxi_disp, int x, int y, int width, int height, output_surface_ctx_t *surface);
static void sunxi_disp_close_osd_layer(struct sunxi_disp *sunxi_disp);
struct sunxi_disp *sunxi_disp_open(int osd_enabled)
{
struct sunxi_disp_private *disp = calloc(1, sizeof(*disp));
disp->fd = open("/dev/disp", O_RDWR);
if (disp->fd == -1)
goto err_open;
int tmp = SUNXI_DISP_VERSION;
if (ioctl(disp->fd, DISP_CMD_VERSION, &tmp) < 0)
goto err_version;
uint32_t args[4] = { 0, DISP_LAYER_WORK_MODE_SCALER, 0, 0 };
disp->video_layer = ioctl(disp->fd, DISP_CMD_LAYER_REQUEST, args);
if (disp->video_layer == 0)
goto err_video_layer;
args[1] = disp->video_layer;
ioctl(disp->fd, osd_enabled ? DISP_CMD_LAYER_TOP : DISP_CMD_LAYER_BOTTOM, args);
if (osd_enabled)
{
args[1] = DISP_LAYER_WORK_MODE_NORMAL;
disp->osd_layer = ioctl(disp->fd, DISP_CMD_LAYER_REQUEST, args);
if (disp->osd_layer == 0)
goto err_osd_layer;
args[1] = disp->osd_layer;
ioctl(disp->fd, DISP_CMD_LAYER_TOP, args);
disp->osd_info.pipe = 1;
disp->osd_info.mode = DISP_LAYER_WORK_MODE_NORMAL;
disp->osd_info.fb.mode = DISP_MOD_INTERLEAVED;
disp->osd_info.fb.format = DISP_FORMAT_ARGB8888;
disp->osd_info.fb.seq = DISP_SEQ_ARGB;
disp->osd_info.fb.cs_mode = DISP_BT601;
}
else
{
disp->video_info.pipe = 1;
disp->video_info.ck_enable = 1;
__disp_colorkey_t ck;
ck.ck_max.red = ck.ck_min.red = 0;
ck.ck_max.green = ck.ck_min.green = 1;
ck.ck_max.blue = ck.ck_min.blue = 2;
ck.red_match_rule = 2;
ck.green_match_rule = 2;
ck.blue_match_rule = 2;
args[1] = (unsigned long)(&ck);
ioctl(disp->fd, DISP_CMD_SET_COLORKEY, args);
}
disp->video_info.mode = DISP_LAYER_WORK_MODE_SCALER;
disp->video_info.fb.cs_mode = DISP_BT601;
disp->video_info.fb.br_swap = 0;
disp->pub.close = sunxi_disp_close;
disp->pub.set_video_layer = sunxi_disp_set_video_layer;
disp->pub.close_video_layer = sunxi_disp_close_video_layer;
disp->pub.set_osd_layer = sunxi_disp_set_osd_layer;
disp->pub.close_osd_layer = sunxi_disp_close_osd_layer;
return (struct sunxi_disp *)disp;
err_osd_layer:
args[1] = disp->osd_layer;
ioctl(disp->fd, DISP_CMD_LAYER_RELEASE, args);
err_video_layer:
err_version:
close(disp->fd);
err_open:
free(disp);
return NULL;
}
static void sunxi_disp_close(struct sunxi_disp *sunxi_disp)
{
struct sunxi_disp_private *disp = (struct sunxi_disp_private *)sunxi_disp;
uint32_t args[4] = { 0, disp->video_layer, 0, 0 };
ioctl(disp->fd, DISP_CMD_LAYER_CLOSE, args);
ioctl(disp->fd, DISP_CMD_LAYER_RELEASE, args);
if (disp->osd_layer)
{
args[1] = disp->osd_layer;
ioctl(disp->fd, DISP_CMD_LAYER_CLOSE, args);
ioctl(disp->fd, DISP_CMD_LAYER_RELEASE, args);
}
close(disp->fd);
free(sunxi_disp);
}
static int sunxi_disp_set_video_layer(struct sunxi_disp *sunxi_disp, int x, int y, int width, int height, output_surface_ctx_t *surface)
{
struct sunxi_disp_private *disp = (struct sunxi_disp_private *)sunxi_disp;
switch (surface->vs->source_format) {
case VDP_YCBCR_FORMAT_YUYV:
disp->video_info.fb.mode = DISP_MOD_INTERLEAVED;
disp->video_info.fb.format = DISP_FORMAT_YUV422;
disp->video_info.fb.seq = DISP_SEQ_YUYV;
break;
case VDP_YCBCR_FORMAT_UYVY:
disp->video_info.fb.mode = DISP_MOD_INTERLEAVED;
disp->video_info.fb.format = DISP_FORMAT_YUV422;
disp->video_info.fb.seq = DISP_SEQ_UYVY;
break;
case VDP_YCBCR_FORMAT_NV12:
disp->video_info.fb.mode = DISP_MOD_NON_MB_UV_COMBINED;
disp->video_info.fb.format = DISP_FORMAT_YUV420;
disp->video_info.fb.seq = DISP_SEQ_UVUV;
break;
case VDP_YCBCR_FORMAT_YV12:
disp->video_info.fb.mode = DISP_MOD_NON_MB_PLANAR;
disp->video_info.fb.format = DISP_FORMAT_YUV420;
disp->video_info.fb.seq = DISP_SEQ_UVUV;
break;
default:
case INTERNAL_YCBCR_FORMAT:
disp->video_info.fb.mode = DISP_MOD_MB_UV_COMBINED;
disp->video_info.fb.format = DISP_FORMAT_YUV420;
disp->video_info.fb.seq = DISP_SEQ_UVUV;
break;
}
disp->video_info.fb.addr[0] = cedrus_mem_get_phys_addr(surface->yuv->data);
disp->video_info.fb.addr[1] = cedrus_mem_get_phys_addr(surface->yuv->data) + surface->vs->luma_size;
disp->video_info.fb.addr[2] = cedrus_mem_get_phys_addr(surface->yuv->data) + surface->vs->luma_size + surface->vs->chroma_size / 2;
disp->video_info.fb.size.width = surface->vs->width;
disp->video_info.fb.size.height = surface->vs->height;
disp->video_info.src_win.x = surface->video_src_rect.x0;
disp->video_info.src_win.y = surface->video_src_rect.y0;
disp->video_info.src_win.width = surface->video_src_rect.x1 - surface->video_src_rect.x0;
disp->video_info.src_win.height = surface->video_src_rect.y1 - surface->video_src_rect.y0;
disp->video_info.scn_win.x = x + surface->video_dst_rect.x0;
disp->video_info.scn_win.y = y + surface->video_dst_rect.y0;
disp->video_info.scn_win.width = surface->video_dst_rect.x1 - surface->video_dst_rect.x0;
disp->video_info.scn_win.height = surface->video_dst_rect.y1 - surface->video_dst_rect.y0;
if (disp->video_info.scn_win.y < 0)
{
int scn_clip = -(disp->video_info.scn_win.y);
int src_clip = scn_clip * disp->video_info.src_win.height / disp->video_info.scn_win.height;
disp->video_info.src_win.y += src_clip;
disp->video_info.src_win.height -= src_clip;
disp->video_info.scn_win.y = 0;
disp->video_info.scn_win.height -= scn_clip;
}
uint32_t args[4] = { 0, disp->video_layer, (unsigned long)(&disp->video_info), 0 };
ioctl(disp->fd, DISP_CMD_LAYER_SET_PARA, args);
ioctl(disp->fd, DISP_CMD_LAYER_OPEN, args);
// Note: might be more reliable (but slower and problematic when there
// are driver issues and the GET functions return wrong values) to query the
// old values instead of relying on our internal csc_change.
// Since the driver calculates a matrix out of these values after each
// set doing this unconditionally is costly.
if (surface->csc_change)
{
ioctl(disp->fd, DISP_CMD_LAYER_ENHANCE_OFF, args);
args[2] = 0xff * surface->brightness + 0x20;
ioctl(disp->fd, DISP_CMD_LAYER_SET_BRIGHT, args);
args[2] = 0x20 * surface->contrast;
ioctl(disp->fd, DISP_CMD_LAYER_SET_CONTRAST, args);
args[2] = 0x20 * surface->saturation;
ioctl(disp->fd, DISP_CMD_LAYER_SET_SATURATION, args);
// hue scale is randomly chosen, no idea how it maps exactly
args[2] = (32 / 3.14) * surface->hue + 0x20;
ioctl(disp->fd, DISP_CMD_LAYER_SET_HUE, args);
ioctl(disp->fd, DISP_CMD_LAYER_ENHANCE_ON, args);
surface->csc_change = 0;
}
return 0;
}
static void sunxi_disp_close_video_layer(struct sunxi_disp *sunxi_disp)
{
struct sunxi_disp_private *disp = (struct sunxi_disp_private *)sunxi_disp;
uint32_t args[4] = { 0, disp->video_layer, 0, 0 };
ioctl(disp->fd, DISP_CMD_LAYER_CLOSE, args);
}
static int sunxi_disp_set_osd_layer(struct sunxi_disp *sunxi_disp, int x, int y, int width, int height, output_surface_ctx_t *surface)
{
struct sunxi_disp_private *disp = (struct sunxi_disp_private *)sunxi_disp;
switch (surface->rgba.format)
{
case VDP_RGBA_FORMAT_R8G8B8A8:
disp->osd_info.fb.br_swap = 1;
break;
case VDP_RGBA_FORMAT_B8G8R8A8:
default:
disp->osd_info.fb.br_swap = 0;
break;
}
disp->osd_info.fb.addr[0] = cedrus_mem_get_phys_addr(surface->rgba.data);
disp->osd_info.fb.size.width = surface->rgba.width;
disp->osd_info.fb.size.height = surface->rgba.height;
disp->osd_info.src_win.x = surface->rgba.dirty.x0;
disp->osd_info.src_win.y = surface->rgba.dirty.y0;
disp->osd_info.src_win.width = surface->rgba.dirty.x1 - surface->rgba.dirty.x0;
disp->osd_info.src_win.height = surface->rgba.dirty.y1 - surface->rgba.dirty.y0;
disp->osd_info.scn_win.x = x + surface->rgba.dirty.x0;
disp->osd_info.scn_win.y = y + surface->rgba.dirty.y0;
disp->osd_info.scn_win.width = min_nz(width, surface->rgba.dirty.x1) - surface->rgba.dirty.x0;
disp->osd_info.scn_win.height = min_nz(height, surface->rgba.dirty.y1) - surface->rgba.dirty.y0;
uint32_t args[4] = { 0, disp->osd_layer, (unsigned long)(&disp->osd_info), 0 };
ioctl(disp->fd, DISP_CMD_LAYER_SET_PARA, args);
ioctl(disp->fd, DISP_CMD_LAYER_OPEN, args);
return 0;
}
static void sunxi_disp_close_osd_layer(struct sunxi_disp *sunxi_disp)
{
struct sunxi_disp_private *disp = (struct sunxi_disp_private *)sunxi_disp;
uint32_t args[4] = { 0, disp->osd_layer, 0, 0 };
ioctl(disp->fd, DISP_CMD_LAYER_CLOSE, args);
}