navienginebsp/tools/testreference/lauterbach/printconfig.cmm
changeset 0 5de814552237
equal deleted inserted replaced
-1:000000000000 0:5de814552237
       
     1 //
       
     2 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 // All rights reserved.
       
     4 // This component and the accompanying materials are made available
       
     5 // under the terms of "Eclipse Public License v1.0"
       
     6 // which accompanies this distribution, and is available
       
     7 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 //
       
     9 // Initial Contributors:
       
    10 // Nokia Corporation - initial contribution.
       
    11 //
       
    12 // Contributors:
       
    13 //
       
    14 // Description:  
       
    15 //
       
    16 //////////////////////////////////////////////////////////////////////////////
       
    17 //
       
    18 // A script to display the current configuration of T32, in terms of what board
       
    19 // it is configured for and the ROM image to be used etc.  This can be called by
       
    20 // the configdialog.cmm script or manually by the user.
       
    21 //
       
    22 // Change History:
       
    23 //
       
    24 // 11/11/2008 1.0 : Initial version
       
    25 // 13/05/2009 1.1 : Tidied up in readiness for putting into Nokia's distribution system
       
    26 //////////////////////////////////////////////////////////////////////////////
       
    27 
       
    28 &scriptversion=1.1
       
    29 
       
    30 ; Make sure that we have loaded the latest configuration variables
       
    31 do globals.cmm
       
    32 
       
    33 print "=============================================================================="
       
    34 print "USER CONFIG"
       
    35 print "=============================================================================="
       
    36 
       
    37 print "Platform             &Platform"
       
    38 print "RAM Addr             &RamAddr"
       
    39 print "RAM Image            &RamImage"
       
    40 print "Flash Addr           &FlashAddr"
       
    41 print "Flash Image          &FlashImage"
       
    42 print "Boot Addr            &BootAddr"
       
    43 print "Boot Image           &BootImage"
       
    44 print "Flash Write Protect  &FlashWriteProtect"
       
    45 print "Flash Erase Protect  &FlashEraseProtect"
       
    46 
       
    47 print "=============================================================================="
       
    48 print "PLATFORM CONFIG"
       
    49 print "=============================================================================="
       
    50 
       
    51 print "CPU Type               &CpuType"
       
    52 print "JTAG clock             &JtagClock"
       
    53 print "Number of CPUs         &NumberOfCpus"
       
    54 
       
    55 print "On-chip triggers->"
       
    56 print "    FIQ                &OnChipTriggerFiq"
       
    57 print "    IRQ                &OnChipTriggerIrq"
       
    58 print "    DABORT             &OnChipTriggerDabort"
       
    59 print "    PABORT             &OnChipTriggerPabort"
       
    60 print "    SWI                &OnChipTriggerSwi"
       
    61 print "    UNDEF              &OnChipTriggerUndef"
       
    62 print "    RESET              &OnChipTriggerReset"
       
    63 print "    Alignment          &OnChipTriggerAlignment"
       
    64 print "    StepVector         &OnChipTriggerStepvector"
       
    65 print "    ADDRESS            &OnChipTriggerAddress"
       
    66 print "    ERROR              &OnChipTriggerError"
       
    67 
       
    68 print "Sytem Option ->"
       
    69 print "    enreset            &SystemOptionEnreset"
       
    70 print "    turbo              &SystemOptionTurbo"
       
    71 print "    dismode            &SystemOptionDismode"
       
    72 print "    noircheck          &SystemOptionNoircheck"
       
    73 print "    waitreset          &SystemOptionWaitreset"
       
    74 print "    resbreak           &SystemOptionResbreak"
       
    75 print "    dacr               &SystemOptionDacr"
       
    76 print "    tidbgen            &SystemOptionTidbgen"
       
    77 
       
    78 print "Flash Config"
       
    79 print "    Type               &FlashType"
       
    80 print "    Bloc Size          &FlashBlockSize"
       
    81 print "    Start Addr         &FlashStart"
       
    82 print "    Length             &FlashLength"
       
    83 print "    End Addr           &FlashEnd"
       
    84 print "    Width              &FlashWidth"
       
    85 print "    Target             &FlashOptionTarget"
       
    86 
       
    87 print "=============================================================================="
       
    88 
       
    89 enddo