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     *  ======== TMS320C2812.xdc ========
    12     */
    13    package ti.catalog.c2800;
    14    
    15    /*!
    16     *  ======== TMS320C2812 ========
    17     *  The C2812 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 TMS320C2812 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: 0,
    38                space: "code/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: "On-Chip RAM Memory",
    52                name: "LSARAM",
    53                base: 0x8000,
    54                len:  0x2000,
    55                page: 0,
    56                space: "code/data"
    57            }],
    58        
    59            ["OTP", {
    60                comment: "2K X 16 OTP memory",
    61                name: "OTP",
    62                base: 0x3d7800,
    63                len:  0x400,
    64                page: 0,
    65                space: "code/data"
    66            }],
    67        
    68            ["FLASH", {
    69                comment: "128K X 16 Flash memory",
    70                name: "FLASH",
    71                base: 0x3d8000,
    72                len:  0x20000,
    73                page: 0,
    74                space: "code/data"
    75            }],
    76        
    77            ["H0SARAM", {
    78                comment: "On-Chip RAM Memory",
    79                name: "H0SARAM",
    80                base: 0x3f8000,
    81                len:  0x2000,
    82                page: 0,
    83                space: "code/data"
    84            }],
    85        
    86            ["BOOTROM", {
    87                comment: "On-Chip Boot ROM",
    88                name: "BOOTROM",
    89                base: 0x3ff000,
    90                len:  0xfc0, 
    91                page: 0,
    92                space: "code/data"
    93            }],
    94        ];
    95    };
    96    /*
    97     *  @(#) ti.catalog.c2800; 1, 0, 0, 0,174; 6-4-2009 14:19:57; /db/ztree/library/trees/platform-k10x/src/
    98     */
    99