You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1641 lines
48 KiB
1641 lines
48 KiB
/*
|
|
* Copyright (C) 2018 Fuzhou Rockchip Electronics Co.Ltd.
|
|
*
|
|
* Modification based on code covered by the Apache License, Version 2.0 (the "License").
|
|
* You may not use this software except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS TO YOU ON AN "AS IS" BASIS
|
|
* AND ANY AND ALL WARRANTIES AND REPRESENTATIONS WITH RESPECT TO SUCH SOFTWARE, WHETHER EXPRESS,
|
|
* IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF TITLE,
|
|
* NON-INFRINGEMENT, MERCHANTABILITY, SATISFACTROY QUALITY, ACCURACY OR FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED.
|
|
*
|
|
* IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* Copyright (C) 2015 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-drm-resources"
|
|
|
|
#include "drmconnector.h"
|
|
#include "drmcrtc.h"
|
|
#include "drmencoder.h"
|
|
#include "drmeventlistener.h"
|
|
#include "drmplane.h"
|
|
#include "drmresources.h"
|
|
|
|
#include <cinttypes>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <stdint.h>
|
|
#include <xf86drm.h>
|
|
#include <xf86drmMode.h>
|
|
|
|
#ifdef ANDROID_P
|
|
#include <log/log.h>
|
|
#else
|
|
#include <cutils/log.h>
|
|
#endif
|
|
|
|
#include <cutils/properties.h>
|
|
#include <drm_fourcc.h>
|
|
#include <tinyxml2.h>
|
|
|
|
#include <inttypes.h>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <assert.h>
|
|
|
|
#include "hwc_rockchip.h"
|
|
|
|
//you can define it in external/libdrm/include/drm/drm.h
|
|
#if DRM_DRIVER_VERSION==2
|
|
#define DRM_CLIENT_CAP_SHARE_PLANES 6
|
|
#define DRM_CLIENT_CAP_ASPECT_RATIO 4
|
|
#else
|
|
#define DRM_CLIENT_CAP_SHARE_PLANES 4
|
|
#endif
|
|
|
|
#define DRM_ATOMIC_ADD_PROP(object_id, prop_id, value) \
|
|
if (prop_id) { \
|
|
ret = drmModeAtomicAddProperty(pset, object_id, prop_id, value); \
|
|
if (ret < 0) { \
|
|
ALOGE("Failed to add prop[%d] to [%d]", prop_id, object_id); \
|
|
} \
|
|
}
|
|
|
|
namespace android {
|
|
|
|
DrmResources::DrmResources() : compositor_(this), event_listener_(this) {
|
|
}
|
|
|
|
DrmResources::~DrmResources() {
|
|
event_listener_.Exit();
|
|
}
|
|
|
|
bool PlaneSortByZpos(const DrmPlane* plane1,const DrmPlane* plane2)
|
|
{
|
|
uint64_t zpos1,zpos2;
|
|
plane1->zpos_property().value(&zpos1);
|
|
plane2->zpos_property().value(&zpos2);
|
|
return zpos1 < zpos2;
|
|
}
|
|
|
|
bool SortByZpos(const PlaneGroup* planeGroup1,const PlaneGroup* planeGroup2)
|
|
{
|
|
return planeGroup1->zpos < planeGroup2->zpos;
|
|
}
|
|
|
|
bool PlaneSortByArea(const DrmPlane* plane1,const DrmPlane* plane2)
|
|
{
|
|
uint64_t area1=0,area2=0;
|
|
if(plane1->area_id_property().id() && plane2->area_id_property().id())
|
|
{
|
|
plane1->area_id_property().value(&area1);
|
|
plane2->area_id_property().value(&area2);
|
|
}
|
|
return area1 < area2;
|
|
}
|
|
|
|
void DrmResources::init_white_modes(void)
|
|
{
|
|
tinyxml2::XMLDocument doc;
|
|
|
|
doc.LoadFile("/vendor/etc/resolution_white.xml");
|
|
|
|
tinyxml2::XMLElement* root=doc.RootElement();
|
|
/* usr tingxml2 to parse resolution.xml */
|
|
if (!root)
|
|
return;
|
|
|
|
tinyxml2::XMLElement* resolution =root->FirstChildElement("resolution");
|
|
|
|
while (resolution) {
|
|
drmModeModeInfo m;
|
|
|
|
#define PARSE(x) \
|
|
tinyxml2::XMLElement* _##x = resolution->FirstChildElement(#x); \
|
|
if (!_##x) { \
|
|
ALOGE("------> failed to parse %s\n", #x); \
|
|
resolution = resolution->NextSiblingElement(); \
|
|
continue; \
|
|
} \
|
|
m.x = atoi(_##x->GetText())
|
|
#define PARSE_HEX(x) \
|
|
tinyxml2::XMLElement* _##x = resolution->FirstChildElement(#x); \
|
|
if (!_##x) { \
|
|
ALOGE("------> failed to parse %s\n", #x); \
|
|
resolution = resolution->NextSiblingElement(); \
|
|
continue; \
|
|
} \
|
|
sscanf(_##x->GetText(), "%x", &m.x);
|
|
|
|
PARSE(clock);
|
|
PARSE(hdisplay);
|
|
PARSE(hsync_start);
|
|
PARSE(hsync_end);
|
|
PARSE(hskew);
|
|
PARSE(vdisplay);
|
|
PARSE(vsync_start);
|
|
PARSE(vsync_end);
|
|
PARSE(vscan);
|
|
PARSE(vrefresh);
|
|
PARSE(htotal);
|
|
PARSE(vtotal);
|
|
PARSE_HEX(flags);
|
|
|
|
DrmMode mode(&m);
|
|
/* add modes in "resolution.xml" to white list */
|
|
white_modes_.push_back(mode);
|
|
resolution = resolution->NextSiblingElement();
|
|
}
|
|
}
|
|
|
|
bool DrmResources::mode_verify(const DrmMode &m) {
|
|
if (!white_modes_.size())
|
|
return true;
|
|
|
|
for (const DrmMode &mode : white_modes_) {
|
|
if (mode.h_display() == m.h_display() && mode.v_display() == m.v_display() &&
|
|
mode.h_total() == m.h_total() && mode.v_total() == m.v_total() &&
|
|
mode.clock() == m.clock() && mode.flags() == m.flags())
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void DrmResources::ConfigurePossibleDisplays()
|
|
{
|
|
char primary_name[PROPERTY_VALUE_MAX];
|
|
char extend_name[PROPERTY_VALUE_MAX];
|
|
int primary_length, extend_length;
|
|
int default_display_possible = 0;
|
|
std::string conn_name;
|
|
char acConnName[50];
|
|
|
|
primary_length = property_get( PROPERTY_TYPE ".hwc.device.primary", primary_name, NULL);
|
|
extend_length = property_get( PROPERTY_TYPE ".hwc.device.extend", extend_name, NULL);
|
|
|
|
/*
|
|
* if unset primary_name or extend_name,get them from baseparameter,by libin
|
|
*/
|
|
if(!primary_length){
|
|
int res = 0;
|
|
res = hwc_get_baseparameter_config(primary_name,0,BP_DEVICE,0);
|
|
if(res){
|
|
ALOGW("BP: hwc get baseparameter err");
|
|
}else{
|
|
primary_length = strlen(primary_name);
|
|
ALOGI_IF(log_level(DBG_INFO),"BP: primary_length = %d",primary_length);
|
|
}
|
|
}
|
|
if(!extend_length){
|
|
int res = 0;
|
|
res = hwc_get_baseparameter_config(extend_name,1,BP_DEVICE,0);
|
|
if(res){
|
|
ALOGE("BP: hwc get baseparameter err");
|
|
}else{
|
|
extend_length = strlen(extend_name);
|
|
ALOGI_IF(log_level(DBG_INFO),"BP: DEBUG extend_length = %d",extend_length);
|
|
}
|
|
}
|
|
|
|
if (!primary_length)
|
|
default_display_possible |= HWC_DISPLAY_PRIMARY_BIT;
|
|
if (!extend_length)
|
|
default_display_possible |= HWC_DISPLAY_EXTERNAL_BIT;
|
|
|
|
for (auto &conn : connectors_) {
|
|
/*
|
|
* build_in connector default only support on primary display
|
|
*/
|
|
if (conn->built_in())
|
|
conn->set_display_possible(default_display_possible & HWC_DISPLAY_PRIMARY_BIT);
|
|
else
|
|
conn->set_display_possible(default_display_possible & HWC_DISPLAY_EXTERNAL_BIT);
|
|
}
|
|
|
|
if (primary_length) {
|
|
std::stringstream ss(primary_name);
|
|
int connector_priority = 0;
|
|
while(getline(ss, conn_name, ',')) {
|
|
for (auto &conn : connectors_) {
|
|
snprintf(acConnName,50,"%s-%d",connector_type_str(conn->get_type()),conn->type_id());
|
|
if (!strcmp(connector_type_str(conn->get_type()), conn_name.c_str()) ||
|
|
!strcmp(acConnName, conn_name.c_str()))
|
|
{
|
|
//ALOGD("Primary_name = %s, connector_name = %s",conn_name.c_str(),connector_type_str(conn->get_type()));
|
|
conn->set_priority(connector_priority);
|
|
conn->set_display_possible(HWC_DISPLAY_PRIMARY_BIT);
|
|
connector_priority++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (extend_length) {
|
|
std::stringstream ss(extend_name);
|
|
int connector_priority = 0;
|
|
while(getline(ss, conn_name, ',')) {
|
|
for (auto &conn : connectors_) {
|
|
snprintf(acConnName,50,"%s-%d",connector_type_str(conn->get_type()),conn->type_id());
|
|
if (!strcmp(connector_type_str(conn->get_type()), conn_name.c_str()) ||
|
|
!strcmp(acConnName, conn_name.c_str()))
|
|
{
|
|
conn->set_priority(connector_priority);
|
|
conn->set_display_possible(conn->possible_displays() | HWC_DISPLAY_EXTERNAL_BIT);
|
|
connector_priority++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
int DrmResources::Init() {
|
|
char path[PROPERTY_VALUE_MAX];
|
|
property_get( PROPERTY_TYPE ".hwc.drm.device", path, "/dev/dri/card0");
|
|
|
|
init_white_modes();
|
|
/* TODO: Use drmOpenControl here instead */
|
|
fd_.Set(open(path, O_RDWR));
|
|
if (fd() < 0) {
|
|
ALOGE("Failed to open dri- %s", strerror(-errno));
|
|
return -ENODEV;
|
|
}
|
|
|
|
int ret = drmSetClientCap(fd(), DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
|
|
if (ret) {
|
|
ALOGE("Failed to set universal plane cap %d", ret);
|
|
return ret;
|
|
}
|
|
|
|
ret = drmSetClientCap(fd(), DRM_CLIENT_CAP_ATOMIC, 1);
|
|
if (ret) {
|
|
ALOGE("Failed to set atomic cap %d", ret);
|
|
return ret;
|
|
}
|
|
|
|
//Enable 3d function.
|
|
ret = drmSetClientCap(fd(), DRM_CLIENT_CAP_STEREO_3D, 1);
|
|
if (ret) {
|
|
ALOGE("Failed to set stereo 3d cap %d", ret);
|
|
return ret;
|
|
}
|
|
|
|
#if USE_MULTI_AREAS
|
|
//Open Multi-area support.
|
|
ret = drmSetClientCap(fd(), DRM_CLIENT_CAP_SHARE_PLANES, 1);
|
|
if (ret) {
|
|
ALOGE("Failed to set share planes %d", ret);
|
|
//return ret;
|
|
}
|
|
#endif
|
|
|
|
#if USE_NO_ASPECT_RATIO
|
|
//Disable Aspect Ratio
|
|
ret = drmSetClientCap(fd(), DRM_CLIENT_CAP_ASPECT_RATIO, 0);
|
|
if (ret) {
|
|
ALOGE("Failed to disable Aspect Ratio %d", ret);
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
drmModeResPtr res = drmModeGetResources(fd());
|
|
if (!res) {
|
|
ALOGE("Failed to get DrmResources resources");
|
|
return -ENODEV;
|
|
}
|
|
|
|
bool found_primary = false;
|
|
int display_num = 1;
|
|
|
|
std::ostringstream out;
|
|
out << "Frame buffers:\n";
|
|
out << "id\tsize\tpitch\n";
|
|
for (int i = 0; !ret && i < res->count_fbs; ++i) {
|
|
drmModeFBPtr fb = drmModeGetFB(fd(), res->fbs[i]);
|
|
if (!fb) {
|
|
ALOGE("Failed to get FB %d", res->fbs[i]);
|
|
ret = -ENODEV;
|
|
break;
|
|
}
|
|
|
|
out << fb->fb_id << "\t("
|
|
<< fb->width << "x"
|
|
<< fb->height << ")\t"
|
|
<< fb->pitch << "\n";
|
|
|
|
drmModeFreeFB(fb);
|
|
}
|
|
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"%s",out.str().c_str());
|
|
out.str("");
|
|
|
|
out << "CRTCs:\n";
|
|
out << "id\tfb\tpos\tsize\n";
|
|
|
|
for (int i = 0; !ret && i < res->count_crtcs; ++i) {
|
|
drmModeCrtcPtr c = drmModeGetCrtc(fd(), res->crtcs[i]);
|
|
if (!c) {
|
|
ALOGE("Failed to get crtc %d", res->crtcs[i]);
|
|
ret = -ENODEV;
|
|
break;
|
|
}
|
|
|
|
std::unique_ptr<DrmCrtc> crtc(new DrmCrtc(this, c, i));
|
|
|
|
crtc->dump_crtc(&out);
|
|
out << "\n";
|
|
|
|
drmModeFreeCrtc(c);
|
|
|
|
ret = crtc->Init();
|
|
if (ret) {
|
|
ALOGE("Failed to initialize crtc %d", res->crtcs[i]);
|
|
break;
|
|
}
|
|
crtcs_.emplace_back(std::move(crtc));
|
|
}
|
|
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"%s",out.str().c_str());
|
|
out.str("");
|
|
|
|
out << "Encoders:\n";
|
|
out << "id\tcrtc\ttype\tpossible crtcs\tpossible clones\t\n";
|
|
|
|
for (int i = 0; !ret && i < res->count_encoders; ++i) {
|
|
drmModeEncoderPtr e = drmModeGetEncoder(fd(), res->encoders[i]);
|
|
if (!e) {
|
|
ALOGE("Failed to get encoder %d", res->encoders[i]);
|
|
ret = -ENODEV;
|
|
break;
|
|
}
|
|
|
|
std::vector<DrmCrtc *> possible_crtcs;
|
|
DrmCrtc *current_crtc = NULL;
|
|
for (auto &crtc : crtcs_) {
|
|
if ((1 << crtc->pipe()) & e->possible_crtcs)
|
|
possible_crtcs.push_back(crtc.get());
|
|
|
|
if (crtc->id() == e->crtc_id)
|
|
current_crtc = crtc.get();
|
|
}
|
|
|
|
std::unique_ptr<DrmEncoder> enc(
|
|
new DrmEncoder(this, e, current_crtc, possible_crtcs));
|
|
|
|
enc->dump_encoder(&out);
|
|
out << "\n";
|
|
|
|
drmModeFreeEncoder(e);
|
|
|
|
encoders_.emplace_back(std::move(enc));
|
|
}
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"%s",out.str().c_str());
|
|
out.str("");
|
|
|
|
|
|
out << "Connectors:\n";
|
|
out << "id\tencoder\tstatus\t\ttype\tsize (mm)\tmodes\tencoders\n";
|
|
for (int i = 0; !ret && i < res->count_connectors; ++i) {
|
|
drmModeConnectorPtr c = drmModeGetConnector(fd(), res->connectors[i]);
|
|
if (!c) {
|
|
ALOGE("Failed to get connector %d", res->connectors[i]);
|
|
ret = -ENODEV;
|
|
break;
|
|
}
|
|
|
|
std::vector<DrmEncoder *> possible_encoders;
|
|
DrmEncoder *current_encoder = NULL;
|
|
for (int j = 0; j < c->count_encoders; ++j) {
|
|
for (auto &encoder : encoders_) {
|
|
if (encoder->id() == c->encoders[j])
|
|
possible_encoders.push_back(encoder.get());
|
|
if (encoder->id() == c->encoder_id)
|
|
current_encoder = encoder.get();
|
|
}
|
|
}
|
|
|
|
std::unique_ptr<DrmConnector> conn(
|
|
new DrmConnector(this, c, current_encoder, possible_encoders));
|
|
|
|
conn->dump_connector(&out);
|
|
out << "\n";
|
|
|
|
drmModeFreeConnector(c);
|
|
|
|
ret = conn->Init();
|
|
if (ret) {
|
|
ALOGE("Init connector %d failed", res->connectors[i]);
|
|
break;
|
|
}
|
|
conn->UpdateModes();
|
|
|
|
conn->set_display(display_num);
|
|
display_num++;
|
|
|
|
connectors_.emplace_back(std::move(conn));
|
|
}
|
|
|
|
ConfigurePossibleDisplays();
|
|
SetPrimaryDisplay(NULL);
|
|
for (auto &conn : connectors_) {
|
|
//ALOGD("Find_primary connector_name = %s , state = %d",connector_type_str(conn->get_type()),conn->state() );
|
|
if (!(conn->possible_displays() & HWC_DISPLAY_PRIMARY_BIT))
|
|
continue;
|
|
if (!(conn->possible_displays() & HWC_DISPLAY_PRIMARY_BIT) && !(conn->built_in()))
|
|
continue;
|
|
if (conn->state() != DRM_MODE_CONNECTED)
|
|
continue;
|
|
found_primary = true;
|
|
if(NULL == GetConnectorFromType(HWC_DISPLAY_PRIMARY)){
|
|
SetPrimaryDisplay(conn.get());
|
|
}else{
|
|
if(conn.get()->priority() <
|
|
GetConnectorFromType(HWC_DISPLAY_PRIMARY)->priority())
|
|
SetPrimaryDisplay(conn.get());
|
|
}
|
|
}
|
|
|
|
if (!found_primary) {
|
|
for (auto &conn : connectors_) {
|
|
if (!(conn->possible_displays() & HWC_DISPLAY_PRIMARY_BIT))
|
|
continue;
|
|
if (conn->state() != DRM_MODE_CONNECTED)
|
|
continue;
|
|
found_primary = true;
|
|
if(NULL == GetConnectorFromType(HWC_DISPLAY_PRIMARY)){
|
|
SetPrimaryDisplay(conn.get());
|
|
}else{
|
|
if(conn.get()->priority() <
|
|
GetConnectorFromType(HWC_DISPLAY_PRIMARY)->priority())
|
|
SetPrimaryDisplay(conn.get());
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!found_primary) {
|
|
for (auto &conn : connectors_) {
|
|
if (!(conn->possible_displays() & HWC_DISPLAY_PRIMARY_BIT))
|
|
continue;
|
|
found_primary = true;
|
|
if(NULL == GetConnectorFromType(HWC_DISPLAY_PRIMARY)){
|
|
SetPrimaryDisplay(conn.get());
|
|
}else{
|
|
if(conn.get()->priority() <
|
|
GetConnectorFromType(HWC_DISPLAY_PRIMARY)->priority())
|
|
SetPrimaryDisplay(conn.get());
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!found_primary) {
|
|
for (auto &conn : connectors_) {
|
|
found_primary = true;
|
|
conn->set_display_possible(conn->possible_displays() | HWC_DISPLAY_PRIMARY_BIT);
|
|
SetPrimaryDisplay(conn.get());
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!found_primary) {
|
|
ALOGE("failed to find primary display\n");
|
|
return -ENODEV;
|
|
}
|
|
|
|
SetExtendDisplay(NULL);
|
|
for (auto &conn : connectors_) {
|
|
if (GetConnectorFromType(HWC_DISPLAY_PRIMARY) == conn.get())
|
|
continue;
|
|
if (!(conn->possible_displays() & HWC_DISPLAY_EXTERNAL_BIT))
|
|
continue;
|
|
if (conn->state() != DRM_MODE_CONNECTED)
|
|
continue;
|
|
if(NULL == GetConnectorFromType(HWC_DISPLAY_EXTERNAL)){
|
|
SetExtendDisplay(conn.get());
|
|
}else{
|
|
if(conn.get()->priority() <
|
|
GetConnectorFromType(HWC_DISPLAY_EXTERNAL)->priority())
|
|
SetExtendDisplay(conn.get());
|
|
}
|
|
}
|
|
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"%s",out.str().c_str());
|
|
out.str("");
|
|
|
|
if (res)
|
|
drmModeFreeResources(res);
|
|
|
|
// Catch-all for the above loops
|
|
if (ret)
|
|
return ret;
|
|
|
|
drmModePlaneResPtr plane_res = drmModeGetPlaneResources(fd());
|
|
if (!plane_res) {
|
|
ALOGE("Failed to get plane resources");
|
|
return -ENOENT;
|
|
}
|
|
|
|
out << "Planes:\n";
|
|
out << "id\tcrtc\tfb\tCRTC x,y\tx,y\tgamma size\tpossible crtcs\n";
|
|
|
|
for (uint32_t i = 0; i < plane_res->count_planes; ++i) {
|
|
drmModePlanePtr p = drmModeGetPlane(fd(), plane_res->planes[i]);
|
|
if (!p) {
|
|
ALOGE("Failed to get plane %d", plane_res->planes[i]);
|
|
ret = -ENODEV;
|
|
break;
|
|
}
|
|
|
|
std::unique_ptr<DrmPlane> plane(new DrmPlane(this, p));
|
|
|
|
plane->dump_plane(&out);
|
|
out << "\n";
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"%s",out.str().c_str());
|
|
out.str("");
|
|
|
|
ret = plane->Init();
|
|
if (ret) {
|
|
ALOGE("Init plane %d failed", plane_res->planes[i]);
|
|
break;
|
|
}
|
|
uint64_t share_id,zpos,crtc_id;
|
|
plane->share_id_property().value(&share_id);
|
|
plane->zpos_property().value(&zpos);
|
|
plane->crtc_property().value(&crtc_id);
|
|
|
|
std::vector<PlaneGroup *> ::const_iterator iter;
|
|
for (iter = plane_groups_.begin();
|
|
iter != plane_groups_.end(); ++iter)
|
|
{
|
|
if((*iter)->share_id == share_id /*&& (*iter)->zpos == zpos*/)
|
|
{
|
|
(*iter)->planes.push_back(plane.get());
|
|
break;
|
|
}
|
|
}
|
|
if(iter == plane_groups_.end())
|
|
{
|
|
PlaneGroup* plane_group = new PlaneGroup();
|
|
plane_group->bUse= false;
|
|
plane_group->zpos = zpos;
|
|
plane_group->possible_crtcs = p->possible_crtcs;
|
|
plane_group->share_id = share_id;
|
|
plane_group->planes.push_back(plane.get());
|
|
plane_groups_.push_back(plane_group);
|
|
}
|
|
|
|
for (uint32_t j = 0; j < p->count_formats; j++) {
|
|
if (p->formats[j] == DRM_FORMAT_NV12 ||
|
|
p->formats[j] == DRM_FORMAT_NV21) {
|
|
plane->set_yuv(true);
|
|
}
|
|
}
|
|
sort_planes_.emplace_back(plane.get());
|
|
|
|
drmModeFreePlane(p);
|
|
|
|
planes_.emplace_back(std::move(plane));
|
|
}
|
|
|
|
std::sort(sort_planes_.begin(),sort_planes_.end(),PlaneSortByZpos);
|
|
|
|
for (std::vector<DrmPlane*>::const_iterator iter= sort_planes_.begin();
|
|
iter != sort_planes_.end(); ++iter) {
|
|
uint64_t share_id,zpos;
|
|
(*iter)->share_id_property().value(&share_id);
|
|
(*iter)->zpos_property().value(&zpos);
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"sort_planes_ share_id=%" PRIu64 ",zpos=%" PRIu64 "",share_id,zpos);
|
|
}
|
|
|
|
for (std::vector<PlaneGroup *> ::const_iterator iter = plane_groups_.begin();
|
|
iter != plane_groups_.end(); ++iter)
|
|
{
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"Plane groups: zpos=%d,share_id=%" PRIu64 ",plane size=%zu",
|
|
(*iter)->zpos,(*iter)->share_id,(*iter)->planes.size());
|
|
for(std::vector<DrmPlane*> ::const_iterator iter_plane = (*iter)->planes.begin();
|
|
iter_plane != (*iter)->planes.end(); ++iter_plane)
|
|
{
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"\tPlane id=%d",(*iter_plane)->id());
|
|
}
|
|
}
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"--------------------sort plane--------------------");
|
|
std::sort(plane_groups_.begin(),plane_groups_.end(),SortByZpos);
|
|
for (std::vector<PlaneGroup *> ::const_iterator iter = plane_groups_.begin();
|
|
iter != plane_groups_.end(); ++iter)
|
|
{
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"Plane groups: zpos=%d,share_id=%" PRIu64 ",plane size=%zu,possible_crtcs=0x%x",
|
|
(*iter)->zpos,(*iter)->share_id,(*iter)->planes.size(),(*iter)->possible_crtcs);
|
|
std::sort((*iter)->planes.begin(),(*iter)->planes.end(), PlaneSortByArea);
|
|
for(std::vector<DrmPlane*> ::const_iterator iter_plane = (*iter)->planes.begin();
|
|
iter_plane != (*iter)->planes.end(); ++iter_plane)
|
|
{
|
|
uint64_t area=0;
|
|
if((*iter_plane)->area_id_property().id())
|
|
(*iter_plane)->area_id_property().value(&area);
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"\tPlane id=%d,area id=%" PRIu64 "",(*iter_plane)->id(),area);
|
|
}
|
|
}
|
|
|
|
drmModeFreePlaneResources(plane_res);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = compositor_.Init();
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = event_listener_.Init();
|
|
if (ret) {
|
|
ALOGE("Can't initialize event listener %d", ret);
|
|
return ret;
|
|
}
|
|
|
|
prop_timeline_ = 0;
|
|
hotplug_timeline = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void DrmResources::DisplayChanged(void) {
|
|
enable_changed_ = true;
|
|
};
|
|
|
|
void DrmResources::SetPrimaryDisplay(DrmConnector *c) {
|
|
if (primary_ != c) {
|
|
primary_ = c;
|
|
}
|
|
enable_changed_ = true;
|
|
};
|
|
|
|
void DrmResources::SetExtendDisplay(DrmConnector *c) {
|
|
if (extend_ != c) {
|
|
if (extend_)
|
|
extend_->force_disconnect(false);
|
|
extend_ = c;
|
|
enable_changed_ = true;
|
|
}
|
|
};
|
|
|
|
DrmConnector *DrmResources::GetConnectorFromType(int display_type) const {
|
|
if (display_type == HWC_DISPLAY_PRIMARY)
|
|
return primary_;
|
|
else if (display_type == HWC_DISPLAY_EXTERNAL)
|
|
return extend_;
|
|
return NULL;
|
|
}
|
|
|
|
DrmCrtc *DrmResources::GetCrtcFromConnector(DrmConnector *conn) const {
|
|
DrmEncoder *encoder = conn->encoder();
|
|
if (NULL != encoder)
|
|
return encoder->crtc();
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
DrmPlane *DrmResources::GetPlane(uint32_t id) const {
|
|
for (auto &plane : planes_) {
|
|
if (plane->id() == id)
|
|
return plane.get();
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
uint32_t DrmResources::next_mode_id() {
|
|
return ++mode_id_;
|
|
}
|
|
|
|
void DrmResources::ClearDisplay(void)
|
|
{
|
|
for (int i = 0; i < HWC_NUM_PHYSICAL_DISPLAY_TYPES; i++) {
|
|
DrmConnector *conn = GetConnectorFromType(i);
|
|
if (conn && conn->raw_state() == DRM_MODE_CONNECTED &&
|
|
conn->current_mode().id() && conn->encoder() &&
|
|
conn->encoder()->crtc())
|
|
continue;
|
|
compositor_.ClearDisplay(i);
|
|
}
|
|
}
|
|
|
|
void DrmResources::ClearDisplay(int display)
|
|
{
|
|
if(display >= HWC_NUM_PHYSICAL_DISPLAY_TYPES)
|
|
{
|
|
ALOGE("%s: invalid display %d",__FUNCTION__,display);
|
|
return;
|
|
}
|
|
compositor_.ClearDisplay(display);
|
|
}
|
|
|
|
void DrmResources::ClearAllDisplay(void)
|
|
{
|
|
for (int i = 0; i < HWC_NUM_PHYSICAL_DISPLAY_TYPES; i++) {
|
|
compositor_.ClearDisplay(i);
|
|
}
|
|
}
|
|
|
|
int DrmResources::UpdatePropertys(void)
|
|
{
|
|
int timeline = property_get_int32( PROPERTY_TYPE ".display.timeline", -1);
|
|
int ret;
|
|
/*
|
|
* force update propetry when timeline is zero or not exist.
|
|
*/
|
|
if (timeline && timeline == prop_timeline_)
|
|
return 0;
|
|
|
|
DrmConnector *primary = GetConnectorFromType(HWC_DISPLAY_PRIMARY);
|
|
DrmConnector *extend = GetConnectorFromType(HWC_DISPLAY_EXTERNAL);
|
|
|
|
drmModeAtomicReqPtr pset = drmModeAtomicAlloc();
|
|
if (!pset) {
|
|
ALOGE("Failed to allocate property set");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
if (primary) {
|
|
DRM_ATOMIC_ADD_PROP(primary->id(), primary->brightness_id_property().id(),
|
|
hwc_get_baseparameter_config(NULL,HWC_DISPLAY_PRIMARY,BP_BRIGHTNESS,0))
|
|
DRM_ATOMIC_ADD_PROP(primary->id(), primary->contrast_id_property().id(),
|
|
hwc_get_baseparameter_config(NULL,HWC_DISPLAY_PRIMARY,BP_CONTRAST,0))
|
|
DRM_ATOMIC_ADD_PROP(primary->id(), primary->saturation_id_property().id(),
|
|
hwc_get_baseparameter_config(NULL,HWC_DISPLAY_PRIMARY,BP_SATURATION,0))
|
|
DRM_ATOMIC_ADD_PROP(primary->id(), primary->hue_id_property().id(),
|
|
hwc_get_baseparameter_config(NULL,HWC_DISPLAY_PRIMARY,BP_HUE,0))
|
|
}
|
|
if (extend) {
|
|
DRM_ATOMIC_ADD_PROP(extend->id(), extend->brightness_id_property().id(),
|
|
hwc_get_baseparameter_config(NULL,HWC_DISPLAY_EXTERNAL,BP_BRIGHTNESS,0))
|
|
DRM_ATOMIC_ADD_PROP(extend->id(), extend->contrast_id_property().id(),
|
|
hwc_get_baseparameter_config(NULL,HWC_DISPLAY_EXTERNAL,BP_CONTRAST,0))
|
|
DRM_ATOMIC_ADD_PROP(extend->id(), extend->saturation_id_property().id(),
|
|
hwc_get_baseparameter_config(NULL,HWC_DISPLAY_EXTERNAL,BP_SATURATION,0))
|
|
DRM_ATOMIC_ADD_PROP(extend->id(), extend->hue_id_property().id(),
|
|
hwc_get_baseparameter_config(NULL,HWC_DISPLAY_EXTERNAL,BP_HUE,0))
|
|
}
|
|
|
|
uint32_t flags = 0;
|
|
ret = drmModeAtomicCommit(fd_.get(), pset, flags, this);
|
|
if (ret < 0) {
|
|
ALOGE("Failed to commit pset ret=%d\n", ret);
|
|
drmModeAtomicFree(pset);
|
|
return ret;
|
|
}
|
|
drmModeAtomicFree(pset);
|
|
prop_timeline_ = timeline;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
static pthread_mutex_t diplay_route_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
int DrmResources::UpdateDisplayRoute(void)
|
|
{
|
|
bool mode_changed = false;
|
|
int i;
|
|
|
|
pthread_mutex_lock(&diplay_route_mutex);
|
|
for (i = 0; i < HWC_NUM_PHYSICAL_DISPLAY_TYPES; i++) {
|
|
DrmConnector *conn = GetConnectorFromType(i);
|
|
|
|
if (!conn || conn->state() != DRM_MODE_CONNECTED || !conn->current_mode().id())
|
|
continue;
|
|
if (conn->current_mode() == conn->active_mode())
|
|
continue;
|
|
mode_changed = true;
|
|
}
|
|
|
|
if (!enable_changed_ && !mode_changed)
|
|
{
|
|
pthread_mutex_unlock(&diplay_route_mutex);
|
|
return 0;
|
|
}
|
|
|
|
DrmConnector *primary = GetConnectorFromType(HWC_DISPLAY_PRIMARY);
|
|
if (!primary) {
|
|
ALOGE("%s:line=%d Failed to find primary display\n", __FUNCTION__, __LINE__);
|
|
pthread_mutex_unlock(&diplay_route_mutex);
|
|
return -EINVAL;
|
|
}
|
|
DrmConnector *extend = GetConnectorFromType(HWC_DISPLAY_EXTERNAL);
|
|
if (enable_changed_) {
|
|
primary->set_encoder(NULL);
|
|
if (extend)
|
|
extend->set_encoder(NULL);
|
|
if (primary->state() == DRM_MODE_CONNECTED) {
|
|
for (DrmEncoder *enc : primary->possible_encoders()) {
|
|
for (DrmCrtc *crtc : enc->possible_crtcs()) {
|
|
if (crtc->get_afbc()) {
|
|
enc->set_crtc(crtc);
|
|
primary->set_encoder(enc);
|
|
ALOGD_IF(log_level(DBG_VERBOSE), "%s:line=%d set primary with conn[%d] crtc=%d\n",
|
|
__FUNCTION__, __LINE__, primary->id(), crtc->id());
|
|
}
|
|
}
|
|
}
|
|
/*
|
|
* not limit
|
|
*/
|
|
if (!primary->encoder() || !primary->encoder()->crtc()) {
|
|
for (DrmEncoder *enc : primary->possible_encoders()) {
|
|
for (DrmCrtc *crtc : enc->possible_crtcs()) {
|
|
enc->set_crtc(crtc);
|
|
primary->set_encoder(enc);
|
|
ALOGD_IF(log_level(DBG_VERBOSE), "%s:line=%d set primary with conn[%d] crtc=%d\n",
|
|
__FUNCTION__, __LINE__, primary->id(), crtc->id());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (extend && extend->state() == DRM_MODE_CONNECTED) {
|
|
for (DrmEncoder *enc : extend->possible_encoders()) {
|
|
for (DrmCrtc *crtc : enc->possible_crtcs()) {
|
|
if (primary && primary->encoder() && primary->encoder()->crtc()) {
|
|
if (crtc == primary->encoder()->crtc())
|
|
continue;
|
|
}
|
|
ALOGD_IF(log_level(DBG_VERBOSE), "%s:line=%d set extend[%d] with crtc=%d\n",
|
|
__FUNCTION__, __LINE__, extend->id(), crtc->id());
|
|
enc->set_crtc(crtc);
|
|
extend->set_encoder(enc);
|
|
}
|
|
}
|
|
if (!extend->encoder() || !extend->encoder()->crtc()) {
|
|
for (DrmEncoder *enc : extend->possible_encoders()) {
|
|
for (DrmCrtc *crtc : enc->possible_crtcs()) {
|
|
enc->set_crtc(crtc);
|
|
extend->set_encoder(enc);
|
|
ALOGD_IF(log_level(DBG_VERBOSE), "%s:line=%d set extend[%d] with crtc=%d\n",
|
|
__FUNCTION__, __LINE__, extend->id(), crtc->id());
|
|
if (primary && primary->encoder() && primary->encoder()->crtc()) {
|
|
if (crtc == primary->encoder()->crtc()) {
|
|
//RK618 use a encoder(RGB) to display two connector,so if encoder is same
|
|
//not to set encoder.crtc NULL
|
|
if(enc != primary->encoder()){
|
|
primary->encoder()->set_crtc(NULL);
|
|
}
|
|
primary->set_encoder(NULL);
|
|
for (DrmEncoder *primary_enc : primary->possible_encoders()) {
|
|
for (DrmCrtc *primary_crtc : primary_enc->possible_crtcs()) {
|
|
if (extend && extend->encoder() && extend->encoder()->crtc()) {
|
|
if (primary_crtc == extend->encoder()->crtc())
|
|
continue;
|
|
}
|
|
primary_enc->set_crtc(primary_crtc);
|
|
primary->set_encoder(primary_enc);
|
|
ALOGD_IF(log_level(DBG_VERBOSE), "%s:line=%d set primary with conn[%d] crtc=%d\n",
|
|
__FUNCTION__, __LINE__, primary->id(), primary_crtc->id());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if(primary && primary->encoder() && primary->encoder()->crtc())
|
|
{
|
|
DrmCrtc *crtc = primary->encoder()->crtc();
|
|
if(!crtc->get_afbc()){
|
|
#ifdef USE_GRALLOC_4 // Android 11 use Gralloc 4.0
|
|
property_set("vendor.gralloc.no_afbc_for_fb_target_layer", "1");
|
|
#else
|
|
property_set( PROPERTY_TYPE ".gralloc.disable_afbc", "1");
|
|
#endif
|
|
ALOGD_IF(log_level(DBG_VERBOSE), "%s:line=%d primary conn[%d] crtc=%d support AFBC(%d), to disable AFBC\n",
|
|
__FUNCTION__, __LINE__, primary->id(), crtc->id(),crtc->get_afbc());
|
|
}
|
|
}
|
|
|
|
if(primary && !strcmp(connector_type_str(primary->get_type()), "HDMI-A"))
|
|
{
|
|
if (primary && primary->encoder() && primary->encoder()->crtc())
|
|
{
|
|
char primary_conn_name[50];
|
|
snprintf(primary_conn_name,50,"%s-%d",connector_type_str(primary->get_type()),primary->type_id());
|
|
property_set( PROPERTY_TYPE ".hwc.device.main", primary_conn_name);
|
|
}
|
|
else
|
|
property_set( PROPERTY_TYPE ".hwc.device.main", "");
|
|
}
|
|
else
|
|
{
|
|
if (primary && primary->encoder() && primary->encoder()->crtc())
|
|
property_set( PROPERTY_TYPE ".hwc.device.main", connector_type_str(primary->get_type()));
|
|
else
|
|
property_set( PROPERTY_TYPE ".hwc.device.main", "");
|
|
}
|
|
|
|
if(extend && !strcmp(connector_type_str(extend->get_type()), "HDMI-A"))
|
|
{
|
|
if (extend && extend->encoder() && extend->encoder()->crtc())
|
|
{
|
|
char extend_conn_name[50];
|
|
snprintf(extend_conn_name,50,"%s-%d",connector_type_str(extend->get_type()),extend->type_id());
|
|
property_set( PROPERTY_TYPE ".hwc.device.aux", extend_conn_name);
|
|
}
|
|
else
|
|
property_set( PROPERTY_TYPE ".hwc.device.aux", "");
|
|
}
|
|
else
|
|
{
|
|
if (extend && extend->encoder() && extend->encoder()->crtc())
|
|
property_set( PROPERTY_TYPE ".hwc.device.aux", connector_type_str(extend->get_type()));
|
|
else
|
|
property_set( PROPERTY_TYPE ".hwc.device.aux", "");
|
|
}
|
|
|
|
drmModeAtomicReqPtr pset = drmModeAtomicAlloc();
|
|
if (!pset) {
|
|
ALOGE("%s:line=%d Failed to allocate property set",__FUNCTION__, __LINE__);
|
|
pthread_mutex_unlock(&diplay_route_mutex);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
int ret;
|
|
uint32_t blob_id[HWC_NUM_PHYSICAL_DISPLAY_TYPES] = {0};
|
|
|
|
for (i = 0; i < HWC_NUM_PHYSICAL_DISPLAY_TYPES; i++) {
|
|
DrmConnector *conn = GetConnectorFromType(i);
|
|
|
|
if (!conn)
|
|
continue;
|
|
if (conn->state() != DRM_MODE_CONNECTED ||
|
|
!conn->current_mode().id() || !conn->encoder() ||
|
|
!conn->encoder()->crtc()) {
|
|
DRM_ATOMIC_ADD_PROP(conn->id(), conn->crtc_id_property().id(), 0);
|
|
continue;
|
|
}
|
|
|
|
struct drm_mode_modeinfo drm_mode;
|
|
memset(&drm_mode, 0, sizeof(drm_mode));
|
|
conn->current_mode().ToDrmModeModeInfo(&drm_mode);
|
|
ret = CreatePropertyBlob(&drm_mode, sizeof(drm_mode), &blob_id[i]);
|
|
if (ret)
|
|
continue;
|
|
|
|
DrmCrtc *crtc = conn->encoder()->crtc();
|
|
|
|
// connector->SetDpmsMode(DRM_MODE_DPMS_ON);
|
|
// DRM_ATOMIC_ADD_PROP(conn->id(), conn->dpms_property().id(), DRM_MODE_DPMS_ON);
|
|
DRM_ATOMIC_ADD_PROP(conn->id(), conn->crtc_id_property().id(), crtc->id());
|
|
DRM_ATOMIC_ADD_PROP(crtc->id(), crtc->mode_property().id(), blob_id[i]);
|
|
DRM_ATOMIC_ADD_PROP(crtc->id(), crtc->active_property().id(), 1);
|
|
|
|
if (!conn->built_in() && crtc->can_overscan())
|
|
conn->update_overscan(pset, crtc);
|
|
}
|
|
|
|
/*
|
|
* Disable unused connector
|
|
*/
|
|
for (auto &connector : connectors_) {
|
|
bool in_use = false;
|
|
for (i = 0; i < HWC_NUM_PHYSICAL_DISPLAY_TYPES; i++) {
|
|
DrmConnector *conn = GetConnectorFromType(i);
|
|
if (!conn || conn->state() != DRM_MODE_CONNECTED ||
|
|
!conn->current_mode().id() || !conn->encoder() ||
|
|
!conn->encoder()->crtc())
|
|
continue;
|
|
if (conn->id() == connector->id()) {
|
|
in_use = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!in_use) {
|
|
DrmCrtc *mirror = NULL;
|
|
if (connector->state() == DRM_MODE_CONNECTED) {
|
|
for (i = 0; i < HWC_NUM_PHYSICAL_DISPLAY_TYPES; i++) {
|
|
DrmConnector *conn = GetConnectorFromType(i);
|
|
if (!conn || conn->state() != DRM_MODE_CONNECTED ||
|
|
!conn->current_mode().id() || !conn->encoder() ||
|
|
!conn->encoder()->crtc())
|
|
continue;
|
|
if((connector->possible_displays() & conn->possible_displays()) == 0)
|
|
continue;
|
|
for (const DrmMode &conn_mode : connector->modes()) {
|
|
if (conn->current_mode().equal_no_flag_and_type(conn_mode)) {
|
|
mirror = conn->encoder()->crtc();
|
|
break;
|
|
}
|
|
}
|
|
if (mirror)
|
|
break;
|
|
}
|
|
}
|
|
if (mirror) {
|
|
connector->SetDpmsMode(DRM_MODE_DPMS_ON);
|
|
DRM_ATOMIC_ADD_PROP(connector->id(), connector->crtc_id_property().id(),
|
|
mirror->id());
|
|
} else {
|
|
connector->SetDpmsMode(DRM_MODE_DPMS_OFF);
|
|
DRM_ATOMIC_ADD_PROP(connector->id(), connector->crtc_id_property().id(), 0);
|
|
}
|
|
}
|
|
}
|
|
for (auto &crtc : crtcs_) {
|
|
bool in_use = false;
|
|
for (i = 0; i < HWC_NUM_PHYSICAL_DISPLAY_TYPES; i++) {
|
|
DrmConnector *conn = GetConnectorFromType(i);
|
|
if (!conn || conn->state() != DRM_MODE_CONNECTED ||
|
|
!conn->current_mode().id() || !conn->encoder() ||
|
|
!conn->encoder()->crtc())
|
|
continue;
|
|
if (crtc->id() == conn->encoder()->crtc()->id()) {
|
|
in_use = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!in_use) {
|
|
DRM_ATOMIC_ADD_PROP(crtc->id(), crtc->mode_property().id(), 0);
|
|
DRM_ATOMIC_ADD_PROP(crtc->id(), crtc->active_property().id(), 0);
|
|
}
|
|
}
|
|
|
|
|
|
uint32_t flags = DRM_MODE_ATOMIC_ALLOW_MODESET;
|
|
ret = drmModeAtomicCommit(fd_.get(), pset, flags, this);
|
|
if (ret < 0) {
|
|
ALOGE("%s:line=%d Failed to commit pset ret=%d\n", __FUNCTION__, __LINE__, ret);
|
|
drmModeAtomicFree(pset);
|
|
pthread_mutex_unlock(&diplay_route_mutex);
|
|
return ret;
|
|
}
|
|
|
|
for (i = 0; i < HWC_NUM_PHYSICAL_DISPLAY_TYPES; i++) {
|
|
if (blob_id[i])
|
|
DestroyPropertyBlob(blob_id[i]);
|
|
}
|
|
for (i = 0; i < HWC_NUM_PHYSICAL_DISPLAY_TYPES; i++) {
|
|
DrmConnector *conn = GetConnectorFromType(i);
|
|
|
|
if (!conn || conn->state() != DRM_MODE_CONNECTED || !conn->current_mode().id())
|
|
continue;
|
|
|
|
if (!conn->encoder() || !conn->encoder()->crtc())
|
|
continue;
|
|
conn->set_active_mode(conn->current_mode());
|
|
}
|
|
enable_changed_ = false;
|
|
|
|
drmModeAtomicFree(pset);
|
|
|
|
hotplug_timeline++;
|
|
|
|
pthread_mutex_unlock(&diplay_route_mutex);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int DrmResources::timeline(void) {
|
|
return hotplug_timeline;
|
|
}
|
|
|
|
int DrmResources::CreatePropertyBlob(void *data, size_t length,
|
|
uint32_t *blob_id) {
|
|
struct drm_mode_create_blob create_blob;
|
|
memset(&create_blob, 0, sizeof(create_blob));
|
|
create_blob.length = length;
|
|
create_blob.data = (__u64)data;
|
|
|
|
int ret = drmIoctl(fd(), DRM_IOCTL_MODE_CREATEPROPBLOB, &create_blob);
|
|
if (ret) {
|
|
ALOGE("Failed to create mode property blob %d", ret);
|
|
return ret;
|
|
}
|
|
*blob_id = create_blob.blob_id;
|
|
return 0;
|
|
}
|
|
|
|
int DrmResources::DestroyPropertyBlob(uint32_t blob_id) {
|
|
if (!blob_id)
|
|
return 0;
|
|
|
|
struct drm_mode_destroy_blob destroy_blob;
|
|
memset(&destroy_blob, 0, sizeof(destroy_blob));
|
|
destroy_blob.blob_id = (__u32)blob_id;
|
|
int ret = drmIoctl(fd(), DRM_IOCTL_MODE_DESTROYPROPBLOB, &destroy_blob);
|
|
if (ret) {
|
|
ALOGE("Failed to destroy mode property blob %" PRIu32 "/%d", blob_id, ret);
|
|
return ret;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int DrmResources::SetDisplayActiveMode(int display, const DrmMode &mode) {
|
|
DrmComposition* comp(compositor_.CreateComposition(NULL, 0));
|
|
if (!comp) {
|
|
ALOGE("Failed to create composition for dpms on %d", display);
|
|
return -ENOMEM;
|
|
}
|
|
int ret = comp->SetDisplayMode(display, mode);
|
|
if (ret) {
|
|
ALOGE("Failed to add mode to composition on %d %d", display, ret);
|
|
goto final;
|
|
}
|
|
ret = compositor_.QueueComposition(comp, display);
|
|
if (ret) {
|
|
ALOGE("Failed to queue dpms composition on %d %d", display, ret);
|
|
goto final;
|
|
}
|
|
|
|
final:
|
|
delete comp;
|
|
comp = NULL;
|
|
return ret;
|
|
}
|
|
|
|
int DrmResources::SetDpmsMode(int display, uint64_t mode) {
|
|
if (mode != DRM_MODE_DPMS_ON && mode != DRM_MODE_DPMS_OFF) {
|
|
ALOGE("Invalid dpms mode %" PRIu64, mode);
|
|
return -EINVAL;
|
|
}
|
|
|
|
DrmComposition* comp(compositor_.CreateComposition(NULL, 0));
|
|
if (!comp) {
|
|
ALOGE("Failed to create composition for dpms on %d", display);
|
|
return -ENOMEM;
|
|
}
|
|
int ret = comp->SetDpmsMode(display, mode);
|
|
if (ret) {
|
|
ALOGE("Failed to add dpms %" PRIu64 " to composition on %d %d", mode,
|
|
display, ret);
|
|
goto final;
|
|
}
|
|
ret = compositor_.QueueComposition(comp, display);
|
|
if (ret) {
|
|
ALOGE("Failed to queue dpms composition on %d %d", display, ret);
|
|
goto final;
|
|
}
|
|
final:
|
|
delete comp;
|
|
comp = NULL;
|
|
return ret;
|
|
}
|
|
|
|
DrmCompositor *DrmResources::compositor() {
|
|
return &compositor_;
|
|
}
|
|
|
|
DrmEventListener *DrmResources::event_listener() {
|
|
return &event_listener_;
|
|
}
|
|
|
|
int DrmResources::GetProperty(uint32_t obj_id, uint32_t obj_type,
|
|
const char *prop_name, DrmProperty *property) {
|
|
drmModeObjectPropertiesPtr props;
|
|
|
|
props = drmModeObjectGetProperties(fd(), obj_id, obj_type);
|
|
if (!props) {
|
|
ALOGE("Failed to get properties for %d/%x", obj_id, obj_type);
|
|
return -ENODEV;
|
|
}
|
|
|
|
bool found = false;
|
|
for (int i = 0; !found && (size_t)i < props->count_props; ++i) {
|
|
drmModePropertyPtr p = drmModeGetProperty(fd(), props->props[i]);
|
|
if (!strcmp(p->name, prop_name)) {
|
|
property->Init(p, props->prop_values[i]);
|
|
found = true;
|
|
}
|
|
drmModeFreeProperty(p);
|
|
}
|
|
|
|
drmModeFreeObjectProperties(props);
|
|
return found ? 0 : -ENOENT;
|
|
}
|
|
|
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
|
static inline int64_t U642I64(uint64_t val)
|
|
{
|
|
return (int64_t)*((int64_t *)&val);
|
|
}
|
|
|
|
struct type_name {
|
|
int type;
|
|
const char *name;
|
|
};
|
|
|
|
#define type_name_fn(res) \
|
|
const char * DrmResources::res##_str(int type) { \
|
|
unsigned int i; \
|
|
for (i = 0; i < ARRAY_SIZE(res##_names); i++) { \
|
|
if (res##_names[i].type == type) \
|
|
return res##_names[i].name; \
|
|
} \
|
|
return "(invalid)"; \
|
|
}
|
|
|
|
struct type_name encoder_type_names[] = {
|
|
{ DRM_MODE_ENCODER_NONE, "none" },
|
|
{ DRM_MODE_ENCODER_DAC, "DAC" },
|
|
{ DRM_MODE_ENCODER_TMDS, "TMDS" },
|
|
{ DRM_MODE_ENCODER_LVDS, "LVDS" },
|
|
{ DRM_MODE_ENCODER_TVDAC, "TVDAC" },
|
|
};
|
|
|
|
type_name_fn(encoder_type)
|
|
|
|
struct type_name connector_status_names[] = {
|
|
{ DRM_MODE_CONNECTED, "connected" },
|
|
{ DRM_MODE_DISCONNECTED, "disconnected" },
|
|
{ DRM_MODE_UNKNOWNCONNECTION, "unknown" },
|
|
};
|
|
|
|
type_name_fn(connector_status)
|
|
|
|
struct type_name connector_type_names[] = {
|
|
{ DRM_MODE_CONNECTOR_Unknown, "unknown" },
|
|
{ DRM_MODE_CONNECTOR_VGA, "VGA" },
|
|
{ DRM_MODE_CONNECTOR_DVII, "DVI-I" },
|
|
{ DRM_MODE_CONNECTOR_DVID, "DVI-D" },
|
|
{ DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
|
|
{ DRM_MODE_CONNECTOR_Composite, "composite" },
|
|
{ DRM_MODE_CONNECTOR_SVIDEO, "s-video" },
|
|
{ DRM_MODE_CONNECTOR_LVDS, "LVDS" },
|
|
{ DRM_MODE_CONNECTOR_Component, "component" },
|
|
{ DRM_MODE_CONNECTOR_9PinDIN, "9-pin DIN" },
|
|
{ DRM_MODE_CONNECTOR_DisplayPort, "DP" },
|
|
{ DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
|
|
{ DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
|
|
{ DRM_MODE_CONNECTOR_TV, "TV" },
|
|
{ DRM_MODE_CONNECTOR_eDP, "eDP" },
|
|
{ DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
|
|
{ DRM_MODE_CONNECTOR_DSI, "DSI" },
|
|
{ DRM_MODE_CONNECTOR_DPI, "DPI" },
|
|
};
|
|
|
|
type_name_fn(connector_type)
|
|
|
|
#define bit_name_fn(res) \
|
|
const char * res##_str(int type, std::ostringstream *out) { \
|
|
unsigned int i; \
|
|
const char *sep = ""; \
|
|
for (i = 0; i < ARRAY_SIZE(res##_names); i++) { \
|
|
if (type & (1 << i)) { \
|
|
*out << sep << res##_names[i]; \
|
|
sep = ", "; \
|
|
} \
|
|
} \
|
|
return NULL; \
|
|
}
|
|
|
|
static const char *mode_type_names[] = {
|
|
"builtin",
|
|
"clock_c",
|
|
"crtc_c",
|
|
"preferred",
|
|
"default",
|
|
"userdef",
|
|
"driver",
|
|
};
|
|
|
|
static bit_name_fn(mode_type)
|
|
|
|
static const char *mode_flag_names[] = {
|
|
"phsync",
|
|
"nhsync",
|
|
"pvsync",
|
|
"nvsync",
|
|
"interlace",
|
|
"dblscan",
|
|
"csync",
|
|
"pcsync",
|
|
"ncsync",
|
|
"hskew",
|
|
"bcast",
|
|
"pixmux",
|
|
"dblclk",
|
|
"clkdiv2"
|
|
};
|
|
static bit_name_fn(mode_flag)
|
|
|
|
void DrmResources::dump_mode(drmModeModeInfo *mode, std::ostringstream *out) {
|
|
*out << mode->name << " " << mode->vrefresh << " "
|
|
<< mode->hdisplay << " " << mode->hsync_start << " "
|
|
<< mode->hsync_end << " " << mode->htotal << " "
|
|
<< mode->vdisplay << " " << mode->vsync_start << " "
|
|
<< mode->vsync_end << " " << mode->vtotal;
|
|
|
|
*out << " flags: ";
|
|
mode_flag_str(mode->flags, out);
|
|
*out << " types: " << mode->type << "\n";
|
|
mode_type_str(mode->type, out);
|
|
}
|
|
|
|
void DrmResources::dump_blob(uint32_t blob_id, std::ostringstream *out) {
|
|
uint32_t i;
|
|
unsigned char *blob_data;
|
|
drmModePropertyBlobPtr blob;
|
|
|
|
blob = drmModeGetPropertyBlob(fd(), blob_id);
|
|
if (!blob) {
|
|
*out << "\n";
|
|
return;
|
|
}
|
|
|
|
blob_data = (unsigned char*)blob->data;
|
|
|
|
for (i = 0; i < blob->length; i++) {
|
|
if (i % 16 == 0)
|
|
*out << "\n\t\t\t";
|
|
*out << std::hex << blob_data[i];
|
|
}
|
|
*out << "\n";
|
|
|
|
drmModeFreePropertyBlob(blob);
|
|
}
|
|
|
|
bool DrmResources::is_hdr_panel_support_st2084(DrmConnector *conn) const {
|
|
struct hdr_static_metadata* blob_data;
|
|
drmModePropertyBlobPtr blob;
|
|
bool bSupport = false;
|
|
drmModeObjectPropertiesPtr props;
|
|
|
|
props = drmModeObjectGetProperties(fd(), conn->id(), DRM_MODE_OBJECT_CONNECTOR);
|
|
if (!props) {
|
|
ALOGE("Failed to get properties for %d/%x", conn->id(), DRM_MODE_OBJECT_CONNECTOR);
|
|
return false;
|
|
}
|
|
|
|
bool found = false;
|
|
int value;
|
|
for (int i = 0; !found && (size_t)i < props->count_props; ++i) {
|
|
drmModePropertyPtr p = drmModeGetProperty(fd(), props->props[i]);
|
|
if (p && !strcmp(p->name, "HDR_PANEL_METADATA")) {
|
|
|
|
if (!drm_property_type_is(p, DRM_MODE_PROP_BLOB))
|
|
{
|
|
ALOGE("%s:line=%d,is not blob",__FUNCTION__,__LINE__);
|
|
drmModeFreeProperty(p);
|
|
drmModeFreeObjectProperties(props);
|
|
return false;
|
|
}
|
|
|
|
if (!p->count_blobs)
|
|
value = props->prop_values[i];
|
|
else
|
|
value = p->blob_ids[0];
|
|
blob = drmModeGetPropertyBlob(fd(), value);
|
|
if (!blob) {
|
|
ALOGE("%s:line=%d, blob is null",__FUNCTION__,__LINE__);
|
|
drmModeFreeProperty(p);
|
|
drmModeFreeObjectProperties(props);
|
|
return false;
|
|
}
|
|
|
|
blob_data = (struct hdr_static_metadata*)blob->data;
|
|
|
|
bSupport = blob_data->eotf & (1 << SMPTE_ST2084);
|
|
|
|
drmModeFreePropertyBlob(blob);
|
|
|
|
found = true;
|
|
}
|
|
drmModeFreeProperty(p);
|
|
}
|
|
|
|
drmModeFreeObjectProperties(props);
|
|
|
|
return bSupport;
|
|
}
|
|
|
|
bool DrmResources::is_hdr_panel_support_HLG(DrmConnector *conn) const {
|
|
struct hdr_static_metadata* blob_data;
|
|
drmModePropertyBlobPtr blob;
|
|
bool bSupport = false;
|
|
drmModeObjectPropertiesPtr props;
|
|
|
|
props = drmModeObjectGetProperties(fd(), conn->id(), DRM_MODE_OBJECT_CONNECTOR);
|
|
if (!props) {
|
|
ALOGE("Failed to get properties for %d/%x", conn->id(), DRM_MODE_OBJECT_CONNECTOR);
|
|
return false;
|
|
}
|
|
|
|
bool found = false;
|
|
int value;
|
|
for (int i = 0; !found && (size_t)i < props->count_props; ++i) {
|
|
drmModePropertyPtr p = drmModeGetProperty(fd(), props->props[i]);
|
|
if (p && !strcmp(p->name, "HDR_PANEL_METADATA")) {
|
|
|
|
if (!drm_property_type_is(p, DRM_MODE_PROP_BLOB))
|
|
{
|
|
ALOGE("%s:line=%d,is not blob",__FUNCTION__,__LINE__);
|
|
drmModeFreeProperty(p);
|
|
drmModeFreeObjectProperties(props);
|
|
return false;
|
|
}
|
|
|
|
if (!p->count_blobs)
|
|
value = props->prop_values[i];
|
|
else
|
|
value = p->blob_ids[0];
|
|
blob = drmModeGetPropertyBlob(fd(), value);
|
|
if (!blob) {
|
|
ALOGE("%s:line=%d, blob is null",__FUNCTION__,__LINE__);
|
|
drmModeFreeProperty(p);
|
|
drmModeFreeObjectProperties(props);
|
|
return false;
|
|
}
|
|
|
|
blob_data = (struct hdr_static_metadata*)blob->data;
|
|
|
|
bSupport = blob_data->eotf & (1 << HLG);
|
|
|
|
drmModeFreePropertyBlob(blob);
|
|
|
|
found = true;
|
|
}
|
|
drmModeFreeProperty(p);
|
|
}
|
|
|
|
drmModeFreeObjectProperties(props);
|
|
|
|
return bSupport;
|
|
}
|
|
|
|
|
|
bool DrmResources::is_plane_support_hdr2sdr(DrmCrtc *crtc) const
|
|
{
|
|
bool bHdr2sdr = false;
|
|
for (std::vector<PlaneGroup *> ::const_iterator iter = plane_groups_.begin();
|
|
iter != plane_groups_.end(); ++iter)
|
|
{
|
|
for(std::vector<DrmPlane*> ::const_iterator iter_plane = (*iter)->planes.begin();
|
|
iter_plane != (*iter)->planes.end(); ++iter_plane)
|
|
{
|
|
if((*iter_plane)->GetCrtcSupported(*crtc) && (*iter_plane)->get_hdr2sdr())
|
|
{
|
|
bHdr2sdr = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return bHdr2sdr;
|
|
}
|
|
|
|
void DrmResources::dump_prop(drmModePropertyPtr prop,
|
|
uint32_t prop_id, uint64_t value, std::ostringstream *out) {
|
|
int i;
|
|
|
|
*out << "\t" << prop_id;
|
|
if (!prop) {
|
|
*out << "\n";
|
|
return;
|
|
}
|
|
ALOGD_IF(log_level(DBG_VERBOSE),"%s",out->str().c_str());
|
|
out->str("");
|
|
*out << " " << prop->name << ":\n";
|
|
|
|
*out << "\t\tflags:";
|
|
if (prop->flags & DRM_MODE_PROP_PENDING)
|
|
*out << " pending";
|
|
if (prop->flags & DRM_MODE_PROP_IMMUTABLE)
|
|
*out << " immutable";
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_SIGNED_RANGE))
|
|
*out << " signed range";
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_RANGE))
|
|
*out << " range";
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_ENUM))
|
|
*out << " enum";
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_BITMASK))
|
|
*out << " bitmask";
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_BLOB))
|
|
*out << " blob";
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_OBJECT))
|
|
*out << " object";
|
|
*out << "\n";
|
|
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_SIGNED_RANGE)) {
|
|
*out << "\t\tvalues:";
|
|
for (i = 0; i < prop->count_values; i++)
|
|
*out << U642I64(prop->values[i]);
|
|
*out << "\n";
|
|
}
|
|
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_RANGE)) {
|
|
*out << "\t\tvalues:";
|
|
for (i = 0; i < prop->count_values; i++)
|
|
*out << prop->values[i];
|
|
*out << "\n";
|
|
}
|
|
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_ENUM)) {
|
|
*out << "\t\tenums:";
|
|
for (i = 0; i < prop->count_enums; i++)
|
|
*out << prop->enums[i].name << "=" << prop->enums[i].value;
|
|
*out << "\n";
|
|
} else if (drm_property_type_is(prop, DRM_MODE_PROP_BITMASK)) {
|
|
*out << "\t\tvalues:";
|
|
for (i = 0; i < prop->count_enums; i++)
|
|
*out << prop->enums[i].name << "=" << std::hex << (1LL << prop->enums[i].value);
|
|
*out << "\n";
|
|
} else {
|
|
assert(prop->count_enums == 0);
|
|
}
|
|
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_BLOB)) {
|
|
*out << "\t\tblobs:\n";
|
|
for (i = 0; i < prop->count_blobs; i++)
|
|
dump_blob(prop->blob_ids[i], out);
|
|
*out << "\n";
|
|
} else {
|
|
assert(prop->count_blobs == 0);
|
|
}
|
|
|
|
*out << "\t\tvalue:";
|
|
if (drm_property_type_is(prop, DRM_MODE_PROP_BLOB))
|
|
dump_blob(value, out);
|
|
else
|
|
*out << value;
|
|
|
|
*out << "\n";
|
|
}
|
|
|
|
int DrmResources::DumpProperty(uint32_t obj_id, uint32_t obj_type, std::ostringstream *out) {
|
|
drmModePropertyPtr* prop_info;
|
|
drmModeObjectPropertiesPtr props;
|
|
|
|
props = drmModeObjectGetProperties(fd(), obj_id, obj_type);
|
|
if (!props) {
|
|
ALOGE("Failed to get properties for %d/%x", obj_id, obj_type);
|
|
return -ENODEV;
|
|
}
|
|
prop_info = (drmModePropertyPtr*)malloc(props->count_props * sizeof *prop_info);
|
|
if (!prop_info) {
|
|
ALOGE("Malloc drmModePropertyPtr array failed");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
*out << " props:\n";
|
|
for (int i = 0;(size_t)i < props->count_props; ++i) {
|
|
prop_info[i] = drmModeGetProperty(fd(), props->props[i]);
|
|
|
|
dump_prop(prop_info[i],props->props[i],props->prop_values[i],out);
|
|
|
|
drmModeFreeProperty(prop_info[i]);
|
|
}
|
|
|
|
drmModeFreeObjectProperties(props);
|
|
free(prop_info);
|
|
return 0;
|
|
}
|
|
|
|
int DrmResources::DumpPlaneProperty(const DrmPlane &plane, std::ostringstream *out) {
|
|
return DumpProperty(plane.id(), DRM_MODE_OBJECT_PLANE, out);
|
|
}
|
|
|
|
int DrmResources::DumpCrtcProperty(const DrmCrtc &crtc, std::ostringstream *out) {
|
|
return DumpProperty(crtc.id(), DRM_MODE_OBJECT_CRTC, out);
|
|
}
|
|
|
|
int DrmResources::DumpConnectorProperty(const DrmConnector &connector, std::ostringstream *out) {
|
|
return DumpProperty(connector.id(), DRM_MODE_OBJECT_CONNECTOR, out);
|
|
}
|
|
|
|
int DrmResources::GetPlaneProperty(const DrmPlane &plane, const char *prop_name,
|
|
DrmProperty *property) {
|
|
return GetProperty(plane.id(), DRM_MODE_OBJECT_PLANE, prop_name, property);
|
|
}
|
|
|
|
int DrmResources::GetCrtcProperty(const DrmCrtc &crtc, const char *prop_name,
|
|
DrmProperty *property) {
|
|
return GetProperty(crtc.id(), DRM_MODE_OBJECT_CRTC, prop_name, property);
|
|
}
|
|
|
|
int DrmResources::GetConnectorProperty(const DrmConnector &connector,
|
|
const char *prop_name,
|
|
DrmProperty *property) {
|
|
return GetProperty(connector.id(), DRM_MODE_OBJECT_CONNECTOR, prop_name,
|
|
property);
|
|
}
|
|
|
|
std::vector<PlaneGroup *>& DrmResources::GetPlaneGroups() {
|
|
return plane_groups_;
|
|
}
|
|
|
|
}
|