Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
eb7c874d
Commit
eb7c874d
authored
Apr 30, 2009
by
Greg Ungerer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
m68knommu: add CPU reset code for the 5407 ColdFire
Signed-off-by:
Greg Ungerer
<
gerg@uclinux.org
>
parent
c18e52c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
arch/m68knommu/platform/5407/config.c
arch/m68knommu/platform/5407/config.c
+12
-4
No files found.
arch/m68knommu/platform/5407/config.c
View file @
eb7c874d
...
...
@@ -12,7 +12,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>
...
...
@@ -21,8 +20,6 @@
/***************************************************************************/
void
coldfire_reset
(
void
);
extern
unsigned
int
mcf_timervector
;
extern
unsigned
int
mcf_profilevector
;
extern
unsigned
int
mcf_timerlevel
;
...
...
@@ -110,6 +107,17 @@ void mcf_settimericr(unsigned int timer, unsigned int level)
/***************************************************************************/
void
m5407_cpu_reset
(
void
)
{
local_irq_disable
();
/* set watchdog to soft reset, and enabled */
__raw_writeb
(
0xc0
,
MCF_MBAR
+
MCFSIM_SYPCR
);
for
(;;)
/* wait for watchdog to timeout */
;
}
/***************************************************************************/
void
__init
config_BSP
(
char
*
commandp
,
int
size
)
{
mcf_setimr
(
MCFSIM_IMR_MASKALL
);
...
...
@@ -121,7 +129,7 @@ void __init config_BSP(char *commandp, int size)
mcf_timerlevel
=
6
;
#endif
mach_reset
=
coldfire
_reset
;
mach_reset
=
m5407_cpu
_reset
;
}
/***************************************************************************/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment