Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
55b33f31
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看板
提交
55b33f31
编写于
4月 30, 2009
作者:
G
Greg Ungerer
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
m68knommu: move CPU reset code for the 523x ColdFire into its platform code
Signed-off-by:
N
Greg Ungerer
<
gerg@uclinux.org
>
上级
25ce4a90
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
6 deletion
+17
-6
arch/m68k/include/asm/m523xsim.h
arch/m68k/include/asm/m523xsim.h
+9
-0
arch/m68knommu/platform/523x/config.c
arch/m68knommu/platform/523x/config.c
+8
-6
未找到文件。
arch/m68k/include/asm/m523xsim.h
浏览文件 @
55b33f31
...
...
@@ -41,5 +41,14 @@
#define MCFSIM_DACR1 0x50
/* SDRAM base address 1 */
#define MCFSIM_DMR1 0x54
/* SDRAM address mask 1 */
/*
* Reset Controll Unit (relative to IPSBAR).
*/
#define MCF_RCR 0x110000
#define MCF_RSR 0x110001
#define MCF_RCR_SWRESET 0x80
/* Software reset bit */
#define MCF_RCR_FRCSTOUT 0x40
/* Force external reset */
/****************************************************************************/
#endif
/* m523xsim_h */
arch/m68knommu/platform/523x/config.c
浏览文件 @
55b33f31
...
...
@@ -15,7 +15,6 @@
#include <linux/kernel.h>
#include <linux/param.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <asm/machdep.h>
#include <asm/coldfire.h>
...
...
@@ -24,10 +23,6 @@
/***************************************************************************/
void
coldfire_reset
(
void
);
/***************************************************************************/
static
struct
mcf_platform_uart
m523x_uart_platform
[]
=
{
{
.
mapbase
=
MCF_MBAR
+
MCFUART_BASE1
,
...
...
@@ -145,13 +140,20 @@ void mcf_autovector(unsigned int vec)
{
/* Everything is auto-vectored on the 523x */
}
/***************************************************************************/
static
void
m523x_cpu_reset
(
void
)
{
local_irq_disable
();
__raw_writeb
(
MCF_RCR_SWRESET
,
MCF_IPSBAR
+
MCF_RCR
);
}
/***************************************************************************/
void
__init
config_BSP
(
char
*
commandp
,
int
size
)
{
mcf_disableall
();
mach_reset
=
coldfire
_reset
;
mach_reset
=
m523x_cpu
_reset
;
m523x_uarts_init
();
m523x_fec_init
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录