Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
b61a7260
Commit
b61a7260
authored
Apr 30, 2009
by
Greg Ungerer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
m68knommu: add CPU reset code for the 5206e ColdFire
Signed-off-by:
Greg Ungerer
<
gerg@uclinux.org
>
parent
851377bc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
arch/m68knommu/platform/5206e/config.c
arch/m68knommu/platform/5206e/config.c
+12
-6
No files found.
arch/m68knommu/platform/5206e/config.c
View file @
b61a7260
...
...
@@ -11,7 +11,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,10 +20,6 @@
/***************************************************************************/
void
coldfire_reset
(
void
);
/***************************************************************************/
static
struct
mcf_platform_uart
m5206e_uart_platform
[]
=
{
{
.
mapbase
=
MCF_MBAR
+
MCFUART_BASE1
,
...
...
@@ -109,6 +104,17 @@ void mcf_settimericr(unsigned int timer, unsigned int level)
/***************************************************************************/
void
m5206e_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
);
...
...
@@ -119,7 +125,7 @@ void __init config_BSP(char *commandp, int size)
commandp
[
size
-
1
]
=
0
;
#endif
/* CONFIG_NETtel */
mach_reset
=
coldfire
_reset
;
mach_reset
=
m5206e_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