]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blob - ipc-bios.bld
Added TDA3XX to top-level product file.
[ipc/ipcdev.git] / ipc-bios.bld
1 /*
2  * Copyright (c) 2011-2014, 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  * Generally there is no need to edit this file!
35  *
36  * This file controls which libraries are built, as well as compiler options
37  * to use.
38  *
39  * The contents of this file usually don't change, but having it in your
40  * ownership allows you to tweak your compiler options.  If you do change
41  * this file, however, on the next upgrade of the product we recommend
42  * that you take "ipc.bld" file as supplied by the upgrade and then merge
43  * your changes with it.
44  */
46 /*
47  *  ======== ipc-bios.bld ========
48  *  This script is run prior to all build scripts. It sets host-system-
49  *  independent values for targets and platforms, then it attempts to
50  *  find the host-system-specific user.bld script that sets rootDirs.
51  *
52  *  These settings may be a function of the following global variables:
53  *
54  *      environment a hash table of environment strings
55  *
56  *      arguments   an array of string arguments to the script
57  *                  initialized as follows:
58  *                      arguments[0] - the file name of the script
59  *                      arguments[1] - the first argument specified in XDCARGS
60  *                          :
61  *                      arguments[n] - the n'th argument in XDCARGS
62  *
63  *      Build       an alias for xdc.om.xdc.bld.BuildEnvironment
64  */
66 var Build = xdc.useModule('xdc.bld.BuildEnvironment');
67 var Pkg = xdc.useModule('xdc.bld.PackageContents');
69 /* Common ccopts suffix used for all C6x targets */
70 var c6xOpts = " -mi10 -mo -pdr -pden -pds=238 -pds=880 -pds1110 -g ";
72 /*
73  * -mi10 => maximum cycles that interrupts may be disabled is 10
74  * -mo => place each function in subsection
75  * -pdr => show remarks
76  * -pden => show remark ids
77  * -pds=238 => ignore "controlling expression is constant"
78  * -pds=880 => ignore "unused parameter"
79  */
81 var ccOpts = {
82     "ti.targets.C28_large"            : " -mo -g ",
83     "ti.targets.C28_float"            : " -mo -g ",
85     "ti.targets.C64P"                 : c6xOpts,
86     "ti.targets.C64P_big_endian"      : c6xOpts,
87     "ti.targets.C674"                 : c6xOpts,
89     "ti.targets.elf.C64P"             : c6xOpts,
90     "ti.targets.elf.C64P_big_endian"  : c6xOpts,
91     "ti.targets.elf.C64T"             : c6xOpts,
92     "ti.targets.elf.C66"              : c6xOpts,
93     "ti.targets.elf.C66_big_endian"   : c6xOpts,
94     "ti.targets.elf.C674"             : c6xOpts,
96     "ti.targets.arm.elf.Arm9"         : " -ms -g ",
97     "ti.targets.arm.elf.A8F"          : " -ms -g ",
98     "ti.targets.arm.elf.A8Fnv"        : " -ms -g ",
99     "ti.targets.arm.elf.M3"           : " --embed_inline_assembly -ms -pds=71",
100     "ti.targets.arm.elf.M4"           : " -ms -g ",
101     "ti.targets.arm.elf.M4F"          : " -ms -g ",
103     "ti.targets.arp32.elf.ARP32"      : " -g ",
104     "ti.targets.arp32.elf.ARP32_far"  : " -g ",
106     "gnu.targets.arm.A8F"             : " -g ",
107     "gnu.targets.arm.A15F"            : " -g "
108 };
110 var lnkOpts = {
111     "ti.targets.elf.C66"              : " --cinit_compression=off",
112     "ti.targets.arm.elf.M4"           : " --retain=.resource_table" +
113                                         " --cinit_compression=off"
114 };
116 var platform = "";
117 var smpEnabled = true;
118 var Bld_goal = "";
120 /* initialize local vars with those set in xdcpaths.mak (via XDCARGS) */
121 for (arg = 0; arg < arguments.length; arg++) {
122     /* split each arg into its '+' separated parts */
123     var configParts = arguments[arg].split(";");
124     // print("arg " + arg + " has " + configParts.length + " parts");
126     /* if "known args come in, filter them... else they're targets */
127     if (configParts[0].split("=")[0] == "PLATFORM") {
128         // print("FOUND PLATFORM ARG - " + configParts[0]);
129         platform = configParts[0].split("=")[1];
130         continue;
131     }
132     else if (configParts[0].split("=")[0] == "BIOS_SMPENABLED") {
133         // print("FOUND SMP_ENABLED ARG - " + configParts[0]);
134         smpEnabled = configParts[0].split("=")[1].match(/^1$/);
135         continue;
136     }
137     else if (configParts[0].split("=")[0] == "GOAL") {
138         Bld_goal = configParts[0].split("=")[1];
139         continue;
140     }
142     if (platform == "") {
143         platform = "NONE";
144     }
146     /*
147      * Get the compiler's installation directory.
148      * For "ti.targets.elf.C674=/vendors/c6x/7.2.0", we get "/vendors/c6x/7.2.0"
149      */
150     var targetName = configParts[0].split("=")[0];
151     var rootDir = configParts[0].split("=")[1];
153     /* only build for the specified compilers */
154     if (rootDir == "" || rootDir == undefined) {
155         continue;
156     }
158 //    print("Building '" + targetName + "' using '" + rootDir + "' ...");
160     var target = xdc.useModule(targetName);
161     target.rootDir = rootDir;
162     if (ccOpts[targetName] != undefined) {
163         target.ccOpts.suffix += ccOpts[targetName];
164     }
165     if (lnkOpts[targetName] != undefined) {
166         target.lnkOpts.suffix += lnkOpts[targetName];
167     }
169     /* for all the other parts, assign target.<left> = <right> */
170     for (var i = 1; i < configParts.length; i++) {
171         var modCfgParam = configParts[i].split("=")[0];
172         var modCfgValue = configParts[i].split("=")[1];
173         var modCfgIndex = modCfgParam.split(".");
174         var element = target;
176 //        print("Configuring target." + modCfgParam + " = " + modCfgValue);
178         for (j = 0; j < (modCfgIndex.length -1); j++) {
179                 element = element[modCfgIndex[j]];
180         }
181         element[modCfgIndex[j]] = modCfgValue;
182     }
184     /* Add appropriate platforms to build for based on target name */
185     if (targetName.match(/elf\.C674/)) {
186         if (platform == 'OMAPL138') {
187             target.platforms.$add("ti.platforms.evmOMAPL138:DSP");
188         }
189     }
191     if (targetName.match(/elf\.C66$/)) {
192         switch (platform) {
193             case '66AK2E':
194                 target.platforms.$add("ti.platforms.evmC66AK2E:core0");
195                 break;
197             case 'TCI6630':
198                 target.platforms.$add("ti.platforms.evmTCI6630K2L:core0");
199                 break;
201             case 'TCI6636':
202                 target.platforms.$add("ti.platforms.evmTCI6636K2H:core0");
203                 break;
205             case 'TCI6638':
206                 target.platforms.$add("ti.platforms.evmTCI6638K2K:core0");
207                 break;
209             case 'DRA7XX':
210                 target.platforms.$add("ti.platforms.evmDRA7XX:dsp1");
211                 target.platforms.$add("ti.platforms.evmDRA7XX:dsp2");
212                 break;
214             case 'TDA3XX':
215                 target.platforms.$add("ti.platforms.evmTDA3XX");
216                 break;
218             case 'NONE':
219                 /* okay, no platform specified */
220                 break;
222             default:
223                 print("Unknown platform, skipping " + platform);
224                 break;
225         }
226     }
228     if (targetName.match(/elf\.C64T/)) {
229         if (platform == 'OMAP54XX') {
230             target.platforms.$add("ti.platforms.sdp5430:DSP");
231         }
232     }
234     if (targetName.match(/elf\.M4$/)) {
235         switch (platform) {
236             case 'OMAP54XX':
237                 target.platforms.$add("ti.platforms.sdp5430:IPU");
238                 break;
240             case 'DRA7XX':
241                 target.platforms.$add("ti.platforms.evmDRA7XX:ipu2");
242                 target.platforms.$add("ti.platforms.evmDRA7XX:ipu1");
243                 break;
245             case 'TDA3XX':
246                 target.platforms.$add("ti.platforms.evmTDA3XX");
247                 break;
249             case 'NONE':
250                 /* okay, no platform specified */
251                 break;
253             default:
254                 print("Unknown platform, skipping " + platform);
255                 break;
256         }
257     }
259     Build.targets.$add(target);
262 if (smpEnabled) {
263     /* Enable building SMP-BIOS enabled libraries for targets that support it */
264     if (Pkg.name.match(/^ti\.sdo\.(ipc|utils)/)) {
265         xdc.module("ti.targets.arm.elf.M3").profiles["smp"] =
266                 xdc.module("ti.targets.arm.elf.M3").profiles["debug"];
267         xdc.module("ti.targets.arm.elf.M4").profiles["smp"] =
268                 xdc.module("ti.targets.arm.elf.M4").profiles["debug"];
269     }
272 /* lib/ is a generated directory that 'xdc clean' should remove */
273 Pkg.generatedFiles.$add("lib/");
275 /*
276  * Some packages build for 'all profiles' - but that's too much to ship.
277  * Loop over all profiles in all Build.targets and remove everything
278  * except 'release' and 'debug'.
279  */
280 for (var t = 0; t < Build.targets.length; t++) {
281     for (prof in Build.targets[t].profiles) {
282        if ((prof != 'release') && (prof != 'debug') && (prof != 'smp')) {
283             delete Build.targets[t].profiles[prof];
284         }
285     }
288 /* -----------------------------------------------------------------------*/
289 /* make release files '.tar.gz' files (.tar is default) */
290 Pkg.attrs.compress = true;
292 /* catch inadvertant use of unsupported data types */
293 Pkg.attrs.defs = "-Dxdc__strict";