]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blob - packages/ti/ipc/tests/package.bld
TCI6638: Add support for ti.platforms.evmTCI6638K2K
[ipc/ipcdev.git] / packages / ti / ipc / tests / package.bld
1 /*
2  * Copyright (c) 2012-2013, Texas Instruments Incorporated
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * *  Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * *  Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * *  Neither the name of Texas Instruments Incorporated nor the names of
17  *    its contributors may be used to endorse or promote products derived
18  *    from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 /*
33  *  ======== package.bld ========
34  *
35  */
37 var Build = xdc.useModule('xdc.bld.BuildEnvironment');
38 var Pkg = xdc.useModule('xdc.bld.PackageContents');
40 /* when constructing a release, release everything */
41 Pkg.attrs.exportAll = true;
43 /* Uncomment this to build the app with debug support */
44 Pkg.attrs.profile = "debug";
46 /* bin/ is a generated directory that 'xdc clean' should remove */
47 Pkg.generatedFiles.$add("bin/");
49 /* define the platform instances we support - currently only OMAPL138 */
50 var evmOMAPL138_ExtMemMap = {
51     DDR: {
52         name: "DDR",
53         base: 0xc3100000,
54         len:  0x00800000,
55         space: "code/data"
56     }
57 };
59 Build.platformTable["ti.platforms.evmOMAPL138:DSP"] = {
60     externalMemoryMap: [
61         [ "DDR", evmOMAPL138_ExtMemMap.DDR ]
62     ],
63     codeMemory: "DDR",
64     dataMemory: "DDR",
65     stackMemory: "DDR",
66     l2Mode: "32k"
67 };
69 for (var i = 0; i < Build.targets.length; i++) {
70     var targ = Build.targets[i];
72 //    print("building for target " + targ.name + " ...");
74     /* currently only build for OMAPL138, Keystone II, and OMAP5*/
75     if (!((targ.isa == "674") || (targ.isa == "66") || (targ.isa == "v7M"))) {
76         continue;
77     }
79     /* Platforms were added to targ.platforms[] in config.bld */
80     for (var j = 0; j < targ.platforms.length; j++) {
81         var platform = targ.platforms[j];
83         /* currently only build for OMAPL138, Keystone II, and OMAP5*/
84         if (!((platform.match(/^ti\.platforms\.evm6614\:DSP/)) ||
85               (platform.match(/^ti\.platforms\.simKepler/)) ||
86               (platform.match(/^ti.platforms.evmTCI6638K2K/)) ||
87               (platform.match(/^ti\.platform\.omap54xx/)) ||
88               (platform.match(/\.platforms\.evmOMAPL138/)))) {
89              continue;
90         }
92         print("  platform:  " + platform);
93         // name = bin/platform/name.x+suffix
94         var name = "bin/" +
95                 // replace all ':' and '.' with '_' in platform name
96                 platform.replace(/\:/g, "_").replace(/\./g, "_");
98         Pkg.addExecutable(name + "/ping_rpmsg", targ, platform, {
99             cfgScript: "ping_rpmsg"
100         }).addObjects(["ping_rpmsg.c"]);
102         /* Only build this for our multicore platforms: */
103         if (platform.match(/^ti\.platforms\.simKepler/) ||
104                 (platform.match(/^ti.platforms.evmTCI6638K2K/)) ||
105                 (platform.match(/^ti\.platforms\.evm6614\:DSP/))) {
106             Pkg.addExecutable(name + "/messageq_multicore", targ, platform, {
107                 cfgScript: "messageq_multicore",
108                 //defs: "-D TCI6614_v33"
109                 //defs: "-D TCI6614"
110                 defs: "-D TCI6638"
111             }).addObjects(["messageq_multicore.c"]);
113             Pkg.addExecutable(name + "/dual_transports", targ, platform, {
114                 cfgScript: "dual_transports",
115             }).addObjects(["dual_transports.c"]);
116         }
118         Pkg.addExecutable(name + "/messageq_multi", targ, platform, {
119             cfgScript: "rpmsg_transport",
120             defs: "-D BENCHMARK "
121         }).addObjects(["messageq_multi.c"]);
123         Pkg.addExecutable(name + "/messageq_single", targ, platform, {
124             cfgScript: "rpmsg_transport",
125             defs: "-D BENCHMARK "
126         }).addObjects(["messageq_single.c"]);
128         if (platform.match(/^ti\.platforms\.evmOMAPL138\:DSP/)) {
129                 Pkg.addExecutable(name + "/nano_test", targ, platform, {
130                     cfgScript: "rpmsg_transport"
131                 }).addObjects(["nano_test.c"]);
132         }
134         if (platform.match(/^ti\.platform\.omap54xx\.ipu/)) {
135             Pkg.addExecutable(name + "/test_omx_ipu_omap5", targ, platform, {
136                 cfgScript: "test_omx_ipu_omap5",
137                 defs: "-D IPU -D OMAP5xxx"
138             }).addObjects(["test_omx.c","ping_tasks.c"]);
139         }
140     }