blob: 44f08f87c4ec4ffc8aae1cbbd69c6efe38ed43d5 [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>
Gurchetan Singhcc35e692019-02-28 15:44:54 -080016#include <unistd.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070017#include <xf86drm.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070018
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070019#include "drv_priv.h"
Stéphane Marchesin25a26062014-09-12 16:18:59 -070020#include "helpers.h"
21#include "util.h"
22
Gurchetan Singh68af9c22017-01-18 13:48:11 -080023#define I915_CACHELINE_SIZE 64
24#define I915_CACHELINE_MASK (I915_CACHELINE_SIZE - 1)
25
Gurchetan Singh62a7f2e2019-07-25 20:48:28 -070026static const uint32_t render_target_formats[] = { DRM_FORMAT_ABGR8888, DRM_FORMAT_ARGB1555,
27 DRM_FORMAT_ARGB8888, DRM_FORMAT_RGB565,
Gurchetan Singh71bc6652018-09-17 17:42:05 -070028 DRM_FORMAT_XBGR2101010, DRM_FORMAT_XBGR8888,
Gurchetan Singh62a7f2e2019-07-25 20:48:28 -070029 DRM_FORMAT_XRGB1555, DRM_FORMAT_XRGB2101010,
30 DRM_FORMAT_XRGB8888, DRM_FORMAT_ARGB2101010 };
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080031
Tomasz Figab92e4f82017-06-22 16:52:43 +090032static const uint32_t tileable_texture_source_formats[] = { DRM_FORMAT_GR88, DRM_FORMAT_R8,
33 DRM_FORMAT_UYVY, DRM_FORMAT_YUYV };
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070034
Tomasz Figab92e4f82017-06-22 16:52:43 +090035static const uint32_t texture_source_formats[] = { DRM_FORMAT_YVU420, DRM_FORMAT_YVU420_ANDROID,
Gurchetan Singh39490e92019-05-28 17:49:09 -070036 DRM_FORMAT_NV12, DRM_FORMAT_P010 };
Gurchetan Singh179687e2016-10-28 10:07:35 -070037
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080038struct i915_device {
Gurchetan Singh68af9c22017-01-18 13:48:11 -080039 uint32_t gen;
40 int32_t has_llc;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070041};
42
Gurchetan Singh68af9c22017-01-18 13:48:11 -080043static uint32_t i915_get_gen(int device_id)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070044{
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080045 const uint16_t gen3_ids[] = { 0x2582, 0x2592, 0x2772, 0x27A2, 0x27AE,
46 0x29C2, 0x29B2, 0x29D2, 0xA001, 0xA011 };
Stéphane Marchesina39dfde2014-09-15 15:38:25 -070047 unsigned i;
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080048 for (i = 0; i < ARRAY_SIZE(gen3_ids); i++)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070049 if (gen3_ids[i] == device_id)
50 return 3;
51
52 return 4;
53}
54
Kristian H. Kristensen9c3fb322018-04-11 15:55:13 -070055/*
56 * We allow allocation of ARGB formats for SCANOUT if the corresponding XRGB
57 * formats supports it. It's up to the caller (chrome ozone) to ultimately not
58 * scan out ARGB if the display controller only supports XRGB, but we'll allow
59 * the allocation of the bo here.
60 */
61static bool format_compatible(const struct combination *combo, uint32_t format)
62{
63 if (combo->format == format)
64 return true;
65
66 switch (format) {
67 case DRM_FORMAT_XRGB8888:
68 return combo->format == DRM_FORMAT_ARGB8888;
69 case DRM_FORMAT_XBGR8888:
70 return combo->format == DRM_FORMAT_ABGR8888;
71 case DRM_FORMAT_RGBX8888:
72 return combo->format == DRM_FORMAT_RGBA8888;
73 case DRM_FORMAT_BGRX8888:
74 return combo->format == DRM_FORMAT_BGRA8888;
75 default:
76 return false;
77 }
78}
79
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080080static int i915_add_kms_item(struct driver *drv, const struct kms_item *item)
81{
82 uint32_t i;
83 struct combination *combo;
84
85 /*
86 * Older hardware can't scanout Y-tiled formats. Newer devices can, and
87 * report this functionality via format modifiers.
88 */
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -070089 for (i = 0; i < drv_array_size(drv->combos); i++) {
90 combo = (struct combination *)drv_array_at_idx(drv->combos, i);
Kristian H. Kristensen9c3fb322018-04-11 15:55:13 -070091 if (!format_compatible(combo, item->format))
Tomasz Figae821cc22017-07-08 15:53:11 +090092 continue;
93
Gurchetan Singhd118a0e2018-01-12 23:31:50 +000094 if (item->modifier == DRM_FORMAT_MOD_LINEAR &&
Tomasz Figae821cc22017-07-08 15:53:11 +090095 combo->metadata.tiling == I915_TILING_X) {
96 /*
97 * FIXME: drv_query_kms() does not report the available modifiers
98 * yet, but we know that all hardware can scanout from X-tiled
99 * buffers, so let's add this to our combinations, except for
100 * cursor, which must not be tiled.
101 */
Gurchetan Singha1892b22017-09-28 16:40:52 -0700102 combo->use_flags |= item->use_flags & ~BO_USE_CURSOR;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800103 }
Tomasz Figae821cc22017-07-08 15:53:11 +0900104
Kristian H. Kristensen3cb5bba2018-04-04 16:10:42 -0700105 /* If we can scanout NV12, we support all tiling modes. */
106 if (item->format == DRM_FORMAT_NV12)
107 combo->use_flags |= item->use_flags;
108
Tomasz Figae821cc22017-07-08 15:53:11 +0900109 if (combo->metadata.modifier == item->modifier)
Gurchetan Singha1892b22017-09-28 16:40:52 -0700110 combo->use_flags |= item->use_flags;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800111 }
112
113 return 0;
114}
115
116static int i915_add_combinations(struct driver *drv)
117{
118 int ret;
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700119 uint32_t i;
120 struct drv_array *kms_items;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800121 struct format_metadata metadata;
Gurchetan Singha1892b22017-09-28 16:40:52 -0700122 uint64_t render_use_flags, texture_use_flags;
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700123
Gurchetan Singha1892b22017-09-28 16:40:52 -0700124 render_use_flags = BO_USE_RENDER_MASK;
125 texture_use_flags = BO_USE_TEXTURE_MASK;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800126
127 metadata.tiling = I915_TILING_NONE;
128 metadata.priority = 1;
Kristian H. Kristensenbc8c5932017-10-24 18:36:32 -0700129 metadata.modifier = DRM_FORMAT_MOD_LINEAR;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800130
Gurchetan Singhd3001452017-11-03 17:18:36 -0700131 drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
132 &metadata, render_use_flags);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800133
Gurchetan Singhd3001452017-11-03 17:18:36 -0700134 drv_add_combinations(drv, texture_source_formats, ARRAY_SIZE(texture_source_formats),
135 &metadata, texture_use_flags);
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700136
Gurchetan Singhd3001452017-11-03 17:18:36 -0700137 drv_add_combinations(drv, tileable_texture_source_formats,
138 ARRAY_SIZE(tileable_texture_source_formats), &metadata,
139 texture_use_flags);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800140
Hirokazu Honda3b8d4d02019-07-31 16:35:52 +0900141 /*
142 * Chrome uses DMA-buf mmap to write to YV12 buffers, which are then accessed by the
143 * Video Encoder Accelerator (VEA). It could also support NV12 potentially in the future.
144 */
145 drv_modify_combination(drv, DRM_FORMAT_YVU420, &metadata, BO_USE_HW_VIDEO_ENCODER);
146 drv_modify_combination(drv, DRM_FORMAT_NV12, &metadata, BO_USE_HW_VIDEO_ENCODER);
147
Gurchetan Singh71bc6652018-09-17 17:42:05 -0700148 /* Android CTS tests require this. */
149 drv_add_combination(drv, DRM_FORMAT_BGR888, &metadata, BO_USE_SW_MASK);
150
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800151 drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &metadata, BO_USE_CURSOR | BO_USE_SCANOUT);
152 drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &metadata, BO_USE_CURSOR | BO_USE_SCANOUT);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800153
Tomasz Figad30c0a52017-07-05 17:50:18 +0900154 /* IPU3 camera ISP supports only NV12 output. */
155 drv_modify_combination(drv, DRM_FORMAT_NV12, &metadata,
Tomasz Figafd0b0162017-07-11 18:28:02 +0900156 BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE);
Tomasz Figad30c0a52017-07-05 17:50:18 +0900157 /*
158 * R8 format is used for Android's HAL_PIXEL_FORMAT_BLOB and is used for JPEG snapshots
159 * from camera.
160 */
161 drv_modify_combination(drv, DRM_FORMAT_R8, &metadata,
Tomasz Figafd0b0162017-07-11 18:28:02 +0900162 BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE);
Tomasz Figad30c0a52017-07-05 17:50:18 +0900163
Gurchetan Singha1892b22017-09-28 16:40:52 -0700164 render_use_flags &= ~BO_USE_RENDERSCRIPT;
165 render_use_flags &= ~BO_USE_SW_WRITE_OFTEN;
166 render_use_flags &= ~BO_USE_SW_READ_OFTEN;
167 render_use_flags &= ~BO_USE_LINEAR;
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700168 render_use_flags &= ~BO_USE_PROTECTED;
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700169
Gurchetan Singha1892b22017-09-28 16:40:52 -0700170 texture_use_flags &= ~BO_USE_RENDERSCRIPT;
171 texture_use_flags &= ~BO_USE_SW_WRITE_OFTEN;
172 texture_use_flags &= ~BO_USE_SW_READ_OFTEN;
173 texture_use_flags &= ~BO_USE_LINEAR;
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700174 texture_use_flags &= ~BO_USE_PROTECTED;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800175
176 metadata.tiling = I915_TILING_X;
177 metadata.priority = 2;
Tomasz Figae821cc22017-07-08 15:53:11 +0900178 metadata.modifier = I915_FORMAT_MOD_X_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
187 metadata.tiling = I915_TILING_Y;
188 metadata.priority = 3;
Tomasz Figae821cc22017-07-08 15:53:11 +0900189 metadata.modifier = I915_FORMAT_MOD_Y_TILED;
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800190
Gurchetan Singhd3001452017-11-03 17:18:36 -0700191 drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats),
192 &metadata, render_use_flags);
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -0700193
Gurchetan Singhd3001452017-11-03 17:18:36 -0700194 drv_add_combinations(drv, tileable_texture_source_formats,
195 ARRAY_SIZE(tileable_texture_source_formats), &metadata,
196 texture_use_flags);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800197
Miguel Casascdb25542019-07-18 13:07:30 -0400198 /* Support y-tiled NV12 and P010 for libva */
Gurchetan Singh86ddfdc2018-09-17 17:13:45 -0700199 drv_add_combination(drv, DRM_FORMAT_NV12, &metadata,
200 BO_USE_TEXTURE | BO_USE_HW_VIDEO_DECODER);
Miguel Casascdb25542019-07-18 13:07:30 -0400201 drv_add_combination(drv, DRM_FORMAT_P010, &metadata,
202 BO_USE_TEXTURE | BO_USE_HW_VIDEO_DECODER);
Kristian H. Kristensen3cb5bba2018-04-04 16:10:42 -0700203
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700204 kms_items = drv_query_kms(drv);
205 if (!kms_items)
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800206 return 0;
207
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700208 for (i = 0; i < drv_array_size(kms_items); i++) {
209 ret = i915_add_kms_item(drv, (struct kms_item *)drv_array_at_idx(kms_items, i));
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800210 if (ret) {
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700211 drv_array_destroy(kms_items);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800212 return ret;
213 }
214 }
215
Gurchetan Singhbc9a87d2017-11-03 17:17:35 -0700216 drv_array_destroy(kms_items);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800217 return 0;
218}
219
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800220static int i915_align_dimensions(struct bo *bo, uint32_t tiling, uint32_t *stride,
221 uint32_t *aligned_height)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700222{
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700223 struct i915_device *i915 = bo->drv->priv;
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700224 uint32_t horizontal_alignment;
225 uint32_t vertical_alignment;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700226
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700227 switch (tiling) {
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700228 default:
229 case I915_TILING_NONE:
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700230 /*
231 * The Intel GPU doesn't need any alignment in linear mode,
232 * but libva requires the allocation stride to be aligned to
233 * 16 bytes and height to 4 rows. Further, we round up the
234 * horizontal alignment so that row start on a cache line (64
235 * bytes).
236 */
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700237 horizontal_alignment = 64;
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700238 vertical_alignment = 4;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700239 break;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800240
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700241 case I915_TILING_X:
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700242 horizontal_alignment = 512;
243 vertical_alignment = 8;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700244 break;
245
246 case I915_TILING_Y:
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700247 if (i915->gen == 3) {
248 horizontal_alignment = 512;
249 vertical_alignment = 8;
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -0800250 } else {
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700251 horizontal_alignment = 128;
252 vertical_alignment = 32;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700253 }
254 break;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700255 }
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800256
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700257 *aligned_height = ALIGN(bo->height, vertical_alignment);
258 if (i915->gen > 3) {
259 *stride = ALIGN(*stride, horizontal_alignment);
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800260 } else {
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700261 while (*stride > horizontal_alignment)
262 horizontal_alignment <<= 1;
263
264 *stride = horizontal_alignment;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800265 }
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800266
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700267 if (i915->gen <= 3 && *stride > 8192)
268 return -EINVAL;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800269
Gurchetan Singh6423ecb2017-03-29 08:23:40 -0700270 return 0;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700271}
272
Gurchetan Singh68af9c22017-01-18 13:48:11 -0800273static void i915_clflush(void *start, size_t size)
274{
275 void *p = (void *)(((uintptr_t)start) & ~I915_CACHELINE_MASK);
276 void *end = (void *)((uintptr_t)start + size);
277
278 __builtin_ia32_mfence();
279 while (p < end) {
280 __builtin_ia32_clflush(p);
281 p = (void *)((uintptr_t)p + I915_CACHELINE_SIZE);
282 }
283}
284
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800285static int i915_init(struct driver *drv)
286{
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800287 int ret;
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800288 int device_id;
289 struct i915_device *i915;
290 drm_i915_getparam_t get_param;
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800291
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800292 i915 = calloc(1, sizeof(*i915));
293 if (!i915)
294 return -ENOMEM;
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800295
296 memset(&get_param, 0, sizeof(get_param));
297 get_param.param = I915_PARAM_CHIPSET_ID;
298 get_param.value = &device_id;
299 ret = drmIoctl(drv->fd, DRM_IOCTL_I915_GETPARAM, &get_param);
300 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700301 drv_log("Failed to get I915_PARAM_CHIPSET_ID\n");
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800302 free(i915);
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800303 return -EINVAL;
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800304 }
305
Gurchetan Singh68af9c22017-01-18 13:48:11 -0800306 i915->gen = i915_get_gen(device_id);
307
308 memset(&get_param, 0, sizeof(get_param));
309 get_param.param = I915_PARAM_HAS_LLC;
310 get_param.value = &i915->has_llc;
311 ret = drmIoctl(drv->fd, DRM_IOCTL_I915_GETPARAM, &get_param);
312 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700313 drv_log("Failed to get I915_PARAM_HAS_LLC\n");
Gurchetan Singh68af9c22017-01-18 13:48:11 -0800314 free(i915);
315 return -EINVAL;
316 }
317
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800318 drv->priv = i915;
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800319
Gurchetan Singh6b41fb52017-03-01 20:14:39 -0800320 return i915_add_combinations(drv);
Gurchetan Singh3eb8d8f2017-01-03 13:36:13 -0800321}
322
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700323static int i915_bo_from_format(struct bo *bo, uint32_t width, uint32_t height, uint32_t format)
324{
325 uint32_t offset;
326 size_t plane;
Gurchetan Singhcc35e692019-02-28 15:44:54 -0800327 int ret, pagesize;
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700328
329 offset = 0;
Gurchetan Singhcc35e692019-02-28 15:44:54 -0800330 pagesize = getpagesize();
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700331 for (plane = 0; plane < drv_num_planes_from_format(format); plane++) {
332 uint32_t stride = drv_stride_from_format(format, width, plane);
333 uint32_t plane_height = drv_height_from_format(format, height, plane);
334
335 if (bo->tiling != I915_TILING_NONE)
Gurchetan Singhcc35e692019-02-28 15:44:54 -0800336 assert(IS_ALIGNED(offset, pagesize));
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700337
338 ret = i915_align_dimensions(bo, bo->tiling, &stride, &plane_height);
339 if (ret)
340 return ret;
341
342 bo->strides[plane] = stride;
343 bo->sizes[plane] = stride * plane_height;
344 bo->offsets[plane] = offset;
345 offset += bo->sizes[plane];
346 }
347
Gurchetan Singhcc35e692019-02-28 15:44:54 -0800348 bo->total_size = ALIGN(offset, pagesize);
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700349
350 return 0;
351}
352
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700353static int i915_bo_create_for_modifier(struct bo *bo, uint32_t width, uint32_t height,
354 uint32_t format, uint64_t modifier)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700355{
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700356 int ret;
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800357 size_t plane;
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800358 struct drm_i915_gem_create gem_create;
359 struct drm_i915_gem_set_tiling gem_set_tiling;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700360
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700361 switch (modifier) {
362 case DRM_FORMAT_MOD_LINEAR:
363 bo->tiling = I915_TILING_NONE;
364 break;
365 case I915_FORMAT_MOD_X_TILED:
366 bo->tiling = I915_TILING_X;
367 break;
368 case I915_FORMAT_MOD_Y_TILED:
Mark Yacouba0868972019-07-25 11:08:07 -0400369 case I915_FORMAT_MOD_Y_TILED_CCS:
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700370 bo->tiling = I915_TILING_Y;
371 break;
372 }
Owen Linbbb69fd2017-06-05 14:33:08 +0800373
Kristian H. Kristensen2b8f89e2018-02-07 16:10:06 -0800374 bo->format_modifiers[0] = modifier;
375
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700376 if (format == DRM_FORMAT_YVU420_ANDROID) {
377 /*
378 * We only need to be able to use this as a linear texture,
379 * which doesn't put any HW restrictions on how we lay it
380 * out. The Android format does require the stride to be a
381 * multiple of 16 and expects the Cr and Cb stride to be
382 * ALIGN(Y_stride / 2, 16), which we can make happen by
383 * aligning to 32 bytes here.
384 */
385 uint32_t stride = ALIGN(width, 32);
386 drv_bo_from_format(bo, stride, height, format);
Mark Yacouba0868972019-07-25 11:08:07 -0400387 } else if (modifier == I915_FORMAT_MOD_Y_TILED_CCS) {
388 /*
389 * For compressed surfaces, we need a color control surface
390 * (CCS). Color compression is only supported for Y tiled
391 * surfaces, and for each 32x16 tiles in the main surface we
392 * need a tile in the control surface. Y tiles are 128 bytes
393 * wide and 32 lines tall and we use that to first compute the
394 * width and height in tiles of the main surface. stride and
395 * height are already multiples of 128 and 32, respectively:
396 */
397 uint32_t stride = drv_stride_from_format(format, width, 0);
398 uint32_t width_in_tiles = DIV_ROUND_UP(stride, 128);
399 uint32_t height_in_tiles = DIV_ROUND_UP(height, 32);
400 uint32_t size = width_in_tiles * height_in_tiles * 4096;
401 uint32_t offset = 0;
402
403 bo->strides[0] = width_in_tiles * 128;
404 bo->sizes[0] = size;
405 bo->offsets[0] = offset;
406 offset += size;
407
408 /*
409 * Now, compute the width and height in tiles of the control
410 * surface by dividing and rounding up.
411 */
412 uint32_t ccs_width_in_tiles = DIV_ROUND_UP(width_in_tiles, 32);
413 uint32_t ccs_height_in_tiles = DIV_ROUND_UP(height_in_tiles, 16);
414 uint32_t ccs_size = ccs_width_in_tiles * ccs_height_in_tiles * 4096;
415
416 /*
417 * With stride and height aligned to y tiles, offset is
418 * already a multiple of 4096, which is the required alignment
419 * of the CCS.
420 */
421 bo->strides[1] = ccs_width_in_tiles * 128;
422 bo->sizes[1] = ccs_size;
423 bo->offsets[1] = offset;
424 offset += ccs_size;
425
426 bo->num_planes = 2;
427 bo->total_size = offset;
Kristian H. Kristensene8778f02018-04-04 14:21:41 -0700428 } else {
429 i915_bo_from_format(bo, width, height, format);
430 }
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800431
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800432 memset(&gem_create, 0, sizeof(gem_create));
433 gem_create.size = bo->total_size;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800434
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800435 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_CREATE, &gem_create);
436 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700437 drv_log("DRM_IOCTL_I915_GEM_CREATE failed (size=%llu)\n", gem_create.size);
Stéphane Marchesin6ac299f2019-03-21 12:23:29 -0700438 return -errno;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700439 }
Gurchetan Singh83dc4fb2016-07-19 15:52:33 -0700440
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800441 for (plane = 0; plane < bo->num_planes; plane++)
442 bo->handles[plane].u32 = gem_create.handle;
Daniel Nicoara1de26dc2014-09-25 18:53:19 -0400443
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800444 memset(&gem_set_tiling, 0, sizeof(gem_set_tiling));
445 gem_set_tiling.handle = bo->handles[0].u32;
446 gem_set_tiling.tiling_mode = bo->tiling;
447 gem_set_tiling.stride = bo->strides[0];
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700448
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800449 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_SET_TILING, &gem_set_tiling);
450 if (ret) {
451 struct drm_gem_close gem_close;
452 memset(&gem_close, 0, sizeof(gem_close));
453 gem_close.handle = bo->handles[0].u32;
454 drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800455
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700456 drv_log("DRM_IOCTL_I915_GEM_SET_TILING failed with %d\n", errno);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700457 return -errno;
458 }
459
460 return 0;
461}
462
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700463static int i915_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
464 uint64_t use_flags)
465{
466 struct combination *combo;
467
468 combo = drv_get_combination(bo->drv, format, use_flags);
469 if (!combo)
470 return -EINVAL;
471
472 return i915_bo_create_for_modifier(bo, width, height, format, combo->metadata.modifier);
473}
474
475static int i915_bo_create_with_modifiers(struct bo *bo, uint32_t width, uint32_t height,
476 uint32_t format, const uint64_t *modifiers, uint32_t count)
477{
478 static const uint64_t modifier_order[] = {
Mark Yacouba0868972019-07-25 11:08:07 -0400479 I915_FORMAT_MOD_Y_TILED_CCS,
Gurchetan Singh2b1d6892018-09-17 16:58:16 -0700480 I915_FORMAT_MOD_Y_TILED,
481 I915_FORMAT_MOD_X_TILED,
482 DRM_FORMAT_MOD_LINEAR,
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700483 };
484 uint64_t modifier;
485
486 modifier = drv_pick_modifier(modifiers, count, modifier_order, ARRAY_SIZE(modifier_order));
487
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700488 return i915_bo_create_for_modifier(bo, width, height, format, modifier);
489}
490
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800491static void i915_close(struct driver *drv)
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800492{
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800493 free(drv->priv);
494 drv->priv = NULL;
Gurchetan Singh82a8eed2017-01-03 13:01:37 -0800495}
496
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800497static int i915_bo_import(struct bo *bo, struct drv_import_fd_data *data)
498{
499 int ret;
500 struct drm_i915_gem_get_tiling gem_get_tiling;
501
502 ret = drv_prime_bo_import(bo, data);
503 if (ret)
504 return ret;
505
506 /* TODO(gsingh): export modifiers and get rid of backdoor tiling. */
507 memset(&gem_get_tiling, 0, sizeof(gem_get_tiling));
508 gem_get_tiling.handle = bo->handles[0].u32;
509
510 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_GET_TILING, &gem_get_tiling);
511 if (ret) {
Joe Kniss9e5d12a2017-06-29 11:54:22 -0700512 drv_gem_bo_destroy(bo);
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700513 drv_log("DRM_IOCTL_I915_GEM_GET_TILING failed.\n");
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800514 return ret;
515 }
516
517 bo->tiling = gem_get_tiling.tiling_mode;
518 return 0;
519}
520
Gurchetan Singhee43c302017-11-14 18:20:27 -0800521static void *i915_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags)
Gurchetan Singhef920532016-08-12 16:38:25 -0700522{
523 int ret;
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800524 void *addr;
Gurchetan Singhef920532016-08-12 16:38:25 -0700525
Mark Yacouba0868972019-07-25 11:08:07 -0400526 if (bo->format_modifiers[0] == I915_FORMAT_MOD_Y_TILED_CCS)
527 return MAP_FAILED;
528
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800529 if (bo->tiling == I915_TILING_NONE) {
530 struct drm_i915_gem_mmap gem_map;
531 memset(&gem_map, 0, sizeof(gem_map));
Gurchetan Singhef920532016-08-12 16:38:25 -0700532
Tomasz Figa39eb9512018-11-01 00:45:31 +0900533 /* TODO(b/118799155): We don't seem to have a good way to
534 * detect the use cases for which WC mapping is really needed.
535 * The current heuristic seems overly coarse and may be slowing
536 * down some other use cases unnecessarily.
537 *
538 * For now, care must be taken not to use WC mappings for
539 * Renderscript and camera use cases, as they're
540 * performance-sensitive. */
541 if ((bo->use_flags & BO_USE_SCANOUT) &&
542 !(bo->use_flags &
543 (BO_USE_RENDERSCRIPT | BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE)))
Gurchetan Singh5af20232017-09-19 15:10:58 -0700544 gem_map.flags = I915_MMAP_WC;
545
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800546 gem_map.handle = bo->handles[0].u32;
547 gem_map.offset = 0;
548 gem_map.size = bo->total_size;
549
550 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_MMAP, &gem_map);
551 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700552 drv_log("DRM_IOCTL_I915_GEM_MMAP failed\n");
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800553 return MAP_FAILED;
554 }
555
556 addr = (void *)(uintptr_t)gem_map.addr_ptr;
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800557 } else {
558 struct drm_i915_gem_mmap_gtt gem_map;
559 memset(&gem_map, 0, sizeof(gem_map));
560
561 gem_map.handle = bo->handles[0].u32;
562
563 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_MMAP_GTT, &gem_map);
564 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700565 drv_log("DRM_IOCTL_I915_GEM_MMAP_GTT failed\n");
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800566 return MAP_FAILED;
567 }
568
Gurchetan Singhcfb88762017-09-28 17:14:50 -0700569 addr = mmap(0, bo->total_size, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd,
570 gem_map.offset);
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800571 }
572
573 if (addr == MAP_FAILED) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700574 drv_log("i915 GEM mmap failed\n");
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800575 return addr;
576 }
577
Gurchetan Singhee43c302017-11-14 18:20:27 -0800578 vma->length = bo->total_size;
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800579 return addr;
580}
Gurchetan Singh1a31e602016-10-06 10:58:00 -0700581
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700582static int i915_bo_invalidate(struct bo *bo, struct mapping *mapping)
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700583{
584 int ret;
585 struct drm_i915_gem_set_domain set_domain;
586
587 memset(&set_domain, 0, sizeof(set_domain));
588 set_domain.handle = bo->handles[0].u32;
589 if (bo->tiling == I915_TILING_NONE) {
590 set_domain.read_domains = I915_GEM_DOMAIN_CPU;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700591 if (mapping->vma->map_flags & BO_MAP_WRITE)
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700592 set_domain.write_domain = I915_GEM_DOMAIN_CPU;
593 } else {
594 set_domain.read_domains = I915_GEM_DOMAIN_GTT;
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700595 if (mapping->vma->map_flags & BO_MAP_WRITE)
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700596 set_domain.write_domain = I915_GEM_DOMAIN_GTT;
597 }
598
599 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_SET_DOMAIN, &set_domain);
600 if (ret) {
Alistair Strachan0cfaaa52018-03-19 14:03:23 -0700601 drv_log("DRM_IOCTL_I915_GEM_SET_DOMAIN with %d\n", ret);
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700602 return ret;
603 }
604
605 return 0;
606}
607
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700608static int i915_bo_flush(struct bo *bo, struct mapping *mapping)
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800609{
Gurchetan Singh68af9c22017-01-18 13:48:11 -0800610 struct i915_device *i915 = bo->drv->priv;
611 if (!i915->has_llc && bo->tiling == I915_TILING_NONE)
Gurchetan Singh47e629b2017-11-02 14:07:18 -0700612 i915_clflush(mapping->vma->addr, mapping->vma->length);
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800613
Gurchetan Singh8e02e052017-09-14 14:18:43 -0700614 return 0;
Gurchetan Singhef920532016-08-12 16:38:25 -0700615}
616
Gurchetan Singh0d44d482019-06-04 19:39:51 -0700617static uint32_t i915_resolve_format(struct driver *drv, uint32_t format, uint64_t use_flags)
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700618{
619 switch (format) {
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800620 case DRM_FORMAT_FLEX_IMPLEMENTATION_DEFINED:
Tomasz Figad30c0a52017-07-05 17:50:18 +0900621 /* KBL camera subsystem requires NV12. */
Gurchetan Singha1892b22017-09-28 16:40:52 -0700622 if (use_flags & (BO_USE_CAMERA_READ | BO_USE_CAMERA_WRITE))
Tomasz Figad30c0a52017-07-05 17:50:18 +0900623 return DRM_FORMAT_NV12;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700624 /*HACK: See b/28671744 */
Gurchetan Singhf3b22da2016-11-21 10:46:38 -0800625 return DRM_FORMAT_XBGR8888;
626 case DRM_FORMAT_FLEX_YCbCr_420_888:
Tomasz Figab92e4f82017-06-22 16:52:43 +0900627 /*
628 * KBL camera subsystem requires NV12. Our other use cases
629 * don't care:
630 * - Hardware video supports NV12,
631 * - USB Camera HALv3 supports NV12,
632 * - USB Camera HALv1 doesn't use this format.
633 * Moreover, NV12 is preferred for video, due to overlay
634 * support on SKL+.
635 */
636 return DRM_FORMAT_NV12;
Gurchetan Singhd6fb5772016-08-29 19:13:51 -0700637 default:
638 return format;
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700639 }
640}
641
Gurchetan Singh3e9d3832017-10-31 10:36:25 -0700642const struct backend backend_i915 = {
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700643 .name = "i915",
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700644 .init = i915_init,
645 .close = i915_close,
646 .bo_create = i915_bo_create,
Kristian H. Kristensen6061eab2017-10-03 13:53:19 -0700647 .bo_create_with_modifiers = i915_bo_create_with_modifiers,
Gurchetan Singhcc015e82017-01-17 16:15:25 -0800648 .bo_destroy = drv_gem_bo_destroy,
Gurchetan Singhfcad5ad2017-01-05 20:39:31 -0800649 .bo_import = i915_bo_import,
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700650 .bo_map = i915_bo_map,
Gurchetan Singh8e02e052017-09-14 14:18:43 -0700651 .bo_unmap = drv_bo_munmap,
Gurchetan Singh2d1877f2017-10-10 14:12:46 -0700652 .bo_invalidate = i915_bo_invalidate,
Gurchetan Singh8e02e052017-09-14 14:18:43 -0700653 .bo_flush = i915_bo_flush,
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700654 .resolve_format = i915_resolve_format,
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700655};
656
657#endif