1    /*
     2     *  Copyright (c) 2011 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     */
    16    package ti.platforms.tms320x28;
    17    
    18    /*!
    19     *  ======== Platform ========
    20     *  A generic platform that supports any TMS320x28 device
    21     *
    22     *  The device to be used by this platform is passed as the platform instance
    23     *  name. On the `xdc.tools.configuro` command line, it is done in the
    24     *  following way:
    25     *  @p(code)
    26     *  xs xdc.tools.configuro ... -p "ti.platforms.tms320x28:TMS320C2812"
    27     *  @p
    28     *
    29     *  In package.bld, the platform instance is selected as in:
    30     *  @p(code)
    31     *  Pkg.addExecutable("test", target, "ti.platforms.tms320x28:TMS320C2812");
    32     *  @p
    33     */
    34    metaonly module Platform inherits xdc.platform.IPlatform
    35    {
    36        config xdc.platform.IPlatform.Board BOARD = {
    37            id:             "0",
    38            boardName:      "tms320x28",
    39            boardFamily:    null,
    40            boardRevision:  null
    41        };
    42    
    43        /*!
    44         *  ======== nameFormat ========
    45         *  Encoding of instance creation parameters in the instance's name
    46         * 
    47         *  For this platform, the parameters `deviceName`, `includeLinkCmdFile`
    48         *  and `clockRate` can be encoded in the instance name supplied on
    49         *  `xdc.tools.configuro` command line, for example:
    50         *  @p(code)
    51         *      xs xdc.tools.configuro ... -p ti.platforms.tms320x28:TMS320F28035:1:60
    52         *  @p
    53         *  Optional parameters can be omitted:
    54         *  @p(code)
    55         *      xs xdc.tools.configuro ... -p ti.platforms.tms320x28:TMS320F28035:60
    56         *  @p
    57         */
    58        readonly config string nameFormat
    59            = "$(deviceName):$(includeLinkCmdFile):$(clockRate)";
    60    
    61    instance:
    62    
    63        config xdc.platform.IExeContext.Cpu CPU = {
    64            id:             "0",
    65            clockRate:      0,
    66            catalogName:    "ti.catalog.c2800",
    67            deviceName:     "TMS320C2812",
    68            revision:       null,
    69        };
    70    
    71        /*!
    72         *  ======== deviceName ========
    73         *  The name of an `ICpuDataSheet` module for the device
    74         *
    75         *  This parameter is required, but it does not have to be set explicitly;
    76         *  it can be encoded in the instance's name.
    77         */
    78        config string deviceName;
    79    
    80        /*!
    81         *  ======== clockRate ========
    82         *  The clock rate for this device.
    83         */
    84        config Double clockRate = 0;
    85    
    86        override config string codeMemory = null;
    87    
    88        override config string dataMemory = null;
    89    
    90        override config string stackMemory = null;
    91    
    92        /*!
    93         *  ======== includeLinkCmdFile ========
    94         *  The flag that specifies if the platform should include a linker command
    95         *  file.
    96         *
    97         *  By default, a user is responsible for adding a linker command file to
    98         *  the project, or to the linker command line. However, if this flag is
    99         *  set, this platform will include a default linker command file for the
   100         *  selected device.
   101         */
   102        config Bool includeLinkCmdFile = false;
   103    };
   104    /*
   105     *  @(#) ti.platforms.tms320x28; 1, 0, 0,18; 4-26-2011 10:56:36; /db/ztree/library/trees/platform/platform-m16x/src/
   106     */
   107