Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
7405165e
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看板
提交
7405165e
编写于
11月 24, 2011
作者:
A
Avi Kivity
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
omap_dma: convert to memory API
Signed-off-by:
N
Avi Kivity
<
avi@redhat.com
>
上级
6a0148e7
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
43 addition
and
34 deletion
+43
-34
hw/omap.h
hw/omap.h
+2
-0
hw/omap1.c
hw/omap1.c
+1
-1
hw/omap2.c
hw/omap2.c
+1
-1
hw/omap_dma.c
hw/omap_dma.c
+39
-32
未找到文件。
hw/omap.h
浏览文件 @
7405165e
...
...
@@ -435,9 +435,11 @@ enum omap_dma_model {
struct
soc_dma_s
;
struct
soc_dma_s
*
omap_dma_init
(
target_phys_addr_t
base
,
qemu_irq
*
irqs
,
MemoryRegion
*
sysmem
,
qemu_irq
lcd_irq
,
struct
omap_mpu_state_s
*
mpu
,
omap_clk
clk
,
enum
omap_dma_model
model
);
struct
soc_dma_s
*
omap_dma4_init
(
target_phys_addr_t
base
,
qemu_irq
*
irqs
,
MemoryRegion
*
sysmem
,
struct
omap_mpu_state_s
*
mpu
,
int
fifo
,
int
chans
,
omap_clk
iclk
,
omap_clk
fclk
);
void
omap_dma_reset
(
struct
soc_dma_s
*
s
);
...
...
hw/omap1.c
浏览文件 @
7405165e
...
...
@@ -3849,7 +3849,7 @@ struct omap_mpu_state_s *omap310_mpu_init(MemoryRegion *system_memory,
dma_irqs
[
i
]
=
qdev_get_gpio_in
(
s
->
ih
[
omap1_dma_irq_map
[
i
].
ih
],
omap1_dma_irq_map
[
i
].
intr
);
}
s
->
dma
=
omap_dma_init
(
0xfffed800
,
dma_irqs
,
s
->
dma
=
omap_dma_init
(
0xfffed800
,
dma_irqs
,
system_memory
,
qdev_get_gpio_in
(
s
->
ih
[
0
],
OMAP_INT_DMA_LCD
),
s
,
omap_findclk
(
s
,
"dma_ck"
),
omap_dma_3_1
);
...
...
hw/omap2.c
浏览文件 @
7405165e
...
...
@@ -2285,7 +2285,7 @@ struct omap_mpu_state_s *omap2420_mpu_init(MemoryRegion *sysmem,
dma_irqs
[
i
]
=
qdev_get_gpio_in
(
s
->
ih
[
omap2_dma_irq_map
[
i
].
ih
],
omap2_dma_irq_map
[
i
].
intr
);
}
s
->
dma
=
omap_dma4_init
(
0x48056000
,
dma_irqs
,
s
,
256
,
32
,
s
->
dma
=
omap_dma4_init
(
0x48056000
,
dma_irqs
,
s
ysmem
,
s
,
256
,
32
,
omap_findclk
(
s
,
"sdma_iclk"
),
omap_findclk
(
s
,
"sdma_fclk"
));
s
->
port
->
addr_valid
=
omap2_validate_addr
;
...
...
hw/omap_dma.c
浏览文件 @
7405165e
...
...
@@ -102,6 +102,7 @@ struct omap_dma_channel_s {
struct
omap_dma_s
{
struct
soc_dma_s
*
dma
;
MemoryRegion
iomem
;
struct
omap_mpu_state_s
*
mpu
;
omap_clk
clk
;
...
...
@@ -1445,12 +1446,17 @@ static int omap_dma_sys_read(struct omap_dma_s *s, int offset,
return
0
;
}
static
uint32_t
omap_dma_read
(
void
*
opaque
,
target_phys_addr_t
addr
)
static
uint64_t
omap_dma_read
(
void
*
opaque
,
target_phys_addr_t
addr
,
unsigned
size
)
{
struct
omap_dma_s
*
s
=
(
struct
omap_dma_s
*
)
opaque
;
int
reg
,
ch
;
uint16_t
ret
;
if
(
size
!=
2
)
{
return
omap_badwidth_read16
(
opaque
,
addr
);
}
switch
(
addr
)
{
case
0x300
...
0x3fe
:
if
(
s
->
model
<=
omap_dma_3_1
||
!
s
->
omap_3_1_mapping_disabled
)
{
...
...
@@ -1489,11 +1495,15 @@ static uint32_t omap_dma_read(void *opaque, target_phys_addr_t addr)
}
static
void
omap_dma_write
(
void
*
opaque
,
target_phys_addr_t
addr
,
uint32_t
valu
e
)
uint64_t
value
,
unsigned
siz
e
)
{
struct
omap_dma_s
*
s
=
(
struct
omap_dma_s
*
)
opaque
;
int
reg
,
ch
;
if
(
size
!=
2
)
{
return
omap_badwidth_write16
(
opaque
,
addr
,
value
);
}
switch
(
addr
)
{
case
0x300
...
0x3fe
:
if
(
s
->
model
<=
omap_dma_3_1
||
!
s
->
omap_3_1_mapping_disabled
)
{
...
...
@@ -1530,16 +1540,10 @@ static void omap_dma_write(void *opaque, target_phys_addr_t addr,
OMAP_BAD_REG
(
addr
);
}
static
CPUReadMemoryFunc
*
const
omap_dma_readfn
[]
=
{
omap_badwidth_read16
,
omap_dma_read
,
omap_badwidth_read16
,
};
static
CPUWriteMemoryFunc
*
const
omap_dma_writefn
[]
=
{
omap_badwidth_write16
,
omap_dma_write
,
omap_badwidth_write16
,
static
const
MemoryRegionOps
omap_dma_ops
=
{
.
read
=
omap_dma_read
,
.
write
=
omap_dma_write
,
.
endianness
=
DEVICE_NATIVE_ENDIAN
,
};
static
void
omap_dma_request
(
void
*
opaque
,
int
drq
,
int
req
)
...
...
@@ -1615,10 +1619,11 @@ static void omap_dma_setcaps(struct omap_dma_s *s)
}
struct
soc_dma_s
*
omap_dma_init
(
target_phys_addr_t
base
,
qemu_irq
*
irqs
,
MemoryRegion
*
sysmem
,
qemu_irq
lcd_irq
,
struct
omap_mpu_state_s
*
mpu
,
omap_clk
clk
,
enum
omap_dma_model
model
)
{
int
iomemtype
,
num_irqs
,
memsize
,
i
;
int
num_irqs
,
memsize
,
i
;
struct
omap_dma_s
*
s
=
(
struct
omap_dma_s
*
)
g_malloc0
(
sizeof
(
struct
omap_dma_s
));
...
...
@@ -1658,9 +1663,8 @@ struct soc_dma_s *omap_dma_init(target_phys_addr_t base, qemu_irq *irqs,
omap_dma_reset
(
s
->
dma
);
omap_dma_clk_update
(
s
,
0
,
1
);
iomemtype
=
cpu_register_io_memory
(
omap_dma_readfn
,
omap_dma_writefn
,
s
,
DEVICE_NATIVE_ENDIAN
);
cpu_register_physical_memory
(
base
,
memsize
,
iomemtype
);
memory_region_init_io
(
&
s
->
iomem
,
&
omap_dma_ops
,
s
,
"omap.dma"
,
memsize
);
memory_region_add_subregion
(
sysmem
,
base
,
&
s
->
iomem
);
mpu
->
drq
=
s
->
dma
->
drq
;
...
...
@@ -1688,12 +1692,17 @@ static void omap_dma_interrupts_4_update(struct omap_dma_s *s)
qemu_irq_raise
(
s
->
irq
[
3
]);
}
static
uint32_t
omap_dma4_read
(
void
*
opaque
,
target_phys_addr_t
addr
)
static
uint64_t
omap_dma4_read
(
void
*
opaque
,
target_phys_addr_t
addr
,
unsigned
size
)
{
struct
omap_dma_s
*
s
=
(
struct
omap_dma_s
*
)
opaque
;
int
irqn
=
0
,
chnum
;
struct
omap_dma_channel_s
*
ch
;
if
(
size
==
1
)
{
return
omap_badwidth_read16
(
opaque
,
addr
);
}
switch
(
addr
)
{
case
0x00
:
/* DMA4_REVISION */
return
0x40
;
...
...
@@ -1834,12 +1843,16 @@ static uint32_t omap_dma4_read(void *opaque, target_phys_addr_t addr)
}
static
void
omap_dma4_write
(
void
*
opaque
,
target_phys_addr_t
addr
,
uint32_t
valu
e
)
uint64_t
value
,
unsigned
siz
e
)
{
struct
omap_dma_s
*
s
=
(
struct
omap_dma_s
*
)
opaque
;
int
chnum
,
irqn
=
0
;
struct
omap_dma_channel_s
*
ch
;
if
(
size
==
1
)
{
return
omap_badwidth_write16
(
opaque
,
addr
,
value
);
}
switch
(
addr
)
{
case
0x14
:
/* DMA4_IRQSTATUS_L3 */
irqn
++
;
...
...
@@ -2021,23 +2034,18 @@ static void omap_dma4_write(void *opaque, target_phys_addr_t addr,
}
}
static
CPUReadMemoryFunc
*
const
omap_dma4_readfn
[]
=
{
omap_badwidth_read16
,
omap_dma4_read
,
omap_dma4_read
,
};
static
CPUWriteMemoryFunc
*
const
omap_dma4_writefn
[]
=
{
omap_badwidth_write16
,
omap_dma4_write
,
omap_dma4_write
,
static
const
MemoryRegionOps
omap_dma4_ops
=
{
.
read
=
omap_dma4_read
,
.
write
=
omap_dma4_write
,
.
endianness
=
DEVICE_NATIVE_ENDIAN
,
};
struct
soc_dma_s
*
omap_dma4_init
(
target_phys_addr_t
base
,
qemu_irq
*
irqs
,
MemoryRegion
*
sysmem
,
struct
omap_mpu_state_s
*
mpu
,
int
fifo
,
int
chans
,
omap_clk
iclk
,
omap_clk
fclk
)
{
int
i
omemtype
,
i
;
int
i
;
struct
omap_dma_s
*
s
=
(
struct
omap_dma_s
*
)
g_malloc0
(
sizeof
(
struct
omap_dma_s
));
...
...
@@ -2065,9 +2073,8 @@ struct soc_dma_s *omap_dma4_init(target_phys_addr_t base, qemu_irq *irqs,
omap_dma_reset
(
s
->
dma
);
omap_dma_clk_update
(
s
,
0
,
!!
s
->
dma
->
freq
);
iomemtype
=
cpu_register_io_memory
(
omap_dma4_readfn
,
omap_dma4_writefn
,
s
,
DEVICE_NATIVE_ENDIAN
);
cpu_register_physical_memory
(
base
,
0x1000
,
iomemtype
);
memory_region_init_io
(
&
s
->
iomem
,
&
omap_dma4_ops
,
s
,
"omap.dma4"
,
0x1000
);
memory_region_add_subregion
(
sysmem
,
base
,
&
s
->
iomem
);
mpu
->
drq
=
s
->
dma
->
drq
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录