1    /*
     2     *  Copyright (c) 2011 by Texas Instruments and others.
     3     *  All rights reserved. This program and the accompanying materials
     4     *  are made available under the terms of the Eclipse Public License v1.0
     5     *  which accompanies this distribution, and is available at
     6     *  http://www.eclipse.org/legal/epl-v10.html
     7     *
     8     *  Contributors:
     9     *      Texas Instruments - initial implementation
    10     *
    11     * */
    12    
    13    /*
    14     *  ======== TMS320C5405.xdc ========
    15     *
    16     */
    17    package ti.catalog.c5400;
    18    
    19    /*!
    20     *  ======== TMS320C5405 ========
    21     *  The C5405 device data sheet module.
    22     *
    23     *  This module implements the xdc.platform.ICpuDataSheet interface and is used
    24     *  by platforms to obtain "data sheet" information about this device.
    25     */
    26    metaonly module TMS320C5405 inherits ITMS320C54xx
    27    {
    28        config xdc.platform.IPlatform.Memory memBlock[string]  = [
    29            ["P_DARAM", {
    30                comment: "On-Chip Program DARAM",
    31                name: "P_DARAM",
    32                base: 0x0080,
    33                len:  0x3F80,
    34                space: "code"
    35            }],
    36        
    37            ["P_ROM", {
    38                comment: "On-Chip Program ROM",
    39                name: "P_ROM",
    40                base: 0xF000,
    41                len:  0x0F00,
    42                space: "code"
    43            }],
    44        
    45            ["VECT", {
    46                comment: "On-Chip Interrupts",
    47                name: "VECT",
    48                base: 0xFF80,
    49                len:  0x0080,
    50                space: "code"
    51            }],
    52        
    53            ["D_SPRAM", {
    54                comment: "Scratch-Pad RAM",
    55                name: "D_SPRAM",
    56                base: 0x60,
    57                len:  0x20, 
    58                space: "data"
    59            }],
    60        
    61            ["D_DARAM", {
    62                comment: "On-Chip Data DARAM",
    63                name: "D_DARAM",
    64                base: 0x0080,
    65                len:  0x3F80,
    66                space: "data"
    67            }],
    68        
    69            ["D_ROM", {
    70                comment: "On-Chip Data ROM",
    71                name: "D_ROM", 
    72                base: 0xF000,
    73                len:  0x0F00, 
    74                space: "data"
    75            }],
    76        ];
    77    
    78    instance:
    79        override config string   cpuCoreRevision = "1.0";
    80    
    81        /*!
    82         *  ======== memMap ========
    83         *  The default memory map for this device
    84         */
    85        config xdc.platform.IPlatform.Memory memMap[string];
    86    };
    87    /*
    88     *  @(#) ti.catalog.c5400; 1, 0, 0, 0,341; 4-26-2011 10:50:56; /db/ztree/library/trees/platform/platform-m16x/src/
    89     */
    90