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     *  ======== Platform.xdc ========
    15     */
    16    
    17    package ti.platforms.evmTMS570PSF762;
    18    
    19    /*!
    20     *  ======== Platform ========
    21     *  Simulation-based Platform support for TI Arm (470x) platforms
    22     *
    23     *  This module implements xdc.platform.IPlatform and defines configuration
    24     *  parameters that correspond to this platform's Cpu's, Board's, etc.
    25     *
    26     *  The configuration parameters are initialized in this package's
    27     *  configuration script (package.cfg) and "bound" to the TCOM object
    28     *  model.  Once they are part of the model, these parameters are
    29     *  queried by a program's configuration script.
    30     *
    31     *  This particular platform has a single Cpu, and therefore, only
    32     *  declares a single CPU configuration object.  Multi-CPU platforms
    33     *  would declare multiple Cpu configuration parameters (one per
    34     *  platform CPU).
    35     */
    36    metaonly module Platform inherits xdc.platform.IPlatform
    37    {
    38        /*!
    39         *  ======== BOARD ========
    40         *  This platform's board attributes
    41         */
    42        readonly config xdc.platform.IPlatform.Board BOARD = {
    43            id:             "0",
    44            boardName:      "evmTMS570PSF762",
    45            boardFamily:    "evmTMS570",
    46            boardRevision:  null
    47        };
    48    
    49        /*!
    50         *  ======== CPU ========
    51         *  The  Cortex R4 core
    52         */
    53        readonly config xdc.platform.IExeContext.Cpu CPU = {        
    54            id:             "0",
    55            clockRate:      150.0,
    56            catalogName:    "ti.catalog.arm",
    57            deviceName:     "TMS570PSF762",
    58            revision:       "",
    59        };
    60    
    61    instance:
    62    
    63        /*!
    64         *  ======== flash_lo ========
    65         *  Determines which of two flash/iram configurations to use.
    66         *  
    67         *  if true, then FLASH memory occupies low memory and IRAM occupies high memory.
    68         *  if false, then FLASH memory occupies high memory and IRAM occupies low memory.
    69         */
    70        config Bool flash_lo = true;
    71    
    72        /*!
    73         *  ======== deviceName ========
    74         *  The CPU simulated by this simulator platform.
    75         *
    76         *  This parameter is optional. If it's not set, then the Platform module
    77         *  parameter CPU.deviceName is used.
    78         */
    79        config string deviceName;
    80    
    81        override config string codeMemory = "FLASH";
    82        override config string dataMemory = "IRAM";
    83        override config string stackMemory = "IRAM";
    84    };
    85    /*
    86     *  @(#) ti.platforms.evmTMS570PSF762; 1, 0, 1, 1,19; 5-6-2010 13:39:40; /db/ztree/library/trees/platform/platform-k34x/src/
    87     */
    88