1    /*
     2     *  Copyright 2009 by Texas Instruments Incorporated.
     3     *
     4     *  All rights reserved. Property of Texas Instruments Incorporated.
     5     *  Restricted rights to use, duplicate or disclose this code are
     6     *  granted through contract.
     7     *
     8     */
     9    
    10    /*
    11     *  ======== TMS320C5402A.xdc ========
    12     */
    13    package ti.catalog.c5400;
    14    
    15    /*!
    16     *  ======== TMS320C5402A ========
    17     *  The C5402A device data sheet module.
    18     *
    19     *  This module implements the xdc.platform.ICpuDataSheet interface and is used
    20     *  by platforms to obtain "data sheet" information about this device.
    21     */
    22    metaonly module TMS320C5402A inherits ITMS320C54xx
    23    {
    24        config xdc.platform.IPlatform.Memory memBlock[string]  = [
    25            ["P_DARAM", {
    26                comment: "On-Chip Program DARAM",
    27                name: "P_DARAM",
    28                base: 0x80,
    29                len:  0x3f80,
    30                space: "code"
    31            }],
    32        
    33            ["P_ROM", {
    34                comment: "On-Chip Program ROM",
    35                name: "P_ROM",
    36                base: 0xC000,
    37                len:  0x3F00,
    38                space: "code"
    39            }],
    40        
    41            ["VECT", {
    42                comment: "On-Chip Interrupts",
    43                name: "VECT",
    44                base: 0xff80,
    45                len:  0x80,
    46                space: "code"
    47            }],
    48        
    49            ["D_SPRAM", {
    50                comment: "Scratch-Pad RAM",
    51                name: "D_SPRAM",
    52                base: 0x60,
    53                len:  0x20, 
    54                space: "data"
    55            }],
    56        
    57            ["D_DARAM", {
    58                comment: "On-Chip Data DARAM",
    59                name: "D_DARAM",
    60                base: 0x80,
    61                len:  0x3f80,
    62                space: "data"
    63            }],
    64       
    65        ];
    66    
    67    instance:
    68        override config string   cpuCoreRevision = "1.0";
    69    
    70        /*!
    71         *  ======== memMap ========
    72         *  The default memory map for this device
    73         */
    74        config xdc.platform.IPlatform.Memory memMap[string];
    75    };
    76    /*
    77     *  @(#) ti.catalog.c5400; 1, 0, 0, 0,173; 6-4-2009 14:13:13; /db/ztree/library/trees/platform-k10x/src/
    78     */
    79