1    /*
     2     *  Copyright (c) 2010 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     *  ======== TMS320DM8168.xdc ========
    15     *
    16     */
    17    
    18    metaonly module TMS320DM8168 inherits ti.catalog.ICpuDataSheet
    19    {
    20    instance:
    21        config ti.catalog.peripherals.hdvicp2.HDVICP2.Instance hdvicp0;
    22        config ti.catalog.peripherals.hdvicp2.HDVICP2.Instance hdvicp1;
    23        config ti.catalog.peripherals.hdvicp2.HDVICP2.Instance hdvicp2;
    24    
    25        override config string cpuCore           = "v7A";
    26        override config string isa               = "v7A";
    27        override config string cpuCoreRevision   = "1.0";
    28        override config int    minProgUnitSize   = 1;
    29        override config int    minDataUnitSize   = 1;
    30        override config int    dataWordSize      = 4;
    31    
    32        /*!
    33         *  ======== memMap ========
    34         *  The memory map returned be getMemoryMap().
    35         */
    36        config xdc.platform.IPlatform.Memory memMap[string]  = [
    37            ["SRAM", {
    38                comment:    "On-Chip SRAM",
    39                name:       "SRAM",
    40                base:       0x402F0000,
    41                len:        0x00010000,
    42                space:      "code/data",
    43                access:     "RWX"
    44            }],
    45    
    46        ];
    47    }
    48    /*
    49     *  @(#) ti.catalog.arm.cortexa8; 1, 0, 0,21; 5-25-2010 17:25:10; /db/ztree/library/trees/platform/platform-l15x/src/
    50     */
    51