Skip to content
Snippets Groups Projects
Commit 151d5d99 authored by Andy Fleming's avatar Andy Fleming Committed by Andrew Fleming-AFLEMING
Browse files

Add cpu support for the 8544


Recognize new SVR values, and add a few register definitions

Signed-off-by: default avatarEd Swarthout <Ed.Swarthout@freescale.com>
Signed-off-by: default avatarJon Loeliger <jdl@freescale.com>
Acked-by: default avatarAndy Fleming <afleming@freescale.com>
parent 25d83d7f
No related branches found
No related tags found
No related merge requests found
/* /*
* Copyright 2004 Freescale Semiconductor. * Copyright 2004,2007 Freescale Semiconductor, Inc.
* (C) Copyright 2002, 2003 Motorola Inc. * (C) Copyright 2002, 2003 Motorola Inc.
* Xianghua Xiao (X.Xiao@motorola.com) * Xianghua Xiao (X.Xiao@motorola.com)
* *
...@@ -70,6 +70,12 @@ int checkcpu (void) ...@@ -70,6 +70,12 @@ int checkcpu (void)
case SVR_8548_E: case SVR_8548_E:
puts("8548_E"); puts("8548_E");
break; break;
case SVR_8544:
puts("8544");
break;
case SVR_8544_E:
puts("8544_E");
break;
default: default:
puts("Unknown"); puts("Unknown");
break; break;
...@@ -112,7 +118,7 @@ int checkcpu (void) ...@@ -112,7 +118,7 @@ int checkcpu (void)
#endif #endif
clkdiv = lcrr & 0x0f; clkdiv = lcrr & 0x0f;
if (clkdiv == 2 || clkdiv == 4 || clkdiv == 8) { if (clkdiv == 2 || clkdiv == 4 || clkdiv == 8) {
#ifdef CONFIG_MPC8548 #if defined(CONFIG_MPC8548) || defined(CONFIG_MPC8544)
/* /*
* Yes, the entire PQ38 family use the same * Yes, the entire PQ38 family use the same
* bit-representation for twice the clock divider values. * bit-representation for twice the clock divider values.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment