OSDN Git Service

ENC: fix the low quality at the first GOP for AVC encoder on the platform previous SKL
[android-x86/hardware-intel-common-vaapi.git] / src / intel_driver.h
index 1e30f23..9ddd8fb 100644 (file)
@@ -4,6 +4,7 @@
 #include <stddef.h>
 #include <pthread.h>
 #include <signal.h>
+#include <stdbool.h>
 
 #include <drm.h>
 #include <i915_drm.h>
 #define   MI_FLUSH_STATE_INSTRUCTION_CACHE_INVALIDATE   (0x1 << 0)
 
 #define MI_FLUSH_DW                             (CMD_MI | (0x26 << 23) | 0x2)
+#define MI_FLUSH_DW2                            (CMD_MI | (0x26 << 23) | 0x3)
 #define   MI_FLUSH_DW_VIDEO_PIPELINE_CACHE_INVALIDATE   (0x1 << 7)
+#define   MI_FLUSH_DW_NOWRITE                           (0 << 14)
+#define   MI_FLUSH_DW_WRITE_QWORD                       (1 << 14)
+#define   MI_FLUSH_DW_WRITE_TIME                        (3 << 14)
+
+#define MI_STORE_DATA_IMM                       (CMD_MI | (0x20 << 23))
+
+#define MI_STORE_REGISTER_MEM                   (CMD_MI | (0x24 << 23))
+
+#define MI_LOAD_REGISTER_IMM                    (CMD_MI | (0x22 << 23))
+
+#define MI_LOAD_REGISTER_MEM                    (CMD_MI | (0x29 << 23))
+
+#define MI_LOAD_REGISTER_REG                    (CMD_MI | (0x2A << 23))
+
+#define MI_MATH                                 (CMD_MI | (0x1A << 23))
+
+#define MI_CONDITIONAL_BATCH_BUFFER_END         (CMD_MI | (0x36 << 23))
+#define   MI_COMPARE_MASK_MODE_ENANBLED                 (1 << 19)
 
 #define XY_COLOR_BLT_CMD                        (CMD_2D | (0x50 << 22) | 0x04)
 #define XY_COLOR_BLT_WRITE_ALPHA                (1 << 21)
 #define XY_COLOR_BLT_WRITE_RGB                  (1 << 20)
 #define XY_COLOR_BLT_DST_TILED                  (1 << 11)
 
+#define GEN8_XY_COLOR_BLT_CMD                   (CMD_2D | (0x50 << 22) | 0x05)
+
 /* BR13 */
 #define BR13_8                                  (0x0 << 24)
 #define BR13_565                                (0x1 << 24)
@@ -44,6 +66,7 @@
 #define BR13_8888                               (0x3 << 24)
 
 #define CMD_PIPE_CONTROL                        (CMD_3D | (3 << 27) | (2 << 24) | (0 << 16))
+#define CMD_PIPE_CONTROL_CS_STALL               (1 << 20)
 #define CMD_PIPE_CONTROL_NOWRITE                (0 << 14)
 #define CMD_PIPE_CONTROL_WRITE_QWORD            (1 << 14)
 #define CMD_PIPE_CONTROL_WRITE_DEPTH            (2 << 14)
 #define CMD_PIPE_CONTROL_IS_FLUSH               (1 << 11)
 #define CMD_PIPE_CONTROL_TC_FLUSH               (1 << 10)
 #define CMD_PIPE_CONTROL_NOTIFY_ENABLE          (1 << 8)
+#define CMD_PIPE_CONTROL_FLUSH_ENABLE           (1 << 7)
 #define CMD_PIPE_CONTROL_DC_FLUSH               (1 << 5)
 #define CMD_PIPE_CONTROL_GLOBAL_GTT             (1 << 2)
 #define CMD_PIPE_CONTROL_LOCAL_PGTT             (0 << 2)
+#define CMD_PIPE_CONTROL_STALL_AT_SCOREBOARD    (1 << 1)
 #define CMD_PIPE_CONTROL_DEPTH_CACHE_FLUSH      (1 << 0)
 
