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    
    18    /*!
    19     *  ======== Platform ========
    20     *  Platform support for the simTCI6608
    21     */
    22    metaonly module Platform inherits xdc.platform.IPlatform
    23    {
    24        readonly config xdc.platform.IPlatform.Board BOARD = {      
    25            id:             "0",
    26            boardName:      "simTCI6608",
    27            boardFamily:    "simTCI6608",
    28            boardRevision:  null,
    29        };
    30            
    31        readonly config xdc.platform.IExeContext.Cpu CPU = {        
    32            id:             "0",
    33            clockRate:      1000,
    34            catalogName:    "ti.catalog.c6000",
    35            deviceName:     "TMS320TCI6608",
    36            revision:       "1.0",
    37        };
    38        
    39    instance:
    40    
    41        override readonly config xdc.platform.IPlatform.Memory
    42            externalMemoryMap[string] = [
    43                ["DDR2", {name: "DDR2", base: 0x80000000, len: 0x10000000}],
    44        ];
    45    
    46        override config string codeMemory  = "L2SRAM";
    47        override config string dataMemory  = "L2SRAM";
    48        override config string stackMemory = "L2SRAM";
    49    };
    50    /*
    51     *  @(#) ti.platforms.simTCI6608; 1, 0, 0, 0,4; 8-7-2010 18:32:43; /db/ztree/library/trees/platform/platform-l20x/src/
    52     */
    53