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     *  Platform support for evmLM3S9B92
    16     *
    17     */
    18    
    19    package ti.platforms.evmLM3S9B92;
    20    
    21    /*!
    22     *  ======== Platform ========
    23     *  Platform support for the evmLM3S9B92
    24     *
    25     *  This module implements xdc.platform.IPlatform and defines configuration
    26     *  parameters that correspond to this platform's Cpu's, Board's, etc.
    27     *
    28     *  The configuration parameters are initialized in this package's
    29     *  configuration script (package.cfg) and "bound" to the TCOM object
    30     *  model.  Once they are part of the model, these parameters are
    31     *  queried by a program's configuration script.
    32     *
    33     *  This particular platform has a single Cpu, and therefore, only
    34     *  declares a single CPU configuration object.  Multi-CPU platforms
    35     *  would declare multiple Cpu configuration parameters (one per
    36     *  platform CPU).
    37     */
    38    metaonly module Platform inherits xdc.platform.IPlatform
    39    {
    40        readonly config xdc.platform.IPlatform.Board BOARD = {      
    41            id:             "0",
    42            boardName:      "evmLM3S9B92",
    43            boardFamily:    "evmLM3S9B92",
    44            boardRevision:  null,
    45        };
    46    
    47        /* M3 Subsystem */
    48        readonly config xdc.platform.IExeContext.Cpu M3 = { 
    49            id:             "0",
    50            clockRate:      80.0,
    51            catalogName:    "ti.catalog.arm.cortexm3",
    52            deviceName:     "LM3S9B92",
    53            revision:       "1.0",
    54        };
    55    
    56    instance:
    57        override config string codeMemory = "FRAM";
    58        override config string dataMemory = "IRAM";
    59        override config string stackMemory = "IRAM";
    60    };
    61    /*
    62     *  @(#) ti.platforms.evmLM3S9B92; 1, 0, 0,134; 8-17-2012 22:15:48; /db/ztree/library/trees/platform/platform-n27x/src/
    63     */
    64