Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
eeb3ca12
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看板
提交
eeb3ca12
编写于
7月 02, 2011
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nvd0/i2c: initial implementation
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
d9f61c2d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
35 addition
and
16 deletion
+35
-16
drivers/gpu/drm/nouveau/nouveau_i2c.c
drivers/gpu/drm/nouveau/nouveau_i2c.c
+35
-16
未找到文件。
drivers/gpu/drm/nouveau/nouveau_i2c.c
浏览文件 @
eeb3ca12
...
...
@@ -107,6 +107,13 @@ nv4e_i2c_getsda(void *data)
return
!!
((
nv_rd32
(
dev
,
i2c
->
rd
)
>>
16
)
&
8
);
}
static
const
uint32_t
nv50_i2c_port
[]
=
{
0x00e138
,
0x00e150
,
0x00e168
,
0x00e180
,
0x00e254
,
0x00e274
,
0x00e764
,
0x00e780
,
0x00e79c
,
0x00e7b8
};
#define NV50_I2C_PORTS ARRAY_SIZE(nv50_i2c_port)
static
int
nv50_i2c_getscl
(
void
*
data
)
{
...
...
@@ -130,28 +137,32 @@ static void
nv50_i2c_setscl
(
void
*
data
,
int
state
)
{
struct
nouveau_i2c_chan
*
i2c
=
data
;
struct
drm_device
*
dev
=
i2c
->
dev
;
nv_wr32
(
dev
,
i2c
->
wr
,
4
|
(
i2c
->
data
?
2
:
0
)
|
(
state
?
1
:
0
));
nv_wr32
(
i2c
->
dev
,
i2c
->
wr
,
4
|
(
i2c
->
data
?
2
:
0
)
|
(
state
?
1
:
0
));
}
static
void
nv50_i2c_setsda
(
void
*
data
,
int
state
)
{
struct
nouveau_i2c_chan
*
i2c
=
data
;
struct
drm_device
*
dev
=
i2c
->
dev
;
nv_wr32
(
dev
,
i2c
->
wr
,
(
nv_rd32
(
dev
,
i2c
->
rd
)
&
1
)
|
4
|
(
state
?
2
:
0
));
nv_mask
(
i2c
->
dev
,
i2c
->
wr
,
0x00000006
,
4
|
(
state
?
2
:
0
));
i2c
->
data
=
state
;
}
static
const
uint32_t
nv50_i2c_port
[]
=
{
0x00e138
,
0x00e150
,
0x00e168
,
0x00e180
,
0x00e254
,
0x00e274
,
0x00e764
,
0x00e780
,
0x00e79c
,
0x00e7b8
};
#define NV50_I2C_PORTS ARRAY_SIZE(nv50_i2c_port)
static
int
nvd0_i2c_getscl
(
void
*
data
)
{
struct
nouveau_i2c_chan
*
i2c
=
data
;
return
!!
(
nv_rd32
(
i2c
->
dev
,
i2c
->
rd
)
&
0x10
);
}
static
int
nvd0_i2c_getsda
(
void
*
data
)
{
struct
nouveau_i2c_chan
*
i2c
=
data
;
return
!!
(
nv_rd32
(
i2c
->
dev
,
i2c
->
rd
)
&
0x20
);
}
int
nouveau_i2c_init
(
struct
drm_device
*
dev
,
struct
dcb_i2c_entry
*
entry
,
int
index
)
...
...
@@ -163,7 +174,8 @@ nouveau_i2c_init(struct drm_device *dev, struct dcb_i2c_entry *entry, int index)
if
(
entry
->
chan
)
return
-
EEXIST
;
if
(
dev_priv
->
card_type
>=
NV_50
&&
entry
->
read
>=
NV50_I2C_PORTS
)
{
if
(
dev_priv
->
card_type
>=
NV_50
&&
dev_priv
->
card_type
<=
NV_C0
&&
entry
->
read
>=
NV50_I2C_PORTS
)
{
NV_ERROR
(
dev
,
"unknown i2c port %d
\n
"
,
entry
->
read
);
return
-
EINVAL
;
}
...
...
@@ -192,10 +204,17 @@ nouveau_i2c_init(struct drm_device *dev, struct dcb_i2c_entry *entry, int index)
case
5
:
i2c
->
bit
.
setsda
=
nv50_i2c_setsda
;
i2c
->
bit
.
setscl
=
nv50_i2c_setscl
;
i2c
->
bit
.
getsda
=
nv50_i2c_getsda
;
i2c
->
bit
.
getscl
=
nv50_i2c_getscl
;
i2c
->
rd
=
nv50_i2c_port
[
entry
->
read
];
i2c
->
wr
=
i2c
->
rd
;
if
(
dev_priv
->
card_type
<
NV_D0
)
{
i2c
->
bit
.
getsda
=
nv50_i2c_getsda
;
i2c
->
bit
.
getscl
=
nv50_i2c_getscl
;
i2c
->
rd
=
nv50_i2c_port
[
entry
->
read
];
i2c
->
wr
=
i2c
->
rd
;
}
else
{
i2c
->
bit
.
getsda
=
nvd0_i2c_getsda
;
i2c
->
bit
.
getscl
=
nvd0_i2c_getscl
;
i2c
->
rd
=
0x00d014
+
(
entry
->
read
*
0x20
);
i2c
->
wr
=
i2c
->
rd
;
}
break
;
case
6
:
i2c
->
rd
=
entry
->
read
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录