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.control28035;
    31    
    32    metaonly module Platform inherits xdc.platform.IPlatform
    33    {
    34        readonly config xdc.platform.IPlatform.Board BOARD = {
    35            id:             "0",
    36            boardName:      "control28035",
    37            boardFamily:    "control28035",
    38            boardRevision:  null
    39        };
    40    
    41        readonly config xdc.platform.IExeContext.Cpu CPU = {
    42            id:             "0",
    43            clockRate:      60.0,
    44            catalogName:    "ti.catalog.c2800",
    45            deviceName:     "TMS320C28035",
    46            revision:       null
    47        };
    48        
    49    instance:
    50    
    51        override config string codeMemory = "FLASH";
    52        
    53        override config string dataMemory = "LSARAM";
    54    
    55        override config string stackMemory = "MSARAM";
    56    };
    57    /*
    58     *  @(#) ti.platforms.control28035; 1, 0, 0,128; 7-3-2012 15:21:52; /db/ztree/library/trees/platform/platform-n23x/src/
    59     */
    60