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