summaryrefslogtreecommitdiffstats
path: root/hwc
diff options
context:
space:
mode:
authorLajos Molnar <lajos@ti.com>2011-12-07 18:58:44 -0600
committerErik Gilling <konkers@android.com>2011-12-08 14:19:06 -0800
commit2b86fd0cbeb42123fc20b1f646ee81299e831d16 (patch)
tree57bf87a87a58bbb30e377c89abef1dc295125d85 /hwc
parente14d52936107e390e2464df1e6653efde5409096 (diff)
downloadhardware_ti_omap4xxx-2b86fd0cbeb42123fc20b1f646ee81299e831d16.zip
hardware_ti_omap4xxx-2b86fd0cbeb42123fc20b1f646ee81299e831d16.tar.gz
hardware_ti_omap4xxx-2b86fd0cbeb42123fc20b1f646ee81299e831d16.tar.bz2
hwc: add support for forced docking (in the dock)
If the dock switch is set high, mirroring is disabled and docking transformation is set to 0. Change-Id: Ief0f14874459f3ff435e6b43088f524af322524f Signed-off-by: Lajos Molnar <lajos@ti.com>
Diffstat (limited to 'hwc')
-rw-r--r--hwc/hwc.c37
1 files changed, 30 insertions, 7 deletions
diff --git a/hwc/hwc.c b/hwc/hwc.c
index c894b9a..6de9587 100644
--- a/hwc/hwc.c
+++ b/hwc/hwc.c
@@ -70,6 +70,8 @@ struct omap4_hwc_ext {
struct ext_transform_t dock; /* docking settings */
float lcd_xpy; /* pixel ratio for UI */
__u8 avoid_mode_change; /* use HDMI mode used for mirroring if possible */
+ __u8 force_dock; /* must dock */
+ __u8 hdmi_state; /* whether HDMI is connected */
/* state */
__u8 on_tv; /* using a tv */
@@ -1523,9 +1525,10 @@ err_out:
return err;
}
-static void handle_hotplug(omap4_hwc_device_t *hwc_dev, int state)
+static void handle_hotplug(omap4_hwc_device_t *hwc_dev)
{
omap4_hwc_ext_t *ext = &hwc_dev->ext;
+ __u8 state = ext->hdmi_state;
pthread_mutex_lock(&hwc_dev->lock);
ext->dock.enabled = ext->mirror.enabled = 0;
@@ -1549,6 +1552,13 @@ static void handle_hotplug(omap4_hwc_device_t *hwc_dev, int state)
ext->mirror.hflip = (atoi(value) & EXT_HFLIP) > 0;
ext->mirror.docking = 0;
+ if (ext->force_dock) {
+ /* restrict to docking with no transform */
+ ext->mirror.enabled = 0;
+ ext->dock.rotation = 0;
+ ext->dock.hflip = 0;
+ }
+
/* select best mode for mirroring */
if (ext->mirror.enabled) {
ext->current = ext->mirror;
@@ -1562,13 +1572,14 @@ static void handle_hotplug(omap4_hwc_device_t *hwc_dev, int state)
} else {
ext->last_mode = 0;
}
- LOGI("external display changed (state=%d, mirror={%s tform=%ddeg%s}, dock={%s tform=%ddeg%s}, tv=%d", state,
+ LOGI("external display changed (state=%d, mirror={%s tform=%ddeg%s}, dock={%s tform=%ddeg%s%s}, tv=%d", state,
ext->mirror.enabled ? "enabled" : "disabled",
ext->mirror.rotation * 90,
ext->mirror.hflip ? "+hflip" : "",
ext->dock.enabled ? "enabled" : "disabled",
ext->dock.rotation * 90,
ext->dock.hflip ? "+hflip" : "",
+ ext->force_dock ? " forced" : "",
ext->on_tv);
pthread_mutex_unlock(&hwc_dev->lock);
@@ -1579,7 +1590,9 @@ static void handle_hotplug(omap4_hwc_device_t *hwc_dev, int state)
static void handle_uevents(omap4_hwc_device_t *hwc_dev, const char *s)
{
- if (strcmp(s, "change@/devices/virtual/switch/hdmi"))
+ int dock = !strcmp(s, "change@/devices/virtual/switch/dock");
+ if (!dock &&
+ strcmp(s, "change@/devices/virtual/switch/hdmi"))
return;
s += strlen(s) + 1;
@@ -1587,7 +1600,11 @@ static void handle_uevents(omap4_hwc_device_t *hwc_dev, const char *s)
while(*s) {
if (!strncmp(s, "SWITCH_STATE=", strlen("SWITCH_STATE="))) {
int state = atoi(s + strlen("SWITCH_STATE="));
- handle_hotplug(hwc_dev, state);
+ if (dock)
+ hwc_dev->ext.force_dock = state == 1;
+ else
+ hwc_dev->ext.hdmi_state = state == 1;
+ handle_hotplug(hwc_dev);
}
s += strlen(s) + 1;
@@ -1790,14 +1807,20 @@ static int omap4_hwc_device_open(const hw_module_t* module, const char* name,
/* read switch state */
int sw_fd = open("/sys/class/switch/hdmi/state", O_RDONLY);
- int hpd = 0;
if (sw_fd >= 0) {
char value;
if (read(sw_fd, &value, 1) == 1)
- hpd = value == '1';
+ hwc_dev->ext.hdmi_state = value == '1';
+ close(sw_fd);
+ }
+ sw_fd = open("/sys/class/switch/dock/state", O_RDONLY);
+ if (sw_fd >= 0) {
+ char value;
+ if (read(sw_fd, &value, 1) == 1)
+ hwc_dev->ext.force_dock = value == '1';
close(sw_fd);
}
- handle_hotplug(hwc_dev, hpd);
+ handle_hotplug(hwc_dev);
LOGI("omap4_hwc_device_open(rgb_order=%d nv12_only=%d)",
hwc_dev->flags_rgb_order, hwc_dev->flags_nv12_only);