1    /* --COPYRIGHT--,EPL
     2     *  Copyright (c) 2009 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     * --/COPYRIGHT--*/
    12    
    13    /*
    14     *  ======== Platform.xdc ========
    15     */
    16    
    17    package ti.platforms.generic;
    18    
    19    /*!
    20     *  ======== Platform ========
    21     *  A generic platform that supports any HW platform
    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        config xdc.platform.IPlatform.Board BOARD = { 
    39            id:             "0",
    40            boardName:      "generic",
    41            boardFamily:    null,
    42            boardRevision:  null
    43        };
    44    
    45    instance:
    46    
    47        config xdc.platform.IExeContext.Cpu CPU = { 
    48            id:             "0",
    49            clockRate:      0,
    50            catalogName:    null,
    51            deviceName:     null,
    52            revision:       "",
    53        };
    54    
    55        /*!
    56         *  ======== deviceName ========
    57         *  The CPU simulated by this simulator platform.
    58         *
    59         *  This parameter is required.
    60         */
    61        config string deviceName;
    62    
    63        /*!
    64         *  ======== catalogName ========
    65         *  The name of the package that contains the module 'deviceName'.
    66         *
    67         *  This parameter is required.
    68         */
    69        config string catalogName;
    70    
    71        /*!
    72         *  ======== clockRate ========
    73         *  The clock rate for the simulated device.
    74         *
    75         *  This parameter is required. There are no checks if the simulated device
    76         *  supports the given clock rate.
    77         */
    78        config Double clockRate;
    79    
    80        override config string codeMemory = null;
    81        
    82        override config string dataMemory = null;
    83    
    84        override config string stackMemory = null;
    85    };
    86    /*
    87     *  @(#) ti.platforms.generic; 1, 0, 0, 1,236; 7-29-2009 16:18:01; /db/ztree/library/trees/platform-k16x/src/
    88     */
    89