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     *  ======== TMS320C5509.xdc ========
    15     *
    16     */
    17    package ti.catalog.c5500;
    18    
    19    /*!
    20     *  ======== TMS320C5509 ========
    21     *  The C5509 device data sheet module.
    22     *
    23     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    24     *  used by platforms to obtain "data sheet" information about this device.
    25     */
    26    metaonly module TMS320C5509 inherits ITMS320C55xx
    27    {
    28    instance:
    29        override config string   cpuCoreRevision = "1.0";
    30    
    31        /*!
    32         *  ======== memMap ========
    33         *  The default memory map for this device
    34         */
    35        config xdc.platform.IPlatform.Memory memMap[string]  = [
    36            ["DARAM", {
    37                comment: "8 blocks of 8K bytes",
    38                name: "DARAM",
    39                base: 0x000000,
    40                len:  0x010000,
    41                space: "code/data",
    42                access: "RWX"
    43            }],
    44        
    45            ["SARAM", {
    46                comment: "24 blocks of 8K bytes",
    47                name: "SARAM",
    48                base: 0x10000,
    49                len:  0x30000,
    50                space: "code/data",
    51                access: "RWX"
    52            }],
    53            
    54            ["ROM", {
    55                comment: "64K bytes One-Wait-State On-Chip ROM",
    56                name: "ROM",
    57                base: 0xff0000,
    58                len:  0x010000,
    59                space: "code/data",
    60                access: "RX"
    61            }],
    62        ];
    63    };
    64    /*
    65     *  @(#) ti.catalog.c5500; 1, 0, 0, 0,276; 8-7-2010 18:18:04; /db/ztree/library/trees/platform/platform-l20x/src/
    66     */
    67