Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 1 | /* |
Daniele Castagna | 7a755de | 2016-12-16 17:32:30 -0500 | [diff] [blame] | 2 | * Copyright 2014 The Chromium OS Authors. All rights reserved. |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 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 Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 7 | #include <assert.h> |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 8 | #include <errno.h> |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 9 | #include <stdbool.h> |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 10 | #include <stdio.h> |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 11 | #include <stdlib.h> |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 12 | #include <string.h> |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 13 | #include <sys/mman.h> |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 14 | #include <xf86drm.h> |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 15 | #include <xf86drmMode.h> |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 16 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 17 | #include "drv_priv.h" |
Lauri Peltonen | 904a879 | 2015-01-17 13:57:51 +0200 | [diff] [blame] | 18 | #include "helpers.h" |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 19 | #include "util.h" |
| 20 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 21 | static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane) |
| 22 | { |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 23 | |
| 24 | if (plane != 0) { |
| 25 | switch (format) { |
| 26 | case DRM_FORMAT_YVU420: |
| 27 | case DRM_FORMAT_YVU420_ANDROID: |
| 28 | stride = DIV_ROUND_UP(stride, 2); |
| 29 | break; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | return stride; |
| 34 | } |
| 35 | |
| 36 | static uint32_t bpp_from_format(uint32_t format, size_t plane) |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 37 | { |
Gurchetan Singh | 83dc4fb | 2016-07-19 15:52:33 -0700 | [diff] [blame] | 38 | assert(plane < drv_num_planes_from_format(format)); |
| 39 | |
Gurchetan Singh | d6fb577 | 2016-08-29 19:13:51 -0700 | [diff] [blame] | 40 | switch (format) { |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 41 | case DRM_FORMAT_BGR233: |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 42 | case DRM_FORMAT_C8: |
| 43 | case DRM_FORMAT_R8: |
| 44 | case DRM_FORMAT_RGB332: |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 45 | case DRM_FORMAT_YVU420: |
Gurchetan Singh | 03f1356 | 2017-02-08 15:21:14 -0800 | [diff] [blame] | 46 | case DRM_FORMAT_YVU420_ANDROID: |
Gurchetan Singh | d6fb577 | 2016-08-29 19:13:51 -0700 | [diff] [blame] | 47 | return 8; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 48 | |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 49 | case DRM_FORMAT_NV12: |
Shirish S | df423df | 2017-04-18 16:21:59 +0530 | [diff] [blame] | 50 | case DRM_FORMAT_NV21: |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 51 | return (plane == 0) ? 8 : 4; |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 52 | |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 53 | case DRM_FORMAT_ABGR1555: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 54 | case DRM_FORMAT_ABGR4444: |
| 55 | case DRM_FORMAT_ARGB1555: |
| 56 | case DRM_FORMAT_ARGB4444: |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 57 | case DRM_FORMAT_BGR565: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 58 | case DRM_FORMAT_BGRA4444: |
| 59 | case DRM_FORMAT_BGRA5551: |
| 60 | case DRM_FORMAT_BGRX4444: |
| 61 | case DRM_FORMAT_BGRX5551: |
| 62 | case DRM_FORMAT_GR88: |
| 63 | case DRM_FORMAT_RG88: |
| 64 | case DRM_FORMAT_RGB565: |
| 65 | case DRM_FORMAT_RGBA4444: |
| 66 | case DRM_FORMAT_RGBA5551: |
| 67 | case DRM_FORMAT_RGBX4444: |
| 68 | case DRM_FORMAT_RGBX5551: |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 69 | case DRM_FORMAT_UYVY: |
| 70 | case DRM_FORMAT_VYUY: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 71 | case DRM_FORMAT_XBGR1555: |
| 72 | case DRM_FORMAT_XBGR4444: |
| 73 | case DRM_FORMAT_XRGB1555: |
| 74 | case DRM_FORMAT_XRGB4444: |
| 75 | case DRM_FORMAT_YUYV: |
| 76 | case DRM_FORMAT_YVYU: |
Gurchetan Singh | d6fb577 | 2016-08-29 19:13:51 -0700 | [diff] [blame] | 77 | return 16; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 78 | |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 79 | case DRM_FORMAT_BGR888: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 80 | case DRM_FORMAT_RGB888: |
Gurchetan Singh | d6fb577 | 2016-08-29 19:13:51 -0700 | [diff] [blame] | 81 | return 24; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 82 | |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 83 | case DRM_FORMAT_ABGR2101010: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 84 | case DRM_FORMAT_ABGR8888: |
| 85 | case DRM_FORMAT_ARGB2101010: |
| 86 | case DRM_FORMAT_ARGB8888: |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 87 | case DRM_FORMAT_AYUV: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 88 | case DRM_FORMAT_BGRA1010102: |
| 89 | case DRM_FORMAT_BGRA8888: |
| 90 | case DRM_FORMAT_BGRX1010102: |
| 91 | case DRM_FORMAT_BGRX8888: |
| 92 | case DRM_FORMAT_RGBA1010102: |
| 93 | case DRM_FORMAT_RGBA8888: |
| 94 | case DRM_FORMAT_RGBX1010102: |
| 95 | case DRM_FORMAT_RGBX8888: |
| 96 | case DRM_FORMAT_XBGR2101010: |
| 97 | case DRM_FORMAT_XBGR8888: |
| 98 | case DRM_FORMAT_XRGB2101010: |
| 99 | case DRM_FORMAT_XRGB8888: |
Gurchetan Singh | d6fb577 | 2016-08-29 19:13:51 -0700 | [diff] [blame] | 100 | return 32; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 103 | fprintf(stderr, "drv: UNKNOWN FORMAT %d\n", format); |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 104 | return 0; |
| 105 | } |
| 106 | |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 107 | uint32_t drv_bo_get_stride_in_pixels(struct bo *bo) |
| 108 | { |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 109 | uint32_t bytes_per_pixel = DIV_ROUND_UP(bpp_from_format(bo->format, 0), 8); |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 110 | return DIV_ROUND_UP(bo->strides[0], bytes_per_pixel); |
| 111 | } |
| 112 | |
Gurchetan Singh | 83dc4fb | 2016-07-19 15:52:33 -0700 | [diff] [blame] | 113 | /* |
Gurchetan Singh | 4f298f9 | 2017-03-23 11:29:26 -0700 | [diff] [blame] | 114 | * This function returns the stride for a given format, width and plane. |
| 115 | */ |
| 116 | uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane) |
| 117 | { |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 118 | uint32_t stride = DIV_ROUND_UP(width * bpp_from_format(format, plane), 8); |
Gurchetan Singh | 4f298f9 | 2017-03-23 11:29:26 -0700 | [diff] [blame] | 119 | |
| 120 | /* |
Gurchetan Singh | 4f298f9 | 2017-03-23 11:29:26 -0700 | [diff] [blame] | 121 | * The stride of Android YV12 buffers is required to be aligned to 16 bytes |
| 122 | * (see <system/graphics.h>). |
| 123 | */ |
| 124 | if (format == DRM_FORMAT_YVU420_ANDROID) |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 125 | stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16); |
Gurchetan Singh | 4f298f9 | 2017-03-23 11:29:26 -0700 | [diff] [blame] | 126 | |
| 127 | return stride; |
| 128 | } |
| 129 | |
| 130 | /* |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 131 | * This function fills in the buffer object given the driver aligned stride of |
| 132 | * the first plane, height and a format. This function assumes there is just |
| 133 | * one kernel buffer per buffer object. |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 134 | */ |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 135 | int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format) |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 136 | { |
| 137 | |
Gurchetan Singh | 2a11934 | 2016-11-02 10:40:51 -0700 | [diff] [blame] | 138 | size_t p, num_planes; |
| 139 | uint32_t offset = 0; |
| 140 | |
| 141 | num_planes = drv_num_planes_from_format(format); |
| 142 | assert(num_planes); |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 143 | |
| 144 | /* |
| 145 | * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>): |
| 146 | * - the aligned height is same as the buffer's height. |
| 147 | * - the chroma stride is 16 bytes aligned, i.e., the luma's strides |
| 148 | * is 32 bytes aligned. |
| 149 | */ |
Tomasz Figa | d846de6 | 2017-07-29 15:47:54 +0900 | [diff] [blame] | 150 | if (format == DRM_FORMAT_YVU420_ANDROID) { |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 151 | assert(aligned_height == bo->height); |
| 152 | assert(stride == ALIGN(stride, 32)); |
| 153 | } |
Gurchetan Singh | 2a11934 | 2016-11-02 10:40:51 -0700 | [diff] [blame] | 154 | |
| 155 | for (p = 0; p < num_planes; p++) { |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 156 | bo->strides[p] = subsample_stride(stride, format, p); |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 157 | bo->sizes[p] = drv_size_from_format(format, bo->strides[p], aligned_height, p); |
Gurchetan Singh | 2a11934 | 2016-11-02 10:40:51 -0700 | [diff] [blame] | 158 | bo->offsets[p] = offset; |
| 159 | offset += bo->sizes[p]; |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 162 | bo->total_size = offset; |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 163 | return 0; |
| 164 | } |
| 165 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 166 | int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format, |
| 167 | uint32_t flags) |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 168 | { |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 169 | int ret; |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 170 | size_t plane; |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 171 | uint32_t aligned_width, aligned_height; |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 172 | struct drm_mode_create_dumb create_dumb; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 173 | |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 174 | aligned_width = width; |
| 175 | aligned_height = height; |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 176 | if (format == DRM_FORMAT_YVU420_ANDROID) { |
| 177 | /* |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 178 | * Align width to 32 pixels, so chroma strides are 16 bytes as |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 179 | * Android requires. |
| 180 | */ |
| 181 | aligned_width = ALIGN(width, 32); |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | if (format == DRM_FORMAT_YVU420_ANDROID || format == DRM_FORMAT_YVU420) { |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 185 | aligned_height = 3 * DIV_ROUND_UP(height, 2); |
| 186 | } |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 187 | |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 188 | memset(&create_dumb, 0, sizeof(create_dumb)); |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 189 | create_dumb.height = aligned_height; |
| 190 | create_dumb.width = aligned_width; |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 191 | create_dumb.bpp = bpp_from_format(format, 0); |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 192 | create_dumb.flags = 0; |
| 193 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 194 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb); |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 195 | if (ret) { |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 196 | fprintf(stderr, "drv: DRM_IOCTL_MODE_CREATE_DUMB failed\n"); |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 197 | return ret; |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 198 | } |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 199 | |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 200 | drv_bo_from_format(bo, create_dumb.pitch, height, format); |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 201 | |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 202 | for (plane = 0; plane < bo->num_planes; plane++) |
| 203 | bo->handles[plane].u32 = create_dumb.handle; |
| 204 | |
| 205 | bo->total_size = create_dumb.size; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 206 | return 0; |
| 207 | } |
| 208 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 209 | int drv_dumb_bo_destroy(struct bo *bo) |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 210 | { |
| 211 | struct drm_mode_destroy_dumb destroy_dumb; |
| 212 | int ret; |
| 213 | |
| 214 | memset(&destroy_dumb, 0, sizeof(destroy_dumb)); |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 215 | destroy_dumb.handle = bo->handles[0].u32; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 216 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 217 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb); |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 218 | if (ret) { |
Gurchetan Singh | 085bff1 | 2017-03-20 13:05:49 -0700 | [diff] [blame] | 219 | fprintf(stderr, "drv: DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n", |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 220 | bo->handles[0].u32); |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 221 | return ret; |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 222 | } |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 223 | |
| 224 | return 0; |
| 225 | } |
| 226 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 227 | int drv_gem_bo_destroy(struct bo *bo) |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 228 | { |
| 229 | struct drm_gem_close gem_close; |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 230 | int ret, error = 0; |
| 231 | size_t plane, i; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 232 | |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 233 | for (plane = 0; plane < bo->num_planes; plane++) { |
Gurchetan Singh | f64487b | 2016-07-14 19:54:44 -0700 | [diff] [blame] | 234 | for (i = 0; i < plane; i++) |
| 235 | if (bo->handles[i].u32 == bo->handles[plane].u32) |
| 236 | break; |
| 237 | /* Make sure close hasn't already been called on this handle */ |
| 238 | if (i != plane) |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 239 | continue; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 240 | |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 241 | memset(&gem_close, 0, sizeof(gem_close)); |
| 242 | gem_close.handle = bo->handles[plane].u32; |
| 243 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 244 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close); |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 245 | if (ret) { |
Gurchetan Singh | 085bff1 | 2017-03-20 13:05:49 -0700 | [diff] [blame] | 246 | fprintf(stderr, "drv: DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n", |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 247 | bo->handles[plane].u32, ret); |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 248 | error = ret; |
| 249 | } |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 250 | } |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 251 | |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 252 | return error; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 253 | } |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 254 | |
Gurchetan Singh | 71611d6 | 2017-01-03 16:49:56 -0800 | [diff] [blame] | 255 | int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data) |
| 256 | { |
| 257 | int ret; |
| 258 | size_t plane; |
| 259 | struct drm_prime_handle prime_handle; |
| 260 | |
| 261 | for (plane = 0; plane < bo->num_planes; plane++) { |
| 262 | memset(&prime_handle, 0, sizeof(prime_handle)); |
| 263 | prime_handle.fd = data->fds[plane]; |
| 264 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 265 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &prime_handle); |
Gurchetan Singh | 71611d6 | 2017-01-03 16:49:56 -0800 | [diff] [blame] | 266 | |
| 267 | if (ret) { |
Gurchetan Singh | 085bff1 | 2017-03-20 13:05:49 -0700 | [diff] [blame] | 268 | fprintf(stderr, "drv: DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 269 | prime_handle.fd); |
Gurchetan Singh | 71611d6 | 2017-01-03 16:49:56 -0800 | [diff] [blame] | 270 | |
| 271 | /* |
| 272 | * Need to call GEM close on planes that were opened, |
| 273 | * if any. Adjust the num_planes variable to be the |
| 274 | * plane that failed, so GEM close will be called on |
| 275 | * planes before that plane. |
| 276 | */ |
| 277 | bo->num_planes = plane; |
| 278 | drv_gem_bo_destroy(bo); |
| 279 | return ret; |
| 280 | } |
| 281 | |
| 282 | bo->handles[plane].u32 = prime_handle.handle; |
| 283 | } |
| 284 | |
| 285 | for (plane = 0; plane < bo->num_planes; plane++) { |
| 286 | pthread_mutex_lock(&bo->drv->driver_lock); |
| 287 | drv_increment_reference_count(bo->drv, bo, plane); |
| 288 | pthread_mutex_unlock(&bo->drv->driver_lock); |
| 289 | } |
| 290 | |
| 291 | return 0; |
| 292 | } |
| 293 | |
Joe Kniss | 6570585 | 2017-06-29 15:02:46 -0700 | [diff] [blame] | 294 | void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane, int prot) |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 295 | { |
| 296 | int ret; |
Gurchetan Singh | 1a31e60 | 2016-10-06 10:58:00 -0700 | [diff] [blame] | 297 | size_t i; |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 298 | struct drm_mode_map_dumb map_dumb; |
| 299 | |
| 300 | memset(&map_dumb, 0, sizeof(map_dumb)); |
Gurchetan Singh | 1a31e60 | 2016-10-06 10:58:00 -0700 | [diff] [blame] | 301 | map_dumb.handle = bo->handles[plane].u32; |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 302 | |
| 303 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb); |
| 304 | if (ret) { |
| 305 | fprintf(stderr, "drv: DRM_IOCTL_MODE_MAP_DUMB failed \n"); |
| 306 | return MAP_FAILED; |
| 307 | } |
| 308 | |
Gurchetan Singh | 1a31e60 | 2016-10-06 10:58:00 -0700 | [diff] [blame] | 309 | for (i = 0; i < bo->num_planes; i++) |
| 310 | if (bo->handles[i].u32 == bo->handles[plane].u32) |
| 311 | data->length += bo->sizes[i]; |
| 312 | |
Joe Kniss | 6570585 | 2017-06-29 15:02:46 -0700 | [diff] [blame] | 313 | return mmap(0, data->length, prot, MAP_SHARED, bo->drv->fd, map_dumb.offset); |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 314 | } |
| 315 | |
Gurchetan Singh | ba6bd50 | 2017-09-18 15:29:47 -0700 | [diff] [blame^] | 316 | int drv_bo_munmap(struct bo *bo, struct map_info *data) |
| 317 | { |
| 318 | return munmap(data->addr, data->length); |
| 319 | } |
| 320 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 321 | uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane) |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 322 | { |
| 323 | void *count; |
| 324 | uintptr_t num = 0; |
| 325 | |
| 326 | if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count)) |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 327 | num = (uintptr_t)(count); |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 328 | |
| 329 | return num; |
| 330 | } |
| 331 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 332 | void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane) |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 333 | { |
| 334 | uintptr_t num = drv_get_reference_count(drv, bo, plane); |
| 335 | |
| 336 | /* If a value isn't in the table, drmHashDelete is a no-op */ |
| 337 | drmHashDelete(drv->buffer_table, bo->handles[plane].u32); |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 338 | drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1)); |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 341 | void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane) |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 342 | { |
| 343 | uintptr_t num = drv_get_reference_count(drv, bo, plane); |
| 344 | |
| 345 | drmHashDelete(drv->buffer_table, bo->handles[plane].u32); |
| 346 | |
| 347 | if (num > 0) |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 348 | drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1)); |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 349 | } |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 350 | |
Akshu Agrawal | 0337d9b | 2016-07-28 15:35:45 +0530 | [diff] [blame] | 351 | uint32_t drv_log_base2(uint32_t value) |
| 352 | { |
| 353 | int ret = 0; |
| 354 | |
| 355 | while (value >>= 1) |
| 356 | ++ret; |
| 357 | |
| 358 | return ret; |
| 359 | } |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 360 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 361 | int drv_add_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata, |
| 362 | uint64_t usage) |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 363 | { |
Ege Mihmanli | 96b7d46 | 2017-09-19 20:13:26 -0700 | [diff] [blame] | 364 | struct combinations *combos = &drv->combos; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 365 | if (combos->size >= combos->allocations) { |
| 366 | struct combination *new_data; |
| 367 | combos->allocations *= 2; |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 368 | new_data = realloc(combos->data, combos->allocations * sizeof(*combos->data)); |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 369 | if (!new_data) |
| 370 | return -ENOMEM; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 371 | |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 372 | combos->data = new_data; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 373 | } |
| 374 | |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 375 | combos->data[combos->size].format = format; |
| 376 | combos->data[combos->size].metadata.priority = metadata->priority; |
| 377 | combos->data[combos->size].metadata.tiling = metadata->tiling; |
| 378 | combos->data[combos->size].metadata.modifier = metadata->modifier; |
| 379 | combos->data[combos->size].usage = usage; |
| 380 | combos->size++; |
| 381 | return 0; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 382 | } |
| 383 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 384 | int drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats, |
| 385 | struct format_metadata *metadata, uint64_t usage) |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 386 | { |
| 387 | int ret; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 388 | uint32_t i; |
| 389 | for (i = 0; i < num_formats; i++) { |
| 390 | ret = drv_add_combination(drv, formats[i], metadata, usage); |
| 391 | if (ret) |
| 392 | return ret; |
| 393 | } |
| 394 | |
| 395 | return 0; |
| 396 | } |
| 397 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 398 | void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata, |
| 399 | uint64_t usage) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 400 | { |
| 401 | uint32_t i; |
| 402 | struct combination *combo; |
| 403 | /* Attempts to add the specified usage to an existing combination. */ |
Ege Mihmanli | 96b7d46 | 2017-09-19 20:13:26 -0700 | [diff] [blame] | 404 | for (i = 0; i < drv->combos.size; i++) { |
| 405 | combo = &drv->combos.data[i]; |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 406 | if (combo->format == format && combo->metadata.tiling == metadata->tiling && |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 407 | combo->metadata.modifier == metadata->modifier) |
| 408 | combo->usage |= usage; |
| 409 | } |
| 410 | } |
| 411 | |
| 412 | struct kms_item *drv_query_kms(struct driver *drv, uint32_t *num_items) |
| 413 | { |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 414 | uint64_t flag, usage; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 415 | struct kms_item *items; |
| 416 | uint32_t i, j, k, allocations, item_size; |
| 417 | |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 418 | drmModePlanePtr plane; |
| 419 | drmModePropertyPtr prop; |
| 420 | drmModePlaneResPtr resources; |
| 421 | drmModeObjectPropertiesPtr props; |
| 422 | |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 423 | /* Start with a power of 2 number of allocations. */ |
| 424 | allocations = 2; |
| 425 | item_size = 0; |
| 426 | items = calloc(allocations, sizeof(*items)); |
| 427 | if (!items) |
| 428 | goto out; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 429 | |
| 430 | /* |
| 431 | * The ability to return universal planes is only complete on |
| 432 | * ChromeOS kernel versions >= v3.18. The SET_CLIENT_CAP ioctl |
| 433 | * therefore might return an error code, so don't check it. If it |
| 434 | * fails, it'll just return the plane list as overlay planes, which is |
| 435 | * fine in our case (our drivers already have cursor bits set). |
| 436 | * modetest in libdrm does the same thing. |
| 437 | */ |
| 438 | drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); |
| 439 | |
| 440 | resources = drmModeGetPlaneResources(drv->fd); |
| 441 | if (!resources) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 442 | goto out; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 443 | |
| 444 | for (i = 0; i < resources->count_planes; i++) { |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 445 | plane = drmModeGetPlane(drv->fd, resources->planes[i]); |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 446 | if (!plane) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 447 | goto out; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 448 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 449 | props = drmModeObjectGetProperties(drv->fd, plane->plane_id, DRM_MODE_OBJECT_PLANE); |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 450 | if (!props) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 451 | goto out; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 452 | |
| 453 | for (j = 0; j < props->count_props; j++) { |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 454 | prop = drmModeGetProperty(drv->fd, props->props[j]); |
| 455 | if (prop) { |
| 456 | if (strcmp(prop->name, "type") == 0) { |
| 457 | flag = props->prop_values[j]; |
| 458 | } |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 459 | |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 460 | drmModeFreeProperty(prop); |
| 461 | } |
| 462 | } |
| 463 | |
| 464 | switch (flag) { |
| 465 | case DRM_PLANE_TYPE_OVERLAY: |
| 466 | case DRM_PLANE_TYPE_PRIMARY: |
Gurchetan Singh | 458976f | 2016-11-23 17:32:33 -0800 | [diff] [blame] | 467 | usage = BO_USE_SCANOUT; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 468 | break; |
| 469 | case DRM_PLANE_TYPE_CURSOR: |
Gurchetan Singh | 458976f | 2016-11-23 17:32:33 -0800 | [diff] [blame] | 470 | usage = BO_USE_CURSOR; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 471 | break; |
| 472 | default: |
| 473 | assert(0); |
| 474 | } |
| 475 | |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 476 | for (j = 0; j < plane->count_formats; j++) { |
| 477 | bool found = false; |
| 478 | for (k = 0; k < item_size; k++) { |
| 479 | if (items[k].format == plane->formats[j] && |
| 480 | items[k].modifier == DRM_FORMAT_MOD_NONE) { |
| 481 | items[k].usage |= usage; |
| 482 | found = true; |
| 483 | break; |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | if (!found && item_size >= allocations) { |
| 488 | struct kms_item *new_data = NULL; |
| 489 | allocations *= 2; |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 490 | new_data = realloc(items, allocations * sizeof(*items)); |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 491 | if (!new_data) { |
| 492 | item_size = 0; |
| 493 | goto out; |
| 494 | } |
| 495 | |
| 496 | items = new_data; |
| 497 | } |
| 498 | |
| 499 | if (!found) { |
| 500 | items[item_size].format = plane->formats[j]; |
| 501 | items[item_size].modifier = DRM_FORMAT_MOD_NONE; |
| 502 | items[item_size].usage = usage; |
| 503 | item_size++; |
| 504 | } |
| 505 | } |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 506 | |
| 507 | drmModeFreeObjectProperties(props); |
| 508 | drmModeFreePlane(plane); |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 509 | } |
| 510 | |
| 511 | drmModeFreePlaneResources(resources); |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 512 | out: |
| 513 | if (items && item_size == 0) { |
| 514 | free(items); |
| 515 | items = NULL; |
| 516 | } |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 517 | |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 518 | *num_items = item_size; |
| 519 | return items; |
| 520 | } |
| 521 | |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 522 | int drv_modify_linear_combinations(struct driver *drv) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 523 | { |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 524 | uint32_t i, j, num_items; |
| 525 | struct kms_item *items; |
| 526 | struct combination *combo; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 527 | |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 528 | /* |
| 529 | * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary |
| 530 | * plane and as a cursor. Some drivers don't support |
| 531 | * drmModeGetPlaneResources, so add the combination here. Note that the |
| 532 | * kernel disregards the alpha component of ARGB unless it's an overlay |
| 533 | * plane. |
| 534 | */ |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 535 | drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &LINEAR_METADATA, |
| 536 | BO_USE_CURSOR | BO_USE_SCANOUT); |
| 537 | drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &LINEAR_METADATA, |
| 538 | BO_USE_CURSOR | BO_USE_SCANOUT); |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 539 | |
| 540 | items = drv_query_kms(drv, &num_items); |
| 541 | if (!items || !num_items) |
| 542 | return 0; |
| 543 | |
| 544 | for (i = 0; i < num_items; i++) { |
Ege Mihmanli | 96b7d46 | 2017-09-19 20:13:26 -0700 | [diff] [blame] | 545 | for (j = 0; j < drv->combos.size; j++) { |
| 546 | combo = &drv->combos.data[j]; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 547 | if (items[i].format == combo->format) |
| 548 | combo->usage |= BO_USE_SCANOUT; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 549 | } |
| 550 | } |
| 551 | |
| 552 | free(items); |
| 553 | return 0; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 554 | } |