Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 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 | |
| 7 | #ifdef DRV_VC4 |
| 8 | |
| 9 | #include <stdio.h> |
| 10 | #include <string.h> |
| 11 | #include <sys/mman.h> |
| 12 | #include <vc4_drm.h> |
| 13 | #include <xf86drm.h> |
| 14 | |
| 15 | #include "drv_priv.h" |
| 16 | #include "helpers.h" |
| 17 | #include "util.h" |
| 18 | |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 19 | static const uint32_t render_target_formats[] = { DRM_FORMAT_ARGB8888, DRM_FORMAT_RGB565, |
| 20 | DRM_FORMAT_XRGB8888 }; |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 21 | |
| 22 | static int vc4_init(struct driver *drv) |
| 23 | { |
Gurchetan Singh | 8ac0c9a | 2017-05-15 09:34:22 -0700 | [diff] [blame] | 24 | int ret; |
| 25 | ret = drv_add_combinations(drv, render_target_formats, ARRAY_SIZE(render_target_formats), |
| 26 | &LINEAR_METADATA, BO_USE_RENDER_MASK); |
| 27 | if (ret) |
| 28 | return ret; |
| 29 | |
| 30 | return drv_modify_linear_combinations(drv); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 31 | } |
| 32 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 33 | static int vc4_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] | 34 | uint64_t use_flags) |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 35 | { |
| 36 | int ret; |
| 37 | size_t plane; |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 38 | uint32_t stride; |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 39 | struct drm_vc4_create_bo bo_create; |
| 40 | |
Gurchetan Singh | 6423ecb | 2017-03-29 08:23:40 -0700 | [diff] [blame] | 41 | /* |
| 42 | * Since the ARM L1 cache line size is 64 bytes, align to that as a |
| 43 | * performance optimization. |
| 44 | */ |
| 45 | stride = drv_stride_from_format(format, width, 0); |
| 46 | stride = ALIGN(stride, 64); |
| 47 | drv_bo_from_format(bo, stride, height, format); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 48 | |
| 49 | memset(&bo_create, 0, sizeof(bo_create)); |
| 50 | bo_create.size = bo->total_size; |
| 51 | |
| 52 | ret = drmIoctl(bo->drv->fd, DRM_IOCTL_VC4_CREATE_BO, &bo_create); |
| 53 | if (ret) { |
Gurchetan Singh | 085bff1 | 2017-03-20 13:05:49 -0700 | [diff] [blame] | 54 | fprintf(stderr, "drv: DRM_IOCTL_VC4_GEM_CREATE failed (size=%zu)\n", |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 55 | bo->total_size); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 56 | return ret; |
| 57 | } |
| 58 | |
| 59 | for (plane = 0; plane < bo->num_planes; plane++) |
| 60 | bo->handles[plane].u32 = bo_create.handle; |
| 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
Gurchetan Singh | 47e629b | 2017-11-02 14:07:18 -0700 | [diff] [blame] | 65 | static void *vc4_bo_map(struct bo *bo, struct mapping *mapping, size_t plane, uint32_t map_flags) |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 66 | { |
| 67 | int ret; |
| 68 | struct drm_vc4_mmap_bo bo_map; |
| 69 | |
| 70 | memset(&bo_map, 0, sizeof(bo_map)); |
| 71 | bo_map.handle = bo->handles[0].u32; |
| 72 | |
Gurchetan Singh | 1b1d56a | 2017-03-10 16:25:23 -0800 | [diff] [blame] | 73 | ret = drmCommandWriteRead(bo->drv->fd, DRM_VC4_MMAP_BO, &bo_map, sizeof(bo_map)); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 74 | if (ret) { |
| 75 | fprintf(stderr, "drv: DRM_VC4_MMAP_BO failed\n"); |
| 76 | return MAP_FAILED; |
| 77 | } |
| 78 | |
Gurchetan Singh | 47e629b | 2017-11-02 14:07:18 -0700 | [diff] [blame] | 79 | mapping->vma->length = bo->total_size; |
Gurchetan Singh | cfb8876 | 2017-09-28 17:14:50 -0700 | [diff] [blame] | 80 | return mmap(0, bo->total_size, drv_get_prot(map_flags), MAP_SHARED, bo->drv->fd, |
| 81 | bo_map.offset); |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 82 | } |
| 83 | |
Gurchetan Singh | 3e9d383 | 2017-10-31 10:36:25 -0700 | [diff] [blame] | 84 | const struct backend backend_vc4 = { |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 85 | .name = "vc4", |
| 86 | .init = vc4_init, |
| 87 | .bo_create = vc4_bo_create, |
| 88 | .bo_import = drv_prime_bo_import, |
| 89 | .bo_destroy = drv_gem_bo_destroy, |
| 90 | .bo_map = vc4_bo_map, |
Gurchetan Singh | ba6bd50 | 2017-09-18 15:29:47 -0700 | [diff] [blame] | 91 | .bo_unmap = drv_bo_munmap, |
Niklas Schulze | 878fed4 | 2017-02-08 15:29:21 +0100 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | #endif |