1 /*
2 * Copyright 2011-2013 Maarten Lankhorst
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23 #include "nvc0/nvc0_video.h"
24
25 #include "util/u_sampler.h"
26 #include "util/format/u_format.h"
27
28 static void
nvc0_decoder_begin_frame(struct pipe_video_codec * decoder,struct pipe_video_buffer * target,struct pipe_picture_desc * picture)29 nvc0_decoder_begin_frame(struct pipe_video_codec *decoder,
30 struct pipe_video_buffer *target,
31 struct pipe_picture_desc *picture)
32 {
33 struct nouveau_vp3_decoder *dec = (struct nouveau_vp3_decoder *)decoder;
34 uint32_t comm_seq = ++dec->fence_seq;
35 ASSERTED unsigned ret = 0; /* used in debug checks */
36
37 assert(dec);
38 assert(target);
39 assert(target->buffer_format == PIPE_FORMAT_NV12);
40
41 ret = nvc0_decoder_bsp_begin(dec, comm_seq);
42
43 assert(ret == 2);
44 }
45
46 static void
nvc0_decoder_decode_bitstream(struct pipe_video_codec * decoder,struct pipe_video_buffer * video_target,struct pipe_picture_desc * picture,unsigned num_buffers,const void * const * data,const unsigned * num_bytes)47 nvc0_decoder_decode_bitstream(struct pipe_video_codec *decoder,
48 struct pipe_video_buffer *video_target,
49 struct pipe_picture_desc *picture,
50 unsigned num_buffers,
51 const void *const *data,
52 const unsigned *num_bytes)
53 {
54 struct nouveau_vp3_decoder *dec = (struct nouveau_vp3_decoder *)decoder;
55 uint32_t comm_seq = dec->fence_seq;
56 ASSERTED unsigned ret = 0; /* used in debug checks */
57
58 assert(decoder);
59
60 ret = nvc0_decoder_bsp_next(dec, comm_seq, num_buffers, data, num_bytes);
61
62 assert(ret == 2);
63 }
64
65 static void
nvc0_decoder_end_frame(struct pipe_video_codec * decoder,struct pipe_video_buffer * video_target,struct pipe_picture_desc * picture)66 nvc0_decoder_end_frame(struct pipe_video_codec *decoder,
67 struct pipe_video_buffer *video_target,
68 struct pipe_picture_desc *picture)
69 {
70 struct nouveau_vp3_decoder *dec = (struct nouveau_vp3_decoder *)decoder;
71 struct nouveau_vp3_video_buffer *target = (struct nouveau_vp3_video_buffer *)video_target;
72 uint32_t comm_seq = dec->fence_seq;
73 union pipe_desc desc;
74
75 unsigned vp_caps, is_ref;
76 ASSERTED unsigned ret; /* used in debug checks */
77 struct nouveau_vp3_video_buffer *refs[16] = {};
78
79 desc.base = picture;
80
81 ret = nvc0_decoder_bsp_end(dec, desc, target, comm_seq, &vp_caps, &is_ref, refs);
82
83 /* did we decode bitstream correctly? */
84 assert(ret == 2);
85
86 nvc0_decoder_vp(dec, desc, target, comm_seq, vp_caps, is_ref, refs);
87 nvc0_decoder_ppp(dec, desc, target, comm_seq);
88 }
89
90 struct pipe_video_codec *
nvc0_create_decoder(struct pipe_context * context,const struct pipe_video_codec * templ)91 nvc0_create_decoder(struct pipe_context *context,
92 const struct pipe_video_codec *templ)
93 {
94 struct nvc0_context *nvc0 = nvc0_context(context);
95 struct nouveau_screen *screen = &nvc0->screen->base;
96 struct nouveau_vp3_decoder *dec;
97 struct nouveau_pushbuf **push;
98 union nouveau_bo_config cfg;
99 bool kepler = screen->device->chipset >= 0xe0;
100
101 cfg.nvc0.tile_mode = 0x10;
102 cfg.nvc0.memtype = 0xfe;
103
104 int ret, i;
105 uint32_t codec = 1, ppp_codec = 3;
106 uint32_t timeout;
107 u32 tmp_size = 0;
108
109 if (getenv("XVMC_VL"))
110 return vl_create_decoder(context, templ);
111
112 if (templ->entrypoint != PIPE_VIDEO_ENTRYPOINT_BITSTREAM) {
113 debug_printf("%x\n", templ->entrypoint);
114 return NULL;
115 }
116
117 dec = CALLOC_STRUCT(nouveau_vp3_decoder);
118 if (!dec)
119 return NULL;
120 dec->client = nvc0->base.client;
121 dec->base = *templ;
122 nouveau_vp3_decoder_init_common(&dec->base);
123
124 if (!kepler) {
125 dec->bsp_idx = 5;
126 dec->vp_idx = 6;
127 dec->ppp_idx = 7;
128 } else {
129 dec->bsp_idx = 2;
130 dec->vp_idx = 2;
131 dec->ppp_idx = 2;
132 }
133
134 for (i = 0; i < 3; ++i)
135 if (i && !kepler) {
136 dec->channel[i] = dec->channel[0];
137 dec->pushbuf[i] = dec->pushbuf[0];
138 } else {
139 void *data;
140 u32 size;
141 struct nvc0_fifo nvc0_args = {};
142 struct nve0_fifo nve0_args = {};
143
144 if (!kepler) {
145 size = sizeof(nvc0_args);
146 data = &nvc0_args;
147 } else {
148 unsigned engine[] = {
149 NVE0_FIFO_ENGINE_BSP,
150 NVE0_FIFO_ENGINE_VP,
151 NVE0_FIFO_ENGINE_PPP
152 };
153
154 nve0_args.engine = engine[i];
155 size = sizeof(nve0_args);
156 data = &nve0_args;
157 }
158
159 ret = nouveau_object_new(&screen->device->object, 0,
160 NOUVEAU_FIFO_CHANNEL_CLASS,
161 data, size, &dec->channel[i]);
162
163 if (!ret)
164 ret = nouveau_pushbuf_new(nvc0->base.client, dec->channel[i], 4,
165 32 * 1024, true, &dec->pushbuf[i]);
166 if (ret)
167 break;
168 }
169 push = dec->pushbuf;
170
171 if (!kepler) {
172 if (!ret)
173 ret = nouveau_object_new(dec->channel[0], 0x390b1, 0x90b1, NULL, 0, &dec->bsp);
174 if (!ret)
175 ret = nouveau_object_new(dec->channel[1], 0x190b2, 0x90b2, NULL, 0, &dec->vp);
176 if (!ret)
177 ret = nouveau_object_new(dec->channel[2], 0x290b3, 0x90b3, NULL, 0, &dec->ppp);
178 } else {
179 if (!ret)
180 ret = nouveau_object_new(dec->channel[0], 0x95b1, 0x95b1, NULL, 0, &dec->bsp);
181 if (!ret)
182 ret = nouveau_object_new(dec->channel[1], 0x95b2, 0x95b2, NULL, 0, &dec->vp);
183 if (!ret)
184 ret = nouveau_object_new(dec->channel[2], 0x90b3, 0x90b3, NULL, 0, &dec->ppp);
185 }
186 if (ret)
187 goto fail;
188
189 BEGIN_NVC0(push[0], SUBC_BSP(NV01_SUBCHAN_OBJECT), 1);
190 PUSH_DATA (push[0], dec->bsp->handle);
191
192 BEGIN_NVC0(push[1], SUBC_VP(NV01_SUBCHAN_OBJECT), 1);
193 PUSH_DATA (push[1], dec->vp->handle);
194
195 BEGIN_NVC0(push[2], SUBC_PPP(NV01_SUBCHAN_OBJECT), 1);
196 PUSH_DATA (push[2], dec->ppp->handle);
197
198 dec->base.context = context;
199 dec->base.begin_frame = nvc0_decoder_begin_frame;
200 dec->base.decode_bitstream = nvc0_decoder_decode_bitstream;
201 dec->base.end_frame = nvc0_decoder_end_frame;
202
203 for (i = 0; i < NOUVEAU_VP3_VIDEO_QDEPTH && !ret; ++i)
204 ret = nouveau_bo_new(screen->device, NOUVEAU_BO_VRAM,
205 0, 1 << 20, &cfg, &dec->bsp_bo[i]);
206 if (!ret) {
207 /* total fudge factor... just has to be bigger for higher bitrates? */
208 unsigned inter_size = align(templ->width * templ->height * 2, 4 << 20);
209 ret = nouveau_bo_new(screen->device, NOUVEAU_BO_VRAM,
210 0x100, inter_size, &cfg, &dec->inter_bo[0]);
211 }
212 if (!ret) {
213 ret = nouveau_bo_new(screen->device, NOUVEAU_BO_VRAM,
214 0x100, dec->inter_bo[0]->size, &cfg,
215 &dec->inter_bo[1]);
216 }
217 if (ret)
218 goto fail;
219 switch (u_reduce_video_profile(templ->profile)) {
220 case PIPE_VIDEO_FORMAT_MPEG12: {
221 codec = 1;
222 assert(templ->max_references <= 2);
223 break;
224 }
225 case PIPE_VIDEO_FORMAT_MPEG4: {
226 codec = 4;
227 tmp_size = mb(templ->height)*16 * mb(templ->width)*16;
228 assert(templ->max_references <= 2);
229 break;
230 }
231 case PIPE_VIDEO_FORMAT_VC1: {
232 ppp_codec = codec = 2;
233 tmp_size = mb(templ->height)*16 * mb(templ->width)*16;
234 assert(templ->max_references <= 2);
235 break;
236 }
237 case PIPE_VIDEO_FORMAT_MPEG4_AVC: {
238 codec = 3;
239 dec->tmp_stride = 16 * mb_half(templ->width) * nouveau_vp3_video_align(templ->height) * 3 / 2;
240 tmp_size = dec->tmp_stride * (templ->max_references + 1);
241 assert(templ->max_references <= 16);
242 break;
243 }
244 default:
245 fprintf(stderr, "invalid codec\n");
246 goto fail;
247 }
248
249 if (screen->device->chipset < 0xd0) {
250 ret = nouveau_bo_new(screen->device, NOUVEAU_BO_VRAM, 0,
251 0x4000, &cfg, &dec->fw_bo);
252 if (ret)
253 goto fail;
254
255 ret = nouveau_vp3_load_firmware(dec, templ->profile, screen->device->chipset);
256 if (ret)
257 goto fw_fail;
258 }
259
260 if (codec != 3) {
261 ret = nouveau_bo_new(screen->device, NOUVEAU_BO_VRAM, 0,
262 0x400, &cfg, &dec->bitplane_bo);
263 if (ret)
264 goto fail;
265 }
266
267 dec->ref_stride = mb(templ->width)*16 * (mb_half(templ->height)*32 + nouveau_vp3_video_align(templ->height)/2);
268 ret = nouveau_bo_new(screen->device, NOUVEAU_BO_VRAM, 0,
269 dec->ref_stride * (templ->max_references+2) + tmp_size,
270 &cfg, &dec->ref_bo);
271 if (ret)
272 goto fail;
273
274 timeout = 0;
275
276 BEGIN_NVC0(push[0], SUBC_BSP(0x200), 2);
277 PUSH_DATA (push[0], codec);
278 PUSH_DATA (push[0], timeout);
279
280 BEGIN_NVC0(push[1], SUBC_VP(0x200), 2);
281 PUSH_DATA (push[1], codec);
282 PUSH_DATA (push[1], timeout);
283
284 BEGIN_NVC0(push[2], SUBC_PPP(0x200), 2);
285 PUSH_DATA (push[2], ppp_codec);
286 PUSH_DATA (push[2], timeout);
287
288 ++dec->fence_seq;
289
290 #if NOUVEAU_VP3_DEBUG_FENCE
291 ret = nouveau_bo_new(screen->device, NOUVEAU_BO_GART|NOUVEAU_BO_MAP,
292 0, 0x1000, NULL, &dec->fence_bo);
293 if (ret)
294 goto fail;
295
296 nouveau_bo_map(dec->fence_bo, NOUVEAU_BO_RDWR, screen->client);
297 dec->fence_map = dec->fence_bo->map;
298 dec->fence_map[0] = dec->fence_map[4] = dec->fence_map[8] = 0;
299 dec->comm = (struct comm *)(dec->fence_map + (COMM_OFFSET/sizeof(*dec->fence_map)));
300
301 /* So lets test if the fence is working? */
302 nouveau_pushbuf_space(push[0], 16, 1, 0);
303 PUSH_REFN (push[0], dec->fence_bo, NOUVEAU_BO_GART|NOUVEAU_BO_RDWR);
304 BEGIN_NVC0(push[0], SUBC_BSP(0x240), 3);
305 PUSH_DATAh(push[0], dec->fence_bo->offset);
306 PUSH_DATA (push[0], dec->fence_bo->offset);
307 PUSH_DATA (push[0], dec->fence_seq);
308
309 BEGIN_NVC0(push[0], SUBC_BSP(0x304), 1);
310 PUSH_DATA (push[0], 0);
311 PUSH_KICK (push[0]);
312
313 nouveau_pushbuf_space(push[1], 16, 1, 0);
314 PUSH_REFN (push[1], dec->fence_bo, NOUVEAU_BO_GART|NOUVEAU_BO_RDWR);
315 BEGIN_NVC0(push[1], SUBC_VP(0x240), 3);
316 PUSH_DATAh(push[1], (dec->fence_bo->offset + 0x10));
317 PUSH_DATA (push[1], (dec->fence_bo->offset + 0x10));
318 PUSH_DATA (push[1], dec->fence_seq);
319
320 BEGIN_NVC0(push[1], SUBC_VP(0x304), 1);
321 PUSH_DATA (push[1], 0);
322 PUSH_KICK (push[1]);
323
324 nouveau_pushbuf_space(push[2], 16, 1, 0);
325 PUSH_REFN (push[2], dec->fence_bo, NOUVEAU_BO_GART|NOUVEAU_BO_RDWR);
326 BEGIN_NVC0(push[2], SUBC_PPP(0x240), 3);
327 PUSH_DATAh(push[2], (dec->fence_bo->offset + 0x20));
328 PUSH_DATA (push[2], (dec->fence_bo->offset + 0x20));
329 PUSH_DATA (push[2], dec->fence_seq);
330
331 BEGIN_NVC0(push[2], SUBC_PPP(0x304), 1);
332 PUSH_DATA (push[2], 0);
333 PUSH_KICK (push[2]);
334
335 usleep(100);
336 while (dec->fence_seq > dec->fence_map[0] ||
337 dec->fence_seq > dec->fence_map[4] ||
338 dec->fence_seq > dec->fence_map[8]) {
339 debug_printf("%u: %u %u %u\n", dec->fence_seq, dec->fence_map[0], dec->fence_map[4], dec->fence_map[8]);
340 usleep(100);
341 }
342 debug_printf("%u: %u %u %u\n", dec->fence_seq, dec->fence_map[0], dec->fence_map[4], dec->fence_map[8]);
343 #endif
344
345 return &dec->base;
346
347 fw_fail:
348 debug_printf("Cannot create decoder without firmware..\n");
349 dec->base.destroy(&dec->base);
350 return NULL;
351
352 fail:
353 debug_printf("Creation failed: %s (%i)\n", strerror(-ret), ret);
354 dec->base.destroy(&dec->base);
355 return NULL;
356 }
357
358 struct pipe_video_buffer *
nvc0_video_buffer_create(struct pipe_context * pipe,const struct pipe_video_buffer * templat)359 nvc0_video_buffer_create(struct pipe_context *pipe,
360 const struct pipe_video_buffer *templat)
361 {
362 return nouveau_vp3_video_buffer_create(
363 pipe, templat, NVC0_RESOURCE_FLAG_VIDEO);
364 }
365