Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
4761c603
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
4761c603
编写于
2月 24, 2012
作者:
F
Florian Tobias Schandinat
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-3.3-rc' of
git://gitorious.org/linux-omap-dss2/linux
into fbdev-for-linus
上级
b01543df
ca888a79
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
24 addition
and
9 deletion
+24
-9
drivers/video/omap2/dss/hdmi.c
drivers/video/omap2/dss/hdmi.c
+23
-1
drivers/video/omap2/dss/ti_hdmi_4xxx_ip.c
drivers/video/omap2/dss/ti_hdmi_4xxx_ip.c
+1
-8
未找到文件。
drivers/video/omap2/dss/hdmi.c
浏览文件 @
4761c603
...
...
@@ -165,9 +165,25 @@ static int hdmi_runtime_get(void)
DSSDBG
(
"hdmi_runtime_get
\n
"
);
/*
* HACK: Add dss_runtime_get() to ensure DSS clock domain is enabled.
* This should be removed later.
*/
r
=
dss_runtime_get
();
if
(
r
<
0
)
goto
err_get_dss
;
r
=
pm_runtime_get_sync
(
&
hdmi
.
pdev
->
dev
);
WARN_ON
(
r
<
0
);
return
r
<
0
?
r
:
0
;
if
(
r
<
0
)
goto
err_get_hdmi
;
return
0
;
err_get_hdmi:
dss_runtime_put
();
err_get_dss:
return
r
;
}
static
void
hdmi_runtime_put
(
void
)
...
...
@@ -178,6 +194,12 @@ static void hdmi_runtime_put(void)
r
=
pm_runtime_put_sync
(
&
hdmi
.
pdev
->
dev
);
WARN_ON
(
r
<
0
);
/*
* HACK: This is added to complement the dss_runtime_get() call in
* hdmi_runtime_get(). This should be removed later.
*/
dss_runtime_put
();
}
int
hdmi_init_display
(
struct
omap_dss_device
*
dssdev
)
...
...
drivers/video/omap2/dss/ti_hdmi_4xxx_ip.c
浏览文件 @
4761c603
...
...
@@ -479,14 +479,7 @@ int ti_hdmi_4xxx_read_edid(struct hdmi_ip_data *ip_data,
bool
ti_hdmi_4xxx_detect
(
struct
hdmi_ip_data
*
ip_data
)
{
int
r
;
void
__iomem
*
base
=
hdmi_core_sys_base
(
ip_data
);
/* HPD */
r
=
REG_GET
(
base
,
HDMI_CORE_SYS_SYS_STAT
,
1
,
1
);
return
r
==
1
;
return
gpio_get_value
(
ip_data
->
hpd_gpio
);
}
static
void
hdmi_core_init
(
struct
hdmi_core_video_config
*
video_cfg
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录