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     *  ======== TMS470R10.xdc ========
    15     */
    16    
    17    package ti.catalog.arm;
    18    
    19    /*!
    20     *  ======== TMS470R10 ========
    21     *  The C470 device data sheet module.
    22     *
    23     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    24     *  used by platforms to obtain "data sheet" information about this device.
    25     *
    26     *  Warning: The data for this module comes from the linker command file 
    27     *  shipped with the TI 470 tools and does NOT come from any published data
    28     *  sheet.
    29     */
    30    metaonly module TMS470R10 inherits ti.catalog.ICpuDataSheet
    31    {
    32    instance:
    33        override config string   cpuCore        = "470";
    34        override config string   isa            = "v4T";
    35    
    36        override config int     minProgUnitSize = 1;
    37        override config int     minDataUnitSize = 1;
    38        override config int     dataWordSize    = 4;
    39    
    40        override config string   cpuCoreRevision = "1.0";
    41    
    42        /*!
    43         *  ======== memMap ========
    44         *  The default memory map for this device
    45         */
    46        config xdc.platform.IPlatform.Memory memMap[string]  = [
    47            ["P_MEM", {
    48                comment: "Program Memory (ROM)",
    49                name: "P_MEM",
    50                base: 0x00000000,
    51                len: 0x00030000,
    52                space: "code"
    53            }],
    54    
    55            ["D_MEM", {
    56                comment: "Data Memory (RAM)",
    57                name: "D_MEM", 
    58                base: 0x00030000,
    59                len: 0x00050000,
    60                space: "data"
    61            }],
    62        ];
    63    };
    64    /*
    65     *  @(#) ti.catalog.arm; 1, 0, 1,260; 9-20-2011 21:29:26; /db/ztree/library/trees/platform/platform-m30x/src/
    66     */
    67