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