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     *  Platform support for evmAM3359
    16     *
    17     */
    18    
    19    package ti.platforms.evmAM3359;
    20    
    21    /*!
    22     *  ======== Platform ========
    23     *  Platform support for the evmAM3359
    24     *
    25     *  This module implements xdc.platform.IPlatform and defines configuration
    26     *  parameters that correspond to this platform's Cpu's, Board's, etc.
    27     *
    28     *  The configuration parameters are initialized in this package's
    29     *  configuration script (package.cfg) and "bound" to the TCOM object
    30     *  model.  Once they are part of the model, these parameters are
    31     *  queried by a program's configuration script.
    32     *
    33     */
    34    metaonly module Platform inherits xdc.platform.IPlatform
    35    {
    36        readonly config xdc.platform.IPlatform.Board BOARD = {
    37            id:             "0",
    38            boardName:      "evmAM3359",
    39            boardFamily:    "evmAM3359",
    40            boardRevision:  null
    41        };
    42    
    43        /* GPP */
    44        readonly config xdc.platform.IExeContext.Cpu GPP = {
    45            id:             "2",
    46            clockRate:      550.0,  /* Typically set by the HLOS */
    47            catalogName:    "ti.catalog.arm.cortexa8",
    48            deviceName:     "AM3359",
    49            revision:       "1.0"
    50        };
    51    
    52    instance:
    53    
    54        override readonly config xdc.platform.IPlatform.Memory
    55            externalMemoryMap[string] = [
    56                ["DDR3", {
    57                    comment: "DDR3 Memory",
    58                    name: "DDR3",
    59                    base: 0x80000000,
    60                    len:  0x04000000    /* 64 MB */
    61                }],
    62            ];
    63    };
    64    /*
    65     *  @(#) ti.platforms.evmAM3359; 1, 0, 0,12; 11-9-2011 12:01:44; /db/ztree/library/trees/platform/platform-n08x/src/
    66     */
    67