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     *  ======== TMS320CDM740.xdc ========
    15     */
    16    
    17    /*!
    18     *  ======== TMS320CDM740 ========
    19     *  The TMS320CDM740 device data sheet module.
    20     *
    21     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    22     *  used by platforms to obtain "data sheet" information about this device.
    23     *
    24     */
    25    metaonly module TMS320CDM740 inherits ti.catalog.ICpuDataSheet
    26    {
    27    instance:
    28        override config string cpuCore           = "CM3";
    29        override config string isa               = "v7M";
    30        override config string cpuCoreRevision   = "1.0";
    31        override config int    minProgUnitSize   = 1;
    32        override config int    minDataUnitSize   = 1;
    33        override config int    dataWordSize      = 4;
    34    
    35        /*!
    36         *  ======== memMap ========
    37         *  The memory map returned be getMemoryMap().
    38         */
    39        config xdc.platform.IPlatform.Memory memMap[string] = [
    40    
    41            /* 
    42             * AMMU mapped L2 ROM virtual address
    43             * Physical address is 0x55000000
    44             */
    45            ["L2_ROM", {
    46                name: "L2_ROM",
    47                base: 0x00000000,
    48                len:  0x00004000
    49            }],
    50    
    51            /* 
    52             * AMMU mapped L2 RAM virtual address
    53             * Physical address is 0x55020000
    54         * Size is 256K
    55             */
    56            ["L2_RAM", {
    57                name: "L2_RAM",
    58                base: 0x20000000, 
    59                len:  0x00040000
    60            }],
    61        ];
    62    };
    63    /*
    64     *  @(#) ti.catalog.arm; 1, 0, 1,166; 8-7-2010 18:18:05; /db/ztree/library/trees/platform/platform-l20x/src/
    65     */
    66