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