]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blob - packages/ti/ipc/tests/package.bld
Merge remote-tracking branch 'ramsey/ready' into 11_eng
[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\.platform\.omap54xx/)) ||
87               (platform.match(/\.platforms\.evmOMAPL138/)))) {
88              continue;
89         }
91         print("  platform:  " + platform);
92         // name = bin/platform/name.x+suffix
93         var name = "bin/" +
94                 // replace all ':' and '.' with '_' in platform name
95                 platform.replace(/\:/g, "_").replace(/\./g, "_");
97         Pkg.addExecutable(name + "/ping_rpmsg", targ, platform, {
98             cfgScript: "ping_rpmsg"
99         }).addObjects(["ping_rpmsg.c"]);
101         /* Only build this for our multicore platforms: */
102         if (platform.match(/^ti\.platforms\.simKepler/) ||
103             platform.match(/^ti\.platforms\.evm6614\:DSP/)) {
104                 Pkg.addExecutable(name + "/messageq_multicore",targ,platform, {
105                     cfgScript: "messageq_multicore",
106                     //defs: "-D TCI6614_v33"
107                     //defs: "-D TCI6614"
108                     defs: "-D TCI6638"
109                 }).addObjects(["messageq_multicore.c"]);
111                 Pkg.addExecutable(name + "/dual_transports",targ,platform, {
112                     cfgScript: "dual_transports",
113                 }).addObjects(["dual_transports.c"]);
114         }
116         Pkg.addExecutable(name + "/messageq_multi", targ, platform, {
117             cfgScript: "rpmsg_transport",
118             defs: "-D BENCHMARK "
119         }).addObjects(["messageq_multi.c"]);
121         Pkg.addExecutable(name + "/messageq_single", targ, platform, {
122             cfgScript: "rpmsg_transport",
123             defs: "-D BENCHMARK "
124         }).addObjects(["messageq_single.c"]);
126         if (platform.match(/^ti\.platforms\.evmOMAPL138\:DSP/)) {
127                 Pkg.addExecutable(name + "/nano_test", targ, platform, {
128                     cfgScript: "rpmsg_transport"
129                 }).addObjects(["nano_test.c"]);
130         }
132         if (platform.match(/^ti\.platform\.omap54xx\.ipu/)) {
133             Pkg.addExecutable(name + "/test_omx_ipu_omap5", targ, platform, {
134                 cfgScript: "test_omx_ipu_omap5",
135                 defs: "-D IPU -D OMAP5xxx"
136             }).addObjects(["test_omx.c","ping_tasks.c"]);
137         }
138     }