blob: a9e5d395b500f72c9a77735fb2430dd4eaaadccc [file] [log] [blame]
Sean Paulda6270d2015-06-01 14:11:52 -04001/*
2 * Copyright (C) 2015 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
Sean Paul5d8acfc2016-04-21 16:26:27 -040017#ifndef ANDROID_PLATFORM_NV_H_
18#define ANDROID_PLATFORM_NV_H_
Sean Paulda6270d2015-06-01 14:11:52 -040019
20#include "drmresources.h"
Sean Paul63769962016-04-21 16:25:06 -040021#include "platform.h"
Sean Paul4c4646e2016-05-10 04:19:24 -040022#include "platformdrmgeneric.h"
Sean Paulda6270d2015-06-01 14:11:52 -040023
Sean Paul419b5e02015-06-10 14:30:47 -040024#include <stdatomic.h>
25
Sean Paulda6270d2015-06-01 14:11:52 -040026#include <hardware/gralloc.h>
27
28namespace android {
29
30class NvImporter : public Importer {
31 public:
32 NvImporter(DrmResources *drm);
Haixia Shi479412c2015-10-27 10:40:48 -070033 ~NvImporter() override;
Sean Paulda6270d2015-06-01 14:11:52 -040034
35 int Init();
36
Haixia Shi479412c2015-10-27 10:40:48 -070037 int ImportBuffer(buffer_handle_t handle, hwc_drm_bo_t *bo) override;
38 int ReleaseBuffer(hwc_drm_bo_t *bo) override;
Sean Paulda6270d2015-06-01 14:11:52 -040039
40 private:
41 typedef struct NvBuffer {
42 NvImporter *importer;
43 hwc_drm_bo_t bo;
Sean Paul419b5e02015-06-10 14:30:47 -040044 atomic_int ref;
Sean Paulda6270d2015-06-01 14:11:52 -040045 } NvBuffer_t;
46
Sean Paul419b5e02015-06-10 14:30:47 -040047 static void NvGrallocRelease(void *nv_buffer);
Sean Paulda6270d2015-06-01 14:11:52 -040048 void ReleaseBufferImpl(hwc_drm_bo_t *bo);
49
50 NvBuffer_t *GrallocGetNvBuffer(buffer_handle_t handle);
51 int GrallocSetNvBuffer(buffer_handle_t handle, NvBuffer_t *buf);
52
53 DrmResources *drm_;
54
55 const gralloc_module_t *gralloc_;
56};
Sean Paul4c4646e2016-05-10 04:19:24 -040057
58// This stage looks for any layers that contain transformed protected content
59// and puts it in the primary plane since Tegra doesn't support planar rotation
60// on the overlay planes.
61//
62// There are two caveats to this approach: 1- Protected content isn't
63// necessarily planar, but it's usually a safe bet, and 2- This doesn't catch
64// non-protected planar content. If we wanted to fix this, we'd need to import
65// the buffer in this stage and peek at it's format. The overhead of doing this
66// doesn't seem worth it since we'll end up displaying the right thing in both
67// cases anyways.
68class PlanStageProtectedRotated : public Planner::PlanStage {
69 public:
70 int ProvisionPlanes(std::vector<DrmCompositionPlane> *composition,
71 std::map<size_t, DrmHwcLayer *> &layers, DrmCrtc *crtc,
72 std::vector<DrmPlane *> *planes);
73};
Sean Paulda6270d2015-06-01 14:11:52 -040074}
75
76#endif