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     *  ======== TMS320C1035.xdc ========
    12     *
    13     */
    14    package ti.catalog.c5500;
    15    
    16    /*!
    17     *  ======== TMS320C1035 ========
    18     *  The C1035 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 TMS320C1035 inherits IOMAP
    24    {
    25    instance:
    26        override config string   cpuCoreRevision = "1.0";
    27    
    28        /*!
    29         *  ======== memMap ========
    30         *  The default memory map for this device
    31         */
    32        override config xdc.platform.IPlatform.Memory memMap[string]  = [
    33            ["DARAM", {
    34                comment: "12 blocks of 8K bytes",
    35                name: "DARAM",
    36                base: 0x000000,
    37                len:  0x018000,
    38                space: "code/data",
    39                access: "RWX"
    40            }],
    41        
    42            ["SARAM", {
    43                comment: "20 blocks of 8K bytes",
    44                name: "SARAM",
    45                base: 0x018000,
    46                len:  0x028000,
    47                space: "code/data",
    48                access: "RWX"
    49            }],
    50    
    51            ["PDROM", {
    52                comment: "320K bytes On-Chip ROM",
    53                name: "PDROM",
    54                base: 0xfb0000,
    55                len:  0x050000,
    56                space: "code/data",
    57                access: "RX"
    58            }],
    59        ];
    60    };
    61    /*
    62     *  @(#) ti.catalog.c5500; 1, 0, 0, 0,173; 6-4-2009 14:13:12; /db/ztree/library/trees/platform-k10x/src/
    63     */
    64