blob: dea920b1f7ba4a6b32ed89f49cf8283240b0a71c [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 Singh46faf6b2016-08-05 14:40:07 -0700133 if (flags & (DRV_BO_USE_CURSOR | DRV_BO_USE_LINEAR))
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700134 tiling_mode = I915_TILING_NONE;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700135 else if (flags & DRV_BO_USE_SCANOUT)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700136 tiling_mode = I915_TILING_X;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700137 else if (flags & DRV_BO_USE_RENDERING)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700138 tiling_mode = I915_TILING_Y;
139
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700140 i915_align_dimensions(drv, tiling_mode, &width, &height, bpp);
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800141
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500142 bo->strides[0] = width * bpp;
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800143
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700144 if (!i915_verify_dimensions(drv, bo->strides[0], height))
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800145 return EINVAL;
146
147 memset(&gem_create, 0, sizeof(gem_create));
148 size = width * height * bpp;
149 gem_create.size = size;
150
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700151 ret = drmIoctl(drv->fd, DRM_IOCTL_I915_GEM_CREATE, &gem_create);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700152 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700153 fprintf(stderr, "drv: DRM_IOCTL_I915_GEM_CREATE failed "
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700154 "(size=%zu)\n", size);
Stéphane Marchesin5d867a42014-11-24 17:09:49 -0800155 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700156 }
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500157 bo->handles[0].u32 = gem_create.handle;
158 bo->sizes[0] = size;
159 bo->offsets[0] = 0;
Daniel Nicoara1de26dc2014-09-25 18:53:19 -0400160
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700161 memset(&gem_set_tiling, 0, sizeof(gem_set_tiling));
162 do {
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500163 gem_set_tiling.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700164 gem_set_tiling.tiling_mode = tiling_mode;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500165 gem_set_tiling.stride = bo->strides[0];
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700166 ret = drmIoctl(drv->fd, DRM_IOCTL_I915_GEM_SET_TILING,
Stéphane Marchesinec88e892015-11-03 16:14:59 -0800167 &gem_set_tiling);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700168 } while (ret == -1 && (errno == EINTR || errno == EAGAIN));
169
170 if (ret == -1) {
171 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500172 gem_close.handle = bo->handles[0].u32;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700173 fprintf(stderr, "drv: DRM_IOCTL_I915_GEM_SET_TILING failed "
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700174 "errno=%x (handle=%x, tiling=%x, stride=%x)\n",
175 errno,
176 gem_set_tiling.handle,
177 gem_set_tiling.tiling_mode,
178 gem_set_tiling.stride);
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700179 drmIoctl(drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700180 return -errno;
181 }
182
183 return 0;
184}
185
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700186static void *i915_bo_map(struct bo *bo)
Gurchetan Singhef920532016-08-12 16:38:25 -0700187{
188 int ret;
189 struct drm_i915_gem_mmap_gtt gem_map;
190
191 memset(&gem_map, 0, sizeof(gem_map));
192 gem_map.handle = bo->handles[0].u32;
193
194 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_I915_GEM_MMAP_GTT, &gem_map);
195 if (ret) {
196 fprintf(stderr, "drv: DRM_IOCTL_I915_GEM_MMAP_GTT failed\n");
197 return MAP_FAILED;
198 }
199
200 return mmap(0, bo->sizes[0], PROT_READ | PROT_WRITE, MAP_SHARED,
201 bo->drv->fd, gem_map.offset);
202}
203
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700204const struct backend backend_i915 =
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700205{
206 .name = "i915",
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700207 .init = i915_init,
208 .close = i915_close,
209 .bo_create = i915_bo_create,
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700210 .bo_destroy = drv_gem_bo_destroy,
Gurchetan Singhd7c84fd2016-08-16 18:18:24 -0700211 .bo_map = i915_bo_map,
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700212 .format_list = {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700213 {DRV_FORMAT_XRGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
214 {DRV_FORMAT_XRGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_LINEAR},
215 {DRV_FORMAT_ARGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
216 {DRV_FORMAT_ARGB8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_LINEAR},
217 {DRV_FORMAT_XBGR8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
218 {DRV_FORMAT_ABGR8888, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
219 {DRV_FORMAT_XRGB1555, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
220 {DRV_FORMAT_ARGB1555, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
221 {DRV_FORMAT_RGB565, DRV_BO_USE_SCANOUT | DRV_BO_USE_CURSOR | DRV_BO_USE_RENDERING},
222 {DRV_FORMAT_UYVY, DRV_BO_USE_SCANOUT | DRV_BO_USE_RENDERING},
223 {DRV_FORMAT_UYVY, DRV_BO_USE_SCANOUT | DRV_BO_USE_LINEAR},
224 {DRV_FORMAT_YUYV, DRV_BO_USE_SCANOUT | DRV_BO_USE_RENDERING},
225 {DRV_FORMAT_YUYV, DRV_BO_USE_SCANOUT | DRV_BO_USE_LINEAR},
226 {DRV_FORMAT_R8, DRV_BO_USE_RENDERING | DRV_BO_USE_LINEAR},
227 {DRV_FORMAT_GR88, DRV_BO_USE_RENDERING | DRV_BO_USE_LINEAR},
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700228 }
229};
230
231#endif