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    /*!
    19     *  ======== Platform ========
    20     *  Platform support for the evmDRA446
    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        readonly config xdc.platform.IPlatform.Board BOARD = {      
    38            id:             "0",
    39            boardName:      "evmDRA446",
    40            boardFamily:    "evmDRA446",
    41            boardRevision:  null,
    42        };
    43            
    44        readonly config xdc.platform.IExeContext.Cpu CPU = {        
    45            id:             "0",
    46            clockRate:      552,
    47            catalogName:    "ti.catalog.c6000",
    48            deviceName:     "TMS320CDRA446",
    49            revision:       "",
    50        };
    51        
    52    instance:
    53    
    54        override readonly config xdc.platform.IPlatform.Memory
    55            externalMemoryMap[string] = [
    56                ["EMIFA", {name: "EMIFA", base: 0x40000000, len: 0x8000000}],
    57                ["EMIFB", {name: "EMIFB", base: 0x60000000, len: 0x8000000}],
    58            ];
    59    
    60        override config string codeMemory = "EMIFA";
    61        
    62        override config string dataMemory = "EMIFA";
    63    
    64        override config string stackMemory = "EMIFA";
    65    
    66        /*
    67         *  ======== l1PMode ========
    68         *  Define the amount of L1P RAM used for L1 Program Cache.
    69         *
    70         *  Check the device documentation for valid values.
    71         */
    72        config String l1PMode = "32k";
    73        
    74        /*
    75         *  ======== l1DMode ========
    76         *  Define the amount of L1D RAM used for L1 Data Cache.
    77         *
    78         *  Check the device documentation for valid values.
    79         */
    80        config String l1DMode = "32k";
    81        
    82        /*
    83         *  ======== l2Mode ========
    84         *  Define the amount of L2 RAM used for L2 Cache.
    85         *
    86         *  Check the device documentation for valid values.
    87         */
    88        config String l2Mode = "0k";
    89    };
    90    /*
    91     *  @(#) ti.platforms.evmDRA446; 1, 0, 0,292; 4-26-2011 10:53:30; /db/ztree/library/trees/platform/platform-m16x/src/
    92     */
    93