Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
3b6d83d1
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3b6d83d1
编写于
7月 08, 2011
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nvd0/disp: untested LVDS support
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
c6f2f71d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
66 addition
and
16 deletion
+66
-16
drivers/gpu/drm/nouveau/nvd0_display.c
drivers/gpu/drm/nouveau/nvd0_display.c
+66
-16
未找到文件。
drivers/gpu/drm/nouveau/nvd0_display.c
浏览文件 @
3b6d83d1
...
...
@@ -816,26 +816,66 @@ nvd0_sor_commit(struct drm_encoder *encoder)
}
static
void
nvd0_sor_mode_set
(
struct
drm_encoder
*
encoder
,
struct
drm_display_mode
*
mode
,
struct
drm_display_mode
*
adjusted_
mode
)
nvd0_sor_mode_set
(
struct
drm_encoder
*
encoder
,
struct
drm_display_mode
*
u
mode
,
struct
drm_display_mode
*
mode
)
{
struct
drm_nouveau_private
*
dev_priv
=
encoder
->
dev
->
dev_private
;
struct
nouveau_encoder
*
nv_encoder
=
nouveau_encoder
(
encoder
);
struct
nouveau_crtc
*
nv_crtc
=
nouveau_crtc
(
encoder
->
crtc
);
struct
nouveau_connector
*
nv_connector
;
struct
nvbios
*
bios
=
&
dev_priv
->
vbios
;
u32
mode_ctrl
=
(
1
<<
nv_crtc
->
index
);
u32
*
push
,
or_config
;
if
(
nv_encoder
->
dcb
->
sorconf
.
link
&
1
)
{
if
(
adjusted_mode
->
clock
<
165000
)
mode_ctrl
|=
0x00000100
;
else
mode_ctrl
|=
0x00000500
;
}
else
{
mode_ctrl
|=
0x00000200
;
}
nv_connector
=
nouveau_encoder_connector_get
(
nv_encoder
);
switch
(
nv_encoder
->
dcb
->
type
)
{
case
OUTPUT_TMDS
:
if
(
nv_encoder
->
dcb
->
sorconf
.
link
&
1
)
{
if
(
mode
->
clock
<
165000
)
mode_ctrl
|=
0x00000100
;
else
mode_ctrl
|=
0x00000500
;
}
else
{
mode_ctrl
|=
0x00000200
;
}
or_config
=
(
mode_ctrl
&
0x00000f00
)
>>
8
;
if
(
mode
->
clock
>=
165000
)
or_config
|=
0x0100
;
break
;
case
OUTPUT_LVDS
:
or_config
=
(
mode_ctrl
&
0x00000f00
)
>>
8
;
if
(
bios
->
fp_no_ddc
)
{
if
(
bios
->
fp
.
dual_link
)
or_config
|=
0x0100
;
if
(
bios
->
fp
.
if_is_24bit
)
or_config
|=
0x0200
;
}
else
{
if
(
nv_connector
->
dcb
->
type
==
DCB_CONNECTOR_LVDS_SPWG
)
{
if
(((
u8
*
)
nv_connector
->
edid
)[
121
]
==
2
)
or_config
|=
0x0100
;
}
else
if
(
mode
->
clock
>=
bios
->
fp
.
duallink_transition_clk
)
{
or_config
|=
0x0100
;
}
or_config
=
(
mode_ctrl
&
0x00000f00
)
>>
8
;
if
(
adjusted_mode
->
clock
>=
165000
)
or_config
|=
0x0100
;
if
(
or_config
&
0x0100
)
{
if
(
bios
->
fp
.
strapless_is_24bit
&
2
)
or_config
|=
0x0200
;
}
else
{
if
(
bios
->
fp
.
strapless_is_24bit
&
1
)
or_config
|=
0x0200
;
}
if
(
nv_connector
->
base
.
display_info
.
bpc
==
8
)
or_config
|=
0x0200
;
}
break
;
default:
BUG_ON
(
1
);
break
;
}
nvd0_sor_dpms
(
encoder
,
DRM_MODE_DPMS_ON
);
...
...
@@ -932,8 +972,16 @@ lookup_dcb(struct drm_device *dev, int id, u32 mc)
type
=
OUTPUT_ANALOG
;
or
=
id
;
}
else
{
type
=
OUTPUT_TMDS
;
or
=
id
-
4
;
switch
(
mc
&
0x00000f00
)
{
case
0x00000000
:
type
=
OUTPUT_LVDS
;
break
;
case
0x00000100
:
type
=
OUTPUT_TMDS
;
break
;
case
0x00000200
:
type
=
OUTPUT_TMDS
;
break
;
case
0x00000500
:
type
=
OUTPUT_TMDS
;
break
;
default:
return
NULL
;
}
or
=
id
-
4
;
}
for
(
i
=
0
;
i
<
dev_priv
->
vbios
.
dcb
.
entries
;
i
++
)
{
...
...
@@ -1024,7 +1072,8 @@ nvd0_display_unk2_handler(struct drm_device *dev)
nv_wr32
(
dev
,
0x612280
+
(
or
*
0x800
),
0x00000000
);
break
;
case
OUTPUT_TMDS
:
if
(
disp
->
irq
.
pclk
>=
165000
)
case
OUTPUT_LVDS
:
if
(
disp
->
irq
.
cfg
&
0x00000100
)
tmp
=
0x00000101
;
else
tmp
=
0x00000000
;
...
...
@@ -1298,6 +1347,7 @@ nvd0_display_create(struct drm_device *dev)
switch
(
dcbe
->
type
)
{
case
OUTPUT_TMDS
:
case
OUTPUT_LVDS
:
nvd0_sor_create
(
connector
,
dcbe
);
break
;
case
OUTPUT_ANALOG
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录