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     *  ======== Primus.xdc ========
    15     *
    16     */
    17    
    18    metaonly module Primus inherits ti.catalog.ICpuDataSheet
    19    {
    20    instance:
    21        override config string cpuCore           = "Arm9";
    22        override config string isa               = "v5T";
    23        override config string cpuCoreRevision   = "1.0";
    24        override config int    minProgUnitSize   = 1;
    25        override config int    minDataUnitSize   = 1;
    26        override config int    dataWordSize      = 4;
    27    
    28        /*!
    29         *  ======== memMap ========
    30         *  The memory map returned be getMemoryMap().
    31         */
    32        config xdc.platform.IPlatform.Memory memMap[string]  = [
    33            ["IRAM", {
    34                comment:    "8KB ARM local RAM",
    35                name:       "IRAM",
    36                base:       0xFFFF0000,
    37                len:        0x00002000,
    38                space:      "code/data",
    39                access:     "RWX"
    40            }],
    41            ["L3_CBA_RAM", {
    42                comment:    "128KB ARM/DSP local shared RAM",
    43                name:       "L3_CBA_RAM",
    44                base:       0x80000000,
    45                len:        0x00020000,
    46                space:      "code/data",
    47                access:     "RWX"
    48            }],
    49        ];
    50    }
    51    /*
    52     *  @(#) ti.catalog.arm.nda; 1, 0, 0, 0,34; 7-29-2009 16:31:48; /db/ztree/library/trees/platform-k16x/src/
    53     */
    54