/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #define LOG_TAG "hwc-platform" #include "drmresources.h" #include "platform.h" #include namespace android { std::vector Planner::GetUsablePlanes( DrmCrtc *crtc, std::vector *primary_planes, std::vector *overlay_planes) { std::vector usable_planes; std::copy_if(primary_planes->begin(), primary_planes->end(), std::back_inserter(usable_planes), [=](DrmPlane *plane) { return plane->GetCrtcSupported(*crtc); }); std::copy_if(overlay_planes->begin(), overlay_planes->end(), std::back_inserter(usable_planes), [=](DrmPlane *plane) { return plane->GetCrtcSupported(*crtc); }); return usable_planes; } std::tuple> Planner::ProvisionPlanes( std::map &layers, DrmCrtc *crtc, std::vector *primary_planes, std::vector *overlay_planes) { std::vector composition; std::vector planes = GetUsablePlanes(crtc, primary_planes, overlay_planes); if (planes.empty()) { ALOGE("Display %d has no usable planes", crtc->display()); return std::make_tuple(-ENODEV, std::vector()); } // Go through the provisioning stages and provision planes for (auto &i : stages_) { int ret = i->ProvisionPlanes(&composition, layers, crtc, &planes); if (ret) { ALOGE("Failed provision stage with ret %d", ret); return std::make_tuple(ret, std::vector()); } } return std::make_tuple(0, std::move(composition)); } int PlanStageProtected::ProvisionPlanes( std::vector *composition, std::map &layers, DrmCrtc *crtc, std::vector *planes) { int ret; int protected_zorder = -1; for (auto i = layers.begin(); i != layers.end();) { if (!i->second->protected_usage()) { ++i; continue; } ret = Emplace(composition, planes, DrmCompositionPlane::Type::kLayer, crtc, i->first); if (ret) ALOGE("Failed to dedicate protected layer! Dropping it."); protected_zorder = i->first; i = layers.erase(i); } return 0; } int PlanStageGreedy::ProvisionPlanes( std::vector *composition, std::map &layers, DrmCrtc *crtc, std::vector *planes) { // Fill up the remaining planes for (auto i = layers.begin(); i != layers.end(); i = layers.erase(i)) { int ret = Emplace(composition, planes, DrmCompositionPlane::Type::kLayer, crtc, i->first); // We don't have any planes left if (ret == -ENOENT) break; else if (ret) ALOGE("Failed to emplace layer %zu, dropping it", i->first); } return 0; } }