Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
uboot-imx
Commits
7b4fd36b
Commit
7b4fd36b
authored
Mar 18, 2006
by
Wolfgang Denk
Browse files
Add support for MPC859/866 Rev. A.0
parent
0a112d86
Changes
1
Hide whitespace changes
Inline
Side-by-side
cpu/mpc8xx/cpu.c
View file @
7b4fd36b
...
...
@@ -69,14 +69,15 @@ static int check_CPU (long clock, uint pvr, uint immr)
k
=
(
immr
<<
16
)
|
*
((
ushort
*
)
&
immap
->
im_cpm
.
cp_dparam
[
0xB0
]);
m
=
0
;
suf
=
""
;
/*
* Some boards use sockets so different CPUs can be used.
* We have to check chip version in run time.
*/
switch
(
k
)
{
case
0x00020001
:
pre
=
'P'
;
suf
=
""
;
break
;
case
0x00030001
:
suf
=
""
;
break
;
case
0x00020001
:
pre
=
'P'
;
break
;
case
0x00030001
:
break
;
case
0x00120003
:
suf
=
"A"
;
break
;
case
0x00130003
:
suf
=
"A3"
;
break
;
...
...
@@ -93,7 +94,11 @@ static int check_CPU (long clock, uint pvr, uint immr)
/* this value is not documented anywhere */
case
0x40000000
:
pre
=
'P'
;
suf
=
"D"
;
m
=
1
;
break
;
/* MPC866P/MPC866T/MPC859T/MPC859DSL/MPC852T */
case
0x08000003
:
pre
=
'M'
;
suf
=
""
;
m
=
1
;
case
0x08010004
:
/* Rev. A.0 */
suf
=
"A"
;
/* fall through */
case
0x08000003
:
/* Rev. 0.3 */
pre
=
'M'
;
m
=
1
;
if
(
id_str
==
NULL
)
id_str
=
# if defined(CONFIG_MPC852T)
...
...
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