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     */
    17    
    18    package ti.platforms.simDM420;
    19    
    20    /*!
    21     *  ======== Platform ========
    22     *  Platform support for the simDM420
    23     *
    24     *  This module implements xdc.platform.IPlatform and defines configuration
    25     *  parameters that correspond to this platform's Cpu's, Board's, etc.
    26     *
    27     *  The configuration parameters are initialized in this package's
    28     *  configuration script (package.cfg) and "bound" to the TCOM object
    29     *  model.  Once they are part of the model, these parameters are
    30     *  queried by a program's configuration script.
    31     *
    32     *  This particular platform has a single Cpu, and therefore, only
    33     *  declares a single CPU configuration object.  Multi-CPU platforms
    34     *  would declare multiple Cpu configuration parameters (one per
    35     *  platform CPU).
    36     */
    37    metaonly module Platform inherits xdc.platform.IPlatform
    38    {
    39        readonly config xdc.platform.IPlatform.Board BOARD = {      
    40            id:             "0",
    41            boardName:      "simDM420",
    42            boardFamily:    "simDM420",
    43            boardRevision:  null,
    44        };
    45            
    46        readonly config xdc.platform.IExeContext.Cpu CPU = {        
    47            id:             "0",
    48            clockRate:      486.0,
    49            catalogName:    "ti.catalog.c6000",
    50            deviceName:     "TMS320CDM420",
    51            revision:       "",
    52        };
    53        
    54    instance:
    55    
    56        override config string codeMemory = "IRAM";
    57        
    58        override config string dataMemory = "IRAM";
    59    
    60        override config string stackMemory = "IRAM";
    61    
    62        /*
    63         *  ======== l1PMode ========
    64         *  Define the amount of L1P RAM used for L1 Program Cache.
    65         *
    66         *  Check the device documentation for valid values.
    67         */
    68        config String l1PMode = "32k";
    69        
    70        /*
    71         *  ======== l1DMode ========
    72         *  Define the amount of L1D RAM used for L1 Data Cache.
    73         *
    74         *  Check the device documentation for valid values.
    75         */
    76        config String l1DMode = "32k";
    77        
    78        /*
    79         *  ======== l2Mode ========
    80         *  Define the amount of L2 RAM used for L2 Cache.
    81         *
    82         *  Check the device documentation for valid values.
    83         */
    84        config String l2Mode = "0k";
    85    };
    86    /*
    87     *  @(#) ti.platforms.simDM420; 1, 0, 0,337; 7-20-2011 07:12:12; /db/ztree/library/trees/platform/platform-m25x/src/
    88     */
    89