Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
ced52fa6
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看板
提交
ced52fa6
编写于
9月 12, 2011
作者:
A
Avi Kivity
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
palm: convert to memory API
Signed-off-by:
N
Avi Kivity
<
avi@redhat.com
>
上级
f0cdd7a9
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
25 addition
and
28 deletion
+25
-28
hw/palm.c
hw/palm.c
+25
-28
未找到文件。
hw/palm.c
浏览文件 @
ced52fa6
...
...
@@ -54,16 +54,12 @@ static void static_write(void *opaque, target_phys_addr_t offset,
#endif
}
static
CPUReadMemoryFunc
*
const
static_readfn
[]
=
{
static_readb
,
static_readh
,
static_readw
,
};
static
CPUWriteMemoryFunc
*
const
static_writefn
[]
=
{
static_write
,
static_write
,
static_write
,
static
const
MemoryRegionOps
static_ops
=
{
.
old_mmio
=
{
.
read
=
{
static_readb
,
static_readh
,
static_readw
,
},
.
write
=
{
static_write
,
static_write
,
static_write
,
},
},
.
endianness
=
DEVICE_NATIVE_ENDIAN
,
};
/* Palm Tunsgten|E support */
...
...
@@ -203,34 +199,35 @@ static void palmte_init(ram_addr_t ram_size,
struct
omap_mpu_state_s
*
cpu
;
int
flash_size
=
0x00800000
;
int
sdram_size
=
palmte_binfo
.
ram_size
;
int
io
;
static
uint32_t
cs0val
=
0xffffffff
;
static
uint32_t
cs1val
=
0x0000e1a0
;
static
uint32_t
cs2val
=
0x0000e1a0
;
static
uint32_t
cs3val
=
0xe1a0e1a0
;
int
rom_size
,
rom_loaded
=
0
;
DisplayState
*
ds
=
get_displaystate
();
MemoryRegion
*
flash
=
g_new
(
MemoryRegion
,
1
);
MemoryRegion
*
cs
=
g_new
(
MemoryRegion
,
4
);
cpu
=
omap310_mpu_init
(
address_space_mem
,
sdram_size
,
cpu_model
);
/* External Flash (EMIFS) */
cpu_register_physical_memory
(
OMAP_CS0_BASE
,
flash_size
,
qemu_ram_alloc
(
NULL
,
"palmte.flash"
,
flash_size
)
|
IO_MEM_ROM
);
io
=
cpu_register_io_memory
(
static_readfn
,
static_writefn
,
&
cs0val
,
DEVICE_NATIVE_ENDIAN
);
cpu_register_physical_memory
(
OMAP_CS0_BASE
+
flash_size
,
OMAP_CS0_SIZE
-
flash_size
,
io
);
io
=
cpu_register_io_memory
(
static_readfn
,
static_writefn
,
&
cs1val
,
DEVICE_NATIVE_ENDIAN
);
cpu_register_physical_memory
(
OMAP_CS1_BASE
,
OMAP_CS1_SIZE
,
io
);
io
=
cpu_register_io_memory
(
static_readfn
,
static_writefn
,
&
cs2val
,
DEVICE_NATIVE_ENDIAN
);
cpu_register_physical_memory
(
OMAP_CS2_BASE
,
OMAP_CS2_SIZE
,
io
);
io
=
cpu_register_io_memory
(
static_readfn
,
static_writefn
,
&
cs3val
,
DEVICE_NATIVE_ENDIAN
);
cpu_register_physical_memory
(
OMAP_CS3_BASE
,
OMAP_CS3_SIZE
,
io
);
memory_region_init_ram
(
flash
,
NULL
,
"palmte.flash"
,
flash_size
);
memory_region_set_readonly
(
flash
,
true
);
memory_region_add_subregion
(
address_space_mem
,
OMAP_CS0_BASE
,
flash
);
memory_region_init_io
(
&
cs
[
0
],
&
static_ops
,
&
cs0val
,
"palmte-cs0"
,
OMAP_CS0_SIZE
-
flash_size
);
memory_region_add_subregion
(
address_space_mem
,
OMAP_CS0_BASE
+
flash_size
,
&
cs
[
0
]
);
memory_region_init_io
(
&
cs
[
1
],
&
static_ops
,
&
cs1val
,
"palmte-cs1"
,
OMAP_CS1_SIZE
);
memory_region_add_subregion
(
address_space_mem
,
OMAP_CS1_BASE
,
&
cs
[
1
]
);
memory_region_init_io
(
&
cs
[
2
],
&
static_ops
,
&
cs2val
,
"palmte-cs2"
,
OMAP_CS2_SIZE
);
memory_region_add_subregion
(
address_space_mem
,
OMAP_CS2_BASE
,
&
cs
[
2
]
);
memory_region_init_io
(
&
cs
[
3
],
&
static_ops
,
&
cs3val
,
"palmte-cs3"
,
OMAP_CS3_SIZE
);
memory_region_add_subregion
(
address_space_mem
,
OMAP_CS3_BASE
,
&
cs
[
3
]
);
palmte_microwire_setup
(
cpu
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录