Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
bf2c886a
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
bf2c886a
编写于
11月 21, 2012
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau/disp: add support for 10bpc over DisplayPort
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
e225f446
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
16 addition
and
6 deletion
+16
-6
drivers/gpu/drm/nouveau/core/engine/disp/nv50.c
drivers/gpu/drm/nouveau/core/engine/disp/nv50.c
+5
-2
drivers/gpu/drm/nouveau/core/engine/disp/nvd0.c
drivers/gpu/drm/nouveau/core/engine/disp/nvd0.c
+6
-3
drivers/gpu/drm/nouveau/nv50_display.c
drivers/gpu/drm/nouveau/nv50_display.c
+5
-1
未找到文件。
drivers/gpu/drm/nouveau/core/engine/disp/nv50.c
浏览文件 @
bf2c886a
...
...
@@ -973,7 +973,6 @@ nv50_disp_intr_unk20_dp(struct nv50_disp_priv *priv,
const
u32
soff
=
(
or
*
0x800
);
const
u32
loff
=
(
link
*
0x080
)
+
soff
;
const
u32
ctrl
=
nv_rd32
(
priv
,
0x610794
+
(
or
*
8
));
const
u32
bits
=
((
ctrl
&
0x000f0000
)
==
0x00020000
)
?
18
:
24
;
const
u32
symbol
=
100000
;
u32
dpctrl
=
nv_rd32
(
priv
,
0x61c10c
+
loff
)
&
0x0000f0000
;
u32
clksor
=
nv_rd32
(
priv
,
0x614300
+
soff
);
...
...
@@ -981,7 +980,7 @@ nv50_disp_intr_unk20_dp(struct nv50_disp_priv *priv,
int
TU
,
VTUi
,
VTUf
,
VTUa
;
u64
link_data_rate
,
link_ratio
,
unk
;
u32
best_diff
=
64
*
symbol
;
u32
link_nr
,
link_bw
,
r
;
u32
link_nr
,
link_bw
,
bits
,
r
;
/* calculate packed data rate for each lane */
if
(
dpctrl
>
0x00030000
)
link_nr
=
4
;
...
...
@@ -993,6 +992,10 @@ nv50_disp_intr_unk20_dp(struct nv50_disp_priv *priv,
else
link_bw
=
162000
;
if
((
ctrl
&
0xf0000
)
==
0x60000
)
bits
=
30
;
else
if
((
ctrl
&
0xf0000
)
==
0x50000
)
bits
=
24
;
else
bits
=
18
;
link_data_rate
=
(
pclk
*
bits
/
8
)
/
link_nr
;
/* calculate ratio of packed data rate to link symbol rate */
...
...
drivers/gpu/drm/nouveau/core/engine/disp/nvd0.c
浏览文件 @
bf2c886a
...
...
@@ -711,7 +711,6 @@ nvd0_display_unk2_calc_tu(struct nv50_disp_priv *priv, int head, int or)
const
u32
ctrl
=
nv_rd32
(
priv
,
0x660200
+
(
or
*
0x020
));
const
u32
conf
=
nv_rd32
(
priv
,
0x660404
+
(
head
*
0x300
));
const
u32
pclk
=
nv_rd32
(
priv
,
0x660450
+
(
head
*
0x300
))
/
1000
;
const
u32
bits
=
((
conf
&
0x3c0
)
==
0x080
)
?
18
:
24
;
const
u32
link
=
((
ctrl
&
0xf00
)
==
0x800
)
?
0
:
1
;
const
u32
hoff
=
(
head
*
0x800
);
const
u32
soff
=
(
or
*
0x800
);
...
...
@@ -720,10 +719,14 @@ nvd0_display_unk2_calc_tu(struct nv50_disp_priv *priv, int head, int or)
const
u32
TU
=
64
;
u32
dpctrl
=
nv_rd32
(
priv
,
0x61c10c
+
loff
)
&
0x000f0000
;
u32
clksor
=
nv_rd32
(
priv
,
0x612300
+
soff
);
u32
datarate
=
(
pclk
*
bits
)
/
8
;
u32
link_nr
,
link_bw
;
u32
datarate
,
link_nr
,
link_bw
,
bits
;
u64
ratio
,
value
;
if
((
conf
&
0x3c0
)
==
0x180
)
bits
=
30
;
else
if
((
conf
&
0x3c0
)
==
0x140
)
bits
=
24
;
else
bits
=
18
;
datarate
=
(
pclk
*
bits
)
/
8
;
if
(
dpctrl
>
0x00030000
)
link_nr
=
4
;
else
if
(
dpctrl
>
0x00010000
)
link_nr
=
2
;
else
link_nr
=
1
;
...
...
drivers/gpu/drm/nouveau/nv50_display.c
浏览文件 @
bf2c886a
...
...
@@ -1791,9 +1791,13 @@ nv50_sor_mode_set(struct drm_encoder *encoder, struct drm_display_mode *umode,
if
(
nv_connector
->
base
.
display_info
.
bpc
==
6
)
{
nv_encoder
->
dp
.
datarate
=
mode
->
clock
*
18
/
8
;
depth
=
0x2
;
}
else
{
}
else
if
(
nv_connector
->
base
.
display_info
.
bpc
==
8
)
{
nv_encoder
->
dp
.
datarate
=
mode
->
clock
*
24
/
8
;
depth
=
0x5
;
}
else
{
nv_encoder
->
dp
.
datarate
=
mode
->
clock
*
30
/
8
;
depth
=
0x6
;
}
if
(
nv_encoder
->
dcb
->
sorconf
.
link
&
1
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录