2009-08-07 17:43:20 +07:00
|
|
|
/*
|
|
|
|
* linux/drivers/video/omap2/dss/display.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Nokia Corporation
|
|
|
|
* Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
|
|
|
|
*
|
|
|
|
* Some code and ideas taken from drivers/video/omap/ driver
|
|
|
|
* by Imre Deak.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 as published by
|
|
|
|
* the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DSS_SUBSYS_NAME "DISPLAY"
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/jiffies.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
|
2011-05-11 18:05:07 +07:00
|
|
|
#include <video/omapdss.h>
|
2009-08-07 17:43:20 +07:00
|
|
|
#include "dss.h"
|
2011-06-21 13:35:36 +07:00
|
|
|
#include "dss_features.h"
|
2009-08-07 17:43:20 +07:00
|
|
|
|
|
|
|
static ssize_t display_enabled_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
|
|
|
bool enabled = dssdev->state != OMAP_DSS_DISPLAY_DISABLED;
|
|
|
|
|
|
|
|
return snprintf(buf, PAGE_SIZE, "%d\n", enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_enabled_store(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
2011-08-15 19:55:55 +07:00
|
|
|
int r;
|
|
|
|
bool enabled;
|
2009-08-07 17:43:20 +07:00
|
|
|
|
2011-08-15 19:55:55 +07:00
|
|
|
r = strtobool(buf, &enabled);
|
2011-04-04 19:40:23 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
2009-08-07 17:43:20 +07:00
|
|
|
if (enabled != (dssdev->state != OMAP_DSS_DISPLAY_DISABLED)) {
|
|
|
|
if (enabled) {
|
2010-01-12 20:12:07 +07:00
|
|
|
r = dssdev->driver->enable(dssdev);
|
2009-08-07 17:43:20 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
} else {
|
2010-01-12 20:12:07 +07:00
|
|
|
dssdev->driver->disable(dssdev);
|
2009-08-07 17:43:20 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_tear_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
|
|
|
return snprintf(buf, PAGE_SIZE, "%d\n",
|
2010-01-11 20:11:01 +07:00
|
|
|
dssdev->driver->get_te ?
|
|
|
|
dssdev->driver->get_te(dssdev) : 0);
|
2009-08-07 17:43:20 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_tear_store(struct device *dev,
|
|
|
|
struct device_attribute *attr, const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
2011-08-15 19:55:55 +07:00
|
|
|
int r;
|
|
|
|
bool te;
|
2009-08-07 17:43:20 +07:00
|
|
|
|
2010-01-11 20:11:01 +07:00
|
|
|
if (!dssdev->driver->enable_te || !dssdev->driver->get_te)
|
2009-08-07 17:43:20 +07:00
|
|
|
return -ENOENT;
|
|
|
|
|
2011-08-15 19:55:55 +07:00
|
|
|
r = strtobool(buf, &te);
|
2011-04-04 19:40:23 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
2010-01-11 20:11:01 +07:00
|
|
|
r = dssdev->driver->enable_te(dssdev, te);
|
2009-08-07 17:43:20 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_timings_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
|
|
|
struct omap_video_timings t;
|
|
|
|
|
2010-01-20 17:11:25 +07:00
|
|
|
if (!dssdev->driver->get_timings)
|
2009-08-07 17:43:20 +07:00
|
|
|
return -ENOENT;
|
|
|
|
|
2010-01-20 17:11:25 +07:00
|
|
|
dssdev->driver->get_timings(dssdev, &t);
|
2009-08-07 17:43:20 +07:00
|
|
|
|
|
|
|
return snprintf(buf, PAGE_SIZE, "%u,%u/%u/%u/%u,%u/%u/%u/%u\n",
|
|
|
|
t.pixel_clock,
|
|
|
|
t.x_res, t.hfp, t.hbp, t.hsw,
|
|
|
|
t.y_res, t.vfp, t.vbp, t.vsw);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_timings_store(struct device *dev,
|
|
|
|
struct device_attribute *attr, const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
2012-06-21 14:51:02 +07:00
|
|
|
struct omap_video_timings t = dssdev->panel.timings;
|
2009-08-07 17:43:20 +07:00
|
|
|
int r, found;
|
|
|
|
|
2010-01-20 17:11:25 +07:00
|
|
|
if (!dssdev->driver->set_timings || !dssdev->driver->check_timings)
|
2009-08-07 17:43:20 +07:00
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
found = 0;
|
|
|
|
#ifdef CONFIG_OMAP2_DSS_VENC
|
|
|
|
if (strncmp("pal", buf, 3) == 0) {
|
|
|
|
t = omap_dss_pal_timings;
|
|
|
|
found = 1;
|
|
|
|
} else if (strncmp("ntsc", buf, 4) == 0) {
|
|
|
|
t = omap_dss_ntsc_timings;
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (!found && sscanf(buf, "%u,%hu/%hu/%hu/%hu,%hu/%hu/%hu/%hu",
|
|
|
|
&t.pixel_clock,
|
|
|
|
&t.x_res, &t.hfp, &t.hbp, &t.hsw,
|
|
|
|
&t.y_res, &t.vfp, &t.vbp, &t.vsw) != 9)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2010-01-20 17:11:25 +07:00
|
|
|
r = dssdev->driver->check_timings(dssdev, &t);
|
2009-08-07 17:43:20 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
2012-09-05 18:09:33 +07:00
|
|
|
dssdev->driver->disable(dssdev);
|
2010-01-20 17:11:25 +07:00
|
|
|
dssdev->driver->set_timings(dssdev, &t);
|
2012-09-05 18:09:33 +07:00
|
|
|
r = dssdev->driver->enable(dssdev);
|
|
|
|
if (r)
|
|
|
|
return r;
|
2009-08-07 17:43:20 +07:00
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_rotate_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
|
|
|
int rotate;
|
2010-01-08 21:52:48 +07:00
|
|
|
if (!dssdev->driver->get_rotate)
|
2009-08-07 17:43:20 +07:00
|
|
|
return -ENOENT;
|
2010-01-08 21:52:48 +07:00
|
|
|
rotate = dssdev->driver->get_rotate(dssdev);
|
2009-08-07 17:43:20 +07:00
|
|
|
return snprintf(buf, PAGE_SIZE, "%u\n", rotate);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_rotate_store(struct device *dev,
|
|
|
|
struct device_attribute *attr, const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
2011-04-04 19:40:23 +07:00
|
|
|
int rot, r;
|
2009-08-07 17:43:20 +07:00
|
|
|
|
2010-01-08 21:52:48 +07:00
|
|
|
if (!dssdev->driver->set_rotate || !dssdev->driver->get_rotate)
|
2009-08-07 17:43:20 +07:00
|
|
|
return -ENOENT;
|
|
|
|
|
2011-04-04 19:40:23 +07:00
|
|
|
r = kstrtoint(buf, 0, &rot);
|
|
|
|
if (r)
|
|
|
|
return r;
|
2009-08-07 17:43:20 +07:00
|
|
|
|
2010-01-08 21:52:48 +07:00
|
|
|
r = dssdev->driver->set_rotate(dssdev, rot);
|
2009-08-07 17:43:20 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_mirror_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
|
|
|
int mirror;
|
2010-01-08 21:30:33 +07:00
|
|
|
if (!dssdev->driver->get_mirror)
|
2009-08-07 17:43:20 +07:00
|
|
|
return -ENOENT;
|
2010-01-08 21:30:33 +07:00
|
|
|
mirror = dssdev->driver->get_mirror(dssdev);
|
2009-08-07 17:43:20 +07:00
|
|
|
return snprintf(buf, PAGE_SIZE, "%u\n", mirror);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_mirror_store(struct device *dev,
|
|
|
|
struct device_attribute *attr, const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
2011-08-15 19:55:55 +07:00
|
|
|
int r;
|
|
|
|
bool mirror;
|
2009-08-07 17:43:20 +07:00
|
|
|
|
2010-01-08 21:30:33 +07:00
|
|
|
if (!dssdev->driver->set_mirror || !dssdev->driver->get_mirror)
|
2009-08-07 17:43:20 +07:00
|
|
|
return -ENOENT;
|
|
|
|
|
2011-08-15 19:55:55 +07:00
|
|
|
r = strtobool(buf, &mirror);
|
2011-04-04 19:40:23 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
2010-01-08 21:30:33 +07:00
|
|
|
r = dssdev->driver->set_mirror(dssdev, mirror);
|
2009-08-07 17:43:20 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_wss_show(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
|
|
|
unsigned int wss;
|
|
|
|
|
2010-01-19 20:53:16 +07:00
|
|
|
if (!dssdev->driver->get_wss)
|
2009-08-07 17:43:20 +07:00
|
|
|
return -ENOENT;
|
|
|
|
|
2010-01-19 20:53:16 +07:00
|
|
|
wss = dssdev->driver->get_wss(dssdev);
|
2009-08-07 17:43:20 +07:00
|
|
|
|
|
|
|
return snprintf(buf, PAGE_SIZE, "0x%05x\n", wss);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_wss_store(struct device *dev,
|
|
|
|
struct device_attribute *attr, const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
2011-04-04 19:40:23 +07:00
|
|
|
u32 wss;
|
2009-08-07 17:43:20 +07:00
|
|
|
int r;
|
|
|
|
|
2010-01-19 20:53:16 +07:00
|
|
|
if (!dssdev->driver->get_wss || !dssdev->driver->set_wss)
|
2009-08-07 17:43:20 +07:00
|
|
|
return -ENOENT;
|
|
|
|
|
2011-04-04 19:40:23 +07:00
|
|
|
r = kstrtou32(buf, 0, &wss);
|
|
|
|
if (r)
|
|
|
|
return r;
|
2009-08-07 17:43:20 +07:00
|
|
|
|
|
|
|
if (wss > 0xfffff)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2010-01-19 20:53:16 +07:00
|
|
|
r = dssdev->driver->set_wss(dssdev, wss);
|
2009-08-07 17:43:20 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DEVICE_ATTR(enabled, S_IRUGO|S_IWUSR,
|
|
|
|
display_enabled_show, display_enabled_store);
|
|
|
|
static DEVICE_ATTR(tear_elim, S_IRUGO|S_IWUSR,
|
|
|
|
display_tear_show, display_tear_store);
|
|
|
|
static DEVICE_ATTR(timings, S_IRUGO|S_IWUSR,
|
|
|
|
display_timings_show, display_timings_store);
|
|
|
|
static DEVICE_ATTR(rotate, S_IRUGO|S_IWUSR,
|
|
|
|
display_rotate_show, display_rotate_store);
|
|
|
|
static DEVICE_ATTR(mirror, S_IRUGO|S_IWUSR,
|
|
|
|
display_mirror_show, display_mirror_store);
|
|
|
|
static DEVICE_ATTR(wss, S_IRUGO|S_IWUSR,
|
|
|
|
display_wss_show, display_wss_store);
|
|
|
|
|
|
|
|
static struct device_attribute *display_sysfs_attrs[] = {
|
|
|
|
&dev_attr_enabled,
|
|
|
|
&dev_attr_tear_elim,
|
|
|
|
&dev_attr_timings,
|
|
|
|
&dev_attr_rotate,
|
|
|
|
&dev_attr_mirror,
|
|
|
|
&dev_attr_wss,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2010-01-11 18:54:33 +07:00
|
|
|
void omapdss_default_get_resolution(struct omap_dss_device *dssdev,
|
2009-08-07 17:43:20 +07:00
|
|
|
u16 *xres, u16 *yres)
|
|
|
|
{
|
|
|
|
*xres = dssdev->panel.timings.x_res;
|
|
|
|
*yres = dssdev->panel.timings.y_res;
|
|
|
|
}
|
2010-01-11 18:54:33 +07:00
|
|
|
EXPORT_SYMBOL(omapdss_default_get_resolution);
|
2009-08-07 17:43:20 +07:00
|
|
|
|
2010-01-11 19:33:40 +07:00
|
|
|
int omapdss_default_get_recommended_bpp(struct omap_dss_device *dssdev)
|
2009-08-07 17:43:20 +07:00
|
|
|
{
|
|
|
|
switch (dssdev->type) {
|
|
|
|
case OMAP_DISPLAY_TYPE_DPI:
|
|
|
|
if (dssdev->phy.dpi.data_lines == 24)
|
|
|
|
return 24;
|
|
|
|
else
|
|
|
|
return 16;
|
|
|
|
|
|
|
|
case OMAP_DISPLAY_TYPE_DBI:
|
|
|
|
if (dssdev->ctrl.pixel_size == 24)
|
|
|
|
return 24;
|
|
|
|
else
|
|
|
|
return 16;
|
2011-09-08 20:12:16 +07:00
|
|
|
case OMAP_DISPLAY_TYPE_DSI:
|
|
|
|
if (dsi_get_pixel_size(dssdev->panel.dsi_pix_fmt) > 16)
|
|
|
|
return 24;
|
|
|
|
else
|
|
|
|
return 16;
|
2009-08-07 17:43:20 +07:00
|
|
|
case OMAP_DISPLAY_TYPE_VENC:
|
|
|
|
case OMAP_DISPLAY_TYPE_SDI:
|
2011-03-08 18:45:54 +07:00
|
|
|
case OMAP_DISPLAY_TYPE_HDMI:
|
2009-08-07 17:43:20 +07:00
|
|
|
return 24;
|
|
|
|
default:
|
|
|
|
BUG();
|
2012-05-18 15:47:02 +07:00
|
|
|
return 0;
|
2009-08-07 17:43:20 +07:00
|
|
|
}
|
|
|
|
}
|
2010-01-11 19:33:40 +07:00
|
|
|
EXPORT_SYMBOL(omapdss_default_get_recommended_bpp);
|
2009-08-07 17:43:20 +07:00
|
|
|
|
2012-03-16 01:00:23 +07:00
|
|
|
void omapdss_default_get_timings(struct omap_dss_device *dssdev,
|
|
|
|
struct omap_video_timings *timings)
|
|
|
|
{
|
|
|
|
*timings = dssdev->panel.timings;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omapdss_default_get_timings);
|
|
|
|
|
2012-09-07 19:48:45 +07:00
|
|
|
/*
|
|
|
|
* Connect dssdev to a manager if the manager is free or if force is specified.
|
|
|
|
* Connect all overlays to that manager if they are free or if force is
|
|
|
|
* specified.
|
|
|
|
*/
|
|
|
|
static int dss_init_connections(struct omap_dss_device *dssdev, bool force)
|
|
|
|
{
|
2012-09-10 16:04:16 +07:00
|
|
|
struct omap_dss_output *out;
|
2012-09-07 19:48:45 +07:00
|
|
|
struct omap_overlay_manager *mgr;
|
|
|
|
int i, r;
|
|
|
|
|
2012-09-10 16:04:16 +07:00
|
|
|
out = omapdss_get_output_from_dssdev(dssdev);
|
|
|
|
|
|
|
|
WARN_ON(dssdev->output);
|
|
|
|
WARN_ON(out->device);
|
|
|
|
|
|
|
|
r = omapdss_output_set_device(out, dssdev);
|
|
|
|
if (r) {
|
|
|
|
DSSERR("failed to connect output to new device\n");
|
|
|
|
return r;
|
|
|
|
}
|
2012-09-07 19:48:45 +07:00
|
|
|
|
|
|
|
mgr = omap_dss_get_overlay_manager(dssdev->channel);
|
|
|
|
|
2012-09-10 16:04:16 +07:00
|
|
|
if (mgr->output && !force)
|
2012-09-07 19:48:45 +07:00
|
|
|
return 0;
|
|
|
|
|
2012-09-10 16:04:16 +07:00
|
|
|
if (mgr->output)
|
|
|
|
mgr->unset_output(mgr);
|
2012-09-07 19:48:45 +07:00
|
|
|
|
2012-09-10 16:04:16 +07:00
|
|
|
r = mgr->set_output(mgr, out);
|
2012-09-07 19:48:45 +07:00
|
|
|
if (r) {
|
2012-09-10 16:04:16 +07:00
|
|
|
DSSERR("failed to connect manager to output of new device\n");
|
|
|
|
|
|
|
|
/* remove the output-device connection we just made */
|
|
|
|
omapdss_output_unset_device(out);
|
2012-09-07 19:48:45 +07:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < omap_dss_get_num_overlays(); ++i) {
|
|
|
|
struct omap_overlay *ovl = omap_dss_get_overlay(i);
|
|
|
|
|
|
|
|
if (!ovl->manager || force) {
|
|
|
|
if (ovl->manager)
|
|
|
|
ovl->unset_manager(ovl);
|
|
|
|
|
|
|
|
r = ovl->set_manager(ovl, mgr);
|
|
|
|
if (r) {
|
|
|
|
DSSERR("failed to set initial overlay\n");
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dss_uninit_connections(struct omap_dss_device *dssdev)
|
|
|
|
{
|
2012-09-10 16:04:16 +07:00
|
|
|
if (dssdev->output) {
|
|
|
|
struct omap_overlay_manager *mgr = dssdev->output->manager;
|
|
|
|
|
|
|
|
if (mgr)
|
|
|
|
mgr->unset_output(mgr);
|
|
|
|
|
|
|
|
omapdss_output_unset_device(dssdev->output);
|
|
|
|
}
|
2012-09-07 19:48:45 +07:00
|
|
|
}
|
|
|
|
|
2012-09-07 19:44:30 +07:00
|
|
|
int dss_init_device(struct platform_device *pdev,
|
2009-08-07 17:43:20 +07:00
|
|
|
struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
struct device_attribute *attr;
|
2012-09-07 19:44:30 +07:00
|
|
|
int i, r;
|
2012-09-07 19:48:45 +07:00
|
|
|
const char *def_disp_name = dss_get_default_display_name();
|
|
|
|
bool force;
|
|
|
|
|
|
|
|
force = def_disp_name && strcmp(def_disp_name, dssdev->name) == 0;
|
|
|
|
dss_init_connections(dssdev, force);
|
2009-08-07 17:43:20 +07:00
|
|
|
|
|
|
|
/* create device sysfs files */
|
|
|
|
i = 0;
|
|
|
|
while ((attr = display_sysfs_attrs[i++]) != NULL) {
|
|
|
|
r = device_create_file(&dssdev->dev, attr);
|
2012-09-07 19:44:30 +07:00
|
|
|
if (r) {
|
|
|
|
for (i = i - 2; i >= 0; i--) {
|
|
|
|
attr = display_sysfs_attrs[i];
|
|
|
|
device_remove_file(&dssdev->dev, attr);
|
|
|
|
}
|
|
|
|
|
2012-09-07 19:48:45 +07:00
|
|
|
dss_uninit_connections(dssdev);
|
|
|
|
|
2009-08-07 17:43:20 +07:00
|
|
|
DSSERR("failed to create sysfs file\n");
|
2012-09-07 19:44:30 +07:00
|
|
|
return r;
|
|
|
|
}
|
2009-08-07 17:43:20 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create display? sysfs links */
|
|
|
|
r = sysfs_create_link(&pdev->dev.kobj, &dssdev->dev.kobj,
|
|
|
|
dev_name(&dssdev->dev));
|
2012-09-07 19:44:30 +07:00
|
|
|
if (r) {
|
|
|
|
while ((attr = display_sysfs_attrs[i++]) != NULL)
|
|
|
|
device_remove_file(&dssdev->dev, attr);
|
|
|
|
|
2012-09-07 19:48:45 +07:00
|
|
|
dss_uninit_connections(dssdev);
|
|
|
|
|
2009-08-07 17:43:20 +07:00
|
|
|
DSSERR("failed to create sysfs display link\n");
|
2012-09-07 19:44:30 +07:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2009-08-07 17:43:20 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
void dss_uninit_device(struct platform_device *pdev,
|
|
|
|
struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
struct device_attribute *attr;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
sysfs_remove_link(&pdev->dev.kobj, dev_name(&dssdev->dev));
|
|
|
|
|
|
|
|
while ((attr = display_sysfs_attrs[i++]) != NULL)
|
|
|
|
device_remove_file(&dssdev->dev, attr);
|
|
|
|
|
2012-09-07 19:48:45 +07:00
|
|
|
dss_uninit_connections(dssdev);
|
2009-08-07 17:43:20 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int dss_suspend_device(struct device *dev, void *data)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
|
|
|
|
|
|
|
if (dssdev->state != OMAP_DSS_DISPLAY_ACTIVE) {
|
|
|
|
dssdev->activate_after_resume = false;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-12 20:12:07 +07:00
|
|
|
if (!dssdev->driver->suspend) {
|
2009-08-07 17:43:20 +07:00
|
|
|
DSSERR("display '%s' doesn't implement suspend\n",
|
|
|
|
dssdev->name);
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2010-01-12 20:12:07 +07:00
|
|
|
r = dssdev->driver->suspend(dssdev);
|
2009-08-07 17:43:20 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
dssdev->activate_after_resume = true;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int dss_suspend_all_devices(void)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
struct bus_type *bus = dss_get_bus();
|
|
|
|
|
|
|
|
r = bus_for_each_dev(bus, NULL, NULL, dss_suspend_device);
|
|
|
|
if (r) {
|
|
|
|
/* resume all displays that were suspended */
|
|
|
|
dss_resume_all_devices();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dss_resume_device(struct device *dev, void *data)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
|
|
|
|
2010-01-12 20:12:07 +07:00
|
|
|
if (dssdev->activate_after_resume && dssdev->driver->resume) {
|
|
|
|
r = dssdev->driver->resume(dssdev);
|
2009-08-07 17:43:20 +07:00
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
dssdev->activate_after_resume = false;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int dss_resume_all_devices(void)
|
|
|
|
{
|
|
|
|
struct bus_type *bus = dss_get_bus();
|
|
|
|
|
|
|
|
return bus_for_each_dev(bus, NULL, NULL, dss_resume_device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dss_disable_device(struct device *dev, void *data)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = to_dss_device(dev);
|
2010-03-24 17:59:38 +07:00
|
|
|
|
|
|
|
if (dssdev->state != OMAP_DSS_DISPLAY_DISABLED)
|
|
|
|
dssdev->driver->disable(dssdev);
|
|
|
|
|
2009-08-07 17:43:20 +07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dss_disable_all_devices(void)
|
|
|
|
{
|
|
|
|
struct bus_type *bus = dss_get_bus();
|
|
|
|
bus_for_each_dev(bus, NULL, NULL, dss_disable_device);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void omap_dss_get_device(struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
get_device(&dssdev->dev);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omap_dss_get_device);
|
|
|
|
|
|
|
|
void omap_dss_put_device(struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
put_device(&dssdev->dev);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omap_dss_put_device);
|
|
|
|
|
|
|
|
/* ref count of the found device is incremented. ref count
|
|
|
|
* of from-device is decremented. */
|
|
|
|
struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from)
|
|
|
|
{
|
|
|
|
struct device *dev;
|
|
|
|
struct device *dev_start = NULL;
|
|
|
|
struct omap_dss_device *dssdev = NULL;
|
|
|
|
|
|
|
|
int match(struct device *dev, void *data)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (from)
|
|
|
|
dev_start = &from->dev;
|
|
|
|
dev = bus_find_device(dss_get_bus(), dev_start, NULL, match);
|
|
|
|
if (dev)
|
|
|
|
dssdev = to_dss_device(dev);
|
|
|
|
if (from)
|
|
|
|
put_device(&from->dev);
|
|
|
|
|
|
|
|
return dssdev;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omap_dss_get_next_device);
|
|
|
|
|
|
|
|
struct omap_dss_device *omap_dss_find_device(void *data,
|
|
|
|
int (*match)(struct omap_dss_device *dssdev, void *data))
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = NULL;
|
|
|
|
|
|
|
|
while ((dssdev = omap_dss_get_next_device(dssdev)) != NULL) {
|
|
|
|
if (match(dssdev, data))
|
|
|
|
return dssdev;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omap_dss_find_device);
|
|
|
|
|
|
|
|
int omap_dss_start_device(struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
if (!dssdev->driver) {
|
|
|
|
DSSDBG("no driver\n");
|
2010-02-17 18:36:48 +07:00
|
|
|
return -ENODEV;
|
2009-08-07 17:43:20 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!try_module_get(dssdev->dev.driver->owner)) {
|
2010-02-17 18:36:48 +07:00
|
|
|
return -ENODEV;
|
2009-08-07 17:43:20 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omap_dss_start_device);
|
|
|
|
|
|
|
|
void omap_dss_stop_device(struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
module_put(dssdev->dev.driver->owner);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omap_dss_stop_device);
|
|
|
|
|