OSDN Git Service

932095afcc95b7dd513b2e5edf0b04da4c6efd0a
[android-x86/hardware-intel-common-vaapi.git] / src / i965_device_info.c
1 /*
2  * Copyright © 2014 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sub license, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  *
24  */
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include "i965_drv_video.h"
29
30 #include <string.h>
31 #include <strings.h>
32 #include <errno.h>
33 #include <cpuid.h>
34
35 /* Extra set of chroma formats supported for H.264 decoding (beyond YUV 4:2:0) */
36 #define EXTRA_H264_DEC_CHROMA_FORMATS \
37     (VA_RT_FORMAT_YUV400)
38
39 /* Extra set of chroma formats supported for JPEG decoding (beyond YUV 4:2:0) */
40 #define EXTRA_JPEG_DEC_CHROMA_FORMATS \
41     (VA_RT_FORMAT_YUV400 | VA_RT_FORMAT_YUV411 | VA_RT_FORMAT_YUV422 | \
42      VA_RT_FORMAT_YUV444)
43
44 /* Extra set of chroma formats supported for JPEG encoding (beyond YUV 4:2:0) */
45 #define EXTRA_JPEG_ENC_CHROMA_FORMATS \
46     (VA_RT_FORMAT_YUV400| VA_RT_FORMAT_YUV422 | VA_RT_FORMAT_YUV444 | VA_RT_FORMAT_RGB32)
47
48 #define EXTRA_HEVC_DEC_CHROMA_FORMATS \
49     (VA_RT_FORMAT_YUV420_10BPP)
50
51 #define EXTRA_VP9_DEC_CHROMA_FORMATS \
52     (VA_RT_FORMAT_YUV420_10BPP)
53
54 /* Defines VA profile as a 32-bit unsigned integer mask */
55 #define VA_PROFILE_MASK(PROFILE) \
56     (1U << VAProfile##PROFILE)
57
58 #define VP9_PROFILE_MASK(PROFILE) \
59     (1U << PROFILE)
60
61 extern struct hw_context *i965_proc_context_init(VADriverContextP, struct object_config *);
62 extern struct hw_context *g4x_dec_hw_context_init(VADriverContextP, struct object_config *);
63 extern bool genx_render_init(VADriverContextP);
64
65 static struct hw_codec_info g4x_hw_codec_info = {
66     .dec_hw_context_init = g4x_dec_hw_context_init,
67     .enc_hw_context_init = NULL,
68     .proc_hw_context_init = NULL,
69     .render_init = genx_render_init,
70     .post_processing_context_init = NULL,
71
72     .max_width = 2048,
73     .max_height = 2048,
74     .min_linear_wpitch = 16,
75     .min_linear_hpitch = 16,
76
77     .has_mpeg2_decoding = 1,
78
79     .num_filters = 0,
80 };
81
82 extern struct hw_context *ironlake_dec_hw_context_init(VADriverContextP, struct object_config *);
83 extern void i965_post_processing_context_init(VADriverContextP, void *, struct intel_batchbuffer *);
84
85 static struct hw_codec_info ilk_hw_codec_info = {
86     .dec_hw_context_init = ironlake_dec_hw_context_init,
87     .enc_hw_context_init = NULL,
88     .proc_hw_context_init = i965_proc_context_init,
89     .render_init = genx_render_init,
90     .post_processing_context_init = i965_post_processing_context_init,
91
92     .max_width = 2048,
93     .max_height = 2048,
94     .min_linear_wpitch = 16,
95     .min_linear_hpitch = 16,
96
97     .has_mpeg2_decoding = 1,
98     .has_h264_decoding = 1,
99     .has_vpp = 1,
100     .has_accelerated_putimage = 1,
101
102     .num_filters = 0,
103 };
104
105 static void gen6_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info);
106
107 extern struct hw_context *gen6_dec_hw_context_init(VADriverContextP, struct object_config *);
108 extern struct hw_context *gen6_enc_hw_context_init(VADriverContextP, struct object_config *);
109 static struct hw_codec_info snb_hw_codec_info = {
110     .dec_hw_context_init = gen6_dec_hw_context_init,
111     .enc_hw_context_init = gen6_enc_hw_context_init,
112     .proc_hw_context_init = i965_proc_context_init,
113     .render_init = genx_render_init,
114     .post_processing_context_init = i965_post_processing_context_init,
115     .preinit_hw_codec = gen6_hw_codec_preinit,
116
117     .max_width = 2048,
118     .max_height = 2048,
119     .min_linear_wpitch = 16,
120     .min_linear_hpitch = 16,
121
122     .h264_mvc_dec_profiles = VA_PROFILE_MASK(H264StereoHigh),
123     .h264_dec_chroma_formats = EXTRA_H264_DEC_CHROMA_FORMATS,
124
125     .has_mpeg2_decoding = 1,
126     .has_h264_decoding = 1,
127     .has_h264_encoding = 1,
128     .has_vc1_decoding = 1,
129     .has_vpp = 1,
130     .has_accelerated_getimage = 1,
131     .has_accelerated_putimage = 1,
132     .has_tiled_surface = 1,
133     .has_di_motion_adptive = 1,
134
135     .num_filters = 2,
136     .filters = {
137         { VAProcFilterNoiseReduction, I965_RING_NULL },
138         { VAProcFilterDeinterlacing, I965_RING_NULL },
139     },
140 };
141
142 static void gen7_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info);
143
144 extern struct hw_context *gen7_dec_hw_context_init(VADriverContextP, struct object_config *);
145 extern struct hw_context *gen7_enc_hw_context_init(VADriverContextP, struct object_config *);
146 static struct hw_codec_info ivb_hw_codec_info = {
147     .dec_hw_context_init = gen7_dec_hw_context_init,
148     .enc_hw_context_init = gen7_enc_hw_context_init,
149     .proc_hw_context_init = i965_proc_context_init,
150     .render_init = genx_render_init,
151     .post_processing_context_init = i965_post_processing_context_init,
152     .preinit_hw_codec = gen7_hw_codec_preinit,
153
154     .max_width = 4096,
155     .max_height = 4096,
156     .min_linear_wpitch = 64,
157     .min_linear_hpitch = 16,
158
159     .h264_mvc_dec_profiles = VA_PROFILE_MASK(H264StereoHigh),
160     .h264_dec_chroma_formats = EXTRA_H264_DEC_CHROMA_FORMATS,
161     .jpeg_dec_chroma_formats = EXTRA_JPEG_DEC_CHROMA_FORMATS,
162
163     .has_mpeg2_decoding = 1,
164     .has_mpeg2_encoding = 1,
165     .has_h264_decoding = 1,
166     .has_h264_encoding = 1,
167     .has_vc1_decoding = 1,
168     .has_jpeg_decoding = 1,
169     .has_vpp = 1,
170     .has_accelerated_getimage = 1,
171     .has_accelerated_putimage = 1,
172     .has_tiled_surface = 1,
173     .has_di_motion_adptive = 1,
174     .has_di_motion_compensated = 1,
175
176     .num_filters = 2,
177     .filters = {
178         { VAProcFilterNoiseReduction, I965_RING_NULL },
179         { VAProcFilterDeinterlacing, I965_RING_NULL },
180     },
181 };
182
183 static void hsw_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info);
184
185 extern struct hw_context *gen75_dec_hw_context_init(VADriverContextP, struct object_config *);
186 extern struct hw_context *gen75_enc_hw_context_init(VADriverContextP, struct object_config *);
187 extern struct hw_context *gen75_proc_context_init(VADriverContextP, struct object_config *);
188 static struct hw_codec_info hsw_hw_codec_info = {
189     .dec_hw_context_init = gen75_dec_hw_context_init,
190     .enc_hw_context_init = gen75_enc_hw_context_init,
191     .proc_hw_context_init = gen75_proc_context_init,
192     .render_init = genx_render_init,
193     .post_processing_context_init = i965_post_processing_context_init,
194     .preinit_hw_codec = hsw_hw_codec_preinit,
195
196     .max_width = 4096,
197     .max_height = 4096,
198     .min_linear_wpitch = 64,
199     .min_linear_hpitch = 16,
200
201     .h264_mvc_dec_profiles = (VA_PROFILE_MASK(H264StereoHigh) |
202                               VA_PROFILE_MASK(H264MultiviewHigh)),
203     .h264_dec_chroma_formats = EXTRA_H264_DEC_CHROMA_FORMATS,
204     .jpeg_dec_chroma_formats = EXTRA_JPEG_DEC_CHROMA_FORMATS,
205
206     .has_mpeg2_decoding = 1,
207     .has_mpeg2_encoding = 1,
208     .has_h264_decoding = 1,
209     .has_h264_encoding = 1,
210     .has_vc1_decoding = 1,
211     .has_jpeg_decoding = 1,
212     .has_vpp = 1,
213     .has_accelerated_getimage = 1,
214     .has_accelerated_putimage = 1,
215     .has_tiled_surface = 1,
216     .has_di_motion_adptive = 1,
217     .has_di_motion_compensated = 1,
218     .has_h264_mvc_encoding = 1,
219
220     .num_filters = 5,
221     .filters = {
222         { VAProcFilterNoiseReduction, I965_RING_VEBOX },
223         { VAProcFilterDeinterlacing, I965_RING_VEBOX },
224         { VAProcFilterSharpening, I965_RING_NULL },
225         { VAProcFilterColorBalance, I965_RING_VEBOX},
226         { VAProcFilterSkinToneEnhancement, I965_RING_VEBOX},
227     },
228 };
229
230 extern struct hw_context *gen8_dec_hw_context_init(VADriverContextP, struct object_config *);
231 extern struct hw_context *gen8_enc_hw_context_init(VADriverContextP, struct object_config *);
232 extern void gen8_post_processing_context_init(VADriverContextP, void *, struct intel_batchbuffer *);
233 static struct hw_codec_info bdw_hw_codec_info = {
234     .dec_hw_context_init = gen8_dec_hw_context_init,
235     .enc_hw_context_init = gen8_enc_hw_context_init,
236     .proc_hw_context_init = gen75_proc_context_init,
237     .render_init = gen8_render_init,
238     .post_processing_context_init = gen8_post_processing_context_init,
239
240     .max_width = 4096,
241     .max_height = 4096,
242     .min_linear_wpitch = 64,
243     .min_linear_hpitch = 16,
244
245     .h264_mvc_dec_profiles = (VA_PROFILE_MASK(H264StereoHigh) |
246                               VA_PROFILE_MASK(H264MultiviewHigh)),
247     .h264_dec_chroma_formats = EXTRA_H264_DEC_CHROMA_FORMATS,
248     .jpeg_dec_chroma_formats = EXTRA_JPEG_DEC_CHROMA_FORMATS,
249
250     .has_mpeg2_decoding = 1,
251     .has_mpeg2_encoding = 1,
252     .has_h264_decoding = 1,
253     .has_h264_encoding = 1,
254     .has_vc1_decoding = 1,
255     .has_jpeg_decoding = 1,
256     .has_vpp = 1,
257     .has_accelerated_getimage = 1,
258     .has_accelerated_putimage = 1,
259     .has_tiled_surface = 1,
260     .has_di_motion_adptive = 1,
261     .has_di_motion_compensated = 1,
262     .has_vp8_decoding = 1,
263     .has_h264_mvc_encoding = 1,
264
265     .num_filters = 5,
266     .filters = {
267         { VAProcFilterNoiseReduction, I965_RING_VEBOX },
268         { VAProcFilterDeinterlacing, I965_RING_VEBOX },
269         { VAProcFilterSharpening, I965_RING_NULL }, /* need to rebuild the shader for BDW */
270         { VAProcFilterColorBalance, I965_RING_VEBOX},
271         { VAProcFilterSkinToneEnhancement, I965_RING_VEBOX},
272     },
273 };
274
275 extern struct hw_context *gen9_dec_hw_context_init(VADriverContextP, struct object_config *);
276 static struct hw_codec_info chv_hw_codec_info = {
277     .dec_hw_context_init = gen9_dec_hw_context_init,
278     .enc_hw_context_init = gen8_enc_hw_context_init,
279     .proc_hw_context_init = gen75_proc_context_init,
280     .render_init = gen8_render_init,
281     .post_processing_context_init = gen8_post_processing_context_init,
282
283     .max_width = 4096,
284     .max_height = 4096,
285     .min_linear_wpitch = 64,
286     .min_linear_hpitch = 16,
287
288     .h264_mvc_dec_profiles = (VA_PROFILE_MASK(H264StereoHigh) |
289                               VA_PROFILE_MASK(H264MultiviewHigh)),
290     .h264_dec_chroma_formats = EXTRA_H264_DEC_CHROMA_FORMATS,
291     .jpeg_dec_chroma_formats = EXTRA_JPEG_DEC_CHROMA_FORMATS,
292     .jpeg_enc_chroma_formats = EXTRA_JPEG_ENC_CHROMA_FORMATS,
293
294     .has_mpeg2_decoding = 1,
295     .has_mpeg2_encoding = 1,
296     .has_h264_decoding = 1,
297     .has_h264_encoding = 1,
298     .has_vc1_decoding = 1,
299     .has_jpeg_decoding = 1,
300     .has_jpeg_encoding = 1,
301     .has_vpp = 1,
302     .has_accelerated_getimage = 1,
303     .has_accelerated_putimage = 1,
304     .has_tiled_surface = 1,
305     .has_di_motion_adptive = 1,
306     .has_di_motion_compensated = 1,
307     .has_vp8_decoding = 1,
308     .has_vp8_encoding = 1,
309     .has_h264_mvc_encoding = 1,
310     .has_hevc_decoding = 1,
311
312     .num_filters = 5,
313     .filters = {
314         { VAProcFilterNoiseReduction, I965_RING_VEBOX },
315         { VAProcFilterDeinterlacing, I965_RING_VEBOX },
316         { VAProcFilterSharpening, I965_RING_NULL }, /* need to rebuild the shader for BDW */
317         { VAProcFilterColorBalance, I965_RING_VEBOX},
318         { VAProcFilterSkinToneEnhancement, I965_RING_VEBOX},
319     },
320 };
321
322 static void gen9_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info);
323
324 extern struct hw_context *gen9_enc_hw_context_init(VADriverContextP, struct object_config *);
325 extern void gen9_post_processing_context_init(VADriverContextP, void *, struct intel_batchbuffer *);
326 extern void gen9_max_resolution(struct i965_driver_data *, struct object_config *, int *, int *);
327 static struct hw_codec_info skl_hw_codec_info = {
328     .dec_hw_context_init = gen9_dec_hw_context_init,
329     .enc_hw_context_init = gen9_enc_hw_context_init,
330     .proc_hw_context_init = gen75_proc_context_init,
331     .render_init = gen9_render_init,
332     .post_processing_context_init = gen9_post_processing_context_init,
333     .max_resolution = gen9_max_resolution,
334     .preinit_hw_codec = gen9_hw_codec_preinit,
335
336     .max_width = 4096,  /* default. See max_resolution */
337     .max_height = 4096, /* default. See max_resolution */
338     .min_linear_wpitch = 64,
339     .min_linear_hpitch = 16,
340
341     .h264_mvc_dec_profiles = (VA_PROFILE_MASK(H264StereoHigh) |
342                               VA_PROFILE_MASK(H264MultiviewHigh)),
343     .h264_dec_chroma_formats = EXTRA_H264_DEC_CHROMA_FORMATS,
344     .jpeg_dec_chroma_formats = EXTRA_JPEG_DEC_CHROMA_FORMATS,
345     .jpeg_enc_chroma_formats = EXTRA_JPEG_ENC_CHROMA_FORMATS,
346
347     .has_mpeg2_decoding = 1,
348     .has_mpeg2_encoding = 1,
349     .has_h264_decoding = 1,
350     .has_h264_encoding = 1,
351     .has_vc1_decoding = 1,
352     .has_jpeg_decoding = 1,
353     .has_jpeg_encoding = 1,
354     .has_vpp = 1,
355     .has_accelerated_getimage = 1,
356     .has_accelerated_putimage = 1,
357     .has_tiled_surface = 1,
358     .has_di_motion_adptive = 1,
359     .has_di_motion_compensated = 1,
360     .has_vp8_decoding = 1,
361     .has_vp8_encoding = 1,
362     .has_h264_mvc_encoding = 0,
363     .has_hevc_decoding = 1,
364     .has_hevc_encoding = 1,
365     .has_lp_h264_encoding = 1,
366
367     .lp_h264_brc_mode = VA_RC_CQP,
368
369     .num_filters = 5,
370     .filters = {
371         { VAProcFilterNoiseReduction, I965_RING_VEBOX },
372         { VAProcFilterDeinterlacing, I965_RING_VEBOX },
373         { VAProcFilterSharpening, I965_RING_NULL }, /* need to rebuild the shader for BDW */
374         { VAProcFilterColorBalance, I965_RING_VEBOX},
375         { VAProcFilterSkinToneEnhancement, I965_RING_VEBOX},
376     },
377 };
378
379
380 static struct hw_codec_info bxt_hw_codec_info = {
381     .dec_hw_context_init = gen9_dec_hw_context_init,
382     .enc_hw_context_init = gen9_enc_hw_context_init,
383     .proc_hw_context_init = gen75_proc_context_init,
384     .render_init = gen9_render_init,
385     .post_processing_context_init = gen9_post_processing_context_init,
386     .max_resolution = gen9_max_resolution,
387     .preinit_hw_codec = gen9_hw_codec_preinit,
388
389     .max_width = 4096,  /* default. See max_resolution */
390     .max_height = 4096, /* default. See max_resolution */
391     .min_linear_wpitch = 64,
392     .min_linear_hpitch = 16,
393
394     .h264_mvc_dec_profiles = (VA_PROFILE_MASK(H264StereoHigh) |
395                               VA_PROFILE_MASK(H264MultiviewHigh)),
396     .vp9_dec_profiles = VP9_PROFILE_MASK(0),
397
398     .h264_dec_chroma_formats = EXTRA_H264_DEC_CHROMA_FORMATS,
399     .jpeg_dec_chroma_formats = EXTRA_JPEG_DEC_CHROMA_FORMATS,
400     .jpeg_enc_chroma_formats = EXTRA_JPEG_ENC_CHROMA_FORMATS,
401     .hevc_dec_chroma_formats = EXTRA_HEVC_DEC_CHROMA_FORMATS,
402
403     .has_mpeg2_decoding = 1,
404     .has_h264_decoding = 1,
405     .has_h264_encoding = 1,
406     .has_vc1_decoding = 1,
407     .has_jpeg_decoding = 1,
408     .has_jpeg_encoding = 1,
409     .has_vpp = 1,
410     .has_accelerated_getimage = 1,
411     .has_accelerated_putimage = 1,
412     .has_tiled_surface = 1,
413     .has_di_motion_adptive = 1,
414     .has_di_motion_compensated = 1,
415     .has_vp8_decoding = 1,
416     .has_vp8_encoding = 1,
417     .has_h264_mvc_encoding = 0,
418     .has_hevc_decoding = 1,
419     .has_hevc_encoding = 1,
420     .has_hevc10_decoding = 1,
421     .has_vp9_decoding = 1,
422     .has_vpp_p010 = 1,
423     .has_lp_h264_encoding = 1,
424
425     .lp_h264_brc_mode = VA_RC_CQP,
426
427     .num_filters = 5,
428     .filters = {
429         { VAProcFilterNoiseReduction, I965_RING_VEBOX },
430         { VAProcFilterDeinterlacing, I965_RING_VEBOX },
431         { VAProcFilterSharpening, I965_RING_NULL },
432         { VAProcFilterColorBalance, I965_RING_VEBOX},
433         { VAProcFilterSkinToneEnhancement, I965_RING_VEBOX},
434     },
435 };
436
437 static struct hw_codec_info kbl_hw_codec_info = {
438     .dec_hw_context_init = gen9_dec_hw_context_init,
439     .enc_hw_context_init = gen9_enc_hw_context_init,
440     .proc_hw_context_init = gen75_proc_context_init,
441     .render_init = gen9_render_init,
442     .post_processing_context_init = gen9_post_processing_context_init,
443     .max_resolution = gen9_max_resolution,
444     .preinit_hw_codec = gen9_hw_codec_preinit,
445
446     .max_width = 4096,   /* default. See max_resolution */
447     .max_height = 4096,  /* default. See max_resolution */
448     .min_linear_wpitch = 64,
449     .min_linear_hpitch = 16,
450
451     .h264_mvc_dec_profiles = (VA_PROFILE_MASK(H264StereoHigh) |
452                               VA_PROFILE_MASK(H264MultiviewHigh)),
453     .vp9_dec_profiles = VP9_PROFILE_MASK(0) |
454                         VP9_PROFILE_MASK(2),
455     .vp9_enc_profiles = VP9_PROFILE_MASK(0),
456
457     .h264_dec_chroma_formats = EXTRA_H264_DEC_CHROMA_FORMATS,
458     .jpeg_dec_chroma_formats = EXTRA_JPEG_DEC_CHROMA_FORMATS,
459     .jpeg_enc_chroma_formats = EXTRA_JPEG_ENC_CHROMA_FORMATS,
460     .hevc_dec_chroma_formats = EXTRA_HEVC_DEC_CHROMA_FORMATS,
461     .vp9_dec_chroma_formats = EXTRA_VP9_DEC_CHROMA_FORMATS,
462
463     .has_mpeg2_decoding = 1,
464     .has_mpeg2_encoding = 1,
465     .has_h264_decoding = 1,
466     .has_h264_encoding = 1,
467     .has_vc1_decoding = 1,
468     .has_jpeg_decoding = 1,
469     .has_jpeg_encoding = 1,
470     .has_vpp = 1,
471     .has_accelerated_getimage = 1,
472     .has_accelerated_putimage = 1,
473     .has_tiled_surface = 1,
474     .has_di_motion_adptive = 1,
475     .has_di_motion_compensated = 1,
476     .has_vp8_decoding = 1,
477     .has_vp8_encoding = 1,
478     .has_h264_mvc_encoding = 0,
479     .has_hevc_decoding = 1,
480     .has_hevc_encoding = 1,
481     .has_hevc10_encoding = 1,
482     .has_hevc10_decoding = 1,
483     .has_vp9_decoding = 1,
484     .has_vpp_p010 = 1,
485     .has_vp9_encoding = 1,
486     .has_lp_h264_encoding = 1,
487
488     .lp_h264_brc_mode = VA_RC_CQP,
489
490     .num_filters = 5,
491     .filters = {
492         { VAProcFilterNoiseReduction, I965_RING_VEBOX },
493         { VAProcFilterDeinterlacing, I965_RING_VEBOX },
494         { VAProcFilterSharpening, I965_RING_NULL },
495         { VAProcFilterColorBalance, I965_RING_VEBOX},
496         { VAProcFilterSkinToneEnhancement, I965_RING_VEBOX},
497     },
498 };
499
500 static struct hw_codec_info glk_hw_codec_info = {
501     .dec_hw_context_init = gen9_dec_hw_context_init,
502     .enc_hw_context_init = gen9_enc_hw_context_init,
503     .proc_hw_context_init = gen75_proc_context_init,
504     .render_init = gen9_render_init,
505     .post_processing_context_init = gen9_post_processing_context_init,
506
507     .max_resolution = gen9_max_resolution,
508     .preinit_hw_codec = gen9_hw_codec_preinit,
509
510     .max_width = 4096,
511     .max_height = 4096,
512     .min_linear_wpitch = 64,
513     .min_linear_hpitch = 16,
514
515     .h264_mvc_dec_profiles = (VA_PROFILE_MASK(H264StereoHigh) |
516                               VA_PROFILE_MASK(H264MultiviewHigh)),
517     .vp9_dec_profiles = VP9_PROFILE_MASK(0) |
518                         VP9_PROFILE_MASK(2),
519
520     .vp9_enc_profiles = VP9_PROFILE_MASK(0),
521
522     .h264_dec_chroma_formats = EXTRA_H264_DEC_CHROMA_FORMATS,
523     .jpeg_dec_chroma_formats = EXTRA_JPEG_DEC_CHROMA_FORMATS,
524     .jpeg_enc_chroma_formats = EXTRA_JPEG_ENC_CHROMA_FORMATS,
525     .hevc_dec_chroma_formats = EXTRA_HEVC_DEC_CHROMA_FORMATS,
526     .vp9_dec_chroma_formats = EXTRA_VP9_DEC_CHROMA_FORMATS,
527
528     .has_mpeg2_decoding = 1,
529     .has_h264_decoding = 1,
530     .has_h264_encoding = 0,
531     .has_vc1_decoding = 1,
532     .has_jpeg_decoding = 1,
533     .has_jpeg_encoding = 0,
534     .has_vpp = 1,
535     .has_accelerated_getimage = 1,
536     .has_accelerated_putimage = 1,
537     .has_tiled_surface = 1,
538     .has_di_motion_adptive = 1,
539     .has_di_motion_compensated = 1,
540     .has_vp8_decoding = 1,
541     .has_vp8_encoding = 0,
542     .has_h264_mvc_encoding = 0,
543     .has_hevc_decoding = 1,
544     .has_hevc_encoding = 0,
545     .has_hevc10_decoding = 1,
546     .has_hevc10_encoding = 0,
547     .has_vp9_decoding = 1,
548     .has_vpp_p010 = 1,
549     .has_vp9_encoding = 0,
550
551     .num_filters = 5,
552     .filters = {
553         { VAProcFilterNoiseReduction, I965_RING_VEBOX },
554         { VAProcFilterDeinterlacing, I965_RING_VEBOX },
555         { VAProcFilterSharpening, I965_RING_NULL },
556         { VAProcFilterColorBalance, I965_RING_VEBOX},
557         { VAProcFilterSkinToneEnhancement, I965_RING_VEBOX},
558     },
559 };
560
561 struct hw_codec_info *
562 i965_get_codec_info(int devid)
563 {
564     switch (devid) {
565 #undef CHIPSET
566 #define CHIPSET(id, family, dev, str) case id: return &family##_hw_codec_info;
567 #include "i965_pciids.h"
568     default:
569         return NULL;
570     }
571 }
572
573 static const struct intel_device_info g4x_device_info = {
574     .gen = 4,
575
576     .urb_size = 384,
577     .max_wm_threads = 50,       /* 10 * 5 */
578
579     .is_g4x = 1,
580 };
581
582 static const struct intel_device_info ilk_device_info = {
583     .gen = 5,
584
585     .urb_size = 1024,
586     .max_wm_threads = 72,       /* 12 * 6 */
587 };
588
589 static const struct intel_device_info snb_gt1_device_info = {
590     .gen = 6,
591     .gt = 1,
592
593     .urb_size = 1024,
594     .max_wm_threads = 40,
595 };
596
597 static const struct intel_device_info snb_gt2_device_info = {
598     .gen = 6,
599     .gt = 2,
600
601     .urb_size = 1024,
602     .max_wm_threads = 80,
603 };
604
605 static const struct intel_device_info ivb_gt1_device_info = {
606     .gen = 7,
607     .gt = 1,
608
609     .urb_size = 4096,
610     .max_wm_threads = 48,
611
612     .is_ivybridge = 1,
613 };
614
615 static const struct intel_device_info ivb_gt2_device_info = {
616     .gen = 7,
617     .gt = 2,
618
619     .urb_size = 4096,
620     .max_wm_threads = 172,
621
622     .is_ivybridge = 1,
623 };
624
625 static const struct intel_device_info byt_device_info = {
626     .gen = 7,
627     .gt = 1,
628
629     .urb_size = 4096,
630     .max_wm_threads = 48,
631
632     .is_ivybridge = 1,
633     .is_baytrail = 1,
634 };
635
636 static const struct intel_device_info hsw_gt1_device_info = {
637     .gen = 7,
638     .gt = 1,
639
640     .urb_size = 4096,
641     .max_wm_threads = 102,
642
643     .is_haswell = 1,
644 };
645
646 static const struct intel_device_info hsw_gt2_device_info = {
647     .gen = 7,
648     .gt = 2,
649
650     .urb_size = 4096,
651     .max_wm_threads = 204,
652
653     .is_haswell = 1,
654 };
655
656 static const struct intel_device_info hsw_gt3_device_info = {
657     .gen = 7,
658     .gt = 3,
659
660     .urb_size = 4096,
661     .max_wm_threads = 408,
662
663     .is_haswell = 1,
664 };
665
666 static const struct intel_device_info bdw_device_info = {
667     .gen = 8,
668
669     .urb_size = 4096,
670     .max_wm_threads = 64,       /* per PSD */
671 };
672
673 static const struct intel_device_info chv_device_info = {
674     .gen = 8,
675
676     .urb_size = 4096,
677     .max_wm_threads = 64,       /* per PSD */
678
679     .is_cherryview = 1,
680 };
681
682 static const struct intel_device_info skl_device_info = {
683     .gen = 9,
684
685     .urb_size = 4096,
686     .max_wm_threads = 64,       /* per PSD */
687
688     .is_skylake = 1,
689 };
690
691 static const struct intel_device_info bxt_device_info = {
692     .gen = 9,
693
694     .urb_size = 4096,
695     .max_wm_threads = 64,       /* per PSD */
696     .is_broxton = 1,
697 };
698
699 static const struct intel_device_info kbl_device_info = {
700     .gen = 9,
701
702     .urb_size = 4096,
703     .max_wm_threads = 64,       /* per PSD */
704
705     .is_kabylake = 1,
706 };
707
708 static const struct intel_device_info glk_device_info = {
709     .gen = 9,
710
711     .urb_size = 4096,
712     .max_wm_threads = 64,       /* per PSD */
713
714     .is_glklake = 1,
715 };
716
717 const struct intel_device_info *
718 i965_get_device_info(int devid)
719 {
720     switch (devid) {
721 #undef CHIPSET
722 #define CHIPSET(id, family, dev, str) case id: return &dev##_device_info;
723 #include "i965_pciids.h"
724     default:
725         return NULL;
726     }
727 }
728
729 static void cpuid(unsigned int op,
730                          uint32_t *eax, uint32_t *ebx,
731                          uint32_t *ecx, uint32_t *edx)
732 {
733     __cpuid_count(op, 0, *eax, *ebx, *ecx, *edx);
734 }
735
736 /*
737  * This function doesn't check the length. And the caller should
738  * assure that the length of input string should be greater than 48.
739  */
740 static int intel_driver_detect_cpustring(char *model_id)
741 {
742     uint32_t *rdata;
743
744     if (model_id == NULL)
745         return -EINVAL;
746
747     rdata = (uint32_t *)model_id;
748
749     /* obtain the max supported extended CPUID info */
750     cpuid(0x80000000, &rdata[0], &rdata[1], &rdata[2], &rdata[3]);
751
752     /* If the max extended CPUID info is less than 0x80000004, fail */
753     if (rdata[0] < 0x80000004)
754         return -EINVAL;
755
756     /* obtain the CPUID string */
757     cpuid(0x80000002, &rdata[0], &rdata[1], &rdata[2], &rdata[3]);
758     cpuid(0x80000003, &rdata[4], &rdata[5], &rdata[6], &rdata[7]);
759     cpuid(0x80000004, &rdata[8], &rdata[9], &rdata[10], &rdata[11]);
760
761     *(model_id + 48) = '\0';
762     return 0;
763 }
764
765 /*
766  * the hook_list for HSW.
767  * It is captured by /proc/cpuinfo and the space character is stripped.
768  */
769 const static char *hsw_cpu_hook_list[] =  {
770 "Intel(R)Pentium(R)3556U",
771 "Intel(R)Pentium(R)3560Y",
772 "Intel(R)Pentium(R)3550M",
773 "Intel(R)Celeron(R)2980U",
774 "Intel(R)Celeron(R)2955U",
775 "Intel(R)Celeron(R)2950M",
776 };
777
778 static void hsw_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info)
779 {
780     char model_string[64];
781     char *model_ptr, *tmp_ptr;
782     int i, model_len, list_len;
783     bool found;
784
785     memset(model_string, 0, sizeof(model_string));
786
787     /* If it can't detect cpu model_string, leave it alone */
788     if (intel_driver_detect_cpustring(model_string))
789         return;
790
791     /* strip the cpufreq info */
792     model_ptr = model_string;
793     tmp_ptr = strstr(model_ptr, "@");
794    
795     if (tmp_ptr)
796         *tmp_ptr = '\0';
797
798     /* strip the space character and convert to the lower case */
799     model_ptr = model_string;
800     model_len = strlen(model_string);
801     for (i = 0; i < model_len; i++) {
802          if (model_string[i] != ' ') {
803              *model_ptr = model_string[i];
804              model_ptr++;
805          }
806     }
807     *model_ptr = '\0';
808
809     found = false;
810     list_len = sizeof(hsw_cpu_hook_list) / sizeof(char *);
811     model_len = strlen(model_string);
812     for (i = 0; i < list_len; i++) {
813         model_ptr = (char *)hsw_cpu_hook_list[i];
814
815         if (strlen(model_ptr) != model_len)
816             continue;
817
818         if (strncasecmp(model_string, model_ptr, model_len) == 0) {
819             found = true;
820             break;
821         }
822     }
823
824     if (found) {
825         codec_info->has_h264_encoding = 0;
826         codec_info->has_h264_mvc_encoding = 0;
827         codec_info->has_mpeg2_encoding = 0;
828     }
829     return;
830 }
831
832 /*
833  * the hook_list for Sandybride.
834  * It is captured by /proc/cpuinfo and the space character is stripped.
835  */
836 const static char *gen6_cpu_hook_list[] =  {
837 "Intel(R)Celeron(R)CPU847",
838 "Intel(R)Celeron(R)CPU867",
839 };
840
841 static void gen6_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info)
842 {
843     char model_string[64];
844     char *model_ptr, *tmp_ptr;
845     int i, model_len, list_len;
846     bool found;
847
848     memset(model_string, 0, sizeof(model_string));
849
850     /* If it can't detect cpu model_string, leave it alone */
851     if (intel_driver_detect_cpustring(model_string))
852         return;
853
854     /* strip the cpufreq info */
855     model_ptr = model_string;
856     tmp_ptr = strstr(model_ptr, "@");
857
858     if (tmp_ptr)
859         *tmp_ptr = '\0';
860
861     /* strip the space character and convert to the lower case */
862     model_ptr = model_string;
863     model_len = strlen(model_string);
864     for (i = 0; i < model_len; i++) {
865          if (model_string[i] != ' ') {
866              *model_ptr = model_string[i];
867              model_ptr++;
868          }
869     }
870     *model_ptr = '\0';
871
872     found = false;
873     list_len = sizeof(gen6_cpu_hook_list) / sizeof(char *);
874     model_len = strlen(model_string);
875     for (i = 0; i < list_len; i++) {
876         model_ptr = (char *)gen6_cpu_hook_list[i];
877
878         if (strlen(model_ptr) != model_len)
879             continue;
880
881         if (strncasecmp(model_string, model_ptr, model_len) == 0) {
882             found = true;
883             break;
884         }
885     }
886
887     if (found) {
888         codec_info->has_h264_encoding = 0;
889     }
890     return;
891 }
892
893 /*
894  * the hook_list for Ivybridge.
895  * It is captured by /proc/cpuinfo and the space character is stripped.
896  */
897 const static char *gen7_cpu_hook_list[] =  {
898 "Intel(R)Celeron(R)CPU1007U",
899 "Intel(R)Celeron(R)CPU1037U",
900 "Intel(R)Pentium(R)CPUG2130",
901 };
902
903 static void gen7_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info)
904 {
905     char model_string[64];
906     char *model_ptr, *tmp_ptr;
907     int i, model_len, list_len;
908     bool found;
909
910     memset(model_string, 0, sizeof(model_string));
911
912     /* If it can't detect cpu model_string, leave it alone */
913     if (intel_driver_detect_cpustring(model_string))
914         return;
915
916     /* strip the cpufreq info */
917     model_ptr = model_string;
918     tmp_ptr = strstr(model_ptr, "@");
919
920     if (tmp_ptr)
921         *tmp_ptr = '\0';
922
923     /* strip the space character and convert to the lower case */
924     model_ptr = model_string;
925     model_len = strlen(model_string);
926     for (i = 0; i < model_len; i++) {
927          if (model_string[i] != ' ') {
928              *model_ptr = model_string[i];
929              model_ptr++;
930          }
931     }
932     *model_ptr = '\0';
933
934     found = false;
935     list_len = sizeof(gen7_cpu_hook_list) / sizeof(char *);
936     model_len = strlen(model_string);
937     for (i = 0; i < list_len; i++) {
938         model_ptr = (char *)gen7_cpu_hook_list[i];
939
940         if (strlen(model_ptr) != model_len)
941             continue;
942
943         if (strncasecmp(model_string, model_ptr, model_len) == 0) {
944             found = true;
945             break;
946         }
947     }
948
949     if (found) {
950         codec_info->has_h264_encoding = 0;
951         codec_info->has_mpeg2_encoding = 0;
952     }
953     return;
954 }
955
956 static void gen9_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info)
957 {
958     struct i965_driver_data *i965 = i965_driver_data(ctx);
959
960     if (i965->intel.has_huc && codec_info->has_lp_h264_encoding)
961         codec_info->lp_h264_brc_mode |= (VA_RC_CBR | VA_RC_VBR);
962 }