mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
Signed-off-by: Scott Wood <scottwood@freescale.com>
This commit is contained in:
parent
d87c57b201
commit
a35b0c4950
1 changed files with 12 additions and 0 deletions
|
@ -124,6 +124,18 @@ int checkcpu(void)
|
|||
case SPR_8321_REV11:
|
||||
puts("MPC8321, ");
|
||||
break;
|
||||
case SPR_8311_REV10:
|
||||
puts("MPC8311, ");
|
||||
break;
|
||||
case SPR_8311E_REV10:
|
||||
puts("MPC8311E, ");
|
||||
break;
|
||||
case SPR_8313_REV10:
|
||||
puts("MPC8313, ");
|
||||
break;
|
||||
case SPR_8313E_REV10:
|
||||
puts("MPC8313E, ");
|
||||
break;
|
||||
default:
|
||||
puts("Rev: Unknown revision number.\nWarning: Unsupported cpu revision!\n");
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue