blob: 4293fec95b5a2a8f1c6d543ca7e7b54c7cadadc8 [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
2 * Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
3 * 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
9#include <errno.h>
10#include <string.h>
11#include <stdio.h>
Gurchetan Singhef920532016-08-12 16:38:25 -070012#include <sys/mman.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070013#include <xf86drm.h>
14#include <i915_drm.h>
15
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070016#include "drv_priv.h"
Stéphane Marchesin25a26062014-09-12 16:18:59 -070017#include "helpers.h"
18#include "util.h"
19
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070020struct i915_device
Stéphane Marchesin25a26062014-09-12 16:18:59 -070021{
22 int gen;
23};
24
25
26static int get_gen(int device_id)
27{
Stéphane Marchesinec88e892015-11-03 16:14:59 -080028 const uint16_t gen3_ids[] = {0x2582, 0x2592, 0x2772, 0x27A2, 0x27AE,
29 0x29C2, 0x29B2, 0x29D2, 0xA001, 0xA011};
Stéphane Marchesina39dfde2014-09-15 15:38:25 -070030 unsigned i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070031 for(i = 0; i < ARRAY_SIZE(gen3_ids); i++)
32 if (gen3_ids[i] == device_id)
33 return 3;
34
35 return 4;
36}
37
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -070038static int i915_init(struct driver *drv)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070039{
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070040 struct i915_device *i915_drv;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070041 drm_i915_getparam_t get_param;
42 int device_id;
43 int ret;
44
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070045 i915_drv = (struct i915_device*)malloc(sizeof(*i915_drv));
46 if (!i915_drv)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070047 return -1;
48
49 memset(&get_param, 0, sizeof(get_param));
50 get_param.param = I915_PARAM_CHIPSET_ID;
51 get_param.value = &device_id;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070052 ret = drmIoctl(drv->fd, DRM_IOCTL_I915_GETPARAM, &get_param);
Stéphane Marchesin25a26062014-09-12 16:18:59 -070053 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070054 fprintf(stderr, "drv: DRM_IOCTL_I915_GETPARAM failed\n");
55 free(i915_drv);
Stéphane Marchesin25a26062014-09-12 16:18:59 -070056 return -1;
57 }
58
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070059 i915_drv->gen = get_gen(device_id);
Stéphane Marchesin25a26062014-09-12 16:18:59 -070060
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070061 drv->priv = i915_drv;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070062
63 return 0;
64}
65
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -070066static void i915_close(struct driver *drv)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070067{
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070068 free(drv->priv);
69 drv->priv = NULL;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070070}
71
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070072static void i915_align_dimensions(struct driver *drv, uint32_t tiling_mode,
Stéphane Marchesinec88e892015-11-03 16:14:59 -080073 uint32_t *width, uint32_t *height, int bpp)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070074{
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070075 struct i915_device *i915_drv = (struct i915_device *)drv->priv;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -080076 uint32_t width_alignment = 4, height_alignment = 4;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070077
Stéphane Marchesin5d867a42014-11-24 17:09:49 -080078 switch(tiling_mode) {
79 default:
80 case I915_TILING_NONE:
81 width_alignment = 64 / bpp;
82 break;
83
84 case I915_TILING_X:
85 width_alignment = 512 / bpp;
86 height_alignment = 8;
87 break;
88
89 case I915_TILING_Y:
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070090 if (i915_drv->gen == 3) {
Stéphane Marchesin5d867a42014-11-24 17:09:49 -080091 width_alignment = 512 / bpp;
92 height_alignment = 8;
93 } else {
94 width_alignment = 128 / bpp;
95 height_alignment = 32;
96 }
97 break;
Stéphane Marchesin25a26062014-09-12 16:18:59 -070098 }
Stéphane Marchesin5d867a42014-11-24 17:09:49 -080099
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700100 if (i915_drv->gen > 3) {
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800101 *width = ALIGN(*width, width_alignment);
102 *height = ALIGN(*height, height_alignment);
103 } else {
104 uint32_t w;
Stéphane Marchesine3d7c1f2015-03-31 13:47:22 -0700105 for (w = width_alignment; w < *width; w <<= 1)
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800106 ;
107 *width = w;
108 *height = ALIGN(*height, height_alignment);
109 }
110}
111
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700112static int i915_verify_dimensions(struct driver *drv, uint32_t stride,
Stéphane Marchesinec88e892015-11-03 16:14:59 -0800113 uint32_t height)
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800114{
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700115 struct i915_device *i915_drv = (struct i915_device *)drv->priv;
116 if (i915_drv->gen <= 3 && stride > 8192)
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800117 return 0;
118
119 return 1;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700120}
121
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700122static int i915_bo_create(struct bo *bo, uint32_t width, uint32_t height,
123 uint32_t format, uint32_t flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700124{
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700125 struct driver *drv = bo->drv;
126 int bpp = drv_stride_from_format(format, 1);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700127 struct drm_i915_gem_create gem_create;
128 struct drm_i915_gem_set_tiling gem_set_tiling;
129 uint32_t tiling_mode = I915_TILING_NONE;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800130 size_t size;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700131 int ret;
132
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700133 if (flags & (DRV_BO_USE_CURSOR | DRV_BO_USE_LINEAR |
134 DRV_BO_USE_SW_READ_OFTEN | DRV_BO_USE_SW_WRITE_OFTEN))
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700135 tiling_mode = I915_TILING_NONE;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700136 else if (flags & DRV_BO_USE_SCANOUT)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700137 tiling_mode = I915_TILING_X;
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700138 else if (flags & (DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
139 DRV_BO_USE_HW_RENDER | DRV_BO_USE_SW_READ_RARELY |
140 DRV_BO_USE_HW_2D | DRV_BO_USE_SW_WRITE_RARELY))
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700141 tiling_mode = I915_TILING_Y;
142
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700143 i915_align_dimensions(drv, tiling_mode, &width, &height, bpp);
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800144
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500145 bo->strides[0] = width * bpp;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800146
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700147 if (!i915_verify_dimensions(drv, bo->strides[0], height))
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800148 return EINVAL;
149
150 memset(&gem_create, 0, sizeof(gem_create));
151 size = width * height * bpp;
152 gem_create.size = size;
153
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700154 ret = drmIoctl(drv->fd, DRM_IOCTL_I915_GEM_CREATE, &gem_create);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700155 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700156 fprintf(stderr, "drv: DRM_IOCTL_I915_GEM_CREATE failed "
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700157 "(size=%zu)\n", size);
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800158 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700159 }
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500160 bo->handles[0].u32 = gem_create.handle;
161 bo->sizes[0] = size;
162 bo->offsets[0] = 0;
Daniel Nicoara1de26dc2014-09-25 18:53:19 -0400163
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700164 memset(&gem_set_tiling, 0, sizeof(gem_set_tiling));
165 do {
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500166 gem_set_tiling.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700167 gem_set_tiling.tiling_mode = tiling_mode;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500168 gem_set_tiling.stride = bo->strides[0];
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700169 ret = drmIoctl(drv->fd, DRM_IOCTL_I915_GEM_SET_TILING,
Stéphane Marchesinec88e892015-11-03 16:14:59 -0800170 &gem_set_tiling);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700171 } while (ret == -1 && (errno == EINTR || errno == EAGAIN));
172
173 if (ret == -1) {
174 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500175 gem_close.handle = bo->handles[0].u32;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700176 fprintf(stderr, "drv: DRM_IOCTL_I915_GEM_SET_TILING failed "
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700177 "errno=%x (handle=%x, tiling=%x, stride=%x)\n",
178 errno,
179 gem_set_tiling.handle,
180 gem_set_tiling.tiling_mode,
181 gem_set_tiling.stride);
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700182 drmIoctl(drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700183 return -errno;
184 }
185
186 return 0;
187}
188
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700189static void *i915_bo_map(struct bo *bo)
Gurchetan Singhef920532016-08-12 16:38:25 -0700190{
191 int ret;
192 struct drm_i915_gem_mmap_gtt gem_map;
193
194 memset(&gem_map, 0, sizeof(gem_map));
195 gem_map.handle = bo->handles[0].u32;
196
197 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_MMAP_GTT, &gem_map);
198 if (ret) {
199 fprintf(stderr, "drv: DRM_IOCTL_I915_GEM_MMAP_GTT failed\n");
200 return MAP_FAILED;
201 }
202
203 return mmap(0, bo->sizes[0], PROT_READ | PROT_WRITE, MAP_SHARED,
204 bo->drv->fd, gem_map.offset);
205}
206
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700207drv_format_t i915_resolve_format(drv_format_t format)
208{
209 switch (format) {
210 case DRV_FORMAT_FLEX_IMPLEMENTATION_DEFINED:
211 /*HACK: See b/28671744 */
212 return DRV_FORMAT_XBGR8888;
213 case DRV_FORMAT_FLEX_YCbCr_420_888:
214 /*
215 * TODO(gurchetansingh) Implement YV12 with no tiling
216 * on Intel. See b/29335168
217 */
218 return DRV_FORMAT_YVU420;
219 default:
220 return format;
221 }
222}
223
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700224const struct backend backend_i915 =
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700225{
226 .name = "i915",
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700227 .init = i915_init,
228 .close = i915_close,
229 .bo_create = i915_bo_create,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700230 .bo_destroy = drv_gem_bo_destroy,
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700231 .bo_map = i915_bo_map,
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700232 .resolve_format = i915_resolve_format,
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700233 .format_list = {
Gurchetan Singhbfba8c22016-08-16 17:57:10 -0700234 {DRV_FORMAT_XRGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
235 DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
236 DRV_BO_USE_HW_RENDER | DRV_BO_USE_HW_2D |
237 DRV_BO_USE_SW_READ_RARELY | DRV_BO_USE_SW_WRITE_RARELY},
238 {DRV_FORMAT_XRGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
239 DRV_BO_USE_LINEAR | DRV_BO_USE_SW_READ_OFTEN |
240 DRV_BO_USE_SW_WRITE_OFTEN},
241 {DRV_FORMAT_ARGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
242 DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
243 DRV_BO_USE_HW_RENDER | DRV_BO_USE_HW_2D |
244 DRV_BO_USE_SW_READ_RARELY | DRV_BO_USE_SW_WRITE_RARELY},
245 {DRV_FORMAT_ARGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
246 DRV_BO_USE_LINEAR | DRV_BO_USE_SW_READ_OFTEN |
247 DRV_BO_USE_SW_WRITE_OFTEN},
248 {DRV_FORMAT_XBGR8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
249 DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
250 DRV_BO_USE_HW_RENDER | DRV_BO_USE_HW_2D |
251 DRV_BO_USE_SW_READ_RARELY | DRV_BO_USE_SW_WRITE_RARELY},
252 {DRV_FORMAT_ABGR8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
253 DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
254 DRV_BO_USE_HW_RENDER | DRV_BO_USE_HW_2D |
255 DRV_BO_USE_SW_READ_RARELY | DRV_BO_USE_SW_WRITE_RARELY},
256 {DRV_FORMAT_XRGB1555, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
257 DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
258 DRV_BO_USE_HW_RENDER | DRV_BO_USE_HW_2D |
259 DRV_BO_USE_SW_READ_RARELY | DRV_BO_USE_SW_WRITE_RARELY},
260 {DRV_FORMAT_ARGB1555, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
261 DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
262 DRV_BO_USE_HW_RENDER | DRV_BO_USE_HW_2D |
263 DRV_BO_USE_SW_READ_RARELY | DRV_BO_USE_SW_WRITE_RARELY},
264 {DRV_FORMAT_RGB565, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
265 DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
266 DRV_BO_USE_HW_RENDER | DRV_BO_USE_HW_2D |
267 DRV_BO_USE_SW_READ_RARELY | DRV_BO_USE_SW_WRITE_RARELY},
268 {DRV_FORMAT_UYVY, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
269 DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
270 DRV_BO_USE_HW_RENDER | DRV_BO_USE_HW_2D |
271 DRV_BO_USE_SW_READ_RARELY | DRV_BO_USE_SW_WRITE_RARELY},
272 {DRV_FORMAT_UYVY, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
273 DRV_BO_USE_LINEAR | DRV_BO_USE_SW_READ_OFTEN |
274 DRV_BO_USE_SW_WRITE_OFTEN},
275 {DRV_FORMAT_YUYV, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
276 DRV_BO_USE_RENDERING | DRV_BO_USE_HW_TEXTURE |
277 DRV_BO_USE_HW_RENDER | DRV_BO_USE_HW_2D |
278 DRV_BO_USE_SW_READ_RARELY | DRV_BO_USE_SW_WRITE_RARELY},
279 {DRV_FORMAT_YUYV, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR |
280 DRV_BO_USE_LINEAR | DRV_BO_USE_SW_READ_OFTEN |
281 DRV_BO_USE_SW_WRITE_OFTEN},
282 {DRV_FORMAT_R8, DRV_BO_USE_SCANOUT | DRV_BO_USE_LINEAR |
283 DRV_BO_USE_SW_READ_OFTEN | DRV_BO_USE_SW_WRITE_OFTEN},
284 {DRV_FORMAT_GR88, DRV_BO_USE_SCANOUT | DRV_BO_USE_LINEAR |
285 DRV_BO_USE_SW_READ_OFTEN | DRV_BO_USE_SW_WRITE_OFTEN},
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700286 }
287};
288
289#endif