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     *  ======== TNETV1050.xdc ========
    12     *  The chip configuration settings are based on document SPRS238C.
    13     *
    14     */
    15    package ti.catalog.c5500;
    16    
    17    /*!
    18     *  ======== TNETV1050 ========
    19     *  The TNETV1050 device data sheet module.
    20     *
    21     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    22     *  used by platforms to obtain "data sheet" information about this device.
    23     */
    24    metaonly module TNETV1050 inherits ITMS320C55xx
    25    {
    26    instance:
    27        override config string   cpuCoreRevision = "1.0";
    28    
    29        /*!
    30         *  ======== memMap ========
    31         *  The default memory map for this device
    32         */
    33        config xdc.platform.IPlatform.Memory memMap[string]  = [
    34            ["DARAM01", {
    35                comment: "2 blocks of 16K bytes on-chip Dual-Access RAM",
    36                name: "DARAM01",
    37                base: 0x000000,
    38                len:  0x008000,
    39                space: "code/data",
    40                access: "RWX"
    41            }],
    42    
    43            ["DARAM23", {
    44                comment: "2 blocks of 16K bytes on-chip Dual-Access RAM",
    45                name: "DARAM23",
    46                base: 0x008000,
    47                len:  0x008000,
    48                space: "data",
    49                access: "RWX"
    50            }],
    51    
    52            ["SARAM", {
    53                comment: "64K bytes on-chip Single-Access RAM",
    54                name: "SARAM",
    55                base: 0x010000,
    56                len:  0x010000,
    57                space: "code/data",
    58                access: "RWX"
    59            }],
    60        
    61            ["VECT", {
    62                comment: "On-Chip Interrupt Vector Table",
    63                name: "VECT",
    64                base: 0xfff800,
    65                len:  0x000100,
    66                space: "code",
    67                access: "RWX"
    68            }],
    69        ];
    70    };
    71    /*
    72     *  @(#) ti.catalog.c5500; 1, 0, 0, 0,173; 6-4-2009 14:13:14; /db/ztree/library/trees/platform-k10x/src/
    73     */
    74