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     *  ======== TMS320C5407.xdc ========
    15     *
    16     */
    17    package ti.catalog.c5400;
    18    
    19    /*!
    20     *  ======== TMS320C5407 ========
    21     *  The C5407 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 TMS320C5407 inherits ITMS320C54xx
    27    {
    28        config xdc.platform.IPlatform.Memory memBlock[string]  = [
    29            ["P_DARAM02", {
    30                comment: "On-Chip Program DARAM02",
    31                name: "P_DARAM02",
    32                base: 0x0080,
    33                len:  0x5F80,
    34                space: "code"
    35            }],
    36        
    37            ["P_DARAM04", {
    38                comment: "On-Chip Program DARAM04",
    39                name: "P_DARAM04",
    40                base: 0x0080,
    41                len:  0x9F80,
    42                space: "code"
    43            }],
    44        
    45            ["P_ROM0", {
    46                comment: "On-Chip Program ROM0",
    47                name: "P_ROM0",
    48                base: 0x6000,
    49                len:  0x9F00,
    50                space: "code"
    51            }],
    52        
    53            ["VECT", {
    54                comment: "On-Chip Interrupts",
    55                name: "VECT",
    56                base: 0xFF80,
    57                len:  0x0080,
    58                space: "code"
    59            }],
    60        
    61            ["P_ROM1", {
    62                comment: "On-Chip Program ROM1",
    63                name: "P_ROM1",
    64                base: 0x18000,
    65                len:  0x08000,
    66                space: "code"
    67            }],
    68        
    69            ["P_ROM2", {
    70                comment: "On-Chip Program ROM2",
    71                name: "P_ROM2",
    72                base: 0x28000,
    73                len:  0x08000,
    74                space: "code"
    75            }],
    76        
    77            ["P_ROM3", {
    78                comment: "On-Chip Program ROM3",
    79                name: "P_ROM3",
    80                base: 0x38000,
    81                len:  0x06000,
    82                space: "code"
    83            }],
    84        
    85            ["D_SPRAM", {
    86                comment: "Scratch-Pad RAM",
    87                name: "D_SPRAM",
    88                base: 0x60,
    89                len:  0x20, 
    90                space: "data"
    91            }],
    92        
    93            ["D_DARAM04", {
    94                comment: "On-Chip Data DARAM04",
    95                name: "D_DARAM04",
    96                base: 0x0080,
    97                len:  0x9F80,
    98                space: "data"
    99            }],
   100        
   101            ["D_ROM", {
   102                comment: "On-Chip Data ROM",
   103                name: "D_ROM",
   104                base: 0xC000,
   105                len:  0x4000,
   106                space: "data"
   107            }],
   108        
   109        ];
   110    
   111    instance:
   112        override config string   cpuCoreRevision = "1.0";
   113    
   114        /*!
   115         *  ======== memMap ========
   116         *  The default memory map for this device
   117         */
   118        config xdc.platform.IPlatform.Memory memMap[string];
   119    };
   120    /*
   121     *  @(#) ti.catalog.c5400; 1, 0, 0, 0,378; 11-9-2011 11:59:47; /db/ztree/library/trees/platform/platform-n08x/src/
   122     */
   123