1    /*
     2     *  Copyright 2009 by Texas Instruments Incorporated.
     3     *
     4     *  All rights reserved. Property of Texas Instruments Incorporated.
     5     *  Restricted rights to use, duplicate or disclose this code are
     6     *  granted through contract.
     7     *
     8     */
     9    
    10    /*
    11     *  ======== TMS320C6745.xdc ========
    12     *
    13     */
    14    package ti.catalog.c6000;
    15    
    16    /*!
    17     *  ======== TMS320C6745 ========
    18     */
    19    metaonly module TMS320C6745 inherits ITMS320DA8xx
    20    {
    21    instance:
    22        override config xdc.platform.IPlatform.Memory memMap[string]  = [
    23            ["L2ROM", {
    24                comment:    "Internal 1MB L2 ROM",
    25                name:       "IROM",
    26                base:       0x11700000,
    27                len:        0x00100000,
    28                space:      "code/data",
    29                access:     "RX"
    30            }],
    31    
    32            ["IRAM", {
    33                comment:    "Internal 256KB L2 memory",
    34                name:       "IRAM",
    35                base:       0x11800000,
    36                len:        0x00040000,
    37                space:      "code/data",
    38                access:     "RWX"
    39            }],
    40            
    41            ["L1PSRAM", {
    42                comment:    "Internal 32KB L1 program memory",
    43                name:       "L1PSRAM",
    44                base:       0x11E00000,
    45                len:        0x00008000,
    46                space:      "code",
    47                access:     "RWX"
    48            }],
    49    
    50            ["L1DSRAM", {
    51                comment:    "Internal 32KB L1 data memory",
    52                name:       "L1DSRAM",
    53                base:       0x11F00000,
    54                len:        0x00008000,
    55                space:      "data",
    56                access:     "RW"
    57            }],
    58        ];
    59    };
    60    /*
    61     *  @(#) ti.catalog.c6000; 1, 0, 0, 0,173; 6-4-2009 14:07:55; /db/ztree/library/trees/platform-k10x/src/
    62     */
    63