]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blob - packages/ti/ipc/family/omap54xx/package.bld
OMAP5 VirtQueue: Added ti.family.omap54xx VirtQueue/Interrupt* OPBU modules.
[ipc/ipcdev.git] / packages / ti / ipc / family / omap54xx / package.bld
1 /*
2  * Copyright (c) 2011-2013-2012, 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  */
33 /*
34  *  ======== package.bld ========
35  *
36  */
38 /* explicit references to global objects */
39 var Build = xdc.useModule('xdc.bld.BuildEnvironment');
40 var Pkg = xdc.useModule('xdc.bld.PackageContents');
41 var smpBuild = java.lang.System.getenv("BUILD_SMP");
43 /* clean lib folder */
44 Pkg.generatedFiles.$add("lib/");
45 Pkg.libDir = "package/";
47 /* add custom files to all releases */
48 Pkg.attrs.exportSrc = false;
49 Pkg.attrs.exportCfg = true;
50 Pkg.otherFiles = [
51     "InterruptProxy.h",
52 ];
54 /* list of libraries to build */
55 var libArray = new Array();
56 if (smpBuild == "1") {
57     /* rpmsg library for IPU SMP target */
58     libArray.push(
59         {
60             name: "ti.ipc.rpmsg_smp",
61             sources: [
62                 "VirtQueue",
63                 "InterruptIpu",
64             ],
65             libAttrs: {
66                 defs: " -DSMP"
67             },
68             isas: [ "v7M" ],
69         }
70     );
71 }
72 else {
73     /* rpmsg library for IPU non-SMP target */
74     libArray.push(
75         {
76             name: "ti.ipc.rpmsg",
77             sources: [
78                 "VirtQueue",
79                 "InterruptIpu",
80                 "OffloadM3",
81             ],
82             libAttrs: {
83                 defs: " -DM3_ONLY"
84             },
85             isas: [ "v7M" ],
86         }
87     );
89     /* rpmsg library for DSP target */
90     libArray.push(
91         {
92             name: "ti.ipc.rpmsg",
93             sources: [
94                 "VirtQueue",
95                 "InterruptDsp",
96             ],
97             libAttrs: {
98                 defs: " -DDSP"
99             },
100             isas: [ "64T" ],
101         }
102     );
105 /* generate the package libraries */
106 /* check if profile specified in XDCARGS */
107 /* XDCARGS="... profile=debug ..." */
108 var cmdlProf = (" " + arguments.join(" ") + " ").match(/ profile=([^ ]+) /);
109 cmdlProf = cmdlProf != null ? cmdlProf[1] : null;
111 /* ==== loop over array of libraries ==== */
112 for (var i = 0; i < libArray.length; i++) {
113     var lib = libArray[i];
115     /* ==== loop over all targets in build array ==== */
116     for (var j = 0; j < Build.targets.length; j++) {
117         var targ = Build.targets[j];
119         /* skip target if not compatible with source code */
120         if ("icw" in lib) {
121             var skipTarget = true;
122             var targIsaChain = "/" + targ.getISAChain().join("/") + "/";
123             for (var k = 0; k < lib.icw.length; k++) {
124                 if (targIsaChain.match("/" + lib.icw[k] + "/")) {
125                     skipTarget = false;
126                     break;
127                 }
128             }
129             if (skipTarget) continue;
130         }
132         /* skip target if it does not generate code for the given isa */
133         if ("isas" in lib) {
134             var skipTarget = true;
135             var list = "/" + lib.isas.join("/") + "/";
136             if (list.match("/" + targ.isa + "/")) {
137                 skipTarget = false;
138             }
139             if (skipTarget) continue;
140         }
142         /* ==== loop over all profiles ==== */
143         for (var profile in targ.profiles) {
145             /* skip profile if different than specified on command line */
146             if ((cmdlProf != null) && (profile != cmdlProf)) {
147                 continue;
148             }
150             /* name = lib/profile/name.a+suffix */
151             var name = "lib/" + profile + "/" + lib.name;
153             /* pass along library attributes specified in library array */
154             var libAttrs = "libAttrs" in lib ? lib.libAttrs : {};
156             /* must set profile explicitly */
157             libAttrs.profile = profile;
159             /* build the library */
160             var library = Pkg.addLibrary(name, targ, libAttrs);
162             /* add the source files */
163             library.addObjects(lib.sources);
164         }
165     }