+#define CMD_PIPE_CONTROL_GLOBAL_GTT_GEN8        (1 << 24)
+#define CMD_PIPE_CONTROL_LOCAL_PGTT_GEN8        (0 << 24)
+#define CMD_PIPE_CONTROL_VFC_INVALIDATION_GEN8  (1 << 4)
+#define CMD_PIPE_CONTROL_CC_INVALIDATION_GEN8   (1 << 3)
+#define CMD_PIPE_CONTROL_SC_INVALIDATION_GEN8   (1 << 2)
 
 struct intel_batchbuffer;
 
 #define ALIGN(i, n)    (((i) + (n) - 1) & ~((n) - 1))
+#define IS_ALIGNED(i, n) (((i) & ((n)-1)) == 0)
 #define MIN(a, b) ((a) < (b) ? (a) : (b))
 #define MAX(a, b) ((a) > (b) ? (a) : (b))
 #define ARRAY_ELEMS(a) (sizeof(a) / sizeof((a)[0]))
+#define CLAMP(min, max, a) ((a) < (min) ? (min) : ((a) > (max) ? (max) : (a)))
+
+#define ALIGN_FLOOR(i, n) ((i) & ~((n) - 1))
 
 #define Bool int
 #define True 1
 #define False 0
 
+extern uint32_t g_intel_debug_option_flags;
+#define VA_INTEL_DEBUG_OPTION_ASSERT    (1 << 0)
+#define VA_INTEL_DEBUG_OPTION_BENCH     (1 << 1)
+#define VA_INTEL_DEBUG_OPTION_DUMP_AUB  (1 << 2)
+
+#define ASSERT_RET(value, fail_ret) do {    \
+        if (!(value)) {                     \
+            if (g_intel_debug_option_flags & VA_INTEL_DEBUG_OPTION_ASSERT)       \
+                assert(value);              \
+            return fail_ret;                \
+        }                                   \
+    } while (0)
+
 #define SET_BLOCKED_SIGSET()   do {     \
         sigset_t bl_mask;               \
         sigfillset(&bl_mask);           \
@@ -99,12 +146,29 @@ struct intel_batchbuffer;
         static int g_once = 1;                  \
         if (g_once) {                           \
             g_once = 0;                         \
-            printf("WARNING: " __VA_ARGS__);    \
+            fprintf(stderr, "WARNING: " __VA_ARGS__);    \
         }                                       \
     } while (0)
 
-struct intel_driver_data 
-{
+struct intel_device_info {
+    int gen;
+    int gt;
+
+    unsigned int urb_size;
+    unsigned int max_wm_threads;
+
+    unsigned int is_g4x         : 1; /* gen4 */
+    unsigned int is_ivybridge   : 1; /* gen7 */
+    unsigned int is_baytrail    : 1; /* gen7 */
+    unsigned int is_haswell     : 1; /* gen7 */
+    unsigned int is_cherryview  : 1; /* gen8 */
+    unsigned int is_skylake     : 1; /* gen9 */
+    unsigned int is_broxton     : 1; /* gen9 */
+    unsigned int is_kabylake    : 1; /* gen9p5 */
+    unsigned int is_glklake     : 1; /* gen9p5 lp*/
+};
+
+struct intel_driver_data {
     int fd;
     int device_id;
     int revision;
@@ -120,10 +184,18 @@ struct intel_driver_data
     unsigned int has_exec2  : 1; /* Flag: has execbuffer2? */
     unsigned int has_bsd    : 1; /* Flag: has bitstream decoder for H.264? */
     unsigned int has_blt    : 1; /* Flag: has BLT unit? */
+    unsigned int has_vebox  : 1; /* Flag: has VEBOX unit */
+    unsigned int has_bsd2   : 1; /* Flag: has the second BSD video ring unit */
+    unsigned int has_huc    : 1; /* Flag: has a fully loaded HuC firmware? */
+
+    int eu_total;
+
+    const struct intel_device_info *device_info;
+    unsigned int mocs_state;
 };
 
-Bool intel_driver_init(VADriverContextP ctx);
-Bool intel_driver_terminate(VADriverContextP ctx);
+bool intel_driver_init(VADriverContextP ctx);
+void intel_driver_terminate(VADriverContextP ctx);
 
 static INLINE struct intel_driver_data *
 intel_driver_data(VADriverContextP ctx)
@@ -131,8 +203,7 @@ intel_driver_data(VADriverContextP ctx)
     return (struct intel_driver_data *)ctx->pDriverData;
 }
 
