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
c18e52c7
Commit
c18e52c7
authored
Apr 30, 2009
by
Greg Ungerer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
m68knommu: add CPU reset code for the 5307 ColdFire
Signed-off-by:
Greg Ungerer
<
gerg@uclinux.org
>
parent
293ca0f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
arch/m68knommu/platform/5307/config.c
arch/m68knommu/platform/5307/config.c
+12
-4
No files found.
arch/m68knommu/platform/5307/config.c
View file @
c18e52c7
...
...
@@ -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>
...
...
@@ -22,8 +21,6 @@
/***************************************************************************/
void
coldfire_reset
(
void
);
extern
unsigned
int
mcf_timervector
;
extern
unsigned
int
mcf_profilevector
;
extern
unsigned
int
mcf_timerlevel
;
...
...
@@ -119,6 +116,17 @@ void mcf_settimericr(unsigned int timer, unsigned int level)
/***************************************************************************/
void
m5307_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
);
...
...
@@ -134,7 +142,7 @@ void __init config_BSP(char *commandp, int size)
mcf_timerlevel
=
6
;
#endif
mach_reset
=
coldfire
_reset
;
mach_reset
=
m5307_cpu
_reset
;
#ifdef CONFIG_BDM_DISABLE
/*
...
...
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