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     *  ======== TMS320C5510.xdc ========
    12     */
    13    package ti.catalog.c5500;
    14    
    15    /*!
    16     *  ======== TMS320C5510 ========
    17     *  The C5510 device data sheet module.
    18     *
    19     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    20     *  used by platforms to obtain "data sheet" information about this device.
    21     */
    22    metaonly module TMS320C5510 inherits ITMS320C55xx
    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            ["DARAM", {
    33                comment: "8 blocks of 8K bytes of on-chip Dual-Access RAM",
    34                name: "DARAM",
    35                base: 0x0000c0,
    36                len:  0x00ff40,
    37                space: "code/data",
    38                access: "RWX"
    39            }],
    40        
    41            ["SARAM", {
    42                comment: "32 blocks of 8K bytes of on-chip Single-Access RAM",
    43                name: "SARAM",
    44                base: 0x10000,
    45                len:  0x40000,
    46                space: "code/data",
    47                access: "RWX"
    48            }],
    49    
    50            ["ROM", {
    51                comment: "32K bytes of on-chip ROM",
    52                name: "ROM",
    53                base: 0xff8000,
    54                len:  0x008000,
    55                space: "code/data",
    56                access: "RX"
    57            }],
    58        ];
    59    };
    60    /*
    61     *  @(#) ti.catalog.c5500; 1, 0, 0, 0,173; 6-4-2009 14:13:13; /db/ztree/library/trees/platform-k10x/src/
    62     */
    63