OSDN Git Service

Set the pipeline to use the new VP8 encoding shaders on SKL/BXT/KBL
[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 = 1,
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 = 1,
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 = 1,
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 struct hw_codec_info *
501 i965_get_codec_info(int devid)
502 {
503     switch (devid) {
504 #undef CHIPSET
505 #define CHIPSET(id, family, dev, str) case id: return &family##_hw_codec_info;
506 #include "i965_pciids.h"
507     default:
508         return NULL;
509     }
510 }
511
512 static const struct intel_device_info g4x_device_info = {
513     .gen = 4,
514
515     .urb_size = 384,
516     .max_wm_threads = 50,       /* 10 * 5 */
517
518     .is_g4x = 1,
519 };
520
521 static const struct intel_device_info ilk_device_info = {
522     .gen = 5,
523
524     .urb_size = 1024,
525     .max_wm_threads = 72,       /* 12 * 6 */
526 };
527
528 static const struct intel_device_info snb_gt1_device_info = {
529     .gen = 6,
530     .gt = 1,
531
532     .urb_size = 1024,
533     .max_wm_threads = 40,
534 };
535
536 static const struct intel_device_info snb_gt2_device_info = {
537     .gen = 6,
538     .gt = 2,
539
540     .urb_size = 1024,
541     .max_wm_threads = 80,
542 };
543
544 static const struct intel_device_info ivb_gt1_device_info = {
545     .gen = 7,
546     .gt = 1,
547
548     .urb_size = 4096,
549     .max_wm_threads = 48,
550
551     .is_ivybridge = 1,
552 };
553
554 static const struct intel_device_info ivb_gt2_device_info = {
555     .gen = 7,
556     .gt = 2,
557
558     .urb_size = 4096,
559     .max_wm_threads = 172,
560
561     .is_ivybridge = 1,
562 };
563
564 static const struct intel_device_info byt_device_info = {
565     .gen = 7,
566     .gt = 1,
567
568     .urb_size = 4096,
569     .max_wm_threads = 48,
570
571     .is_ivybridge = 1,
572     .is_baytrail = 1,
573 };
574
575 static const struct intel_device_info hsw_gt1_device_info = {
576     .gen = 7,
577     .gt = 1,
578
579     .urb_size = 4096,
580     .max_wm_threads = 102,
581
582     .is_haswell = 1,
583 };
584
585 static const struct intel_device_info hsw_gt2_device_info = {
586     .gen = 7,
587     .gt = 2,
588
589     .urb_size = 4096,
590     .max_wm_threads = 204,
591
592     .is_haswell = 1,
593 };
594
595 static const struct intel_device_info hsw_gt3_device_info = {
596     .gen = 7,
597     .gt = 3,
598
599     .urb_size = 4096,
600     .max_wm_threads = 408,
601
602     .is_haswell = 1,
603 };
604
605 static const struct intel_device_info bdw_device_info = {
606     .gen = 8,
607
608     .urb_size = 4096,
609     .max_wm_threads = 64,       /* per PSD */
610 };
611
612 static const struct intel_device_info chv_device_info = {
613     .gen = 8,
614
615     .urb_size = 4096,
616     .max_wm_threads = 64,       /* per PSD */
617
618     .is_cherryview = 1,
619 };
620
621 static const struct intel_device_info skl_device_info = {
622     .gen = 9,
623
624     .urb_size = 4096,
625     .max_wm_threads = 64,       /* per PSD */
626
627     .is_skylake = 1,
628 };
629
630 static const struct intel_device_info bxt_device_info = {
631     .gen = 9,
632
633     .urb_size = 4096,
634     .max_wm_threads = 64,       /* per PSD */
635     .is_broxton = 1,
636 };
637
638 static const struct intel_device_info kbl_device_info = {
639     .gen = 9,
640
641     .urb_size = 4096,
642     .max_wm_threads = 64,       /* per PSD */
643
644     .is_kabylake = 1,
645 };
646
647 const struct intel_device_info *
648 i965_get_device_info(int devid)
649 {
650     switch (devid) {
651 #undef CHIPSET
652 #define CHIPSET(id, family, dev, str) case id: return &dev##_device_info;
653 #include "i965_pciids.h"
654     default:
655         return NULL;
656     }
657 }
658
659 static void cpuid(unsigned int op,
660                          uint32_t *eax, uint32_t *ebx,
661                          uint32_t *ecx, uint32_t *edx)
662 {
663     __cpuid_count(op, 0, *eax, *ebx, *ecx, *edx);
664 }
665
666 /*
667  * This function doesn't check the length. And the caller should
668  * assure that the length of input string should be greater than 48.
669  */
670 static int intel_driver_detect_cpustring(char *model_id)
671 {
672     uint32_t *rdata;
673
674     if (model_id == NULL)
675         return -EINVAL;
676
677     rdata = (uint32_t *)model_id;
678
679     /* obtain the max supported extended CPUID info */
680     cpuid(0x80000000, &rdata[0], &rdata[1], &rdata[2], &rdata[3]);
681
682     /* If the max extended CPUID info is less than 0x80000004, fail */
683     if (rdata[0] < 0x80000004)
684         return -EINVAL;
685
686     /* obtain the CPUID string */
687     cpuid(0x80000002, &rdata[0], &rdata[1], &rdata[2], &rdata[3]);
688     cpuid(0x80000003, &rdata[4], &rdata[5], &rdata[6], &rdata[7]);
689     cpuid(0x80000004, &rdata[8], &rdata[9], &rdata[10], &rdata[11]);
690
691     *(model_id + 48) = '\0';
692     return 0;
693 }
694
695 /*
696  * the hook_list for HSW.
697  * It is captured by /proc/cpuinfo and the space character is stripped.
698  */
699 const static char *hsw_cpu_hook_list[] =  {
700 "Intel(R)Pentium(R)3556U",
701 "Intel(R)Pentium(R)3560Y",
702 "Intel(R)Pentium(R)3550M",
703 "Intel(R)Celeron(R)2980U",
704 "Intel(R)Celeron(R)2955U",
705 "Intel(R)Celeron(R)2950M",
706 };
707
708 static void hsw_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info)
709 {
710     char model_string[64];
711     char *model_ptr, *tmp_ptr;
712     int i, model_len, list_len;
713     bool found;
714
715     memset(model_string, 0, sizeof(model_string));
716
717     /* If it can't detect cpu model_string, leave it alone */
718     if (intel_driver_detect_cpustring(model_string))
719         return;
720
721     /* strip the cpufreq info */
722     model_ptr = model_string;
723     tmp_ptr = strstr(model_ptr, "@");
724    
725     if (tmp_ptr)
726         *tmp_ptr = '\0';
727
728     /* strip the space character and convert to the lower case */
729     model_ptr = model_string;
730     model_len = strlen(model_string);
731     for (i = 0; i < model_len; i++) {
732          if (model_string[i] != ' ') {
733              *model_ptr = model_string[i];
734              model_ptr++;
735          }
736     }
737     *model_ptr = '\0';
738
739     found = false;
740     list_len = sizeof(hsw_cpu_hook_list) / sizeof(char *);
741     model_len = strlen(model_string);
742     for (i = 0; i < list_len; i++) {
743         model_ptr = (char *)hsw_cpu_hook_list[i];
744
745         if (strlen(model_ptr) != model_len)
746             continue;
747
748         if (strncasecmp(model_string, model_ptr, model_len) == 0) {
749             found = true;
750             break;
751         }
752     }
753
754     if (found) {
755         codec_info->has_h264_encoding = 0;
756         codec_info->has_h264_mvc_encoding = 0;
757         codec_info->has_mpeg2_encoding = 0;
758     }
759     return;
760 }
761
762 /*
763  * the hook_list for Sandybride.
764  * It is captured by /proc/cpuinfo and the space character is stripped.
765  */
766 const static char *gen6_cpu_hook_list[] =  {
767 "Intel(R)Celeron(R)CPU847",
768 "Intel(R)Celeron(R)CPU867",
769 };
770
771 static void gen6_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info)
772 {
773     char model_string[64];
774     char *model_ptr, *tmp_ptr;
775     int i, model_len, list_len;
776     bool found;
777
778     memset(model_string, 0, sizeof(model_string));
779
780     /* If it can't detect cpu model_string, leave it alone */
781     if (intel_driver_detect_cpustring(model_string))
782         return;
783
784     /* strip the cpufreq info */
785     model_ptr = model_string;
786     tmp_ptr = strstr(model_ptr, "@");
787
788     if (tmp_ptr)
789         *tmp_ptr = '\0';
790
791     /* strip the space character and convert to the lower case */
792     model_ptr = model_string;
793     model_len = strlen(model_string);
794     for (i = 0; i < model_len; i++) {
795          if (model_string[i] != ' ') {
796              *model_ptr = model_string[i];
797              model_ptr++;
798          }
799     }
800     *model_ptr = '\0';
801
802     found = false;
803     list_len = sizeof(gen6_cpu_hook_list) / sizeof(char *);
804     model_len = strlen(model_string);
805     for (i = 0; i < list_len; i++) {
806         model_ptr = (char *)gen6_cpu_hook_list[i];
807
808         if (strlen(model_ptr) != model_len)
809             continue;
810
811         if (strncasecmp(model_string, model_ptr, model_len) == 0) {
812             found = true;
813             break;
814         }
815     }
816
817     if (found) {
818         codec_info->has_h264_encoding = 0;
819     }
820     return;
821 }
822
823 /*
824  * the hook_list for Ivybridge.
825  * It is captured by /proc/cpuinfo and the space character is stripped.
826  */
827 const static char *gen7_cpu_hook_list[] =  {
828 "Intel(R)Celeron(R)CPU1007U",
829 "Intel(R)Celeron(R)CPU1037U",
830 "Intel(R)Pentium(R)CPUG2130",
831 };
832
833 static void gen7_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info)
834 {
835     char model_string[64];
836     char *model_ptr, *tmp_ptr;
837     int i, model_len, list_len;
838     bool found;
839
840     memset(model_string, 0, sizeof(model_string));
841
842     /* If it can't detect cpu model_string, leave it alone */
843     if (intel_driver_detect_cpustring(model_string))
844         return;
845
846     /* strip the cpufreq info */
847     model_ptr = model_string;
848     tmp_ptr = strstr(model_ptr, "@");
849
850     if (tmp_ptr)
851         *tmp_ptr = '\0';
852
853     /* strip the space character and convert to the lower case */
854     model_ptr = model_string;
855     model_len = strlen(model_string);
856     for (i = 0; i < model_len; i++) {
857          if (model_string[i] != ' ') {
858              *model_ptr = model_string[i];
859              model_ptr++;
860          }
861     }
862     *model_ptr = '\0';
863
864     found = false;
865     list_len = sizeof(gen7_cpu_hook_list) / sizeof(char *);
866     model_len = strlen(model_string);
867     for (i = 0; i < list_len; i++) {
868         model_ptr = (char *)gen7_cpu_hook_list[i];
869
870         if (strlen(model_ptr) != model_len)
871             continue;
872
873         if (strncasecmp(model_string, model_ptr, model_len) == 0) {
874             found = true;
875             break;
876         }
877     }
878
879     if (found) {
880         codec_info->has_h264_encoding = 0;
881         codec_info->has_mpeg2_encoding = 0;
882     }
883     return;
884 }
885
886 static void gen9_hw_codec_preinit(VADriverContextP ctx, struct hw_codec_info *codec_info)
887 {
888     struct i965_driver_data *i965 = i965_driver_data(ctx);
889
890     if (i965->intel.has_huc && codec_info->has_lp_h264_encoding)
891         codec_info->lp_h264_brc_mode |= (VA_RC_CBR | VA_RC_VBR);
892 }