1    /*
     2     *  Copyright (c) 2012 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     *  ======== Platform.xdc ========
    15     *  This module implements xdc.IPlatform and defines configuration
    16     *  parameters that correspond to this platform's Cpu's, Board's, etc.
    17     *
    18     *  The configuration parameters are initialized in this package's
    19     *  configuration script (package.cfg) and "bound" to the TCOM object
    20     *  model.  Once they are part of the model, these parameters are
    21     *  queried by a program's configuration script.
    22     *
    23     *  This particular platform has a single Cpu, and therefore, only
    24     *  declares a single CPU configuration object.  Multi-CPU platforms
    25     *  would declare multiple Cpu configuration parameters (one per
    26     *  platform CPU).
    27     *
    28     */
    29    
    30    package ti.platforms.ezdsp28335;
    31    
    32    metaonly module Platform inherits xdc.platform.IPlatform
    33    {
    34        readonly config xdc.platform.IPlatform.Board BOARD = {
    35            id:             "0",
    36            boardName:      "ezdsp28335",
    37            boardFamily:    "ezdsp28335",
    38            boardRevision:  null
    39        };
    40    
    41        readonly config xdc.platform.IExeContext.Cpu CPU = {
    42            id:             "0",
    43            clockRate:      150.0,
    44            catalogName:    "ti.catalog.c2800",
    45            deviceName:     "TMS320C28335",
    46            revision:       null
    47        };
    48        
    49    instance:
    50    
    51        override readonly config xdc.platform.IPlatform.MemoryMap
    52            externalMemoryMap = [
    53                ["SRAM",
    54                    {
    55                        name: "SRAM",
    56                        base: 0x200000,
    57                        len:  0x020000,
    58                        page: 0,
    59                        space: "code/data",
    60                    }
    61                ],
    62            ];
    63    
    64        override config string codeMemory = "SRAM";
    65        
    66        override config string dataMemory = "SRAM";
    67    
    68        override config string stackMemory = "L03SARAM";
    69    
    70    };
    71    /*
    72     *  @(#) ti.platforms.ezdsp28335; 1, 0, 0,313; 8-17-2012 22:16:29; /db/ztree/library/trees/platform/platform-n27x/src/
    73     */
    74