blob: 9281ce80582fd86db1ef9dcd854c4372b3fb819e [file] [log] [blame]
/*
* Copyright (c) 2019, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* 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.
*/
#include <vector>
#include "QtiQmaaComposer.h"
namespace vendor {
namespace qti {
namespace hardware {
namespace display {
namespace composer {
namespace V3_0 {
namespace implementation {
QtiComposerClient *QtiComposerClient::qti_composerclient_instance_ = nullptr;
QtiComposer::QtiComposer() {}
QtiComposer::~QtiComposer() {}
// Methods from ::android::hardware::graphics::composer::V2_1::IComposer follow.
Return<void> QtiComposer::getCapabilities(getCapabilities_cb _hidl_cb) {
const std::array<IComposer::Capability, 3> all_caps = {{
IComposer::Capability::SIDEBAND_STREAM,
IComposer::Capability::SKIP_CLIENT_COLOR_TRANSFORM,
IComposer::Capability::PRESENT_FENCE_IS_NOT_RELIABLE,
}};
uint32_t count = 0;
std::vector<int32_t> composer_caps(count);
composer_caps.resize(count);
std::unordered_set<hwc2_capability_t> Capabilities;
Capabilities.reserve(count);
for (auto cap : composer_caps) {
Capabilities.insert(static_cast<hwc2_capability_t>(cap));
}
std::vector<IComposer::Capability> caps;
for (auto cap : all_caps) {
if (Capabilities.count(static_cast<hwc2_capability_t>(cap)) > 0) {
caps.push_back(cap);
}
}
hidl_vec<IComposer::Capability> caps_reply;
caps_reply.setToExternal(caps.data(), caps.size());
_hidl_cb(caps_reply);
return Void();
}
Return<void> QtiComposer::dumpDebugInfo(dumpDebugInfo_cb _hidl_cb) {
hidl_string buf_reply = "";
_hidl_cb(buf_reply);
return Void();
}
Return<void> QtiComposer::createClient(createClient_cb _hidl_cb) {
// TODO(user): Implement combinedly w.r.t createClient_2_3
sp<QtiComposerClient> composer_client = QtiComposerClient::CreateQtiComposerClientInstance();
if (!composer_client) {
_hidl_cb(Error::NO_RESOURCES, nullptr);
return Void();
}
_hidl_cb(Error::NONE, composer_client);
return Void();
}
// Methods from ::android::hardware::graphics::composer::V2_3::IComposer follow.
Return<void> QtiComposer::createClient_2_3(createClient_2_3_cb _hidl_cb) {
sp<QtiComposerClient> composer_client = QtiComposerClient::CreateQtiComposerClientInstance();
if (!composer_client) {
_hidl_cb(Error::NO_RESOURCES, nullptr);
return Void();
}
_hidl_cb(Error::NONE, composer_client);
return Void();
}
// Methods from ::android::hardware::graphics::composer::V2_4::IComposer follow.
Return<void> QtiComposer::createClient_2_4(createClient_2_4_cb _hidl_cb) {
sp<QtiComposerClient> composer_client = QtiComposerClient::CreateQtiComposerClientInstance();
if (!composer_client) {
_hidl_cb(composer_V2_4::Error::NO_RESOURCES, nullptr);
return Void();
}
_hidl_cb(composer_V2_4::Error::NONE, composer_client);
return Void();
}
QtiComposer *QtiComposer::initialize() {
ALOGI("Creating QtiComposer");
return new QtiComposer();
}
// Methods from ::android::hidl::base::V1_0::IBase follow.
} // namespace implementation
} // namespace V3_0
} // namespace composer
} // namespace display
} // namespace hardware
} // namespace qti
} // namespace vendor