2009-08-07 18:43:20 +08: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 19:05:07 +08:00
|
|
|
#include <video/omapdss.h>
|
2009-08-07 18:43:20 +08:00
|
|
|
#include "dss.h"
|
2011-06-21 14:35:36 +08:00
|
|
|
#include "dss_features.h"
|
2009-08-07 18:43:20 +08:00
|
|
|
|
2010-01-11 19:54:33 +08:00
|
|
|
void omapdss_default_get_resolution(struct omap_dss_device *dssdev,
|
2009-08-07 18:43:20 +08:00
|
|
|
u16 *xres, u16 *yres)
|
|
|
|
{
|
|
|
|
*xres = dssdev->panel.timings.x_res;
|
|
|
|
*yres = dssdev->panel.timings.y_res;
|
|
|
|
}
|
2010-01-11 19:54:33 +08:00
|
|
|
EXPORT_SYMBOL(omapdss_default_get_resolution);
|
2009-08-07 18:43:20 +08:00
|
|
|
|
2010-01-11 20:33:40 +08:00
|
|
|
int omapdss_default_get_recommended_bpp(struct omap_dss_device *dssdev)
|
2009-08-07 18:43:20 +08: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 21:12:16 +08: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 18:43:20 +08:00
|
|
|
case OMAP_DISPLAY_TYPE_VENC:
|
|
|
|
case OMAP_DISPLAY_TYPE_SDI:
|
2011-03-08 19:45:54 +08:00
|
|
|
case OMAP_DISPLAY_TYPE_HDMI:
|
2013-05-13 18:40:33 +08:00
|
|
|
case OMAP_DISPLAY_TYPE_DVI:
|
2009-08-07 18:43:20 +08:00
|
|
|
return 24;
|
|
|
|
default:
|
|
|
|
BUG();
|
2012-05-18 16:47:02 +08:00
|
|
|
return 0;
|
2009-08-07 18:43:20 +08:00
|
|
|
}
|
|
|
|
}
|
2010-01-11 20:33:40 +08:00
|
|
|
EXPORT_SYMBOL(omapdss_default_get_recommended_bpp);
|
2009-08-07 18:43:20 +08:00
|
|
|
|
2012-03-16 02:00:23 +08: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);
|
|
|
|
|
2009-08-07 18:43:20 +08:00
|
|
|
int dss_suspend_all_devices(void)
|
|
|
|
{
|
2012-11-16 21:45:26 +08:00
|
|
|
struct omap_dss_device *dssdev = NULL;
|
|
|
|
|
|
|
|
for_each_dss_dev(dssdev) {
|
|
|
|
if (!dssdev->driver)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE) {
|
|
|
|
dssdev->driver->disable(dssdev);
|
|
|
|
dssdev->activate_after_resume = true;
|
|
|
|
} else {
|
|
|
|
dssdev->activate_after_resume = false;
|
|
|
|
}
|
2009-08-07 18:43:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int dss_resume_all_devices(void)
|
|
|
|
{
|
2012-11-16 21:45:26 +08:00
|
|
|
struct omap_dss_device *dssdev = NULL;
|
2009-08-07 18:43:20 +08:00
|
|
|
|
2012-11-16 21:45:26 +08:00
|
|
|
for_each_dss_dev(dssdev) {
|
|
|
|
if (!dssdev->driver)
|
|
|
|
continue;
|
2010-03-24 18:59:38 +08:00
|
|
|
|
2012-11-16 21:45:26 +08:00
|
|
|
if (dssdev->activate_after_resume) {
|
|
|
|
dssdev->driver->enable(dssdev);
|
|
|
|
dssdev->activate_after_resume = false;
|
|
|
|
}
|
|
|
|
}
|
2010-03-24 18:59:38 +08:00
|
|
|
|
2009-08-07 18:43:20 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dss_disable_all_devices(void)
|
|
|
|
{
|
2012-11-16 21:45:26 +08:00
|
|
|
struct omap_dss_device *dssdev = NULL;
|
|
|
|
|
|
|
|
for_each_dss_dev(dssdev) {
|
|
|
|
if (!dssdev->driver)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE)
|
|
|
|
dssdev->driver->disable(dssdev);
|
|
|
|
}
|
2009-08-07 18:43:20 +08:00
|
|
|
}
|
|
|
|
|
2012-11-16 21:45:26 +08:00
|
|
|
static LIST_HEAD(panel_list);
|
|
|
|
static DEFINE_MUTEX(panel_list_mutex);
|
|
|
|
static int disp_num_counter;
|
|
|
|
|
|
|
|
int omapdss_register_display(struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
struct omap_dss_driver *drv = dssdev->driver;
|
|
|
|
|
|
|
|
snprintf(dssdev->alias, sizeof(dssdev->alias),
|
|
|
|
"display%d", disp_num_counter++);
|
|
|
|
|
|
|
|
if (drv && drv->get_resolution == NULL)
|
|
|
|
drv->get_resolution = omapdss_default_get_resolution;
|
|
|
|
if (drv && drv->get_recommended_bpp == NULL)
|
|
|
|
drv->get_recommended_bpp = omapdss_default_get_recommended_bpp;
|
|
|
|
if (drv && drv->get_timings == NULL)
|
|
|
|
drv->get_timings = omapdss_default_get_timings;
|
|
|
|
|
|
|
|
mutex_lock(&panel_list_mutex);
|
|
|
|
list_add_tail(&dssdev->panel_list, &panel_list);
|
|
|
|
mutex_unlock(&panel_list_mutex);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omapdss_register_display);
|
|
|
|
|
|
|
|
void omapdss_unregister_display(struct omap_dss_device *dssdev)
|
|
|
|
{
|
|
|
|
mutex_lock(&panel_list_mutex);
|
|
|
|
list_del(&dssdev->panel_list);
|
|
|
|
mutex_unlock(&panel_list_mutex);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omapdss_unregister_display);
|
2009-08-07 18:43:20 +08:00
|
|
|
|
2013-05-03 16:40:54 +08:00
|
|
|
struct omap_dss_device *omap_dss_get_device(struct omap_dss_device *dssdev)
|
2009-08-07 18:43:20 +08:00
|
|
|
{
|
2013-05-03 16:40:54 +08:00
|
|
|
if (!try_module_get(dssdev->owner))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (get_device(dssdev->dev) == NULL) {
|
|
|
|
module_put(dssdev->owner);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dssdev;
|
2009-08-07 18:43:20 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omap_dss_get_device);
|
|
|
|
|
|
|
|
void omap_dss_put_device(struct omap_dss_device *dssdev)
|
|
|
|
{
|
OMAPDSS: Add panel dev pointer to dssdev
We are about to remove the dss bus support, which also means that the
omap_dss_device won't be a real device anymore. This means that the
embedded "dev" struct needs to be removed from omap_dss_device.
After we've finished the removal of the dss bus, we see the following
changes:
- struct omap_dss_device won't be a real Linux device anymore, but more
like a "display entity".
- struct omap_dss_driver won't be a Linux device driver, but "display
entity ops".
- The panel devices/drivers won't be omapdss devices/drivers, but
platform/i2c/spi/etc devices/drivers, whichever fits the control
mechanism of the panel.
- The panel drivers will create omap_dss_device and omap_dss_driver,
fill the required fields, and register the omap_dss_device to
omapdss.
- omap_dss_device won't have an embedded dev struct anymore, but a
dev pointer to the actual device that manages the omap_dss_device.
The model described above resembles the model that has been discussed
with CDF (common display framework).
For the duration of the conversion, we temporarily have two devs in the
dssdev, the old "old_dev", which is a full embedded device struct, and the
new "dev", which is a pointer to the device. "old_dev" will be removed
in the future.
For devices belonging to dss bus the dev is initialized to point to
old_dev. This way all the code can just use the dev, for both old and
new style panels.
Both the new and old style panel drivers work during the conversion, and
only after the dss bus support is removed will the old style panels stop
to compile.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
2013-02-14 20:17:28 +08:00
|
|
|
put_device(dssdev->dev);
|
2013-05-03 16:40:54 +08:00
|
|
|
module_put(dssdev->owner);
|
2009-08-07 18:43:20 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omap_dss_put_device);
|
|
|
|
|
2013-03-15 22:33:29 +08:00
|
|
|
/*
|
|
|
|
* ref count of the found device is incremented.
|
|
|
|
* ref count of from-device is decremented.
|
|
|
|
*/
|
2009-08-07 18:43:20 +08:00
|
|
|
struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from)
|
|
|
|
{
|
2013-03-15 22:33:29 +08:00
|
|
|
struct list_head *l;
|
|
|
|
struct omap_dss_device *dssdev;
|
|
|
|
|
|
|
|
mutex_lock(&panel_list_mutex);
|
2009-08-07 18:43:20 +08:00
|
|
|
|
2013-03-15 22:33:29 +08:00
|
|
|
if (list_empty(&panel_list)) {
|
|
|
|
dssdev = NULL;
|
|
|
|
goto out;
|
2009-08-07 18:43:20 +08:00
|
|
|
}
|
|
|
|
|
2013-03-15 22:33:29 +08:00
|
|
|
if (from == NULL) {
|
|
|
|
dssdev = list_first_entry(&panel_list, struct omap_dss_device,
|
|
|
|
panel_list);
|
|
|
|
omap_dss_get_device(dssdev);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
omap_dss_put_device(from);
|
|
|
|
|
|
|
|
list_for_each(l, &panel_list) {
|
|
|
|
dssdev = list_entry(l, struct omap_dss_device, panel_list);
|
|
|
|
if (dssdev == from) {
|
|
|
|
if (list_is_last(l, &panel_list)) {
|
|
|
|
dssdev = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
dssdev = list_entry(l->next, struct omap_dss_device,
|
|
|
|
panel_list);
|
|
|
|
omap_dss_get_device(dssdev);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2009-08-07 18:43:20 +08:00
|
|
|
|
2013-03-15 22:33:29 +08:00
|
|
|
WARN(1, "'from' dssdev not found\n");
|
|
|
|
|
|
|
|
dssdev = NULL;
|
|
|
|
out:
|
|
|
|
mutex_unlock(&panel_list_mutex);
|
2009-08-07 18:43:20 +08:00
|
|
|
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);
|
|
|
|
|
2013-05-10 18:02:32 +08:00
|
|
|
void videomode_to_omap_video_timings(const struct videomode *vm,
|
|
|
|
struct omap_video_timings *ovt)
|
|
|
|
{
|
|
|
|
memset(ovt, 0, sizeof(*ovt));
|
|
|
|
|
|
|
|
ovt->pixel_clock = vm->pixelclock / 1000;
|
|
|
|
ovt->x_res = vm->hactive;
|
|
|
|
ovt->hbp = vm->hback_porch;
|
|
|
|
ovt->hfp = vm->hfront_porch;
|
|
|
|
ovt->hsw = vm->hsync_len;
|
|
|
|
ovt->y_res = vm->vactive;
|
|
|
|
ovt->vbp = vm->vback_porch;
|
|
|
|
ovt->vfp = vm->vfront_porch;
|
|
|
|
ovt->vsw = vm->vsync_len;
|
|
|
|
|
|
|
|
ovt->vsync_level = vm->flags & DISPLAY_FLAGS_VSYNC_HIGH ?
|
|
|
|
OMAPDSS_SIG_ACTIVE_HIGH :
|
|
|
|
OMAPDSS_SIG_ACTIVE_LOW;
|
|
|
|
ovt->hsync_level = vm->flags & DISPLAY_FLAGS_HSYNC_HIGH ?
|
|
|
|
OMAPDSS_SIG_ACTIVE_HIGH :
|
|
|
|
OMAPDSS_SIG_ACTIVE_LOW;
|
|
|
|
ovt->de_level = vm->flags & DISPLAY_FLAGS_DE_HIGH ?
|
|
|
|
OMAPDSS_SIG_ACTIVE_HIGH :
|
2013-10-14 06:44:33 +08:00
|
|
|
OMAPDSS_SIG_ACTIVE_LOW;
|
2013-05-10 18:02:32 +08:00
|
|
|
ovt->data_pclk_edge = vm->flags & DISPLAY_FLAGS_PIXDATA_POSEDGE ?
|
|
|
|
OMAPDSS_DRIVE_SIG_RISING_EDGE :
|
|
|
|
OMAPDSS_DRIVE_SIG_FALLING_EDGE;
|
|
|
|
|
|
|
|
ovt->sync_pclk_edge = OMAPDSS_DRIVE_SIG_OPPOSITE_EDGES;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(videomode_to_omap_video_timings);
|
|
|
|
|
|
|
|
void omap_video_timings_to_videomode(const struct omap_video_timings *ovt,
|
|
|
|
struct videomode *vm)
|
|
|
|
{
|
|
|
|
memset(vm, 0, sizeof(*vm));
|
|
|
|
|
|
|
|
vm->pixelclock = ovt->pixel_clock * 1000;
|
|
|
|
|
|
|
|
vm->hactive = ovt->x_res;
|
|
|
|
vm->hback_porch = ovt->hbp;
|
|
|
|
vm->hfront_porch = ovt->hfp;
|
|
|
|
vm->hsync_len = ovt->hsw;
|
|
|
|
vm->vactive = ovt->y_res;
|
|
|
|
vm->vback_porch = ovt->vbp;
|
|
|
|
vm->vfront_porch = ovt->vfp;
|
|
|
|
vm->vsync_len = ovt->vsw;
|
|
|
|
|
|
|
|
if (ovt->hsync_level == OMAPDSS_SIG_ACTIVE_HIGH)
|
|
|
|
vm->flags |= DISPLAY_FLAGS_HSYNC_HIGH;
|
|
|
|
else
|
|
|
|
vm->flags |= DISPLAY_FLAGS_HSYNC_LOW;
|
|
|
|
|
|
|
|
if (ovt->vsync_level == OMAPDSS_SIG_ACTIVE_HIGH)
|
|
|
|
vm->flags |= DISPLAY_FLAGS_VSYNC_HIGH;
|
|
|
|
else
|
|
|
|
vm->flags |= DISPLAY_FLAGS_VSYNC_LOW;
|
|
|
|
|
|
|
|
if (ovt->de_level == OMAPDSS_SIG_ACTIVE_HIGH)
|
|
|
|
vm->flags |= DISPLAY_FLAGS_DE_HIGH;
|
|
|
|
else
|
|
|
|
vm->flags |= DISPLAY_FLAGS_DE_LOW;
|
|
|
|
|
|
|
|
if (ovt->data_pclk_edge == OMAPDSS_DRIVE_SIG_RISING_EDGE)
|
|
|
|
vm->flags |= DISPLAY_FLAGS_PIXDATA_POSEDGE;
|
|
|
|
else
|
|
|
|
vm->flags |= DISPLAY_FLAGS_PIXDATA_NEGEDGE;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(omap_video_timings_to_videomode);
|