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