1    /*
     2     *  Copyright (c) 2010 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    package ti.platforms.evm5505ext;
    18    
    19    /*!
    20     *  ======== Platform ========
    21     *  Platform support for the evm5505 with daugther memory card
    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.xs) 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        readonly config xdc.platform.IPlatform.Board BOARD = { 
    39            id:             "0",
    40            boardName:      "evm5505ext",
    41            boardFamily:    "evm5510",
    42            boardRevision:  null
    43        };
    44        
    45        readonly config xdc.platform.IExeContext.Cpu CPU = { 
    46            id:             "0",
    47            clockRate:      100.0,
    48            catalogName:    "ti.catalog.c5500",
    49            deviceName:     "TMS320C5505",
    50            revision:       "",
    51        };
    52    
    53    instance:
    54    
    55        override readonly config xdc.platform.IPlatform.MemoryMap
    56            externalMemoryMap = [
    57                ["NAND",   {name: "NAND", base: 0x800000,   len: 0x600000}],
    58                ["NOR",    {name: "NOR",  base: 0xe00000,   len: 0x100000}],
    59                ["SRAM",   {name: "SRAM", base: 0xf00000,   len: 0x100000}]
    60            ];
    61    
    62        override config string codeMemory = "SARAM";
    63        
    64        override config string dataMemory = "DARAM";
    65    
    66        override config string stackMemory = "DARAM";
    67    };
    68    /*
    69     *  @(#) ti.platforms.evm5505ext; 1, 0, 0,64; 8-7-2010 18:28:57; /db/ztree/library/trees/platform/platform-l20x/src/
    70     */
    71