-struct intel_region
-{
+struct intel_region {
     int x;
     int y;
     unsigned int width;
@@ -144,157 +215,26 @@ struct intel_region
     dri_bo *bo;
 };
 
-#define PCI_CHIP_GM45_GM                0x2A42
-#define PCI_CHIP_IGD_E_G                0x2E02
-#define PCI_CHIP_Q45_G                  0x2E12
-#define PCI_CHIP_G45_G                  0x2E22
-#define PCI_CHIP_G41_G                  0x2E32
-#define PCI_CHIP_B43_G                  0x2E42
-#define PCI_CHIP_B43_G1                 0x2E92
-
-#define PCI_CHIP_IRONLAKE_D_G           0x0042
-#define PCI_CHIP_IRONLAKE_M_G           0x0046
-
-#ifndef PCI_CHIP_SANDYBRIDGE_GT1
-#define PCI_CHIP_SANDYBRIDGE_GT1       0x0102  /* Desktop */
-#define PCI_CHIP_SANDYBRIDGE_GT2       0x0112
-#define PCI_CHIP_SANDYBRIDGE_GT2_PLUS  0x0122
-#define PCI_CHIP_SANDYBRIDGE_M_GT1     0x0106  /* Mobile */
-#define PCI_CHIP_SANDYBRIDGE_M_GT2     0x0116
-#define PCI_CHIP_SANDYBRIDGE_M_GT2_PLUS        0x0126
-#define PCI_CHIP_SANDYBRIDGE_S_GT      0x010A  /* Server */
-#endif
-
-#define PCI_CHIP_IVYBRIDGE_GT1          0x0152  /* Desktop */
-#define PCI_CHIP_IVYBRIDGE_GT2          0x0162
-#define PCI_CHIP_IVYBRIDGE_M_GT1        0x0156  /* Mobile */
-#define PCI_CHIP_IVYBRIDGE_M_GT2        0x0166
-#define PCI_CHIP_IVYBRIDGE_S_GT1        0x015a  /* Server */
-#define PCI_CHIP_IVYBRIDGE_S_GT2        0x016a
-
-#define PCI_CHIP_HASWELL_GT1            0x0402 /* Desktop */
-#define PCI_CHIP_HASWELL_GT2            0x0412
-#define PCI_CHIP_HASWELL_GT2_PLUS       0x0422
-#define PCI_CHIP_HASWELL_M_GT1          0x0406 /* Mobile */
-#define PCI_CHIP_HASWELL_M_GT2          0x0416
-#define PCI_CHIP_HASWELL_M_GT2_PLUS     0x0426
-#define PCI_CHIP_HASWELL_S_GT1          0x040a /* Server */
-#define PCI_CHIP_HASWELL_S_GT2          0x041a
-#define PCI_CHIP_HASWELL_S_GT2_PLUS     0x042a
-
-#define        PCI_CHIP_HASWELL_SDV_GT1                0x0c02 /* Desktop */
-#define        PCI_CHIP_HASWELL_SDV_GT2                0x0c12
-#define        PCI_CHIP_HASWELL_SDV_GT2_PLUS           0x0c22
-#define        PCI_CHIP_HASWELL_SDV_M_GT1              0x0c06 /* Mobile */
-#define        PCI_CHIP_HASWELL_SDV_M_GT2              0x0c16
-#define        PCI_CHIP_HASWELL_SDV_M_GT2_PLUS         0x0c26
-#define        PCI_CHIP_HASWELL_SDV_S_GT1              0x0c0a /* Server */
-#define        PCI_CHIP_HASWELL_SDV_S_GT2              0x0c1a
-#define        PCI_CHIP_HASWELL_SDV_S_GT2_PLUS         0x0c2a
-
-#define        PCI_CHIP_HASWELL_ULT_GT1                0x0A02 /* Desktop */
-#define        PCI_CHIP_HASWELL_ULT_GT2                0x0A12
-#define        PCI_CHIP_HASWELL_ULT_GT2_PLUS           0x0A22
-#define        PCI_CHIP_HASWELL_ULT_M_GT1              0x0A06 /* Mobile */
-#define        PCI_CHIP_HASWELL_ULT_M_GT2              0x0A16
-#define        PCI_CHIP_HASWELL_ULT_M_GT2_PLUS         0x0A26
-#define        PCI_CHIP_HASWELL_ULT_S_GT1              0x0A0A /* Server */
-#define        PCI_CHIP_HASWELL_ULT_S_GT2              0x0A1A
-#define        PCI_CHIP_HASWELL_ULT_S_GT2_PLUS         0x0A2A
-
-#define        PCI_CHIP_HASWELL_CRW_GT1                0x0D12 /* Desktop */
-#define        PCI_CHIP_HASWELL_CRW_GT2                0x0D22
-#define        PCI_CHIP_HASWELL_CRW_GT2_PLUS           0x0D32
-#define        PCI_CHIP_HASWELL_CRW_M_GT1              0x0D16 /* Mobile */
-#define        PCI_CHIP_HASWELL_CRW_M_GT2              0x0D26
-#define        PCI_CHIP_HASWELL_CRW_M_GT2_PLUS         0x0D36
-#define        PCI_CHIP_HASWELL_CRW_S_GT1              0x0D1A /* Server */
-#define        PCI_CHIP_HASWELL_CRW_S_GT2              0x0D2A
-#define        PCI_CHIP_HASWELL_CRW_S_GT2_PLUS         0x0D3A
-
-#define IS_G45(devid)           (devid == PCI_CHIP_IGD_E_G ||   \
-                                 devid == PCI_CHIP_Q45_G ||     \
-                                 devid == PCI_CHIP_G45_G ||     \
-                                 devid == PCI_CHIP_G41_G ||     \
-                                 devid == PCI_CHIP_B43_G ||     \
-                                 devid == PCI_CHIP_B43_G1)
-#define IS_GM45(devid)          (devid == PCI_CHIP_GM45_GM)
-#define IS_G4X(devid)          (IS_G45(devid) || IS_GM45(devid))
-
-#define IS_IRONLAKE_D(devid)    (devid == PCI_CHIP_IRONLAKE_D_G)
-#define IS_IRONLAKE_M(devid)    (devid == PCI_CHIP_IRONLAKE_M_G)
-#define IS_IRONLAKE(devid)      (IS_IRONLAKE_D(devid) || IS_IRONLAKE_M(devid))
-
-#define IS_SNB_GT1(devid)       (devid == PCI_CHIP_SANDYBRIDGE_GT1 ||   \
-                                 devid == PCI_CHIP_SANDYBRIDGE_M_GT1 || \
-                                 devid == PCI_CHIP_SANDYBRIDGE_S_GT)
-
-#define IS_SNB_GT2(devid)       (devid == PCI_CHIP_SANDYBRIDGE_GT2 ||   \
-                                 devid == PCI_CHIP_SANDYBRIDGE_GT2_PLUS || \
-                                 devid == PCI_CHIP_SANDYBRIDGE_M_GT2 || \
-                                 devid == PCI_CHIP_SANDYBRIDGE_M_GT2_PLUS)
-
-#define IS_GEN6(devid)          (IS_SNB_GT1(devid) ||   \
-                                 IS_SNB_GT2(devid))
-
-#define IS_IVB_GT1(devid)       (devid == PCI_CHIP_IVYBRIDGE_GT1 ||     \
-                                 devid == PCI_CHIP_IVYBRIDGE_M_GT1 ||   \
-                                 devid == PCI_CHIP_IVYBRIDGE_S_GT1)
-
-#define IS_IVB_GT2(devid)       (devid == PCI_CHIP_IVYBRIDGE_GT2 ||     \
-                                 devid == PCI_CHIP_IVYBRIDGE_M_GT2 ||   \
-                                 devid == PCI_CHIP_IVYBRIDGE_S_GT2)
-
-#define IS_IVYBRIDGE(devid)     (IS_IVB_GT1(devid) ||   \
-                                 IS_IVB_GT2(devid))
-
-#define IS_HSW_GT1(devid)      (devid == PCI_CHIP_HASWELL_GT1          || \
-                                 devid == PCI_CHIP_HASWELL_M_GT1       || \
-                                 devid == PCI_CHIP_HASWELL_S_GT1       || \
-                                 devid == PCI_CHIP_HASWELL_SDV_GT1     || \
-                                 devid == PCI_CHIP_HASWELL_SDV_M_GT1   || \
-                                 devid == PCI_CHIP_HASWELL_SDV_S_GT1   || \
-                                 devid == PCI_CHIP_HASWELL_CRW_GT1     || \
-                                 devid == PCI_CHIP_HASWELL_CRW_M_GT1   || \
-                                 devid == PCI_CHIP_HASWELL_CRW_S_GT1    || \
-                                 devid == PCI_CHIP_HASWELL_ULT_GT1     || \
-                                 devid == PCI_CHIP_HASWELL_ULT_M_GT1   || \
-                                 devid == PCI_CHIP_HASWELL_ULT_S_GT1)
-
-#define IS_HSW_GT2(devid)      (devid == PCI_CHIP_HASWELL_GT2||        \
-                                 devid == PCI_CHIP_HASWELL_M_GT2||      \
-                                 devid == PCI_CHIP_HASWELL_S_GT2||      \
-                                 devid == PCI_CHIP_HASWELL_SDV_GT2||    \
-                                 devid == PCI_CHIP_HASWELL_SDV_M_GT2||  \
-                                 devid == PCI_CHIP_HASWELL_SDV_S_GT2||  \
-                                 devid == PCI_CHIP_HASWELL_CRW_GT2||    \
-                                 devid == PCI_CHIP_HASWELL_CRW_M_GT2||  \
-                                 devid == PCI_CHIP_HASWELL_CRW_S_GT2||  \
-                                 devid == PCI_CHIP_HASWELL_ULT_GT2||    \
-                                 devid == PCI_CHIP_HASWELL_ULT_GT2_PLUS|| \
-                                 devid == PCI_CHIP_HASWELL_ULT_M_GT2||  \
-                                 devid == PCI_CHIP_HASWELL_ULT_M_GT2_PLUS|| \
-                                 devid == PCI_CHIP_HASWELL_ULT_S_GT2    || \
-                                 devid == PCI_CHIP_HASWELL_ULT_S_GT2_PLUS || \
-                                 devid == PCI_CHIP_HASWELL_GT2_PLUS||   \
-                                 devid == PCI_CHIP_HASWELL_M_GT2_PLUS    || \
-                                 devid == PCI_CHIP_HASWELL_S_GT2_PLUS           || \
-                                 devid == PCI_CHIP_HASWELL_SDV_GT2_PLUS|| \
-                                 devid == PCI_CHIP_HASWELL_SDV_M_GT2_PLUS|| \
-                                 devid == PCI_CHIP_HASWELL_SDV_S_GT2_PLUS|| \
-                                 devid == PCI_CHIP_HASWELL_CRW_GT2_PLUS|| \
-                                 devid == PCI_CHIP_HASWELL_CRW_M_GT2_PLUS|| \
-                                 devid == PCI_CHIP_HASWELL_CRW_S_GT2_PLUS)
-
-#define IS_HASWELL(devid)       (IS_HSW_GT1(devid) || \
-                                 IS_HSW_GT2(devid))
-
-#define IS_GEN7(devid)          (IS_IVYBRIDGE(devid) || \
-                                 IS_HASWELL(devid))
-
-#ifndef I915_EXEC_VEBOX
-#define I915_EXEC_VEBOX         4
-#endif
+#define IS_G4X(device_info)             (device_info->is_g4x)
+
+#define IS_IRONLAKE(device_info)        (device_info->gen == 5)
+
+#define IS_GEN6(device_info)            (device_info->gen == 6)
+
+#define IS_HASWELL(device_info)         (device_info->is_haswell)
+#define IS_GEN7(device_info)            (device_info->gen == 7)
+
+#define IS_CHERRYVIEW(device_info)      (device_info->is_cherryview)
+#define IS_GEN8(device_info)            (device_info->gen == 8)
+
+#define IS_GEN9(device_info)            (device_info->gen == 9)
+
+#define IS_SKL(device_info)             (device_info->is_skylake)
+
+#define IS_BXT(device_info)             (device_info->is_broxton)
+
+#define IS_KBL(device_info)             (device_info->is_kabylake)
+
+#define IS_GLK(device_info)             (device_info->is_glklake)
 
 #endif /* _INTEL_DRIVER_H_ */