Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
0077147e
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0077147e
编写于
5月 14, 2009
作者:
P
Paul Brook
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove bogus omap i2c slave code
Signed-off-by:
N
Paul Brook
<
paul@codesourcery.com
>
上级
1ea96673
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
0 addition
and
67 deletion
+0
-67
hw/omap_i2c.c
hw/omap_i2c.c
+0
-67
未找到文件。
hw/omap_i2c.c
浏览文件 @
0077147e
...
...
@@ -24,7 +24,6 @@
struct
omap_i2c_s
{
qemu_irq
irq
;
qemu_irq
drq
[
2
];
i2c_slave
slave
;
i2c_bus
*
bus
;
uint8_t
revision
;
...
...
@@ -55,65 +54,6 @@ static void omap_i2c_interrupts_update(struct omap_i2c_s *s)
qemu_set_irq
(
s
->
drq
[
1
],
(
s
->
stat
>>
4
)
&
1
);
/* XRDY */
}
/* These are only stubs now. */
static
void
omap_i2c_event
(
i2c_slave
*
i2c
,
enum
i2c_event
event
)
{
struct
omap_i2c_s
*
s
=
(
struct
omap_i2c_s
*
)
i2c
;
if
((
~
s
->
control
>>
15
)
&
1
)
/* I2C_EN */
return
;
switch
(
event
)
{
case
I2C_START_SEND
:
case
I2C_START_RECV
:
s
->
stat
|=
1
<<
9
;
/* AAS */
break
;
case
I2C_FINISH
:
s
->
stat
|=
1
<<
2
;
/* ARDY */
break
;
case
I2C_NACK
:
s
->
stat
|=
1
<<
1
;
/* NACK */
break
;
}
omap_i2c_interrupts_update
(
s
);
}
static
int
omap_i2c_rx
(
i2c_slave
*
i2c
)
{
struct
omap_i2c_s
*
s
=
(
struct
omap_i2c_s
*
)
i2c
;
uint8_t
ret
=
0
;
if
((
~
s
->
control
>>
15
)
&
1
)
/* I2C_EN */
return
-
1
;
if
(
s
->
txlen
)
ret
=
s
->
fifo
>>
((
--
s
->
txlen
)
<<
3
)
&
0xff
;
else
s
->
stat
|=
1
<<
10
;
/* XUDF */
s
->
stat
|=
1
<<
4
;
/* XRDY */
omap_i2c_interrupts_update
(
s
);
return
ret
;
}
static
int
omap_i2c_tx
(
i2c_slave
*
i2c
,
uint8_t
data
)
{
struct
omap_i2c_s
*
s
=
(
struct
omap_i2c_s
*
)
i2c
;
if
((
~
s
->
control
>>
15
)
&
1
)
/* I2C_EN */
return
1
;
if
(
s
->
rxlen
<
4
)
s
->
fifo
|=
data
<<
((
s
->
rxlen
++
)
<<
3
);
else
s
->
stat
|=
1
<<
11
;
/* ROVR */
s
->
stat
|=
1
<<
3
;
/* RRDY */
omap_i2c_interrupts_update
(
s
);
return
1
;
}
static
void
omap_i2c_fifo_run
(
struct
omap_i2c_s
*
s
)
{
int
ack
=
1
;
...
...
@@ -406,7 +346,6 @@ static void omap_i2c_write(void *opaque, target_phys_addr_t addr,
case
0x28
:
/* I2C_OA */
s
->
addr
[
0
]
=
value
&
0x3ff
;
i2c_set_slave_address
(
&
s
->
slave
,
value
&
0x7f
);
break
;
case
0x2c
:
/* I2C_SA */
...
...
@@ -494,9 +433,6 @@ struct omap_i2c_s *omap_i2c_init(target_phys_addr_t base,
s
->
irq
=
irq
;
s
->
drq
[
0
]
=
dma
[
0
];
s
->
drq
[
1
]
=
dma
[
1
];
s
->
slave
.
event
=
omap_i2c_event
;
s
->
slave
.
recv
=
omap_i2c_rx
;
s
->
slave
.
send
=
omap_i2c_tx
;
s
->
bus
=
i2c_init_bus
();
omap_i2c_reset
(
s
);
...
...
@@ -518,9 +454,6 @@ struct omap_i2c_s *omap2_i2c_init(struct omap_target_agent_s *ta,
s
->
irq
=
irq
;
s
->
drq
[
0
]
=
dma
[
0
];
s
->
drq
[
1
]
=
dma
[
1
];
s
->
slave
.
event
=
omap_i2c_event
;
s
->
slave
.
recv
=
omap_i2c_rx
;
s
->
slave
.
send
=
omap_i2c_tx
;
s
->
bus
=
i2c_init_bus
();
omap_i2c_reset
(
s
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录