1    /* --COPYRIGHT--,EPL
     2     *  Copyright (c) 2009 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     * --/COPYRIGHT--*/
    12    
    13    /*
    14     *  ======== TMS320C2420.xdc ========
    15     *
    16     */
    17    package ti.catalog.c5500;
    18    
    19    /*!
    20     *  ======== TMS320C2420 ========
    21     *  The C2420 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 TMS320C2420 inherits IOMAP
    27    {
    28    instance:
    29        override config string   cpuCoreRevision = "1.0";
    30    
    31        /*!
    32         *  ======== memMap ========
    33         *  The default memory map for this device
    34         */
    35        override 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: "12 blocks of 8K bytes",
    47                name: "SARAM",
    48                base: 0x010000,
    49                len:  0x018000,
    50                space: "code/data",
    51                access: "RWX"
    52            }],
    53    
    54            ["PDROM", {
    55                comment: "64K bytes On-Chip ROM",
    56                name: "PDROM",
    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,201; 10-7-2009 15:35:37; /db/ztree/library/trees/platform-k22x/src/
    66     */
    67