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     *  ======== ITMS320C28346.xdc ========
    12     */
    13    package ti.catalog.c2800;
    14    
    15    /*!
    16     *  ======== TMS320C28346 ========
    17     *  The C28335 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 interface ITMS320C28346 inherits ITMS320C283xx
    23    {
    24    instance:
    25        override config string   cpuCoreRevision = "1.0";
    26    
    27        /*!
    28         *  ======== memMap ========
    29         *  The default memory map for this device
    30         */
    31        config xdc.platform.IPlatform.Memory memMap[string]  = [
    32            ["MSARAM", {
    33                comment: "On-Chip RAM Memory",
    34                name: "MSARAM",
    35                base: 0x0,
    36                len:  0x800,
    37                page: 1,
    38                space: "data"
    39            }],
    40        
    41            ["PIEVECT", {
    42                comment: "On-Chip PIEVECT RAM Memory",
    43                name:    "PIEVECT",
    44                base:    0xD00,
    45                len:     0x100,
    46                page: 1,
    47                space:   "data"
    48            }],
    49        
    50            ["L03SARAM", {
    51                comment: "On-Chip RAM Memory",
    52                name: "L03SARAM",
    53                base: 0x8000,
    54                len:  0x8000,
    55                page: 0,
    56                space: "code/data"
    57            }],
    58        
    59            ["L47SARAM", {
    60                comment: "On-Chip RAM Memory",
    61                name: "L47SARAM",
    62                base: 0x10000,
    63                len:  0x8000,
    64                page: 1,
    65                space: "code/data"
    66            }],
    67        
    68            ["H05SARAM", {
    69                comment: "On-Chip RAM Memory", 
    70                name: "H05SARAM",
    71                base: 0x300000,
    72                len:  0x030000,
    73                page: 0,
    74                space: "code"
    75            }],
    76        
    77            ["BOOTROM", {
    78                comment: "On-Chip Boot ROM",
    79                name: "BOOTROM",
    80                base: 0x3fe000,
    81                len:  0x1fc0, 
    82                page: 0,
    83                space: "code"
    84            }],
    85        ];
    86    };
    87    /*
    88     *  @(#) ti.catalog.c2800; 1, 0, 0, 0,174; 6-4-2009 14:19:57; /db/ztree/library/trees/platform-k10x/src/
    89     */
    90