1    /*
     2     *  Copyright (c) 2011 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     *  ======== TMS320DA803.xdc ========
    15     *
    16     */
    17    package ti.catalog.c6000;
    18    
    19    /*!
    20     *  ======== TMS320DA803 ========
    21     *  The DA803 device data sheet module.
    22     */
    23    metaonly module TMS320DA803 inherits ITMS320DA8xx
    24    {
    25    
    26    instance:
    27    
    28        /*!
    29         *  ======== memMap ========
    30         *  The default memory map for this device
    31         */
    32        override config xdc.platform.IPlatform.Memory memMap[string] = [
    33            ["IROM", {
    34                comment:    "Internal 1MB L2 ROM",
    35                name:       "IROM",
    36                base:       0x11700000,
    37                len:        0x00100000,
    38                space:      "code/data",
    39                access:     "RX"
    40            }],
    41    
    42            ["IRAM", {
    43                comment:    "Internal 256KB L2 memory",
    44                name:       "IRAM",
    45                base:       0x11800000,
    46                len:        0x00040000,
    47                space:      "code/data",
    48                access:     "RWX"
    49            }],
    50            
    51            ["L1PSRAM", {
    52                comment:    "Internal 32KB L1 program memory",
    53                name:       "L1PSRAM",
    54                base:       0x11E00000,
    55                len:        0x00008000,
    56                space:      "code",
    57                access:     "RWX"
    58            }],
    59    
    60            ["L1DSRAM", {
    61                comment:    "Internal 32KB L1 data memory",
    62                name:       "L1DSRAM",
    63                base:       0x11F00000,
    64                len:        0x00008000,
    65                space:      "data",
    66                access:     "RW"
    67            }],
    68        ];
    69    };
    70    /*
    71     *  @(#) ti.catalog.c6000; 1, 0, 0, 0,341; 4-26-2011 10:51:07; /db/ztree/library/trees/platform/platform-m16x/src/
    72     */
    73