1    /*
     2     *  Copyright (c) 2010 by Texas Instruments and others.
     3     *  All rights reserved. This program and the accompanying materials
     4     *  are made available under the terms of the Eclipse Public License v1.0
     5     *  which accompanies this distribution, and is available at
     6     *  http://www.eclipse.org/legal/epl-v10.html
     7     *
     8     *  Contributors:
     9     *      Texas Instruments - initial implementation
    10     *
    11     * */
    12    
    13    /*
    14     *  ======== TMS320C5510.xdc ========
    15     */
    16    package ti.catalog.c5500;
    17    
    18    /*!
    19     *  ======== TMS320C5510 ========
    20     *  The C5510 device data sheet module.
    21     *
    22     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    23     *  used by platforms to obtain "data sheet" information about this device.
    24     */
    25    metaonly module TMS320C5510 inherits ITMS320C55xx
    26    {
    27    instance:
    28        override config string   cpuCoreRevision = "1.0";
    29    
    30        /*!
    31         *  ======== memMap ========
    32         *  The default memory map for this device
    33         */
    34        config xdc.platform.IPlatform.Memory memMap[string]  = [
    35            ["DARAM", {
    36                comment: "8 blocks of 8K bytes of on-chip Dual-Access RAM",
    37                name: "DARAM",
    38                base: 0x0000c0,
    39                len:  0x00ff40,
    40                space: "code/data",
    41                access: "RWX"
    42            }],
    43        
    44            ["SARAM", {
    45                comment: "32 blocks of 8K bytes of on-chip Single-Access RAM",
    46                name: "SARAM",
    47                base: 0x10000,
    48                len:  0x40000,
    49                space: "code/data",
    50                access: "RWX"
    51            }],
    52    
    53            ["ROM", {
    54                comment: "32K bytes of on-chip ROM",
    55                name: "ROM",
    56                base: 0xff8000,
    57                len:  0x008000,
    58                space: "code/data",
    59                access: "RX"
    60            }],
    61        ];
    62    };
    63    /*
    64     *  @(#) ti.catalog.c5500; 1, 0, 0, 0,291; 11-12-2010 14:43:06; /db/ztree/library/trees/platform/platform-l27x/src/
    65     */
    66