Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
d65c8f31
Commit
d65c8f31
authored
Jul 08, 2012
by
Florian Tobias Schandinat
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fbdev-for-linus' into fbdev-next
parents
3b9cc4ea
373b4365
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
33 additions
and
22 deletions
+33
-22
drivers/video/omap2/dss/core.c
drivers/video/omap2/dss/core.c
+27
-16
drivers/video/omap2/dss/dispc.c
drivers/video/omap2/dss/dispc.c
+1
-1
drivers/video/omap2/dss/dsi.c
drivers/video/omap2/dss/dsi.c
+1
-1
drivers/video/omap2/dss/dss.c
drivers/video/omap2/dss/dss.c
+1
-1
drivers/video/omap2/dss/hdmi.c
drivers/video/omap2/dss/hdmi.c
+1
-1
drivers/video/omap2/dss/rfbi.c
drivers/video/omap2/dss/rfbi.c
+1
-1
drivers/video/omap2/dss/venc.c
drivers/video/omap2/dss/venc.c
+1
-1
No files found.
drivers/video/omap2/dss/core.c
View file @
d65c8f31
...
...
@@ -32,6 +32,7 @@
#include <linux/io.h>
#include <linux/device.h>
#include <linux/regulator/consumer.h>
#include <linux/suspend.h>
#include <video/omapdss.h>
...
...
@@ -201,6 +202,28 @@ int dss_debugfs_create_file(const char *name, void (*write)(struct seq_file *))
#endif
/* CONFIG_DEBUG_FS && CONFIG_OMAP2_DSS_DEBUG_SUPPORT */
/* PLATFORM DEVICE */
static
int
omap_dss_pm_notif
(
struct
notifier_block
*
b
,
unsigned
long
v
,
void
*
d
)
{
DSSDBG
(
"pm notif %lu
\n
"
,
v
);
switch
(
v
)
{
case
PM_SUSPEND_PREPARE
:
DSSDBG
(
"suspending displays
\n
"
);
return
dss_suspend_all_devices
();
case
PM_POST_SUSPEND
:
DSSDBG
(
"resuming displays
\n
"
);
return
dss_resume_all_devices
();
default:
return
0
;
}
}
static
struct
notifier_block
omap_dss_pm_notif_block
=
{
.
notifier_call
=
omap_dss_pm_notif
,
};
static
int
__init
omap_dss_probe
(
struct
platform_device
*
pdev
)
{
struct
omap_dss_board_info
*
pdata
=
pdev
->
dev
.
platform_data
;
...
...
@@ -224,6 +247,8 @@ static int __init omap_dss_probe(struct platform_device *pdev)
else
if
(
pdata
->
default_device
)
core
.
default_display_name
=
pdata
->
default_device
->
name
;
register_pm_notifier
(
&
omap_dss_pm_notif_block
);
return
0
;
err_debugfs:
...
...
@@ -233,6 +258,8 @@ static int __init omap_dss_probe(struct platform_device *pdev)
static
int
omap_dss_remove
(
struct
platform_device
*
pdev
)
{
unregister_pm_notifier
(
&
omap_dss_pm_notif_block
);
dss_uninitialize_debugfs
();
dss_uninit_overlays
(
pdev
);
...
...
@@ -247,25 +274,9 @@ static void omap_dss_shutdown(struct platform_device *pdev)
dss_disable_all_devices
();
}
static
int
omap_dss_suspend
(
struct
platform_device
*
pdev
,
pm_message_t
state
)
{
DSSDBG
(
"suspend %d
\n
"
,
state
.
event
);
return
dss_suspend_all_devices
();
}
static
int
omap_dss_resume
(
struct
platform_device
*
pdev
)
{
DSSDBG
(
"resume
\n
"
);
return
dss_resume_all_devices
();
}
static
struct
platform_driver
omap_dss_driver
=
{
.
remove
=
omap_dss_remove
,
.
shutdown
=
omap_dss_shutdown
,
.
suspend
=
omap_dss_suspend
,
.
resume
=
omap_dss_resume
,
.
driver
=
{
.
name
=
"omapdss"
,
.
owner
=
THIS_MODULE
,
...
...
drivers/video/omap2/dss/dispc.c
View file @
d65c8f31
...
...
@@ -384,7 +384,7 @@ void dispc_runtime_put(void)
DSSDBG
(
"dispc_runtime_put
\n
"
);
r
=
pm_runtime_put_sync
(
&
dispc
.
pdev
->
dev
);
WARN_ON
(
r
<
0
);
WARN_ON
(
r
<
0
&&
r
!=
-
ENOSYS
);
}
static
inline
bool
dispc_mgr_is_lcd
(
enum
omap_channel
channel
)
...
...
drivers/video/omap2/dss/dsi.c
View file @
d65c8f31
...
...
@@ -1075,7 +1075,7 @@ void dsi_runtime_put(struct platform_device *dsidev)
DSSDBG
(
"dsi_runtime_put
\n
"
);
r
=
pm_runtime_put_sync
(
&
dsi
->
pdev
->
dev
);
WARN_ON
(
r
<
0
);
WARN_ON
(
r
<
0
&&
r
!=
-
ENOSYS
);
}
/* source clock for DSI PLL. this could also be PCLKFREE */
...
...
drivers/video/omap2/dss/dss.c
View file @
d65c8f31
...
...
@@ -731,7 +731,7 @@ static void dss_runtime_put(void)
DSSDBG
(
"dss_runtime_put
\n
"
);
r
=
pm_runtime_put_sync
(
&
dss
.
pdev
->
dev
);
WARN_ON
(
r
<
0
&&
r
!=
-
EBUSY
);
WARN_ON
(
r
<
0
&&
r
!=
-
E
NOSYS
&&
r
!=
-
E
BUSY
);
}
/* DEBUGFS */
...
...
drivers/video/omap2/dss/hdmi.c
View file @
d65c8f31
...
...
@@ -138,7 +138,7 @@ static void hdmi_runtime_put(void)
DSSDBG
(
"hdmi_runtime_put
\n
"
);
r
=
pm_runtime_put_sync
(
&
hdmi
.
pdev
->
dev
);
WARN_ON
(
r
<
0
);
WARN_ON
(
r
<
0
&&
r
!=
-
ENOSYS
);
}
static
int
__init
hdmi_init_display
(
struct
omap_dss_device
*
dssdev
)
...
...
drivers/video/omap2/dss/rfbi.c
View file @
d65c8f31
...
...
@@ -141,7 +141,7 @@ static void rfbi_runtime_put(void)
DSSDBG
(
"rfbi_runtime_put
\n
"
);
r
=
pm_runtime_put_sync
(
&
rfbi
.
pdev
->
dev
);
WARN_ON
(
r
<
0
);
WARN_ON
(
r
<
0
&&
r
!=
-
ENOSYS
);
}
void
rfbi_bus_lock
(
void
)
...
...
drivers/video/omap2/dss/venc.c
View file @
d65c8f31
...
...
@@ -402,7 +402,7 @@ static void venc_runtime_put(void)
DSSDBG
(
"venc_runtime_put
\n
"
);
r
=
pm_runtime_put_sync
(
&
venc
.
pdev
->
dev
);
WARN_ON
(
r
<
0
);
WARN_ON
(
r
<
0
&&
r
!=
-
ENOSYS
);
}
static
const
struct
venc_config
*
venc_timings_to_config
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment