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     *  ======== TMS320CDM310.xdc ========
    12     *
    13     */
    14    package ti.catalog.c5400;
    15    
    16    /*!
    17     *  ======== TMS320CDM310 ========
    18     *  The DM310 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 TMS320CDM310 inherits ITMS320C54xx
    24    {
    25        config xdc.platform.IPlatform.Memory memBlock[string]  = [
    26            ["P_DARAM", {
    27                comment: "On-Chip Program DARAM",
    28                name: "P_DARAM",
    29                base: 0x0080,
    30                len:  0x7F80,
    31                space: "code"
    32            }],
    33        
    34            ["P_ROM", {
    35                comment: "On-Chip Program ROM",
    36                name: "P_ROM",
    37                base: 0xC000,
    38                len:  0x4000,
    39                space: "code"
    40            }],
    41        
    42            ["VECT", {
    43                comment: "On-Chip Interrupts",
    44                name: "VECT",
    45                base: 0x7F80,
    46                len:  0x0080,
    47                space: "code"
    48            }],
    49        
    50            ["P_SARAM", {
    51                comment: "On-Chip SARAM",
    52                name:    "P_SARAM",
    53                base:    0x18000,
    54                len:     0x08000,
    55                space:   "code"
    56            }],
    57    
    58            ["D_SPRAM", {
    59                comment: "Scratch-Pad RAM",
    60                name: "D_SPRAM",
    61                base: 0x60,
    62                len:  0x20, 
    63                space: "data"
    64            }],
    65        
    66            ["D_DARAM", {
    67                comment: "On-Chip Data DARAM",
    68                name: "D_DARAM",
    69                base: 0x0080,
    70                len:  0x7F00,
    71                space: "data"
    72            }],
    73        
    74            ["D_SARAM", {
    75                comment: "On-Chip SARAM",
    76                name:    "D_SARAM",
    77                base:    0x8000,
    78                len:     0x4000,
    79                space:   "data"
    80            }],
    81    
    82            ["IMAGE_BUFFER_AC", {
    83                comment: "Co-processor Shared Memory (Image Buffer) A/C",
    84                name:    "IMAGE_BUFFER_AC",
    85                base:    0x00008000,
    86                len:     0x00002000,
    87                space:   "data"
    88            }],
    89    
    90            ["D_ROM", {
    91                comment: "On-Chip Data ROM",
    92                name: "D_ROM", 
    93                base: 0xC000,
    94                len:  0x4000, 
    95                space: "data"
    96            }],
    97            
    98            ["IMAGE_BUFFER_B", {
    99                comment: "Co-processor Shared Memory (Image Buffer) B",
   100                name:    "IMAGE_BUFFER",
   101                base:    0x0000A000,
   102                len:     0x00002000,
   103                space:   "data"
   104            }],
   105        ];
   106    
   107    instance:
   108        override config string   cpuCoreRevision = "1.0";
   109    
   110        /*!
   111         *  ======== memMap ========
   112         *  The default memory map for this device
   113         */
   114        config xdc.platform.IPlatform.Memory memMap[string];
   115    };
   116    /*
   117     *  @(#) ti.catalog.c5400; 1, 0, 0, 0,173; 6-4-2009 14:13:15; /db/ztree/library/trees/platform-k10x/src/
   118     */
   119