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 | |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 21 | struct planar_layout { |
| 22 | size_t num_planes; |
| 23 | int horizontal_subsampling[DRV_MAX_PLANES]; |
| 24 | int vertical_subsampling[DRV_MAX_PLANES]; |
| 25 | int bytes_per_pixel[DRV_MAX_PLANES]; |
| 26 | }; |
| 27 | |
| 28 | // clang-format off |
| 29 | |
| 30 | static const struct planar_layout packed_1bpp_layout = { |
| 31 | .num_planes = 1, |
| 32 | .horizontal_subsampling = { 1 }, |
| 33 | .vertical_subsampling = { 1 }, |
| 34 | .bytes_per_pixel = { 1 } |
| 35 | }; |
| 36 | |
| 37 | static const struct planar_layout packed_2bpp_layout = { |
| 38 | .num_planes = 1, |
| 39 | .horizontal_subsampling = { 1 }, |
| 40 | .vertical_subsampling = { 1 }, |
| 41 | .bytes_per_pixel = { 2 } |
| 42 | }; |
| 43 | |
| 44 | static const struct planar_layout packed_3bpp_layout = { |
| 45 | .num_planes = 1, |
| 46 | .horizontal_subsampling = { 1 }, |
| 47 | .vertical_subsampling = { 1 }, |
| 48 | .bytes_per_pixel = { 3 } |
| 49 | }; |
| 50 | |
| 51 | static const struct planar_layout packed_4bpp_layout = { |
| 52 | .num_planes = 1, |
| 53 | .horizontal_subsampling = { 1 }, |
| 54 | .vertical_subsampling = { 1 }, |
| 55 | .bytes_per_pixel = { 4 } |
| 56 | }; |
| 57 | |
| 58 | static const struct planar_layout biplanar_yuv_420_layout = { |
| 59 | .num_planes = 2, |
| 60 | .horizontal_subsampling = { 1, 2 }, |
| 61 | .vertical_subsampling = { 1, 2 }, |
| 62 | .bytes_per_pixel = { 1, 2 } |
| 63 | }; |
| 64 | |
| 65 | static const struct planar_layout triplanar_yuv_420_layout = { |
| 66 | .num_planes = 3, |
| 67 | .horizontal_subsampling = { 1, 2, 2 }, |
| 68 | .vertical_subsampling = { 1, 2, 2 }, |
| 69 | .bytes_per_pixel = { 1, 1, 1 } |
| 70 | }; |
| 71 | |
| 72 | // clang-format on |
| 73 | |
| 74 | static const struct planar_layout *layout_from_format(uint32_t format) |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 75 | { |
Gurchetan Singh | d6fb577 | 2016-08-29 19:13:51 -0700 | [diff] [blame] | 76 | switch (format) { |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 77 | case DRM_FORMAT_BGR233: |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 78 | case DRM_FORMAT_C8: |
| 79 | case DRM_FORMAT_R8: |
| 80 | case DRM_FORMAT_RGB332: |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 81 | return &packed_1bpp_layout; |
| 82 | |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 83 | case DRM_FORMAT_YVU420: |
Gurchetan Singh | 03f1356 | 2017-02-08 15:21:14 -0800 | [diff] [blame] | 84 | case DRM_FORMAT_YVU420_ANDROID: |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 85 | return &triplanar_yuv_420_layout; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 86 | |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 87 | case DRM_FORMAT_NV12: |
Shirish S | df423df | 2017-04-18 16:21:59 +0530 | [diff] [blame] | 88 | case DRM_FORMAT_NV21: |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 89 | return &biplanar_yuv_420_layout; |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 90 | |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 91 | case DRM_FORMAT_ABGR1555: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 92 | case DRM_FORMAT_ABGR4444: |
| 93 | case DRM_FORMAT_ARGB1555: |
| 94 | case DRM_FORMAT_ARGB4444: |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 95 | case DRM_FORMAT_BGR565: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 96 | case DRM_FORMAT_BGRA4444: |
| 97 | case DRM_FORMAT_BGRA5551: |
| 98 | case DRM_FORMAT_BGRX4444: |
| 99 | case DRM_FORMAT_BGRX5551: |
| 100 | case DRM_FORMAT_GR88: |
| 101 | case DRM_FORMAT_RG88: |
| 102 | case DRM_FORMAT_RGB565: |
| 103 | case DRM_FORMAT_RGBA4444: |
| 104 | case DRM_FORMAT_RGBA5551: |
| 105 | case DRM_FORMAT_RGBX4444: |
| 106 | case DRM_FORMAT_RGBX5551: |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 107 | case DRM_FORMAT_UYVY: |
| 108 | case DRM_FORMAT_VYUY: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 109 | case DRM_FORMAT_XBGR1555: |
| 110 | case DRM_FORMAT_XBGR4444: |
| 111 | case DRM_FORMAT_XRGB1555: |
| 112 | case DRM_FORMAT_XRGB4444: |
| 113 | case DRM_FORMAT_YUYV: |
| 114 | case DRM_FORMAT_YVYU: |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 115 | return &packed_2bpp_layout; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 116 | |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 117 | case DRM_FORMAT_BGR888: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 118 | case DRM_FORMAT_RGB888: |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 119 | return &packed_3bpp_layout; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 120 | |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 121 | case DRM_FORMAT_ABGR2101010: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 122 | case DRM_FORMAT_ABGR8888: |
| 123 | case DRM_FORMAT_ARGB2101010: |
| 124 | case DRM_FORMAT_ARGB8888: |
Gurchetan Singh | f3b22da | 2016-11-21 10:46:38 -0800 | [diff] [blame] | 125 | case DRM_FORMAT_AYUV: |
Gurchetan Singh | e8ab0a5 | 2016-11-21 11:36:31 -0800 | [diff] [blame] | 126 | case DRM_FORMAT_BGRA1010102: |
| 127 | case DRM_FORMAT_BGRA8888: |
| 128 | case DRM_FORMAT_BGRX1010102: |
| 129 | case DRM_FORMAT_BGRX8888: |
| 130 | case DRM_FORMAT_RGBA1010102: |
| 131 | case DRM_FORMAT_RGBA8888: |
| 132 | case DRM_FORMAT_RGBX1010102: |
| 133 | case DRM_FORMAT_RGBX8888: |
| 134 | case DRM_FORMAT_XBGR2101010: |
| 135 | case DRM_FORMAT_XBGR8888: |
| 136 | case DRM_FORMAT_XRGB2101010: |
| 137 | case DRM_FORMAT_XRGB8888: |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 138 | return &packed_4bpp_layout; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 139 | |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 140 | default: |
| 141 | drv_log("UNKNOWN FORMAT %d\n", format); |
| 142 | return NULL; |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | size_t drv_num_planes_from_format(uint32_t format) |
| 147 | { |
| 148 | const struct planar_layout *layout = layout_from_format(format); |
| 149 | |
| 150 | /* |
| 151 | * drv_bo_new calls this function early to query number of planes and |
| 152 | * considers 0 planes to mean unknown format, so we have to support |
| 153 | * that. All other layout_from_format() queries can assume that the |
| 154 | * format is supported and that the return value is non-NULL. |
| 155 | */ |
| 156 | |
| 157 | return layout ? layout->num_planes : 0; |
| 158 | } |
| 159 | |
| 160 | uint32_t drv_height_from_format(uint32_t format, uint32_t height, size_t plane) |
| 161 | { |
| 162 | const struct planar_layout *layout = layout_from_format(format); |
| 163 | |
| 164 | assert(plane < layout->num_planes); |
| 165 | |
| 166 | return DIV_ROUND_UP(height, layout->vertical_subsampling[plane]); |
| 167 | } |
| 168 | |
| 169 | uint32_t drv_bytes_per_pixel_from_format(uint32_t format, size_t plane) |
| 170 | { |
| 171 | const struct planar_layout *layout = layout_from_format(format); |
| 172 | |
| 173 | assert(plane < layout->num_planes); |
| 174 | |
| 175 | return layout->bytes_per_pixel[plane]; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 176 | } |
| 177 | |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 178 | uint32_t drv_bo_get_stride_in_pixels(struct bo *bo) |
| 179 | { |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 180 | uint32_t bytes_per_pixel = drv_bytes_per_pixel_from_format(bo->format, 0); |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 181 | return DIV_ROUND_UP(bo->strides[0], bytes_per_pixel); |
| 182 | } |
| 183 | |
Gurchetan Singh | 83dc4fb | 2016-07-19 15:52:33 -0700 | [diff] [blame] | 184 | /* |
Gurchetan Singh | 4f298f9 | 2017-03-23 11:29:26 -0700 | [diff] [blame] | 185 | * This function returns the stride for a given format, width and plane. |
| 186 | */ |
| 187 | uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane) |
| 188 | { |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 189 | const struct planar_layout *layout = layout_from_format(format); |
| 190 | assert(plane < layout->num_planes); |
| 191 | |
| 192 | uint32_t plane_width = |
| 193 | DIV_ROUND_UP(width, layout->horizontal_subsampling[plane]); |
| 194 | uint32_t stride = plane_width * layout->bytes_per_pixel[plane]; |
Gurchetan Singh | 4f298f9 | 2017-03-23 11:29:26 -0700 | [diff] [blame] | 195 | |
| 196 | /* |
Gurchetan Singh | 4f298f9 | 2017-03-23 11:29:26 -0700 | [diff] [blame] | 197 | * The stride of Android YV12 buffers is required to be aligned to 16 bytes |
| 198 | * (see <system/graphics.h>). |
| 199 | */ |
| 200 | if (format == DRM_FORMAT_YVU420_ANDROID) |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 201 | stride = (plane == 0) ? ALIGN(stride, 32) : ALIGN(stride, 16); |
Gurchetan Singh | 4f298f9 | 2017-03-23 11:29:26 -0700 | [diff] [blame] | 202 | |
| 203 | return stride; |
| 204 | } |
| 205 | |
Gurchetan Singh | bc24bd7 | 2017-09-28 15:21:53 -0700 | [diff] [blame] | 206 | uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane) |
| 207 | { |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 208 | return stride * drv_height_from_format(format, height, plane); |
| 209 | } |
Gurchetan Singh | bc24bd7 | 2017-09-28 15:21:53 -0700 | [diff] [blame] | 210 | |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 211 | static uint32_t subsample_stride(uint32_t stride, uint32_t format, size_t plane) |
| 212 | { |
| 213 | if (plane != 0) { |
| 214 | switch (format) { |
| 215 | case DRM_FORMAT_YVU420: |
| 216 | case DRM_FORMAT_YVU420_ANDROID: |
| 217 | stride = DIV_ROUND_UP(stride, 2); |
| 218 | break; |
| 219 | } |
Gurchetan Singh | bc24bd7 | 2017-09-28 15:21:53 -0700 | [diff] [blame] | 220 | } |
| 221 | |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 222 | return stride; |
Gurchetan Singh | bc24bd7 | 2017-09-28 15:21:53 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Gurchetan Singh | 4f298f9 | 2017-03-23 11:29:26 -0700 | [diff] [blame] | 225 | /* |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 226 | * This function fills in the buffer object given the driver aligned stride of |
| 227 | * the first plane, height and a format. This function assumes there is just |
| 228 | * one kernel buffer per buffer object. |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 229 | */ |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 230 | 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] | 231 | { |
| 232 | |
Gurchetan Singh | 2a11934 | 2016-11-02 10:40:51 -0700 | [diff] [blame] | 233 | size_t p, num_planes; |
| 234 | uint32_t offset = 0; |
| 235 | |
| 236 | num_planes = drv_num_planes_from_format(format); |
| 237 | assert(num_planes); |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 238 | |
| 239 | /* |
| 240 | * HAL_PIXEL_FORMAT_YV12 requires that (see <system/graphics.h>): |
| 241 | * - the aligned height is same as the buffer's height. |
| 242 | * - the chroma stride is 16 bytes aligned, i.e., the luma's strides |
| 243 | * is 32 bytes aligned. |
| 244 | */ |
Tomasz Figa | d846de6 | 2017-07-29 15:47:54 +0900 | [diff] [blame] | 245 | if (format == DRM_FORMAT_YVU420_ANDROID) { |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 246 | assert(aligned_height == bo->height); |
| 247 | assert(stride == ALIGN(stride, 32)); |
| 248 | } |
Gurchetan Singh | 2a11934 | 2016-11-02 10:40:51 -0700 | [diff] [blame] | 249 | |
| 250 | for (p = 0; p < num_planes; p++) { |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 251 | bo->strides[p] = subsample_stride(stride, format, p); |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 252 | 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] | 253 | bo->offsets[p] = offset; |
| 254 | offset += bo->sizes[p]; |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 257 | bo->total_size = offset; |
Gurchetan Singh | 42cc6d6 | 2016-08-29 18:19:19 -0700 | [diff] [blame] | 258 | return 0; |
| 259 | } |
| 260 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 261 | int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format, |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 262 | uint64_t use_flags) |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 263 | { |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 264 | int ret; |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 265 | size_t plane; |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 266 | uint32_t aligned_width, aligned_height; |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 267 | struct drm_mode_create_dumb create_dumb; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 268 | |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 269 | aligned_width = width; |
| 270 | aligned_height = height; |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 271 | if (format == DRM_FORMAT_YVU420_ANDROID) { |
| 272 | /* |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 273 | * Align width to 32 pixels, so chroma strides are 16 bytes as |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 274 | * Android requires. |
| 275 | */ |
| 276 | aligned_width = ALIGN(width, 32); |
Owen Lin | bbb69fd | 2017-06-05 14:33:08 +0800 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | if (format == DRM_FORMAT_YVU420_ANDROID || format == DRM_FORMAT_YVU420) { |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 280 | aligned_height = 3 * DIV_ROUND_UP(height, 2); |
| 281 | } |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 282 | |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 283 | memset(&create_dumb, 0, sizeof(create_dumb)); |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 284 | create_dumb.height = aligned_height; |
| 285 | create_dumb.width = aligned_width; |
Kristian H. Kristensen | 478343f | 2018-04-04 14:02:50 -0700 | [diff] [blame^] | 286 | create_dumb.bpp = layout_from_format(format)->bytes_per_pixel[0] * 8; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 287 | create_dumb.flags = 0; |
| 288 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 289 | 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] | 290 | if (ret) { |
Alistair Strachan | 0cfaaa5 | 2018-03-19 14:03:23 -0700 | [diff] [blame] | 291 | drv_log("DRM_IOCTL_MODE_CREATE_DUMB failed (%d, %d)\n", bo->drv->fd, errno); |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 292 | return ret; |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 293 | } |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 294 | |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 295 | drv_bo_from_format(bo, create_dumb.pitch, height, format); |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 296 | |
Gurchetan Singh | d5f8e44 | 2017-03-16 13:05:45 -0700 | [diff] [blame] | 297 | for (plane = 0; plane < bo->num_planes; plane++) |
| 298 | bo->handles[plane].u32 = create_dumb.handle; |
| 299 | |
| 300 | bo->total_size = create_dumb.size; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 301 | return 0; |
| 302 | } |
| 303 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 304 | int drv_dumb_bo_destroy(struct bo *bo) |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 305 | { |
| 306 | struct drm_mode_destroy_dumb destroy_dumb; |
| 307 | int ret; |
| 308 | |
| 309 | memset(&destroy_dumb, 0, sizeof(destroy_dumb)); |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 310 | destroy_dumb.handle = bo->handles[0].u32; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 311 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 312 | 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] | 313 | if (ret) { |
Alistair Strachan | 0cfaaa5 | 2018-03-19 14:03:23 -0700 | [diff] [blame] | 314 | drv_log("DRM_IOCTL_MODE_DESTROY_DUMB failed (handle=%x)\n", bo->handles[0].u32); |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 315 | return ret; |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 316 | } |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 317 | |
| 318 | return 0; |
| 319 | } |
| 320 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 321 | int drv_gem_bo_destroy(struct bo *bo) |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 322 | { |
| 323 | struct drm_gem_close gem_close; |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 324 | int ret, error = 0; |
| 325 | size_t plane, i; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 326 | |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 327 | for (plane = 0; plane < bo->num_planes; plane++) { |
Gurchetan Singh | f64487b | 2016-07-14 19:54:44 -0700 | [diff] [blame] | 328 | for (i = 0; i < plane; i++) |
| 329 | if (bo->handles[i].u32 == bo->handles[plane].u32) |
| 330 | break; |
| 331 | /* Make sure close hasn't already been called on this handle */ |
| 332 | if (i != plane) |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 333 | continue; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 334 | |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 335 | memset(&gem_close, 0, sizeof(gem_close)); |
| 336 | gem_close.handle = bo->handles[plane].u32; |
| 337 | |
Gurchetan Singh | 46faf6b | 2016-08-05 14:40:07 -0700 | [diff] [blame] | 338 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_GEM_CLOSE, &gem_close); |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 339 | if (ret) { |
Alistair Strachan | 0cfaaa5 | 2018-03-19 14:03:23 -0700 | [diff] [blame] | 340 | drv_log("DRM_IOCTL_GEM_CLOSE failed (handle=%x) error %d\n", |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 341 | bo->handles[plane].u32, ret); |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 342 | error = ret; |
| 343 | } |
Ilja H. Friedel | f9d2ab7 | 2015-04-09 14:08:36 -0700 | [diff] [blame] | 344 | } |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 345 | |
Yuly Novikov | 96c7a3b | 2015-12-08 22:48:29 -0500 | [diff] [blame] | 346 | return error; |
Stéphane Marchesin | 25a2606 | 2014-09-12 16:18:59 -0700 | [diff] [blame] | 347 | } |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 348 | |
Gurchetan Singh | 71611d6 | 2017-01-03 16:49:56 -0800 | [diff] [blame] | 349 | int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data) |
| 350 | { |
| 351 | int ret; |
| 352 | size_t plane; |
| 353 | struct drm_prime_handle prime_handle; |
| 354 | |
| 355 | for (plane = 0; plane < bo->num_planes; plane++) { |
| 356 | memset(&prime_handle, 0, sizeof(prime_handle)); |
| 357 | prime_handle.fd = data->fds[plane]; |
| 358 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 359 | 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] | 360 | |
| 361 | if (ret) { |
Alistair Strachan | 0cfaaa5 | 2018-03-19 14:03:23 -0700 | [diff] [blame] | 362 | drv_log("DRM_IOCTL_PRIME_FD_TO_HANDLE failed (fd=%u)\n", prime_handle.fd); |
Gurchetan Singh | 71611d6 | 2017-01-03 16:49:56 -0800 | [diff] [blame] | 363 | |
| 364 | /* |
| 365 | * Need to call GEM close on planes that were opened, |
| 366 | * if any. Adjust the num_planes variable to be the |
| 367 | * plane that failed, so GEM close will be called on |
| 368 | * planes before that plane. |
| 369 | */ |
| 370 | bo->num_planes = plane; |
| 371 | drv_gem_bo_destroy(bo); |
| 372 | return ret; |
| 373 | } |
| 374 | |
| 375 | bo->handles[plane].u32 = prime_handle.handle; |
| 376 | } |
| 377 | |
| 378 | for (plane = 0; plane < bo->num_planes; plane++) { |
| 379 | pthread_mutex_lock(&bo->drv->driver_lock); |
| 380 | drv_increment_reference_count(bo->drv, bo, plane); |
| 381 | pthread_mutex_unlock(&bo->drv->driver_lock); |
| 382 | } |
| 383 | |
| 384 | return 0; |
| 385 | } |
| 386 | |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 387 | void *drv_dumb_bo_map(struct bo *bo, struct vma *vma, size_t plane, uint32_t map_flags) |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 388 | { |
| 389 | int ret; |
Gurchetan Singh | 1a31e60 | 2016-10-06 10:58:00 -0700 | [diff] [blame] | 390 | size_t i; |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 391 | struct drm_mode_map_dumb map_dumb; |
| 392 | |
| 393 | memset(&map_dumb, 0, sizeof(map_dumb)); |
Gurchetan Singh | 1a31e60 | 2016-10-06 10:58:00 -0700 | [diff] [blame] | 394 | map_dumb.handle = bo->handles[plane].u32; |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 395 | |
| 396 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb); |
| 397 | if (ret) { |
Alistair Strachan | 0cfaaa5 | 2018-03-19 14:03:23 -0700 | [diff] [blame] | 398 | drv_log("DRM_IOCTL_MODE_MAP_DUMB failed\n"); |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 399 | return MAP_FAILED; |
| 400 | } |
| 401 | |
Gurchetan Singh | 1a31e60 | 2016-10-06 10:58:00 -0700 | [diff] [blame] | 402 | for (i = 0; i < bo->num_planes; i++) |
| 403 | if (bo->handles[i].u32 == bo->handles[plane].u32) |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 404 | vma->length += bo->sizes[i]; |
Gurchetan Singh | 1a31e60 | 2016-10-06 10:58:00 -0700 | [diff] [blame] | 405 | |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 406 | return mmap(0, vma->length, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd, |
Gurchetan Singh | cfb8876 | 2017-09-28 17:14:50 -0700 | [diff] [blame] | 407 | map_dumb.offset); |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 408 | } |
| 409 | |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 410 | int drv_bo_munmap(struct bo *bo, struct vma *vma) |
Gurchetan Singh | ba6bd50 | 2017-09-18 15:29:47 -0700 | [diff] [blame] | 411 | { |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 412 | return munmap(vma->addr, vma->length); |
Gurchetan Singh | ba6bd50 | 2017-09-18 15:29:47 -0700 | [diff] [blame] | 413 | } |
| 414 | |
Gurchetan Singh | 47e629b | 2017-11-02 14:07:18 -0700 | [diff] [blame] | 415 | int drv_mapping_destroy(struct bo *bo) |
Gurchetan Singh | de263f1 | 2017-01-24 13:30:06 -0800 | [diff] [blame] | 416 | { |
| 417 | int ret; |
Gurchetan Singh | de263f1 | 2017-01-24 13:30:06 -0800 | [diff] [blame] | 418 | size_t plane; |
Gurchetan Singh | 47e629b | 2017-11-02 14:07:18 -0700 | [diff] [blame] | 419 | struct mapping *mapping; |
Gurchetan Singh | cfedbcc | 2017-11-02 17:32:00 -0700 | [diff] [blame] | 420 | uint32_t idx; |
Gurchetan Singh | de263f1 | 2017-01-24 13:30:06 -0800 | [diff] [blame] | 421 | |
| 422 | /* |
| 423 | * This function is called right before the buffer is destroyed. It will free any mappings |
| 424 | * associated with the buffer. |
| 425 | */ |
| 426 | |
Gurchetan Singh | cfedbcc | 2017-11-02 17:32:00 -0700 | [diff] [blame] | 427 | idx = 0; |
Gurchetan Singh | de263f1 | 2017-01-24 13:30:06 -0800 | [diff] [blame] | 428 | for (plane = 0; plane < bo->num_planes; plane++) { |
Gurchetan Singh | cfedbcc | 2017-11-02 17:32:00 -0700 | [diff] [blame] | 429 | while (idx < drv_array_size(bo->drv->mappings)) { |
| 430 | mapping = (struct mapping *)drv_array_at_idx(bo->drv->mappings, idx); |
| 431 | if (mapping->vma->handle != bo->handles[plane].u32) { |
| 432 | idx++; |
| 433 | continue; |
Gurchetan Singh | de263f1 | 2017-01-24 13:30:06 -0800 | [diff] [blame] | 434 | } |
| 435 | |
Gurchetan Singh | cfedbcc | 2017-11-02 17:32:00 -0700 | [diff] [blame] | 436 | if (!--mapping->vma->refcount) { |
Gurchetan Singh | ee43c30 | 2017-11-14 18:20:27 -0800 | [diff] [blame] | 437 | ret = bo->drv->backend->bo_unmap(bo, mapping->vma); |
Gurchetan Singh | cfedbcc | 2017-11-02 17:32:00 -0700 | [diff] [blame] | 438 | if (ret) { |
Alistair Strachan | 0cfaaa5 | 2018-03-19 14:03:23 -0700 | [diff] [blame] | 439 | drv_log("munmap failed\n"); |
Gurchetan Singh | cfedbcc | 2017-11-02 17:32:00 -0700 | [diff] [blame] | 440 | return ret; |
| 441 | } |
| 442 | |
| 443 | free(mapping->vma); |
| 444 | } |
| 445 | |
| 446 | /* This shrinks and shifts the array, so don't increment idx. */ |
| 447 | drv_array_remove(bo->drv->mappings, idx); |
Gurchetan Singh | de263f1 | 2017-01-24 13:30:06 -0800 | [diff] [blame] | 448 | } |
| 449 | } |
| 450 | |
| 451 | return 0; |
| 452 | } |
| 453 | |
Gurchetan Singh | cfb8876 | 2017-09-28 17:14:50 -0700 | [diff] [blame] | 454 | int drv_get_prot(uint32_t map_flags) |
| 455 | { |
| 456 | return (BO_MAP_WRITE & map_flags) ? PROT_WRITE | PROT_READ : PROT_READ; |
| 457 | } |
| 458 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 459 | 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] | 460 | { |
| 461 | void *count; |
| 462 | uintptr_t num = 0; |
| 463 | |
| 464 | if (!drmHashLookup(drv->buffer_table, bo->handles[plane].u32, &count)) |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 465 | num = (uintptr_t)(count); |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 466 | |
| 467 | return num; |
| 468 | } |
| 469 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 470 | 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] | 471 | { |
| 472 | uintptr_t num = drv_get_reference_count(drv, bo, plane); |
| 473 | |
| 474 | /* If a value isn't in the table, drmHashDelete is a no-op */ |
| 475 | drmHashDelete(drv->buffer_table, bo->handles[plane].u32); |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 476 | drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num + 1)); |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 477 | } |
| 478 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 479 | 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] | 480 | { |
| 481 | uintptr_t num = drv_get_reference_count(drv, bo, plane); |
| 482 | |
| 483 | drmHashDelete(drv->buffer_table, bo->handles[plane].u32); |
| 484 | |
| 485 | if (num > 0) |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 486 | drmHashInsert(drv->buffer_table, bo->handles[plane].u32, (void *)(num - 1)); |
Gurchetan Singh | 1647fbe | 2016-08-03 17:14:55 -0700 | [diff] [blame] | 487 | } |
Gurchetan Singh | ef92053 | 2016-08-12 16:38:25 -0700 | [diff] [blame] | 488 | |
Akshu Agrawal | 0337d9b | 2016-07-28 15:35:45 +0530 | [diff] [blame] | 489 | uint32_t drv_log_base2(uint32_t value) |
| 490 | { |
| 491 | int ret = 0; |
| 492 | |
| 493 | while (value >>= 1) |
| 494 | ++ret; |
| 495 | |
| 496 | return ret; |
| 497 | } |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 498 | |
Gurchetan Singh | d300145 | 2017-11-03 17:18:36 -0700 | [diff] [blame] | 499 | void drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats, |
| 500 | struct format_metadata *metadata, uint64_t use_flags) |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 501 | { |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 502 | uint32_t i; |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 503 | |
| 504 | for (i = 0; i < num_formats; i++) { |
| 505 | struct combination combo = { .format = formats[i], |
| 506 | .metadata = *metadata, |
| 507 | .use_flags = use_flags }; |
| 508 | |
| 509 | drv_array_append(drv->combos, &combo); |
| 510 | } |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 511 | } |
| 512 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 513 | void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata, |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 514 | uint64_t use_flags) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 515 | { |
| 516 | uint32_t i; |
| 517 | struct combination *combo; |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 518 | /* Attempts to add the specified flags to an existing combination. */ |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 519 | for (i = 0; i < drv_array_size(drv->combos); i++) { |
| 520 | combo = (struct combination *)drv_array_at_idx(drv->combos, i); |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 521 | if (combo->format == format && combo->metadata.tiling == metadata->tiling && |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 522 | combo->metadata.modifier == metadata->modifier) |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 523 | combo->use_flags |= use_flags; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 524 | } |
| 525 | } |
| 526 | |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 527 | struct drv_array *drv_query_kms(struct driver *drv) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 528 | { |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 529 | struct drv_array *kms_items; |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 530 | uint64_t plane_type, use_flag; |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 531 | uint32_t i, j, k; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 532 | |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 533 | drmModePlanePtr plane; |
| 534 | drmModePropertyPtr prop; |
| 535 | drmModePlaneResPtr resources; |
| 536 | drmModeObjectPropertiesPtr props; |
| 537 | |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 538 | kms_items = drv_array_init(sizeof(struct kms_item)); |
| 539 | if (!kms_items) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 540 | goto out; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 541 | |
| 542 | /* |
| 543 | * The ability to return universal planes is only complete on |
| 544 | * ChromeOS kernel versions >= v3.18. The SET_CLIENT_CAP ioctl |
| 545 | * therefore might return an error code, so don't check it. If it |
| 546 | * fails, it'll just return the plane list as overlay planes, which is |
| 547 | * fine in our case (our drivers already have cursor bits set). |
| 548 | * modetest in libdrm does the same thing. |
| 549 | */ |
| 550 | drmSetClientCap(drv->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1); |
| 551 | |
| 552 | resources = drmModeGetPlaneResources(drv->fd); |
| 553 | if (!resources) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 554 | goto out; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 555 | |
| 556 | for (i = 0; i < resources->count_planes; i++) { |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 557 | plane = drmModeGetPlane(drv->fd, resources->planes[i]); |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 558 | if (!plane) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 559 | goto out; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 560 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 561 | props = drmModeObjectGetProperties(drv->fd, plane->plane_id, DRM_MODE_OBJECT_PLANE); |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 562 | if (!props) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 563 | goto out; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 564 | |
| 565 | for (j = 0; j < props->count_props; j++) { |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 566 | prop = drmModeGetProperty(drv->fd, props->props[j]); |
| 567 | if (prop) { |
| 568 | if (strcmp(prop->name, "type") == 0) { |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 569 | plane_type = props->prop_values[j]; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 570 | } |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 571 | |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 572 | drmModeFreeProperty(prop); |
| 573 | } |
| 574 | } |
| 575 | |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 576 | switch (plane_type) { |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 577 | case DRM_PLANE_TYPE_OVERLAY: |
| 578 | case DRM_PLANE_TYPE_PRIMARY: |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 579 | use_flag = BO_USE_SCANOUT; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 580 | break; |
| 581 | case DRM_PLANE_TYPE_CURSOR: |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 582 | use_flag = BO_USE_CURSOR; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 583 | break; |
| 584 | default: |
| 585 | assert(0); |
| 586 | } |
| 587 | |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 588 | for (j = 0; j < plane->count_formats; j++) { |
| 589 | bool found = false; |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 590 | for (k = 0; k < drv_array_size(kms_items); k++) { |
| 591 | struct kms_item *item = drv_array_at_idx(kms_items, k); |
| 592 | if (item->format == plane->formats[j] && |
Gurchetan Singh | d118a0e | 2018-01-12 23:31:50 +0000 | [diff] [blame] | 593 | item->modifier == DRM_FORMAT_MOD_LINEAR) { |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 594 | item->use_flags |= use_flag; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 595 | found = true; |
| 596 | break; |
| 597 | } |
| 598 | } |
| 599 | |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 600 | if (!found) { |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 601 | struct kms_item item = { .format = plane->formats[j], |
Gurchetan Singh | d118a0e | 2018-01-12 23:31:50 +0000 | [diff] [blame] | 602 | .modifier = DRM_FORMAT_MOD_LINEAR, |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 603 | .use_flags = use_flag }; |
| 604 | |
| 605 | drv_array_append(kms_items, &item); |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 606 | } |
| 607 | } |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 608 | |
| 609 | drmModeFreeObjectProperties(props); |
| 610 | drmModeFreePlane(plane); |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 611 | } |
| 612 | |
| 613 | drmModeFreePlaneResources(resources); |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 614 | out: |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 615 | if (kms_items && !drv_array_size(kms_items)) { |
| 616 | drv_array_destroy(kms_items); |
| 617 | return NULL; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 618 | } |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 619 | |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 620 | return kms_items; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 621 | } |
| 622 | |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 623 | int drv_modify_linear_combinations(struct driver *drv) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 624 | { |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 625 | uint32_t i, j; |
| 626 | struct kms_item *item; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 627 | struct combination *combo; |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 628 | struct drv_array *kms_items; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 629 | |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 630 | /* |
| 631 | * All current drivers can scanout linear XRGB8888/ARGB8888 as a primary |
| 632 | * plane and as a cursor. Some drivers don't support |
| 633 | * drmModeGetPlaneResources, so add the combination here. Note that the |
| 634 | * kernel disregards the alpha component of ARGB unless it's an overlay |
| 635 | * plane. |
| 636 | */ |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 637 | drv_modify_combination(drv, DRM_FORMAT_XRGB8888, &LINEAR_METADATA, |
| 638 | BO_USE_CURSOR | BO_USE_SCANOUT); |
| 639 | drv_modify_combination(drv, DRM_FORMAT_ARGB8888, &LINEAR_METADATA, |
| 640 | BO_USE_CURSOR | BO_USE_SCANOUT); |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 641 | |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 642 | kms_items = drv_query_kms(drv); |
| 643 | if (!kms_items) |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 644 | return 0; |
| 645 | |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 646 | for (i = 0; i < drv_array_size(kms_items); i++) { |
| 647 | item = (struct kms_item *)drv_array_at_idx(kms_items, i); |
| 648 | for (j = 0; j < drv_array_size(drv->combos); j++) { |
| 649 | combo = drv_array_at_idx(drv->combos, j); |
| 650 | if (item->format == combo->format) |
Gurchetan Singh | a1892b2 | 2017-09-28 16:40:52 -0700 | [diff] [blame] | 651 | combo->use_flags |= BO_USE_SCANOUT; |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 652 | } |
| 653 | } |
| 654 | |
Gurchetan Singh | bc9a87d | 2017-11-03 17:17:35 -0700 | [diff] [blame] | 655 | drv_array_destroy(kms_items); |
Gurchetan Singh | 6b41fb5 | 2017-03-01 20:14:39 -0800 | [diff] [blame] | 656 | return 0; |
Gurchetan Singh | 179687e | 2016-10-28 10:07:35 -0700 | [diff] [blame] | 657 | } |
Kristian H. Kristensen | 6061eab | 2017-10-03 13:53:19 -0700 | [diff] [blame] | 658 | |
| 659 | /* |
| 660 | * Pick the best modifier from modifiers, according to the ordering |
| 661 | * given by modifier_order. |
| 662 | */ |
| 663 | uint64_t drv_pick_modifier(const uint64_t *modifiers, uint32_t count, |
| 664 | const uint64_t *modifier_order, uint32_t order_count) |
| 665 | { |
| 666 | uint32_t i, j; |
| 667 | |
| 668 | for (i = 0; i < order_count; i++) { |
| 669 | for (j = 0; j < count; j++) { |
| 670 | if (modifiers[j] == modifier_order[i]) { |
| 671 | return modifiers[j]; |
| 672 | } |
| 673 | } |
| 674 | } |
| 675 | |
| 676 | return DRM_FORMAT_MOD_LINEAR; |
| 677 | } |