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     *  ======== ITMS320C28021.xdc ========
    12     */
    13    package ti.catalog.c2800;
    14    
    15    /*!
    16     *  ======== TMS320C28021 ========
    17     *  The C28021 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 module TMS320C28021 inherits ITMS320C28xx
    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            ["LSARAM", {
    51                comment: "L0 SARAM (3K x 16)",
    52                name: "LSARAM",
    53                base: 0x8000,
    54                len:  0x0c00,
    55                page: 0,
    56                space: "code/data"
    57            }],
    58    
    59            ["FLASH", {
    60                comment: "32K X 16 Flash memory",
    61                name: "FLASH",
    62                base: 0x3f0000,
    63                len:  0x008000,
    64                page: 0,
    65                space: "code"
    66            }],
    67        
    68            ["BOOTROM", {
    69                comment: "On-Chip Boot ROM",
    70                name: "BOOTROM",
    71                base: 0x3fe000,
    72                len:  0x001fc0, 
    73                page: 0,
    74                space: "code"
    75            }],
    76        ];
    77    }
    78    /*
    79     *  @(#) ti.catalog.c2800; 1, 0, 0, 0,174; 6-4-2009 14:19:57; /db/ztree/library/trees/platform-k10x/src/
    80     */
    81