1    /* 
     2     *  Copyright (c) 2008 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     *  ======== Platform.xdc ========
    14     */
    15    
    16    package host.platforms.SUN;
    17    
    18    /*!
    19     *  ======== Platform ========
    20     *  Native SUN Solaris platform support
    21     *
    22     *  This module implements xdc.platform.IPlatform and defines configuration
    23     *  parameters that correspond to this platform's Cpu's, Board's, etc.
    24     *
    25     *  The configuration parameters are initialized in this package's
    26     *  configuration script (package.cfg) and "bound" to the TCOM object
    27     *  model.  Once they are part of the model, these parameters are
    28     *  queried by a program's configuration script.
    29     *
    30     *  This particular platform has a single Cpu, and therefore, only
    31     *  declares a single CPU configuration object.  Multi-CPU platforms
    32     *  would declare multiple Cpu configuration parameters (one per
    33     *  platform CPU).
    34     */
    35    metaonly module Platform inherits xdc.platform.IPlatform
    36    {
    37        /*!
    38         *  ======== BOARD ========
    39         *  @_nodoc this structure (and CPU below) exists to satisfy the
    40         *  IPlatform interface requirements; these fields are largely
    41         *  unnecessary for host platforms.
    42         */
    43        readonly config xdc.platform.IPlatform.Board BOARD = {
    44            id:             "0",
    45            boardName:      "sun-sparc",
    46            boardFamily:    "sun-sparc",
    47            boardRevision:  null
    48        };
    49    
    50        /*!
    51         *  ======== CPU ========
    52         *  @_nodoc 
    53         */
    54        readonly config xdc.platform.IExeContext.Cpu CPU = {
    55            id:             "0",
    56            clockRate:      750.0,
    57            catalogName:    "host.platforms.SUN",
    58            deviceName:     "SunSparc7",
    59            revision:       "",
    60        };
    61    
    62    instance:
    63        config String remoteHost;
    64    }
    65    /*
    66     *  @(#) host.platforms.SUN; 1, 0, 0, 1,302; 1-26-2011 10:38:54; /db/ztree/library/trees/xdc/xdc-v56x/src/packages/
    67     */
    68