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     *  ======== TMS320C5401.xdc ========
    12     */
    13    package ti.catalog.c5400;
    14    
    15    /*!
    16     *  ======== TMS320C5401 ========
    17     *  The C5401 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 TMS320C5401 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: 0x1000,
    29                len:  0x2000,
    30                space: "code"
    31            }],
    32        
    33            ["P_ROM", {
    34                comment: "On-Chip Program ROM",
    35                name: "P_ROM",
    36                base: 0xf000,
    37                len:  0x0f00,
    38                space: "code"
    39            }],
    40        
    41            ["VECT", {
    42                comment: "On-Chip Interrupts",
    43                name: "VECT",
    44                base: 0xff80,
    45                len:  0x0080,
    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: 0x1000,
    61                len:  0x2000,
    62                space: "data"
    63            }],
    64        
    65            ["D_ROM", {
    66                comment: "On-Chip Data ROM",
    67                name: "D_ROM", 
    68                base: 0xf000,
    69                len:  0x0f00, 
    70                space: "data"
    71            }],
    72        ];
    73    
    74    instance:
    75        override config string   cpuCoreRevision = "1.0";
    76    
    77        /*!
    78         *  ======== memMap ========
    79         *  The default memory map for this device
    80         */
    81        config xdc.platform.IPlatform.Memory memMap[string];
    82    };
    83    /*
    84     *  @(#) ti.catalog.c5400; 1, 0, 0, 0,173; 6-4-2009 14:13:13; /db/ztree/library/trees/platform-k10x/src/
    85     */
    86