1    /*
     2     *  Copyright (c) 2012 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.padk6727;
    19    
    20    /*!
    21     *  ======== Platform ========
    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.xs) 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         *  This platform's board attributes
    40         */
    41        readonly config xdc.platform.IPlatform.Board BOARD = {
    42            id:             "0",
    43            boardName:      "padk6727",
    44            boardFamily:    "padk6727",
    45            boardRevision:  null
    46        };
    47    
    48        /*!
    49         *  ======== CPU ========
    50         */
    51        readonly config xdc.platform.IExeContext.Cpu CPU = {        
    52            id:             "0",
    53            clockRate:      300.0,
    54            catalogName:    "ti.catalog.c6000",
    55            deviceName:     "TMS320C6727",
    56            revision:       "",
    57        };
    58    
    59    instance:
    60        
    61        override readonly config xdc.platform.IPlatform.Memory
    62            externalMemoryMap[string] = [
    63                ["SDRAM", {name: "SDRAM", base: 0x80000000, len: 0x08000000}],
    64            ];
    65    
    66        override config string codeMemory = "SDRAM";
    67        
    68        override config string dataMemory = "SDRAM";
    69    
    70        override config string stackMemory = "SDRAM";
    71    
    72        /*
    73         *  ======== l1PMode ========
    74         *  Define the amount of L1P RAM used for L1 Program Cache.
    75         *
    76         *  Check the device documentation for valid values.
    77         */
    78        config String l1PMode = "32k";
    79        
    80        /*
    81         *  ======== l1DMode ========
    82         *  Define the amount of L1D RAM used for L1 Data Cache.
    83         *
    84         *  Check the device documentation for valid values.
    85         */
    86        config String l1DMode = "32k";
    87        
    88        /*
    89         *  ======== l2Mode ========
    90         *  Define the amount of L2 RAM used for L2 Cache.
    91         *
    92         *  Check the device documentation for valid values.
    93         */
    94        config String l2Mode = "0k";
    95    };
    96    /*
    97     *  @(#) ti.platforms.padk6727; 1, 0, 0,362; 4-24-2012 14:59:34; /db/ztree/library/trees/platform/platform-n20x/src/
    98     */
    99