blob: 378b01f5aabcd56991affbc0f154ca63e7f0a4d2 [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
Yuly Novikov96c7a3b2015-12-08 22:48:29 -05007#include <assert.h>
8#include <stdbool.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -07009#include <stdio.h>
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050010#include <stdlib.h>
Stéphane Marchesin25a26062014-09-12 16:18:59 -070011#include <string.h>
12#include <xf86drm.h>
13
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070014#include "drv_priv.h"
Lauri Peltonen904a8792015-01-17 13:57:51 +020015#include "helpers.h"
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050016#include "util.h"
17
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070018size_t drv_num_planes_from_format(uint32_t format)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050019{
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050020 switch(format)
21 {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070022 case DRV_FORMAT_C8:
23 case DRV_FORMAT_R8:
24 case DRV_FORMAT_RG88:
25 case DRV_FORMAT_GR88:
26 case DRV_FORMAT_RGB332:
27 case DRV_FORMAT_BGR233:
28 case DRV_FORMAT_XRGB4444:
29 case DRV_FORMAT_XBGR4444:
30 case DRV_FORMAT_RGBX4444:
31 case DRV_FORMAT_BGRX4444:
32 case DRV_FORMAT_ARGB4444:
33 case DRV_FORMAT_ABGR4444:
34 case DRV_FORMAT_RGBA4444:
35 case DRV_FORMAT_BGRA4444:
36 case DRV_FORMAT_XRGB1555:
37 case DRV_FORMAT_XBGR1555:
38 case DRV_FORMAT_RGBX5551:
39 case DRV_FORMAT_BGRX5551:
40 case DRV_FORMAT_ARGB1555:
41 case DRV_FORMAT_ABGR1555:
42 case DRV_FORMAT_RGBA5551:
43 case DRV_FORMAT_BGRA5551:
44 case DRV_FORMAT_RGB565:
45 case DRV_FORMAT_BGR565:
46 case DRV_FORMAT_YUYV:
47 case DRV_FORMAT_YVYU:
48 case DRV_FORMAT_UYVY:
49 case DRV_FORMAT_VYUY:
50 case DRV_FORMAT_RGB888:
51 case DRV_FORMAT_BGR888:
52 case DRV_FORMAT_XRGB8888:
53 case DRV_FORMAT_XBGR8888:
54 case DRV_FORMAT_RGBX8888:
55 case DRV_FORMAT_BGRX8888:
56 case DRV_FORMAT_ARGB8888:
57 case DRV_FORMAT_ABGR8888:
58 case DRV_FORMAT_RGBA8888:
59 case DRV_FORMAT_BGRA8888:
60 case DRV_FORMAT_XRGB2101010:
61 case DRV_FORMAT_XBGR2101010:
62 case DRV_FORMAT_RGBX1010102:
63 case DRV_FORMAT_BGRX1010102:
64 case DRV_FORMAT_ARGB2101010:
65 case DRV_FORMAT_ABGR2101010:
66 case DRV_FORMAT_RGBA1010102:
67 case DRV_FORMAT_BGRA1010102:
68 case DRV_FORMAT_AYUV:
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050069 return 1;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070070 case DRV_FORMAT_NV12:
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050071 return 2;
72 }
73
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070074 fprintf(stderr, "drv: UNKNOWN FORMAT %d\n", format);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050075 return 0;
76}
Stéphane Marchesin25a26062014-09-12 16:18:59 -070077
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070078int drv_bpp_from_format(uint32_t format)
Stéphane Marchesin25a26062014-09-12 16:18:59 -070079{
Stéphane Marchesin25a26062014-09-12 16:18:59 -070080 switch(format)
81 {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070082 case DRV_FORMAT_C8:
83 case DRV_FORMAT_R8:
84 case DRV_FORMAT_RGB332:
85 case DRV_FORMAT_BGR233:
Stéphane Marchesin25a26062014-09-12 16:18:59 -070086 return 8;
87
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070088 case DRV_FORMAT_NV12:
Yuly Novikov96c7a3b2015-12-08 22:48:29 -050089 return 12;
90
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070091 case DRV_FORMAT_RG88:
92 case DRV_FORMAT_GR88:
93 case DRV_FORMAT_XRGB4444:
94 case DRV_FORMAT_XBGR4444:
95 case DRV_FORMAT_RGBX4444:
96 case DRV_FORMAT_BGRX4444:
97 case DRV_FORMAT_ARGB4444:
98 case DRV_FORMAT_ABGR4444:
99 case DRV_FORMAT_RGBA4444:
100 case DRV_FORMAT_BGRA4444:
101 case DRV_FORMAT_XRGB1555:
102 case DRV_FORMAT_XBGR1555:
103 case DRV_FORMAT_RGBX5551:
104 case DRV_FORMAT_BGRX5551:
105 case DRV_FORMAT_ARGB1555:
106 case DRV_FORMAT_ABGR1555:
107 case DRV_FORMAT_RGBA5551:
108 case DRV_FORMAT_BGRA5551:
109 case DRV_FORMAT_RGB565:
110 case DRV_FORMAT_BGR565:
111 case DRV_FORMAT_YUYV:
112 case DRV_FORMAT_YVYU:
113 case DRV_FORMAT_UYVY:
114 case DRV_FORMAT_VYUY:
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700115 return 16;
116
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700117 case DRV_FORMAT_RGB888:
118 case DRV_FORMAT_BGR888:
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700119 return 24;
120
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700121 case DRV_FORMAT_XRGB8888:
122 case DRV_FORMAT_XBGR8888:
123 case DRV_FORMAT_RGBX8888:
124 case DRV_FORMAT_BGRX8888:
125 case DRV_FORMAT_ARGB8888:
126 case DRV_FORMAT_ABGR8888:
127 case DRV_FORMAT_RGBA8888:
128 case DRV_FORMAT_BGRA8888:
129 case DRV_FORMAT_XRGB2101010:
130 case DRV_FORMAT_XBGR2101010:
131 case DRV_FORMAT_RGBX1010102:
132 case DRV_FORMAT_BGRX1010102:
133 case DRV_FORMAT_ARGB2101010:
134 case DRV_FORMAT_ABGR2101010:
135 case DRV_FORMAT_RGBA1010102:
136 case DRV_FORMAT_BGRA1010102:
137 case DRV_FORMAT_AYUV:
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700138 return 32;
139 }
140
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700141 fprintf(stderr, "drv: UNKNOWN FORMAT %d\n", format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700142 return 0;
143}
144
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700145int drv_stride_from_format(uint32_t format, uint32_t width)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700146{
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500147 /* Only single-plane formats are supported */
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700148 assert(drv_num_planes_from_format(format) == 1);
149 return DIV_ROUND_UP(width * drv_bpp_from_format(format), 8);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700150}
151
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700152int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height,
Stéphane Marchesinec88e892015-11-03 16:14:59 -0800153 uint32_t format, uint32_t flags)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700154{
155 struct drm_mode_create_dumb create_dumb;
156 int ret;
157
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500158 /* Only single-plane formats are supported */
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700159 assert(drv_num_planes_from_format(format) == 1);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500160
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700161 memset(&create_dumb, 0, sizeof(create_dumb));
162 create_dumb.height = height;
163 create_dumb.width = width;
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700164 create_dumb.bpp = drv_bpp_from_format(format);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700165 create_dumb.flags = 0;
166
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700167 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700168 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700169 fprintf(stderr, "drv: DRM_IOCTL_MODE_CREATE_DUMB failed\n");
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700170 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700171 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700172
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500173 bo->handles[0].u32 = create_dumb.handle;
174 bo->offsets[0] = 0;
175 bo->sizes[0] = create_dumb.size;
176 bo->strides[0] = create_dumb.pitch;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700177
178 return 0;
179}
180
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700181int drv_dumb_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700182{
183 struct drm_mode_destroy_dumb destroy_dumb;
184 int ret;
185
186 memset(&destroy_dumb, 0, sizeof(destroy_dumb));
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500187 destroy_dumb.handle = bo->handles[0].u32;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700188
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700189 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb);
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700190 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700191 fprintf(stderr, "drv: DRM_IOCTL_MODE_DESTROY_DUMB failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500192 "(handle=%x)\n", bo->handles[0].u32);
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700193 return ret;
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700194 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700195
196 return 0;
197}
198
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700199int drv_gem_bo_destroy(struct bo *bo)
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700200{
201 struct drm_gem_close gem_close;
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500202 int ret, error = 0;
203 size_t plane, i;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700204
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500205 for (plane = 0; plane < bo->num_planes; plane++) {
Gurchetan Singhf64487b2016-07-14 19:54:44 -0700206 for (i = 0; i < plane; i++)
207 if (bo->handles[i].u32 == bo->handles[plane].u32)
208 break;
209 /* Make sure close hasn't already been called on this handle */
210 if (i != plane)
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500211 continue;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700212
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500213 memset(&gem_close, 0, sizeof(gem_close));
214 gem_close.handle = bo->handles[plane].u32;
215
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700216 ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close);
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500217 if (ret) {
Gurchetan Singh46faf6b2016-08-05 14:40:07 -0700218 fprintf(stderr, "drv: DRM_IOCTL_GEM_CLOSE failed "
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500219 "(handle=%x) error %d\n",
220 bo->handles[plane].u32, ret);
221 error = ret;
222 }
Ilja H. Friedelf9d2ab72015-04-09 14:08:36 -0700223 }
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700224
Yuly Novikov96c7a3b2015-12-08 22:48:29 -0500225 return error;
Stéphane Marchesin25a26062014-09-12 16:18:59 -0700226}