Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Roman Stratiienko | b2e9fe2 | 2020-10-03 10:52:36 +0300 | [diff] [blame] | 17 | #define LOG_TAG "hwc-bufferinfo-minigbm" |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 18 | |
Roman Stratiienko | b2e9fe2 | 2020-10-03 10:52:36 +0300 | [diff] [blame] | 19 | #include "BufferInfoMinigbm.h" |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 20 | |
Roman Stratiienko | b2e9fe2 | 2020-10-03 10:52:36 +0300 | [diff] [blame] | 21 | #include <xf86drm.h> |
| 22 | #include <xf86drmMode.h> |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 23 | |
Roman Stratiienko | 1e053b4 | 2021-10-25 22:54:20 +0300 | [diff] [blame] | 24 | #include <cerrno> |
| 25 | |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 26 | #include "cros_gralloc_handle.h" |
Roman Stratiienko | d21071f | 2021-03-09 21:56:50 +0200 | [diff] [blame] | 27 | #include "utils/log.h" |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 28 | |
Roman Stratiienko | 6e6a93a | 2020-12-13 17:41:04 +0200 | [diff] [blame] | 29 | #define DRM_FORMAT_YVU420_ANDROID fourcc_code('9', '9', '9', '7') |
| 30 | |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 31 | namespace android { |
| 32 | |
Roman Stratiienko | b2e9fe2 | 2020-10-03 10:52:36 +0300 | [diff] [blame] | 33 | LEGACY_BUFFER_INFO_GETTER(BufferInfoMinigbm); |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 34 | |
Roman Stratiienko | b2e9fe2 | 2020-10-03 10:52:36 +0300 | [diff] [blame] | 35 | int BufferInfoMinigbm::ConvertBoInfo(buffer_handle_t handle, hwc_drm_bo_t *bo) { |
Roman Stratiienko | e2f2c92 | 2021-02-13 10:57:47 +0200 | [diff] [blame] | 36 | auto *gr_handle = (cros_gralloc_handle *)handle; |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 37 | if (!gr_handle) |
| 38 | return -EINVAL; |
| 39 | |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 40 | bo->width = gr_handle->width; |
| 41 | bo->height = gr_handle->height; |
John Stultz | 616fb22 | 2018-08-24 16:08:57 -0700 | [diff] [blame] | 42 | bo->hal_format = gr_handle->droid_format; |
Roman Stratiienko | 6e6a93a | 2020-12-13 17:41:04 +0200 | [diff] [blame] | 43 | |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 44 | bo->format = gr_handle->format; |
Roman Stratiienko | 6e6a93a | 2020-12-13 17:41:04 +0200 | [diff] [blame] | 45 | if (bo->format == DRM_FORMAT_YVU420_ANDROID) |
| 46 | bo->format = DRM_FORMAT_YVU420; |
| 47 | |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 48 | bo->usage = gr_handle->usage; |
Roman Stratiienko | 6e6a93a | 2020-12-13 17:41:04 +0200 | [diff] [blame] | 49 | |
| 50 | for (int i = 0; i < gr_handle->num_planes; i++) { |
| 51 | bo->modifiers[i] = gr_handle->format_modifier; |
| 52 | bo->prime_fds[i] = gr_handle->fds[i]; |
| 53 | bo->pitches[i] = gr_handle->strides[i]; |
| 54 | bo->offsets[i] = gr_handle->offsets[i]; |
| 55 | } |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 56 | |
Roman Stratiienko | 4163efc | 2019-12-06 12:30:28 +0200 | [diff] [blame] | 57 | return 0; |
Alistair Strachan | 71edaca | 2018-05-02 17:01:49 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 60 | } // namespace android |