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     *  ======== TMS320C6202.xdc ========
    12     *
    13     */
    14    package ti.catalog.c6000;
    15    
    16    /*!
    17     *  ======== TMS320C6202 ========
    18     *  The C6202 device data sheet module.
    19     *
    20     *  This module implements the xdc.platform.ICpuDataSheet interface and is 
    21     *  used by platforms to obtain "data sheet" information about this device.
    22     */
    23    metaonly module TMS320C6202 inherits ITMS320C6x0x
    24    {
    25        override config xdc.platform.IPlatform.Memory memBlock[string]  = [
    26            ["IPRAM0", {
    27                comment: "Internal Program memory map 0",
    28                name: "IPRAM",
    29                base: 0x1400000,
    30                len:  0x0040000,
    31                space: "code"
    32            }],
    33        
    34            ["IPRAM1", {
    35                comment: "Internal Program memory map 1",
    36                name: "IPRAM",
    37                base: 0x0000000,
    38                len:  0x0040000,
    39                space: "code"
    40            }],
    41        
    42            ["IDRAM", {
    43                comment: "Internal Data memory",
    44                name: "IDRAM",
    45                base: 0x80000000,
    46                len:  0x00020000,
    47                space: "data"
    48            }],
    49        ];
    50    
    51    instance:
    52        override config string   cpuCore        = "6200";
    53        override config string   isa = "62";
    54    };
    55    /*
    56     *  @(#) ti.catalog.c6000; 1, 0, 0, 0,173; 6-4-2009 14:07:53; /db/ztree/library/trees/platform-k10x/src/
    57     */
    58