omapfb: copy omapdss & displays for omapfb
This patch makes a copy of the omapdss driver and the omap panel &
encoder drivers for omapfb. The purpose is to separate omapdrm and
omapfb drivers from each other.
Note that this patch only does a direct copy of the files without any
other modifications. The files are not yet used.
The original files are in:
drivers/video/fbdev/omap2/dss/
drivers/video/fbdev/omap2/displays-new/
Here's a more detailed explanation about this and the following patches,
from the introduction mail of the patch series:
A short background on the current status. We have the following
entities:
* omapdss, located in drivers/video/fbdev/omap2/dss/. This is a driver for the
display subsystem IPs used on OMAP (and related) SoCs. It offers only a
kernel internal API, and does not implement anything for fbdev or drm.
* omapdss panels and encoders, located in
drivers/video/fbdev/omap2/displays-new/. These are panel and external encoder
drivers, which use APIs offered by omapdss driver. These also don't implement
anything for fbdev or drm.
* omapdrm, located in drivers/gpu/drm/omapdrm/. This is a drm driver, which
uses omapdss and the panel/encoder drivers to operate the hardware.
* omapfb, located in drivers/video/fbdev/omap2/omapfb/. This is an fbdev
driver, which uses omapdss and the panel/encoder drivers to operate the
hardware.
* omap_vout, located in drivers/media/platform/omap/. This is a v4l2 driver,
which uses omapdss and omapfb to implement a v4l2 API for the video overlays.
So, on the top level, we have either omapdrm, or omapfb+omap_vout. Both of
those use the same low level drivers. Without going to the historical details
why the architecture is like that, I think it's finally time to change that.
The situation with omapfb+omap_vout is that it still works, but no new features
have been added for a long time, and I want to keep it working as it's still
being used. At some point in the future I'd like to remove omapfb and
omap_vout altogether.
Omapdrm, on the other hand, is being actively developed. Sharing the low level
parts with omapfb makes that development more difficult than it should be. It
also "hides" half of the development, as everything happening in the low level
parts resides under fbdev directory, not in the drm directory.
I've been wanting to clean this up for a long time, but I haven't figured out a
very good way to do it. I still haven't, but here's the best way I have come up
with.
This series makes a full copy of the low level parts, omapdss and panel/encoder
drivers. Both omapfb+omap_vout and omapdrm will have their own versions. The
copy omapfb+omap_vout get is a new copy, and the copy that omapdrm gets is just
the current files moved. This way git will associate the omapdrm version with
the old files.
The omapfb+omap_vout versions won't be touched unless there are some big issues
there.
The omapdrm versions can be refactored and cleaned up, as the omapfb support
code is no longer needed. We can perhaps also merge omapdss and omapdrm into
the same kernel module.
This series only does the copy, and the absolutely necessary parts. No further
cleanups are done yet.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Acked-by: Dave Airlie <airlied@gmail.com>
Acked-by: Rob Clark <robdclark@gmail.com>
2015-12-09 16:28:28 +00:00
|
|
|
/*
|
|
|
|
* 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/platform_device.h>
|
|
|
|
#include <linux/sysfs.h>
|
|
|
|
|
2016-05-31 08:43:12 +00:00
|
|
|
#include <video/omapfb_dss.h>
|
omapfb: copy omapdss & displays for omapfb
This patch makes a copy of the omapdss driver and the omap panel &
encoder drivers for omapfb. The purpose is to separate omapdrm and
omapfb drivers from each other.
Note that this patch only does a direct copy of the files without any
other modifications. The files are not yet used.
The original files are in:
drivers/video/fbdev/omap2/dss/
drivers/video/fbdev/omap2/displays-new/
Here's a more detailed explanation about this and the following patches,
from the introduction mail of the patch series:
A short background on the current status. We have the following
entities:
* omapdss, located in drivers/video/fbdev/omap2/dss/. This is a driver for the
display subsystem IPs used on OMAP (and related) SoCs. It offers only a
kernel internal API, and does not implement anything for fbdev or drm.
* omapdss panels and encoders, located in
drivers/video/fbdev/omap2/displays-new/. These are panel and external encoder
drivers, which use APIs offered by omapdss driver. These also don't implement
anything for fbdev or drm.
* omapdrm, located in drivers/gpu/drm/omapdrm/. This is a drm driver, which
uses omapdss and the panel/encoder drivers to operate the hardware.
* omapfb, located in drivers/video/fbdev/omap2/omapfb/. This is an fbdev
driver, which uses omapdss and the panel/encoder drivers to operate the
hardware.
* omap_vout, located in drivers/media/platform/omap/. This is a v4l2 driver,
which uses omapdss and omapfb to implement a v4l2 API for the video overlays.
So, on the top level, we have either omapdrm, or omapfb+omap_vout. Both of
those use the same low level drivers. Without going to the historical details
why the architecture is like that, I think it's finally time to change that.
The situation with omapfb+omap_vout is that it still works, but no new features
have been added for a long time, and I want to keep it working as it's still
being used. At some point in the future I'd like to remove omapfb and
omap_vout altogether.
Omapdrm, on the other hand, is being actively developed. Sharing the low level
parts with omapfb makes that development more difficult than it should be. It
also "hides" half of the development, as everything happening in the low level
parts resides under fbdev directory, not in the drm directory.
I've been wanting to clean this up for a long time, but I haven't figured out a
very good way to do it. I still haven't, but here's the best way I have come up
with.
This series makes a full copy of the low level parts, omapdss and panel/encoder
drivers. Both omapfb+omap_vout and omapdrm will have their own versions. The
copy omapfb+omap_vout get is a new copy, and the copy that omapdrm gets is just
the current files moved. This way git will associate the omapdrm version with
the old files.
The omapfb+omap_vout versions won't be touched unless there are some big issues
there.
The omapdrm versions can be refactored and cleaned up, as the omapfb support
code is no longer needed. We can perhaps also merge omapdss and omapdrm into
the same kernel module.
This series only does the copy, and the absolutely necessary parts. No further
cleanups are done yet.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Acked-by: Dave Airlie <airlied@gmail.com>
Acked-by: Rob Clark <robdclark@gmail.com>
2015-12-09 16:28:28 +00:00
|
|
|
#include "dss.h"
|
|
|
|
|
|
|
|
static ssize_t display_name_show(struct omap_dss_device *dssdev, char *buf)
|
|
|
|
{
|
|
|
|
return snprintf(buf, PAGE_SIZE, "%s\n",
|
|
|
|
dssdev->name ?
|
|
|
|
dssdev->name : "");
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_enabled_show(struct omap_dss_device *dssdev, char *buf)
|
|
|
|
{
|
|
|
|
return snprintf(buf, PAGE_SIZE, "%d\n",
|
|
|
|
omapdss_device_is_enabled(dssdev));
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_enabled_store(struct omap_dss_device *dssdev,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
bool enable;
|
|
|
|
|
|
|
|
r = strtobool(buf, &enable);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
if (enable == omapdss_device_is_enabled(dssdev))
|
|
|
|
return size;
|
|
|
|
|
|
|
|
if (omapdss_device_is_connected(dssdev) == false)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
if (enable) {
|
|
|
|
r = dssdev->driver->enable(dssdev);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
} else {
|
|
|
|
dssdev->driver->disable(dssdev);
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_tear_show(struct omap_dss_device *dssdev, char *buf)
|
|
|
|
{
|
|
|
|
return snprintf(buf, PAGE_SIZE, "%d\n",
|
|
|
|
dssdev->driver->get_te ?
|
|
|
|
dssdev->driver->get_te(dssdev) : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_tear_store(struct omap_dss_device *dssdev,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
bool te;
|
|
|
|
|
|
|
|
if (!dssdev->driver->enable_te || !dssdev->driver->get_te)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
r = strtobool(buf, &te);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
r = dssdev->driver->enable_te(dssdev, te);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_timings_show(struct omap_dss_device *dssdev, char *buf)
|
|
|
|
{
|
|
|
|
struct omap_video_timings t;
|
|
|
|
|
|
|
|
if (!dssdev->driver->get_timings)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
dssdev->driver->get_timings(dssdev, &t);
|
|
|
|
|
|
|
|
return snprintf(buf, PAGE_SIZE, "%u,%u/%u/%u/%u,%u/%u/%u/%u\n",
|
|
|
|
t.pixelclock,
|
|
|
|
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 omap_dss_device *dssdev,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
struct omap_video_timings t = dssdev->panel.timings;
|
|
|
|
int r, found;
|
|
|
|
|
|
|
|
if (!dssdev->driver->set_timings || !dssdev->driver->check_timings)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
found = 0;
|
2015-12-09 17:24:58 +00:00
|
|
|
#ifdef CONFIG_FB_OMAP2_DSS_VENC
|
omapfb: copy omapdss & displays for omapfb
This patch makes a copy of the omapdss driver and the omap panel &
encoder drivers for omapfb. The purpose is to separate omapdrm and
omapfb drivers from each other.
Note that this patch only does a direct copy of the files without any
other modifications. The files are not yet used.
The original files are in:
drivers/video/fbdev/omap2/dss/
drivers/video/fbdev/omap2/displays-new/
Here's a more detailed explanation about this and the following patches,
from the introduction mail of the patch series:
A short background on the current status. We have the following
entities:
* omapdss, located in drivers/video/fbdev/omap2/dss/. This is a driver for the
display subsystem IPs used on OMAP (and related) SoCs. It offers only a
kernel internal API, and does not implement anything for fbdev or drm.
* omapdss panels and encoders, located in
drivers/video/fbdev/omap2/displays-new/. These are panel and external encoder
drivers, which use APIs offered by omapdss driver. These also don't implement
anything for fbdev or drm.
* omapdrm, located in drivers/gpu/drm/omapdrm/. This is a drm driver, which
uses omapdss and the panel/encoder drivers to operate the hardware.
* omapfb, located in drivers/video/fbdev/omap2/omapfb/. This is an fbdev
driver, which uses omapdss and the panel/encoder drivers to operate the
hardware.
* omap_vout, located in drivers/media/platform/omap/. This is a v4l2 driver,
which uses omapdss and omapfb to implement a v4l2 API for the video overlays.
So, on the top level, we have either omapdrm, or omapfb+omap_vout. Both of
those use the same low level drivers. Without going to the historical details
why the architecture is like that, I think it's finally time to change that.
The situation with omapfb+omap_vout is that it still works, but no new features
have been added for a long time, and I want to keep it working as it's still
being used. At some point in the future I'd like to remove omapfb and
omap_vout altogether.
Omapdrm, on the other hand, is being actively developed. Sharing the low level
parts with omapfb makes that development more difficult than it should be. It
also "hides" half of the development, as everything happening in the low level
parts resides under fbdev directory, not in the drm directory.
I've been wanting to clean this up for a long time, but I haven't figured out a
very good way to do it. I still haven't, but here's the best way I have come up
with.
This series makes a full copy of the low level parts, omapdss and panel/encoder
drivers. Both omapfb+omap_vout and omapdrm will have their own versions. The
copy omapfb+omap_vout get is a new copy, and the copy that omapdrm gets is just
the current files moved. This way git will associate the omapdrm version with
the old files.
The omapfb+omap_vout versions won't be touched unless there are some big issues
there.
The omapdrm versions can be refactored and cleaned up, as the omapfb support
code is no longer needed. We can perhaps also merge omapdss and omapdrm into
the same kernel module.
This series only does the copy, and the absolutely necessary parts. No further
cleanups are done yet.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Acked-by: Dave Airlie <airlied@gmail.com>
Acked-by: Rob Clark <robdclark@gmail.com>
2015-12-09 16:28:28 +00:00
|
|
|
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.pixelclock,
|
|
|
|
&t.x_res, &t.hfp, &t.hbp, &t.hsw,
|
|
|
|
&t.y_res, &t.vfp, &t.vbp, &t.vsw) != 9)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
r = dssdev->driver->check_timings(dssdev, &t);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
dssdev->driver->disable(dssdev);
|
|
|
|
dssdev->driver->set_timings(dssdev, &t);
|
|
|
|
r = dssdev->driver->enable(dssdev);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_rotate_show(struct omap_dss_device *dssdev, char *buf)
|
|
|
|
{
|
|
|
|
int rotate;
|
|
|
|
if (!dssdev->driver->get_rotate)
|
|
|
|
return -ENOENT;
|
|
|
|
rotate = dssdev->driver->get_rotate(dssdev);
|
|
|
|
return snprintf(buf, PAGE_SIZE, "%u\n", rotate);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_rotate_store(struct omap_dss_device *dssdev,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
int rot, r;
|
|
|
|
|
|
|
|
if (!dssdev->driver->set_rotate || !dssdev->driver->get_rotate)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
r = kstrtoint(buf, 0, &rot);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
r = dssdev->driver->set_rotate(dssdev, rot);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_mirror_show(struct omap_dss_device *dssdev, char *buf)
|
|
|
|
{
|
|
|
|
int mirror;
|
|
|
|
if (!dssdev->driver->get_mirror)
|
|
|
|
return -ENOENT;
|
|
|
|
mirror = dssdev->driver->get_mirror(dssdev);
|
|
|
|
return snprintf(buf, PAGE_SIZE, "%u\n", mirror);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_mirror_store(struct omap_dss_device *dssdev,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
bool mirror;
|
|
|
|
|
|
|
|
if (!dssdev->driver->set_mirror || !dssdev->driver->get_mirror)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
r = strtobool(buf, &mirror);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
r = dssdev->driver->set_mirror(dssdev, mirror);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_wss_show(struct omap_dss_device *dssdev, char *buf)
|
|
|
|
{
|
|
|
|
unsigned int wss;
|
|
|
|
|
|
|
|
if (!dssdev->driver->get_wss)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
wss = dssdev->driver->get_wss(dssdev);
|
|
|
|
|
|
|
|
return snprintf(buf, PAGE_SIZE, "0x%05x\n", wss);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_wss_store(struct omap_dss_device *dssdev,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
u32 wss;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
if (!dssdev->driver->get_wss || !dssdev->driver->set_wss)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
r = kstrtou32(buf, 0, &wss);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
if (wss > 0xfffff)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
r = dssdev->driver->set_wss(dssdev, wss);
|
|
|
|
if (r)
|
|
|
|
return r;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct display_attribute {
|
|
|
|
struct attribute attr;
|
|
|
|
ssize_t (*show)(struct omap_dss_device *, char *);
|
|
|
|
ssize_t (*store)(struct omap_dss_device *, const char *, size_t);
|
|
|
|
};
|
|
|
|
|
|
|
|
#define DISPLAY_ATTR(_name, _mode, _show, _store) \
|
|
|
|
struct display_attribute display_attr_##_name = \
|
|
|
|
__ATTR(_name, _mode, _show, _store)
|
|
|
|
|
|
|
|
static DISPLAY_ATTR(name, S_IRUGO, display_name_show, NULL);
|
|
|
|
static DISPLAY_ATTR(display_name, S_IRUGO, display_name_show, NULL);
|
|
|
|
static DISPLAY_ATTR(enabled, S_IRUGO|S_IWUSR,
|
|
|
|
display_enabled_show, display_enabled_store);
|
|
|
|
static DISPLAY_ATTR(tear_elim, S_IRUGO|S_IWUSR,
|
|
|
|
display_tear_show, display_tear_store);
|
|
|
|
static DISPLAY_ATTR(timings, S_IRUGO|S_IWUSR,
|
|
|
|
display_timings_show, display_timings_store);
|
|
|
|
static DISPLAY_ATTR(rotate, S_IRUGO|S_IWUSR,
|
|
|
|
display_rotate_show, display_rotate_store);
|
|
|
|
static DISPLAY_ATTR(mirror, S_IRUGO|S_IWUSR,
|
|
|
|
display_mirror_show, display_mirror_store);
|
|
|
|
static DISPLAY_ATTR(wss, S_IRUGO|S_IWUSR,
|
|
|
|
display_wss_show, display_wss_store);
|
|
|
|
|
|
|
|
static struct attribute *display_sysfs_attrs[] = {
|
|
|
|
&display_attr_name.attr,
|
|
|
|
&display_attr_display_name.attr,
|
|
|
|
&display_attr_enabled.attr,
|
|
|
|
&display_attr_tear_elim.attr,
|
|
|
|
&display_attr_timings.attr,
|
|
|
|
&display_attr_rotate.attr,
|
|
|
|
&display_attr_mirror.attr,
|
|
|
|
&display_attr_wss.attr,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static ssize_t display_attr_show(struct kobject *kobj, struct attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev;
|
|
|
|
struct display_attribute *display_attr;
|
|
|
|
|
|
|
|
dssdev = container_of(kobj, struct omap_dss_device, kobj);
|
|
|
|
display_attr = container_of(attr, struct display_attribute, attr);
|
|
|
|
|
|
|
|
if (!display_attr->show)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
return display_attr->show(dssdev, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t display_attr_store(struct kobject *kobj, struct attribute *attr,
|
|
|
|
const char *buf, size_t size)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev;
|
|
|
|
struct display_attribute *display_attr;
|
|
|
|
|
|
|
|
dssdev = container_of(kobj, struct omap_dss_device, kobj);
|
|
|
|
display_attr = container_of(attr, struct display_attribute, attr);
|
|
|
|
|
|
|
|
if (!display_attr->store)
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
return display_attr->store(dssdev, buf, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct sysfs_ops display_sysfs_ops = {
|
|
|
|
.show = display_attr_show,
|
|
|
|
.store = display_attr_store,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct kobj_type display_ktype = {
|
|
|
|
.sysfs_ops = &display_sysfs_ops,
|
|
|
|
.default_attrs = display_sysfs_attrs,
|
|
|
|
};
|
|
|
|
|
|
|
|
int display_init_sysfs(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = NULL;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
for_each_dss_dev(dssdev) {
|
|
|
|
r = kobject_init_and_add(&dssdev->kobj, &display_ktype,
|
|
|
|
&pdev->dev.kobj, "%s", dssdev->alias);
|
|
|
|
if (r) {
|
|
|
|
DSSERR("failed to create sysfs files\n");
|
|
|
|
omap_dss_put_device(dssdev);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
display_uninit_sysfs(pdev);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
void display_uninit_sysfs(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct omap_dss_device *dssdev = NULL;
|
|
|
|
|
|
|
|
for_each_dss_dev(dssdev) {
|
|
|
|
if (kobject_name(&dssdev->kobj) == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
kobject_del(&dssdev->kobj);
|
|
|
|
kobject_put(&dssdev->kobj);
|
|
|
|
|
|
|
|
memset(&dssdev->kobj, 0, sizeof(dssdev->kobj));
|
|
|
|
}
|
|
|
|
}
|