]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - cpu/ppc4xx/cpu.c
Patch by Travis Sawyer, 30 Dec 2003:
[people/ms/u-boot.git] / cpu / ppc4xx / cpu.c
index 0ad99b889c98b406d2381068acce1bdb3440f9c9..df19605a923628ae9deddf9f622442c438da3422 100644 (file)
@@ -152,10 +152,10 @@ int checkcpu (void)
 #endif
 
 #if defined(CONFIG_440)
-       puts ("IBM PowerPC 440 Rev. ");
+       puts ("IBM PowerPC 440 G");
        switch(pvr) {
        case PVR_440GP_RB:
-               putc('B');
+               puts("P Rev. B");
                /* See errata 1.12: CHIP_4 */
                if ((mfdcr(cpc0_sys0) != mfdcr(cpc0_strp0)) ||
                    (mfdcr(cpc0_sys1) != mfdcr(cpc0_strp1)) ){
@@ -167,7 +167,13 @@ int checkcpu (void)
                }
                break;
        case PVR_440GP_RC:
-               putc('C');
+               puts("P Rev. C");
+               break;
+       case PVR_440GX_RA:
+               puts("X Rev. A");
+               break;
+       case PVR_440GX_RB:
+               puts("X Rev. B");
                break;
        default:
                printf ("UNKNOWN (PVR=%08x)", pvr);