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