blob: 773fb69a224236a53f99f036cb3c9778194ee8df [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
Daniele Castagna7a755de2016-12-16 17:32:30 -05002 * Copyright 2014 The Chromium OS Authors. All rights reserved.
Stéphane Marchesin25a26062014-09-12 16:18:59 -07003 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
Gurchetan Singh46faf6b2016-08-05 14:40:07 -07007#ifdef DRV_I915
Stéphane Marchesin25a26062014-09-12 16:18:59 -07008
Kristian H. Kristensene8778f02018-04-04 14:21:41 -07009#include <assert.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070010#include <errno.h>
Gurchetan Singh82a8eed2017-01-03 13:01:37 -080011#include <i915_drm.h>
Kristian H. Kristensen9c3fb322018-04-11 15:55:13 -070012#include <stdbool.h>
Gurchetan Singhcc015e82017-01-17 16:15:25 -080013#include <stdio.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070014#include <string.h>
Gurchetan Singhef920532016-08-12 16:38:25 -070015#include <sys/mman.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070016#include <xf86drm.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070017
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070018#include "drv_priv.h"
Stéphane Marchesin25a26062014-09-12 16:18:59 -070019#include "helpers.h"
20#include "util.h"
21
Gurchetan Singh68af9c22017-01-18 13:48:11 -080022#define I915_CACHELINE_SIZE 64
23#define I915_CACHELINE_MASK (I915_CACHELINE_SIZE - 1)
24
Gurchetan Singh767c5382018-05-05 00:42:12 +000025static const uint32_t render_target_formats[] = { DRM_FORMAT_ABGR8888, DRM_FORMAT_ARGB1555,
Gurchetan Singhabe44f62018-06-06 17:01:51 -070026 DRM_FORMAT_ARGB8888, DRM_FORMAT_BGR888,
27 DRM_FORMAT_RGB565, DRM_FORMAT_XBGR2101010,
28 DRM_FORMAT_XBGR8888, DRM_FORMAT_XRGB1555,
29 DRM_FORMAT_XRGB2101010, DRM_FORMAT_XRGB8888 };
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080030
Tomasz Figab92e4f82017-06-22 16:52:43 +090031static const uint32_t tileable_texture_source_formats[] = { DRM_FORMAT_GR88, DRM_FORMAT_R8,
32 DRM_FORMAT_UYVY, DRM_FORMAT_YUYV };
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070033
Tomasz Figab92e4f82017-06-22 16:52:43 +090034static const uint32_t texture_source_formats[] = { DRM_FORMAT_YVU420, DRM_FORMAT_YVU420_ANDROID,
35 DRM_FORMAT_NV12 };
Gurchetan Singh179687e2016-10-28 10:07:35 -070036
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080037struct i915_device {
Gurchetan Singh68af9c22017-01-18 13:48:11 -080038 uint32_t gen;
39 int32_t has_llc;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070040};
41
Gurchetan Singh68af9c22017-01-18 13:48:11 -080042static uint32_t i915_get_gen(int device_id)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070043{
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080044 const uint16_t gen3_ids[] = { 0x2582, 0x2592, 0x2772, 0x27A2, 0x27AE,
45 0x29C2, 0x29B2, 0x29D2, 0xA001, 0xA011 };
Stéphane Marchesina39dfde2014-09-15 15:38:25 -070046 unsigned i;
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080047 for (i = 0; i < ARRAY_SIZE(gen3_ids); i++)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070048 if (gen3_ids[i] == device_id)
49 return 3;
50
51 return 4;
52}
53
Kristian H. Kristensen9c3fb322018-04-11 15:55:13 -070054/*
55 * We allow allocation of ARGB formats for SCANOUT if the corresponding XRGB
56 * formats supports it. It's up to the caller (chrome ozone) to ultimately not
57 * scan out ARGB if the display controller only supports XRGB, but we'll allow
58 * the allocation of the bo here.
59 */
60static bool format_compatible(const struct combination *combo, uint32_t format)
61{
62 if (combo->format == format)
63 return true;
64
65 switch (format) {
66 case DRM_FORMAT_XRGB8888:
67 return combo->format == DRM_FORMAT_ARGB8888;
68 case DRM_FORMAT_XBGR8888:
69 return combo->format == DRM_FORMAT_ABGR8888;
70 case DRM_FORMAT_RGBX8888:
71 return combo->format == DRM_FORMAT_RGBA8888;
72 case DRM_FORMAT_BGRX8888:
73 return combo->format == DRM_FORMAT_BGRA8888;
74 default:
75 return false;
76 }
77}
78
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080079static int i915_add_kms_item(struct driver *drv, const struct kms_item *item)
80{
81 uint32_t i;
82 struct combination *combo;
83
84 /*
85 * Older hardware can't scanout Y-tiled formats. Newer devices can, and
86 * report this functionality via format modifiers.
87 */
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -070088 for (i = 0; i < drv_array_size(drv->combos); i++) {
89 combo = (struct combination *)drv_array_at_idx(drv->combos, i);
Kristian H. Kristensen9c3fb322018-04-11 15:55:13 -070090 if (!format_compatible(combo, item->format))
Tomasz Figae821cc22017-07-08 15:53:11 +090091 continue;
92
Gurchetan Singhd118a0e2018-01-12 23:31:50 +000093 if (item->modifier == DRM_FORMAT_MOD_LINEAR &&
Tomasz Figae821cc22017-07-08 15:53:11 +090094 combo->metadata.tiling == I915_TILING_X) {
95 /*
96 * FIXME: drv_query_kms() does not report the available modifiers
97 * yet, but we know that all hardware can scanout from X-tiled
98 * buffers, so let's add this to our combinations, except for
99 * cursor, which must not be tiled.
100 */
Gurchetan Singha1892b22017-09-28 16:40:52 -0700101 combo->use_flags |= item->use_flags & ~BO_USE_CURSOR;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800102 }
Tomasz Figae821cc22017-07-08 15:53:11 +0900103
Kristian H. Kristensen3cb5bba2018-04-04 16:10:42 -0700104 /* If we can scanout NV12, we support all tiling modes. */
105 if (item->format == DRM_FORMAT_NV12)
106 combo->use_flags |= item->use_flags;
107
Tomasz Figae821cc22017-07-08 15:53:11 +0900108 if (combo->metadata.modifier == item->modifier)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700109 combo->use_flags |= item->use_flags;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800110 }
111
112 return 0;
113}
114
115static int i915_add_combinations(struct driver *drv)
116{
117 int ret;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700118 uint32_t i;
119 struct drv_array *kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800120 struct format_metadata metadata;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700121 uint64_t render_use_flags, texture_use_flags;
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700122
Gurchetan Singha1892b22017-09-28 16:40:52 -0700123 render_use_flags = BO_USE_RENDER_MASK;
124 texture_use_flags = BO_USE_TEXTURE_MASK;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800125
126 metadata.tiling = I915_TILING_NONE;
127 metadata.priority = 1;
Kristian H. Kristensenbc8c5932017-10-24 18:36:32 -0700128 metadata.modifier = DRM_FORMAT_MOD_LINEAR;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800129
Gurchetan Singhd3001452017-11-03 17:18:36 -0700130 drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
131 &metadata, render_use_flags);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800132
Gurchetan Singhd3001452017-11-03 17:18:36 -0700133 drv_add_combinations(drv, texture_source_formats, ARRAY_SIZE(texture_source_formats),
134 &metadata, texture_use_flags);
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700135
Gurchetan Singhd3001452017-11-03 17:18:36 -0700136 drv_add_combinations(drv, tileable_texture_source_formats,
137 ARRAY_SIZE(tileable_texture_source_formats), &metadata,
138 texture_use_flags);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800139
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800140 drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &metadata, BO_USE_CURSOR | BO_USE_SCANOUT);
141 drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &metadata, BO_USE_CURSOR | BO_USE_SCANOUT);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800142
Tomasz Figad30c0a52017-07-05 17:50:18 +0900143 /* IPU3 camera ISP supports only NV12 output. */
144 drv_modify_combination(drv, DRM_FORMAT_NV12, &metadata,
Tomasz Figafd0b0162017-07-11 18:28:02 +0900145 BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE);
Tomasz Figad30c0a52017-07-05 17:50:18 +0900146 /*
147 * R8 format is used for Android's HAL_PIXEL_FORMAT_BLOB and is used for JPEG snapshots
148 * from camera.
149 */
150 drv_modify_combination(drv, DRM_FORMAT_R8, &metadata,
Tomasz Figafd0b0162017-07-11 18:28:02 +0900151 BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE);
Tomasz Figad30c0a52017-07-05 17:50:18 +0900152
Gurchetan Singha1892b22017-09-28 16:40:52 -0700153 render_use_flags &= ~BO_USE_RENDERSCRIPT;
154 render_use_flags &= ~BO_USE_SW_WRITE_OFTEN;
155 render_use_flags &= ~BO_USE_SW_READ_OFTEN;
156 render_use_flags &= ~BO_USE_LINEAR;
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700157 render_use_flags &= ~BO_USE_PROTECTED;
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700158
Gurchetan Singha1892b22017-09-28 16:40:52 -0700159 texture_use_flags &= ~BO_USE_RENDERSCRIPT;
160 texture_use_flags &= ~BO_USE_SW_WRITE_OFTEN;
161 texture_use_flags &= ~BO_USE_SW_READ_OFTEN;
162 texture_use_flags &= ~BO_USE_LINEAR;
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700163 texture_use_flags &= ~BO_USE_PROTECTED;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800164
165 metadata.tiling = I915_TILING_X;
166 metadata.priority = 2;
Tomasz Figae821cc22017-07-08 15:53:11 +0900167 metadata.modifier = I915_FORMAT_MOD_X_TILED;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800168
Gurchetan Singhd3001452017-11-03 17:18:36 -0700169 drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
170 &metadata, render_use_flags);
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700171
Gurchetan Singhd3001452017-11-03 17:18:36 -0700172 drv_add_combinations(drv, tileable_texture_source_formats,
173 ARRAY_SIZE(tileable_texture_source_formats), &metadata,
174 texture_use_flags);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800175
176 metadata.tiling = I915_TILING_Y;
177 metadata.priority = 3;
Tomasz Figae821cc22017-07-08 15:53:11 +0900178 metadata.modifier = I915_FORMAT_MOD_Y_TILED;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800179
Gurchetan Singhd3001452017-11-03 17:18:36 -0700180 drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
181 &metadata, render_use_flags);
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700182
Gurchetan Singhd3001452017-11-03 17:18:36 -0700183 drv_add_combinations(drv, tileable_texture_source_formats,
184 ARRAY_SIZE(tileable_texture_source_formats), &metadata,
185 texture_use_flags);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800186
Kristian H. Kristensen3cb5bba2018-04-04 16:10:42 -0700187 /* Support y-tiled NV12 for libva */
Gurchetan Singh86ddfdc2018-09-17 17:13:45 -0700188 drv_add_combination(drv, DRM_FORMAT_NV12, &metadata,
189 BO_USE_TEXTURE | BO_USE_HW_VIDEO_DECODER);
Kristian H. Kristensen3cb5bba2018-04-04 16:10:42 -0700190
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700191 kms_items = drv_query_kms(drv);
192 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800193 return 0;
194
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700195 for (i = 0; i < drv_array_size(kms_items); i++) {
196 ret = i915_add_kms_item(drv, (struct kms_item *)drv_array_at_idx(kms_items, i));
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800197 if (ret) {
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700198 drv_array_destroy(kms_items);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800199 return ret;
200 }
201 }
202
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700203 drv_array_destroy(kms_items);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800204 return 0;
205}
206
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800207static int i915_align_dimensions(struct bo *bo, uint32_t tiling, uint32_t *stride,
208 uint32_t *aligned_height)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700209{
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700210 struct i915_device *i915 = bo->drv->priv;
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700211 uint32_t horizontal_alignment;
212 uint32_t vertical_alignment;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700213
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700214 switch (tiling) {
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700215 default:
216 case I915_TILING_NONE:
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700217 /*
218 * The Intel GPU doesn't need any alignment in linear mode,
219 * but libva requires the allocation stride to be aligned to
220 * 16 bytes and height to 4 rows. Further, we round up the
221 * horizontal alignment so that row start on a cache line (64
222 * bytes).
223 */
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700224 horizontal_alignment = 64;
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700225 vertical_alignment = 4;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700226 break;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800227
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700228 case I915_TILING_X:
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700229 horizontal_alignment = 512;
230 vertical_alignment = 8;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700231 break;
232
233 case I915_TILING_Y:
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700234 if (i915->gen == 3) {
235 horizontal_alignment = 512;
236 vertical_alignment = 8;
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800237 } else {
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700238 horizontal_alignment = 128;
239 vertical_alignment = 32;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700240 }
241 break;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700242 }
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800243
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700244 *aligned_height = ALIGN(bo->height, vertical_alignment);
245 if (i915->gen > 3) {
246 *stride = ALIGN(*stride, horizontal_alignment);
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800247 } else {
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700248 while (*stride > horizontal_alignment)
249 horizontal_alignment <<= 1;
250
251 *stride = horizontal_alignment;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800252 }
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800253
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700254 if (i915->gen <= 3 && *stride > 8192)
255 return -EINVAL;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800256
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700257 return 0;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700258}
259
Gurchetan Singh68af9c22017-01-18 13:48:11 -0800260static void i915_clflush(void *start, size_t size)
261{
262 void *p = (void *)(((uintptr_t)start) & ~I915_CACHELINE_MASK);
263 void *end = (void *)((uintptr_t)start + size);
264
265 __builtin_ia32_mfence();
266 while (p < end) {
267 __builtin_ia32_clflush(p);
268 p = (void *)((uintptr_t)p + I915_CACHELINE_SIZE);
269 }
270}
271
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800272static int i915_init(struct driver *drv)
273{
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800274 int ret;
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800275 int device_id;
276 struct i915_device *i915;
277 drm_i915_getparam_t get_param;
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800278
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800279 i915 = calloc(1, sizeof(*i915));
280 if (!i915)
281 return -ENOMEM;
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800282
283 memset(&get_param, 0, sizeof(get_param));
284 get_param.param = I915_PARAM_CHIPSET_ID;
285 get_param.value = &device_id;
286 ret = drmIoctl(drv->fd, DRM_IOCTL_I915_GETPARAM, &get_param);
287 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700288 drv_log("Failed to get I915_PARAM_CHIPSET_ID\n");
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800289 free(i915);
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800290 return -EINVAL;
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800291 }
292
Gurchetan Singh68af9c22017-01-18 13:48:11 -0800293 i915->gen = i915_get_gen(device_id);
294
295 memset(&get_param, 0, sizeof(get_param));
296 get_param.param = I915_PARAM_HAS_LLC;
297 get_param.value = &i915->has_llc;
298 ret = drmIoctl(drv->fd, DRM_IOCTL_I915_GETPARAM, &get_param);
299 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700300 drv_log("Failed to get I915_PARAM_HAS_LLC\n");
Gurchetan Singh68af9c22017-01-18 13:48:11 -0800301 free(i915);
302 return -EINVAL;
303 }
304
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800305 drv->priv = i915;
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800306
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800307 return i915_add_combinations(drv);
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800308}
309
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700310static int i915_bo_from_format(struct bo *bo, uint32_t width, uint32_t height, uint32_t format)
311{
312 uint32_t offset;
313 size_t plane;
314 int ret;
315
316 offset = 0;
317 for (plane = 0; plane < drv_num_planes_from_format(format); plane++) {
318 uint32_t stride = drv_stride_from_format(format, width, plane);
319 uint32_t plane_height = drv_height_from_format(format, height, plane);
320
321 if (bo->tiling != I915_TILING_NONE)
322 assert(IS_ALIGNED(offset, 4096));
323
324 ret = i915_align_dimensions(bo, bo->tiling, &stride, &plane_height);
325 if (ret)
326 return ret;
327
328 bo->strides[plane] = stride;
329 bo->sizes[plane] = stride * plane_height;
330 bo->offsets[plane] = offset;
331 offset += bo->sizes[plane];
332 }
333
334 bo->total_size = offset;
335
336 return 0;
337}
338
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700339static int i915_bo_create_for_modifier(struct bo *bo, uint32_t width, uint32_t height,
340 uint32_t format, uint64_t modifier)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700341{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700342 int ret;
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800343 size_t plane;
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800344 struct drm_i915_gem_create gem_create;
345 struct drm_i915_gem_set_tiling gem_set_tiling;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700346
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700347 switch (modifier) {
348 case DRM_FORMAT_MOD_LINEAR:
349 bo->tiling = I915_TILING_NONE;
350 break;
351 case I915_FORMAT_MOD_X_TILED:
352 bo->tiling = I915_TILING_X;
353 break;
354 case I915_FORMAT_MOD_Y_TILED:
355 bo->tiling = I915_TILING_Y;
356 break;
357 }
Owen Linbbb69fd2017-06-05 14:33:08 +0800358
Kristian H. Kristensen2b8f89e2018-02-07 16:10:06 -0800359 bo->format_modifiers[0] = modifier;
360
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700361 if (format == DRM_FORMAT_YVU420_ANDROID) {
362 /*
363 * We only need to be able to use this as a linear texture,
364 * which doesn't put any HW restrictions on how we lay it
365 * out. The Android format does require the stride to be a
366 * multiple of 16 and expects the Cr and Cb stride to be
367 * ALIGN(Y_stride / 2, 16), which we can make happen by
368 * aligning to 32 bytes here.
369 */
370 uint32_t stride = ALIGN(width, 32);
371 drv_bo_from_format(bo, stride, height, format);
372 } else {
373 i915_bo_from_format(bo, width, height, format);
374 }
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800375
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800376 memset(&gem_create, 0, sizeof(gem_create));
377 gem_create.size = bo->total_size;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800378
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800379 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_CREATE, &gem_create);
380 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700381 drv_log("DRM_IOCTL_I915_GEM_CREATE failed (size=%llu)\n", gem_create.size);
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800382 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700383 }
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700384
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800385 for (plane = 0; plane < bo->num_planes; plane++)
386 bo->handles[plane].u32 = gem_create.handle;
Daniel Nicoara1de26dc2014-09-25 18:53:19 -0400387
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800388 memset(&gem_set_tiling, 0, sizeof(gem_set_tiling));
389 gem_set_tiling.handle = bo->handles[0].u32;
390 gem_set_tiling.tiling_mode = bo->tiling;
391 gem_set_tiling.stride = bo->strides[0];
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700392
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800393 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_SET_TILING, &gem_set_tiling);
394 if (ret) {
395 struct drm_gem_close gem_close;
396 memset(&gem_close, 0, sizeof(gem_close));
397 gem_close.handle = bo->handles[0].u32;
398 drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800399
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700400 drv_log("DRM_IOCTL_I915_GEM_SET_TILING failed with %d\n", errno);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700401 return -errno;
402 }
403
404 return 0;
405}
406
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700407static int i915_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
408 uint64_t use_flags)
409{
410 struct combination *combo;
411
412 combo = drv_get_combination(bo->drv, format, use_flags);
413 if (!combo)
414 return -EINVAL;
415
416 return i915_bo_create_for_modifier(bo, width, height, format, combo->metadata.modifier);
417}
418
419static int i915_bo_create_with_modifiers(struct bo *bo, uint32_t width, uint32_t height,
420 uint32_t format, const uint64_t *modifiers, uint32_t count)
421{
422 static const uint64_t modifier_order[] = {
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700423 I915_FORMAT_MOD_Y_TILED,
424 I915_FORMAT_MOD_X_TILED,
425 DRM_FORMAT_MOD_LINEAR,
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700426 };
427 uint64_t modifier;
428
429 modifier = drv_pick_modifier(modifiers, count, modifier_order, ARRAY_SIZE(modifier_order));
430
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700431 return i915_bo_create_for_modifier(bo, width, height, format, modifier);
432}
433
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800434static void i915_close(struct driver *drv)
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800435{
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800436 free(drv->priv);
437 drv->priv = NULL;
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800438}
439
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800440static int i915_bo_import(struct bo *bo, struct drv_import_fd_data *data)
441{
442 int ret;
443 struct drm_i915_gem_get_tiling gem_get_tiling;
444
445 ret = drv_prime_bo_import(bo, data);
446 if (ret)
447 return ret;
448
449 /* TODO(gsingh): export modifiers and get rid of backdoor tiling. */
450 memset(&gem_get_tiling, 0, sizeof(gem_get_tiling));
451 gem_get_tiling.handle = bo->handles[0].u32;
452
453 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_GET_TILING, &gem_get_tiling);
454 if (ret) {
Joe Kniss9e5d12a2017-06-29 11:54:22 -0700455 drv_gem_bo_destroy(bo);
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700456 drv_log("DRM_IOCTL_I915_GEM_GET_TILING failed.\n");
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800457 return ret;
458 }
459
460 bo->tiling = gem_get_tiling.tiling_mode;
461 return 0;
462}
463
Gurchetan Singhee43c302017-11-14 18:20:27 -0800464static void *i915_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
Gurchetan Singhef920532016-08-12 16:38:25 -0700465{
466 int ret;
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800467 void *addr;
Gurchetan Singhef920532016-08-12 16:38:25 -0700468
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800469 if (bo->tiling == I915_TILING_NONE) {
470 struct drm_i915_gem_mmap gem_map;
471 memset(&gem_map, 0, sizeof(gem_map));
Gurchetan Singhef920532016-08-12 16:38:25 -0700472
Gurchetan Singha1892b22017-09-28 16:40:52 -0700473 if ((bo->use_flags & BO_USE_SCANOUT) && !(bo->use_flags & BO_USE_RENDERSCRIPT))
Gurchetan Singh5af20232017-09-19 15:10:58 -0700474 gem_map.flags = I915_MMAP_WC;
475
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800476 gem_map.handle = bo->handles[0].u32;
477 gem_map.offset = 0;
478 gem_map.size = bo->total_size;
479
480 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_MMAP, &gem_map);
481 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700482 drv_log("DRM_IOCTL_I915_GEM_MMAP failed\n");
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800483 return MAP_FAILED;
484 }
485
486 addr = (void *)(uintptr_t)gem_map.addr_ptr;
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800487 } else {
488 struct drm_i915_gem_mmap_gtt gem_map;
489 memset(&gem_map, 0, sizeof(gem_map));
490
491 gem_map.handle = bo->handles[0].u32;
492
493 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_MMAP_GTT, &gem_map);
494 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700495 drv_log("DRM_IOCTL_I915_GEM_MMAP_GTT failed\n");
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800496 return MAP_FAILED;
497 }
498
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700499 addr = mmap(0, bo->total_size, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
500 gem_map.offset);
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800501 }
502
503 if (addr == MAP_FAILED) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700504 drv_log("i915 GEM mmap failed\n");
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800505 return addr;
506 }
507
Gurchetan Singhee43c302017-11-14 18:20:27 -0800508 vma->length = bo->total_size;
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800509 return addr;
510}
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700511
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700512static int i915_bo_invalidate(struct bo *bo, struct mapping *mapping)
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700513{
514 int ret;
515 struct drm_i915_gem_set_domain set_domain;
516
517 memset(&set_domain, 0, sizeof(set_domain));
518 set_domain.handle = bo->handles[0].u32;
519 if (bo->tiling == I915_TILING_NONE) {
520 set_domain.read_domains = I915_GEM_DOMAIN_CPU;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700521 if (mapping->vma->map_flags & BO_MAP_WRITE)
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700522 set_domain.write_domain = I915_GEM_DOMAIN_CPU;
523 } else {
524 set_domain.read_domains = I915_GEM_DOMAIN_GTT;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700525 if (mapping->vma->map_flags & BO_MAP_WRITE)
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700526 set_domain.write_domain = I915_GEM_DOMAIN_GTT;
527 }
528
529 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_SET_DOMAIN, &set_domain);
530 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700531 drv_log("DRM_IOCTL_I915_GEM_SET_DOMAIN with %d\n", ret);
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700532 return ret;
533 }
534
535 return 0;
536}
537
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700538static int i915_bo_flush(struct bo *bo, struct mapping *mapping)
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800539{
Gurchetan Singh68af9c22017-01-18 13:48:11 -0800540 struct i915_device *i915 = bo->drv->priv;
541 if (!i915->has_llc && bo->tiling == I915_TILING_NONE)
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700542 i915_clflush(mapping->vma->addr, mapping->vma->length);
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800543
Gurchetan Singh8e02e052017-09-14 14:18:43 -0700544 return 0;
Gurchetan Singhef920532016-08-12 16:38:25 -0700545}
546
Gurchetan Singha1892b22017-09-28 16:40:52 -0700547static uint32_t i915_resolve_format(uint32_t format, uint64_t use_flags)
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700548{
549 switch (format) {
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800550 case DRM_FORMAT_FLEX_IMPLEMENTATION_DEFINED:
Tomasz Figad30c0a52017-07-05 17:50:18 +0900551 /* KBL camera subsystem requires NV12. */
Gurchetan Singha1892b22017-09-28 16:40:52 -0700552 if (use_flags & (BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE))
Tomasz Figad30c0a52017-07-05 17:50:18 +0900553 return DRM_FORMAT_NV12;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700554 /*HACK: See b/28671744 */
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800555 return DRM_FORMAT_XBGR8888;
556 case DRM_FORMAT_FLEX_YCbCr_420_888:
Tomasz Figab92e4f82017-06-22 16:52:43 +0900557 /*
558 * KBL camera subsystem requires NV12. Our other use cases
559 * don't care:
560 * - Hardware video supports NV12,
561 * - USB Camera HALv3 supports NV12,
562 * - USB Camera HALv1 doesn't use this format.
563 * Moreover, NV12 is preferred for video, due to overlay
564 * support on SKL+.
565 */
566 return DRM_FORMAT_NV12;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700567 default:
568 return format;
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700569 }
570}
571
Gurchetan Singh3e9d3832017-10-31 10:36:25 -0700572const struct backend backend_i915 = {
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700573 .name = "i915",
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700574 .init = i915_init,
575 .close = i915_close,
576 .bo_create = i915_bo_create,
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700577 .bo_create_with_modifiers = i915_bo_create_with_modifiers,
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800578 .bo_destroy = drv_gem_bo_destroy,
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800579 .bo_import = i915_bo_import,
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700580 .bo_map = i915_bo_map,
Gurchetan Singh8e02e052017-09-14 14:18:43 -0700581 .bo_unmap = drv_bo_munmap,
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700582 .bo_invalidate = i915_bo_invalidate,
Gurchetan Singh8e02e052017-09-14 14:18:43 -0700583 .bo_flush = i915_bo_flush,
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700584 .resolve_format = i915_resolve_format,
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700585};
586
587#endif