1    /* --COPYRIGHT--,EPL
     2     *  Copyright (c) 2009 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     * --/COPYRIGHT--*/
    12    
    13    /*
    14     *  ======== TMS570PSF762.xdc ========
    15     */
    16    package ti.catalog.arm;
    17    
    18    /*!
    19     *  ======== TMS570PSF762 ========
    20     *  The C470 device data sheet module.
    21     *
    22     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    23     *  used by platforms to obtain "data sheet" information about this device.
    24     *
    25     *  Warning: The data for this module comes from the linker command file 
    26     *  shipped with the TI 470 tools and does NOT come from any published data
    27     *  sheet.
    28     */
    29    metaonly module TMS570PSF762 inherits TMS470xx
    30    {
    31    instance:
    32        override config string cpuCore           = "R4";
    33        override config string isa               = "v7R";
    34        override config string cpuCoreRevision   = "1.0";
    35        override config int    minProgUnitSize   = 1;
    36        override config int    minDataUnitSize   = 1;
    37        override config int    dataWordSize      = 4;
    38    
    39        /*!
    40         *  ======== memMap ========
    41         *  The default memory map for this device
    42         */
    43        config xdc.platform.IPlatform.Memory memMap[string]  = [
    44            ["IRAM", {
    45                name:       "IRAM",
    46                base:       0x00000000,
    47                len:        0x00014000,
    48                space:      "code/data",
    49                access:     "RWX"
    50            }],
    51        ];
    52    };
    53    
    54    /*
    55     *  @(#) ti.catalog.arm; 1, 0, 1, 0,75; 7-29-2009 16:15:05; /db/ztree/library/trees/platform-k16x/src/
    56     */
    57