2009-03-04 03:31:44 +00:00
|
|
|
/*
|
2012-02-02 23:14:13 +00:00
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
2009-03-04 03:31:44 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <utils/Log.h>
|
|
|
|
|
|
|
|
#include "DisplayHardware/DisplayHardwareBase.h"
|
|
|
|
#include "SurfaceFlinger.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
namespace android {
|
|
|
|
|
2011-04-18 23:25:40 +00:00
|
|
|
static char const * const kSleepFileName = "/sys/power/wait_for_fb_sleep";
|
|
|
|
static char const * const kWakeFileName = "/sys/power/wait_for_fb_wake";
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
DisplayHardwareBase::DisplayEventThread::DisplayEventThread(
|
2009-03-04 03:31:44 +00:00
|
|
|
const sp<SurfaceFlinger>& flinger)
|
|
|
|
: Thread(false), mFlinger(flinger) {
|
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
DisplayHardwareBase::DisplayEventThread::~DisplayEventThread() {
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
status_t DisplayHardwareBase::DisplayEventThread::initCheck() const {
|
|
|
|
return ((access(kSleepFileName, R_OK) == 0 &&
|
|
|
|
access(kWakeFileName, R_OK) == 0)) ? NO_ERROR : NO_INIT;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
bool DisplayHardwareBase::DisplayEventThread::threadLoop() {
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
if (waitForFbSleep() == NO_ERROR) {
|
2009-03-04 03:31:44 +00:00
|
|
|
sp<SurfaceFlinger> flinger = mFlinger.promote();
|
2011-12-20 16:23:08 +00:00
|
|
|
ALOGD("About to give-up screen, flinger = %p", flinger.get());
|
2009-03-04 03:31:44 +00:00
|
|
|
if (flinger != 0) {
|
|
|
|
mBarrier.close();
|
|
|
|
flinger->screenReleased(0);
|
|
|
|
mBarrier.wait();
|
|
|
|
}
|
2012-02-02 23:14:13 +00:00
|
|
|
if (waitForFbWake() == NO_ERROR) {
|
|
|
|
sp<SurfaceFlinger> flinger = mFlinger.promote();
|
|
|
|
ALOGD("Screen about to return, flinger = %p", flinger.get());
|
|
|
|
if (flinger != 0) {
|
|
|
|
flinger->screenAcquired(0);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
2012-02-02 23:14:13 +00:00
|
|
|
|
|
|
|
// error, exit the thread
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
status_t DisplayHardwareBase::DisplayEventThread::waitForFbSleep() {
|
|
|
|
int err = 0;
|
|
|
|
char buf;
|
|
|
|
int fd = open(kSleepFileName, O_RDONLY, 0);
|
|
|
|
// if the file doesn't exist, the error will be caught in read() below
|
2009-03-04 03:31:44 +00:00
|
|
|
do {
|
2012-02-02 23:14:13 +00:00
|
|
|
err = read(fd, &buf, 1);
|
2009-03-04 03:31:44 +00:00
|
|
|
} while (err < 0 && errno == EINTR);
|
|
|
|
close(fd);
|
2012-02-02 23:14:13 +00:00
|
|
|
ALOGE_IF(err<0, "*** ANDROID_WAIT_FOR_FB_SLEEP failed (%s)", strerror(errno));
|
|
|
|
return err < 0 ? -errno : int(NO_ERROR);
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
status_t DisplayHardwareBase::DisplayEventThread::waitForFbWake() {
|
|
|
|
int err = 0;
|
|
|
|
char buf;
|
|
|
|
int fd = open(kWakeFileName, O_RDONLY, 0);
|
|
|
|
// if the file doesn't exist, the error will be caught in read() below
|
|
|
|
do {
|
|
|
|
err = read(fd, &buf, 1);
|
|
|
|
} while (err < 0 && errno == EINTR);
|
|
|
|
close(fd);
|
|
|
|
ALOGE_IF(err<0, "*** ANDROID_WAIT_FOR_FB_WAKE failed (%s)", strerror(errno));
|
|
|
|
return err < 0 ? -errno : int(NO_ERROR);
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
status_t DisplayHardwareBase::DisplayEventThread::releaseScreen() const {
|
|
|
|
mBarrier.open();
|
2009-03-04 03:31:44 +00:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
DisplayHardwareBase::DisplayHardwareBase(const sp<SurfaceFlinger>& flinger,
|
|
|
|
uint32_t displayIndex)
|
2011-10-11 05:18:55 +00:00
|
|
|
: mScreenAcquired(true)
|
2009-03-04 03:31:44 +00:00
|
|
|
{
|
|
|
|
mDisplayEventThread = new DisplayEventThread(flinger);
|
|
|
|
}
|
|
|
|
|
2012-02-05 10:15:28 +00:00
|
|
|
void DisplayHardwareBase::startSleepManagement() const {
|
|
|
|
if (mDisplayEventThread->initCheck() == NO_ERROR) {
|
|
|
|
mDisplayEventThread->run("DisplayEventThread", PRIORITY_URGENT_DISPLAY);
|
|
|
|
} else {
|
|
|
|
ALOGW("/sys/power/wait_for_fb_{wake|sleep} don't exist");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
DisplayHardwareBase::~DisplayHardwareBase() {
|
2009-03-04 03:31:44 +00:00
|
|
|
// request exit
|
|
|
|
mDisplayEventThread->requestExitAndWait();
|
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
bool DisplayHardwareBase::canDraw() const {
|
2011-10-11 05:18:55 +00:00
|
|
|
return mScreenAcquired;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
void DisplayHardwareBase::releaseScreen() const {
|
2009-03-04 03:31:44 +00:00
|
|
|
status_t err = mDisplayEventThread->releaseScreen();
|
|
|
|
if (err >= 0) {
|
2010-10-11 19:37:43 +00:00
|
|
|
mScreenAcquired = false;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
void DisplayHardwareBase::acquireScreen() const {
|
|
|
|
mScreenAcquired = true;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|
|
|
|
|
2012-02-02 23:14:13 +00:00
|
|
|
bool DisplayHardwareBase::isScreenAcquired() const {
|
2010-10-11 19:37:43 +00:00
|
|
|
return mScreenAcquired;
|
|
|
|
}
|
|
|
|
|
2009-03-04 03:31:44 +00:00
|
|
|
}; // namespace android
|