Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
37da5b87
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看板
提交
37da5b87
编写于
6月 11, 2014
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau/i2c/anx9805: add debugging to aux transactions
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
9efc583e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
34 addition
and
5 deletion
+34
-5
drivers/gpu/drm/nouveau/core/subdev/i2c/anx9805.c
drivers/gpu/drm/nouveau/core/subdev/i2c/anx9805.c
+19
-5
drivers/gpu/drm/nouveau/core/subdev/i2c/port.h
drivers/gpu/drm/nouveau/core/subdev/i2c/port.h
+15
-0
未找到文件。
drivers/gpu/drm/nouveau/core/subdev/i2c/anx9805.c
浏览文件 @
37da5b87
...
...
@@ -22,7 +22,7 @@
* Authors: Ben Skeggs <bskeggs@redhat.com>
*/
#include "p
riv
.h"
#include "p
ort
.h"
struct
anx9805_i2c_port
{
struct
nouveau_i2c_port
base
;
...
...
@@ -37,6 +37,8 @@ anx9805_train(struct nouveau_i2c_port *port, int link_nr, int link_bw, bool enh)
struct
nouveau_i2c_port
*
mast
=
(
void
*
)
nv_object
(
chan
)
->
parent
;
u8
tmp
,
i
;
DBG
(
"ANX9805 train %d 0x%02x %d
\n
"
,
link_nr
,
link_bw
,
enh
);
nv_wri2cr
(
mast
,
chan
->
addr
,
0xa0
,
link_bw
);
nv_wri2cr
(
mast
,
chan
->
addr
,
0xa1
,
link_nr
|
(
enh
?
0x80
:
0x00
));
nv_wri2cr
(
mast
,
chan
->
addr
,
0xa2
,
0x01
);
...
...
@@ -66,16 +68,23 @@ anx9805_aux(struct nouveau_i2c_port *port, bool retry,
struct
anx9805_i2c_port
*
chan
=
(
void
*
)
port
;
struct
nouveau_i2c_port
*
mast
=
(
void
*
)
nv_object
(
chan
)
->
parent
;
int
i
,
ret
=
-
ETIMEDOUT
;
u8
buf
[
16
]
=
{};
u8
tmp
;
DBG
(
"%02x %05x %d
\n
"
,
type
,
addr
,
size
);
tmp
=
nv_rdi2cr
(
mast
,
chan
->
ctrl
,
0x07
)
&
~
0x04
;
nv_wri2cr
(
mast
,
chan
->
ctrl
,
0x07
,
tmp
|
0x04
);
nv_wri2cr
(
mast
,
chan
->
ctrl
,
0x07
,
tmp
);
nv_wri2cr
(
mast
,
chan
->
ctrl
,
0xf7
,
0x01
);
nv_wri2cr
(
mast
,
chan
->
addr
,
0xe4
,
0x80
);
for
(
i
=
0
;
!
(
type
&
1
)
&&
i
<
size
;
i
++
)
nv_wri2cr
(
mast
,
chan
->
addr
,
0xf0
+
i
,
data
[
i
]);
if
(
!
(
type
&
1
))
{
memcpy
(
buf
,
data
,
size
);
DBG
(
"%16ph"
,
buf
);
for
(
i
=
0
;
i
<
size
;
i
++
)
nv_wri2cr
(
mast
,
chan
->
addr
,
0xf0
+
i
,
buf
[
i
]);
}
nv_wri2cr
(
mast
,
chan
->
addr
,
0xe5
,
((
size
-
1
)
<<
4
)
|
type
);
nv_wri2cr
(
mast
,
chan
->
addr
,
0xe6
,
(
addr
&
0x000ff
)
>>
0
);
nv_wri2cr
(
mast
,
chan
->
addr
,
0xe7
,
(
addr
&
0x0ff00
)
>>
8
);
...
...
@@ -94,8 +103,13 @@ anx9805_aux(struct nouveau_i2c_port *port, bool retry,
goto
done
;
}
for
(
i
=
0
;
(
type
&
1
)
&&
i
<
size
;
i
++
)
data
[
i
]
=
nv_rdi2cr
(
mast
,
chan
->
addr
,
0xf0
+
i
);
if
(
type
&
1
)
{
for
(
i
=
0
;
i
<
size
;
i
++
)
buf
[
i
]
=
nv_rdi2cr
(
mast
,
chan
->
addr
,
0xf0
+
i
);
DBG
(
"%16ph"
,
buf
);
memcpy
(
data
,
buf
,
size
);
}
ret
=
0
;
done:
nv_wri2cr
(
mast
,
chan
->
ctrl
,
0xf7
,
0x01
);
...
...
drivers/gpu/drm/nouveau/core/subdev/i2c/port.h
0 → 100644
浏览文件 @
37da5b87
#ifndef __NVKM_I2C_PORT_H__
#define __NVKM_I2C_PORT_H__
#include "priv.h"
#ifndef MSG
#define MSG(l,f,a...) do { \
struct nouveau_i2c_port *_port = (void *)port; \
nv_##l(nv_object(_port)->engine, "PORT:%02x: "f, _port->index, ##a); \
} while(0)
#define DBG(f,a...) MSG(debug, f, ##a)
#define ERR(f,a...) MSG(error, f, ##a)
#endif
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录