1    /*
     2     *  Copyright 2009 by Texas Instruments Incorporated.
     3     *
     4     *  All rights reserved. Property of Texas Instruments Incorporated.
     5     *  Restricted rights to use, duplicate or disclose this code are
     6     *  granted through contract.
     7     *
     8     */
     9    
    10    /*
    11     *  ======== Platform.xdc ========
    12     */
    13    
    14    /*!
    15     *  ======== Platform ========
    16     *  Platform support for the evmDM365
    17     *
    18     *  This module implements xdc.platform.IPlatform and defines configuration
    19     *  parameters that correspond to this platform's Cpu's, Board's, etc.
    20     *
    21     *  The configuration parameters are initialized in this package's
    22     *  configuration script (package.cfg) and "bound" to the XDC object
    23     *  model.  Once they are part of the model, these parameters are
    24     *  queried by a program's configuration script.
    25     *
    26     *  This particular platform has a single Cpu, and therefore, only
    27     *  declares a single CPU configuration object.  Multi-CPU platforms
    28     *  would declare multiple Cpu configuration parameters (one per
    29     *  platform CPU).
    30     */
    31    metaonly module Platform inherits xdc.platform.IPlatform
    32    {
    33        /*!
    34         *  ======== BOARD ========
    35         *  This platform's board attributes
    36         */
    37        readonly config xdc.platform.IPlatform.Board BOARD = { 
    38            id:             "0",
    39            boardName:      "evmDM365",
    40            boardFamily:    "evmDM365",
    41            boardRevision:  null
    42        };
    43        
    44        readonly config xdc.platform.IExeContext.Cpu CPU = { 
    45            id:             "0",
    46            clockRate:      216.0,
    47            catalogName:    "ti.catalog.arm",
    48            deviceName:     "TMS320DM365",
    49            revision:       "",
    50        };
    51    
    52    instance:
    53    
    54        override readonly config xdc.platform.IPlatform.MemoryMap
    55            externalMemoryMap = [
    56                ["DDR",  {name: "DDR",  base: 0x80000000, len: 0x1000000}],
    57            ];
    58    
    59        /*
    60         *  ======== sectMap ========
    61         *  Define a placement of compiler generated output sections into
    62         *  memory regions defined in the memTab above.
    63         */
    64        override config string codeMemory = "DDR";
    65        override config string dataMemory = "DDR";
    66        override config string stackMemory = "DDR";
    67    };
    68    /*
    69     *  @(#) ti.platforms.evmDM365; 1, 0, 0,81; 6-4-2009 14:10:10; /db/ztree/library/trees/platform-k10x/src/
    70     */
    71