]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blob - packages/ti/gates/hwspinlock/package.bld
OMAP5: Add OMAP5 support to ti.ipc.remoteproc, remove ti.resources
[ipc/ipcdev.git] / packages / ti / gates / hwspinlock / package.bld
1 /*
2  * Copyright (c) 2011-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  */
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;
51 /* list of libraries to build */
52 var libArray = new Array();
53 if (smpBuild == "1") {
54     /* ti.gates.hwspinlock library for IPU SMP target */
55     libArray.push(
56         {
57             name: "ti.gates.hwspinlock_smp",
58             sources: [
59                 "HwSpinlock"
60             ],
61             libAttrs: {
62                 defs: " -DM3_ONLY -DSMP"
63             },
64             isas: [ "v7M" ],
65         }
66     );
67 }
68 else {
69     /* ti.gates.hwspinlock library for IPU non-SMP target */
70     libArray.push(
71         {
72             name: "ti.gates.hwspinlock",
73             sources: [
74                 "HwSpinlock",
75             ],
76             libAttrs: {
77                 defs: " -DM3_ONLY"
78             },
79             isas: [ "v7M" ],
80         }
81     );
83     /* ti.gates.hwspinlock library for DSP target */
84     libArray.push(
85         {
86             name: "ti.gates.hwspinlock",
87             sources: [
88                 "HwSpinlock",
89             ],
90             libAttrs: {
91                 defs: " -DDSP"
92             },
93             isas: [ "64T" ],
94         }
95     );
97     /* ti.gates.hwspinlock library for DSP target */
98     libArray.push(
99         {
100             name: "ti.gates.hwspinlock",
101             sources: [
102                 "HwSpinlock",
103             ],
104             libAttrs: {
105                 defs: " -DDSPC674"
106             },
107             isas: [ "674" ],
108         }
109     );
112 /* generate the package libraries */
113 /* check if profile specified in XDCARGS */
114 /* XDCARGS="... profile=debug ..." */
115 var cmdlProf = (" " + arguments.join(" ") + " ").match(/ profile=([^ ]+) /);
116 cmdlProf = cmdlProf != null ? cmdlProf[1] : null;
118 /* ==== loop over array of libraries ==== */
119 for (var i = 0; i < libArray.length; i++) {
120     var lib = libArray[i];
122     /* ==== loop over all targets in build array ==== */
123     for (var j = 0; j < Build.targets.length; j++) {
124         var targ = Build.targets[j];
126         /* skip target if not compatible with source code */
127         if ("icw" in lib) {
128             var skipTarget = true;
129             var targIsaChain = "/" + targ.getISAChain().join("/") + "/";
130             for (var k = 0; k < lib.icw.length; k++) {
131                 if (targIsaChain.match("/" + lib.icw[k] + "/")) {
132                     skipTarget = false;
133                     break;
134                 }
135             }
136             if (skipTarget) continue;
137         }
139         /* skip target if it does not generate code for the given isa */
140         if ("isas" in lib) {
141             var skipTarget = true;
142             var list = "/" + lib.isas.join("/") + "/";
143             if (list.match("/" + targ.isa + "/")) {
144                 skipTarget = false;
145             }
146             if (skipTarget) continue;
147         }
149         /* ==== loop over all profiles ==== */
150         for (var profile in targ.profiles) {
152             /* skip profile if different than specified on command line */
153             if ((cmdlProf != null) && (profile != cmdlProf)) {
154                 continue;
155             }
157             /* name = lib/profile/name.a+suffix */
158             var name = "lib/" + profile + "/" + lib.name;
160             /* pass along library attributes specified in library array */
161             var libAttrs = "libAttrs" in lib ? lib.libAttrs : {};
163             /* must set profile explicitly */
164             libAttrs.profile = profile;
166             /* build the library */
167             var library = Pkg.addLibrary(name, targ, libAttrs);
169             /* add the source files */
170             library.addObjects(lib.sources);
171         }
172     }