Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
25ce4a90
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看板
提交
25ce4a90
编写于
4月 30, 2009
作者:
G
Greg Ungerer
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
m68knommu: move CPU reset code for the 520x ColdFire into its platform code
Signed-off-by:
N
Greg Ungerer
<
gerg@uclinux.org
>
上级
384feb91
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
18 addition
and
6 deletion
+18
-6
arch/m68k/include/asm/m520xsim.h
arch/m68k/include/asm/m520xsim.h
+9
-0
arch/m68knommu/platform/520x/config.c
arch/m68knommu/platform/520x/config.c
+9
-6
未找到文件。
arch/m68k/include/asm/m520xsim.h
浏览文件 @
25ce4a90
...
...
@@ -59,5 +59,14 @@
#define MCFPIT_IMR MCFINTC_IMRL
#define MCFPIT_IMR_IBIT (1 << MCFINT_PIT1)
/*
* Reset Controll Unit.
*/
#define MCF_RCR 0xFC0A0000
#define MCF_RSR 0xFC0A0001
#define MCF_RCR_SWRESET 0x80
/* Software reset bit */
#define MCF_RCR_FRCSTOUT 0x40
/* Force external reset */
/****************************************************************************/
#endif
/* m520xsim_h */
arch/m68knommu/platform/520x/config.c
浏览文件 @
25ce4a90
...
...
@@ -14,7 +14,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>
...
...
@@ -23,10 +22,6 @@
/***************************************************************************/
void
coldfire_reset
(
void
);
/***************************************************************************/
static
struct
mcf_platform_uart
m520x_uart_platform
[]
=
{
{
.
mapbase
=
MCF_MBAR
+
MCFUART_BASE1
,
...
...
@@ -169,9 +164,17 @@ void mcf_autovector(unsigned int vec)
/***************************************************************************/
static
void
m520x_cpu_reset
(
void
)
{
local_irq_disable
();
__raw_writeb
(
MCF_RCR_SWRESET
,
MCF_RCR
);
}
/***************************************************************************/
void
__init
config_BSP
(
char
*
commandp
,
int
size
)
{
mach_reset
=
coldfire
_reset
;
mach_reset
=
m520x_cpu
_reset
;
m520x_uarts_init
();
m520x_fec_init
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录