a095390344
Similar to r366897, this uses the .incbin directive to pull in a firmware file's contents into a .fwo file. The same scheme for computing symbol names from the filename is used as before to maximize compatiblity and not require rebuilding existing .fwo files for NO_CLEAN builds. Using ld -o binary requires extra hacks in linkers to either specify ABI options (e.g. soft- vs hard-float) or to ignore ABI incompatiblities when linking certain objects (e.g. object files with only data). Using the compiler driver avoids the need for these hacks as the compiler driver is able to set all the appropriate ABI options. Reviewed by: imp, markj Obtained from: CheriBSD Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D27579
239 lines
5.9 KiB
Awk
239 lines
5.9 KiB
Awk
#!/usr/bin/awk -f
|
|
|
|
#-
|
|
# SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
#
|
|
# Copyright (c) 2006 Max Laier.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS `AS IS'' AND
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
# SUCH DAMAGE.
|
|
#
|
|
# $FreeBSD$
|
|
|
|
#
|
|
# Script to generate module .c file from a list of firmware images
|
|
#
|
|
|
|
function usage ()
|
|
{
|
|
print "usage: fw_stub <firmware:name>* [-l name] [-m modname] [-c outfile]";
|
|
exit 1;
|
|
}
|
|
|
|
# These are just for convenience ...
|
|
function printc(s)
|
|
{
|
|
if (opt_c)
|
|
print s > ctmpfilename;
|
|
else
|
|
print s > "/dev/stdout";
|
|
}
|
|
|
|
BEGIN {
|
|
|
|
#
|
|
# Process the command line.
|
|
#
|
|
|
|
num_files = 0;
|
|
|
|
for (i = 1; i < ARGC; i++) {
|
|
if (ARGV[i] ~ /^-/) {
|
|
#
|
|
# awk doesn't have getopt(), so we have to do it ourselves.
|
|
# This is a bit clumsy, but it works.
|
|
#
|
|
for (j = 2; j <= length(ARGV[i]); j++) {
|
|
o = substr(ARGV[i], j, 1);
|
|
if (o == "c") {
|
|
if (length(ARGV[i]) > j) {
|
|
opt_c = substr(ARGV[i], j + 1);
|
|
break;
|
|
}
|
|
else {
|
|
if (++i < ARGC)
|
|
opt_c = ARGV[i];
|
|
else
|
|
usage();
|
|
}
|
|
} else if (o == "m") {
|
|
if (length(ARGV[i]) > j) {
|
|
opt_m = substr(ARGV[i], j + 1);
|
|
break;
|
|
}
|
|
else {
|
|
if (++i < ARGC)
|
|
opt_m = ARGV[i];
|
|
else
|
|
usage();
|
|
}
|
|
} else if (o == "l") {
|
|
if (length(ARGV[i]) > j) {
|
|
opt_l = substr(ARGV[i], j + 1);
|
|
break;
|
|
}
|
|
else {
|
|
if (++i < ARGC)
|
|
opt_l = ARGV[i];
|
|
else
|
|
usage();
|
|
}
|
|
} else
|
|
usage();
|
|
}
|
|
} else {
|
|
split(ARGV[i], curr, ":");
|
|
filenames[num_files] = curr[1];
|
|
if (length(curr[2]) > 0)
|
|
shortnames[num_files] = curr[2];
|
|
else
|
|
shortnames[num_files] = curr[1];
|
|
if (length(curr[3]) > 0)
|
|
versions[num_files] = int(curr[3]);
|
|
else
|
|
versions[num_files] = 0;
|
|
num_files++;
|
|
}
|
|
}
|
|
|
|
if (!num_files || !opt_m)
|
|
usage();
|
|
|
|
cfilename = opt_c;
|
|
ctmpfilename = cfilename ".tmp";
|
|
modname = opt_m;
|
|
gsub(/[-\.]/, "_", modname);
|
|
|
|
# Avoid a literal generated file tag here.
|
|
generated = "@" "generated";
|
|
printc("/*\
|
|
* Automatically " generated " by:\
|
|
* $FreeBSD$\
|
|
*/");
|
|
printc("#include <sys/param.h>");
|
|
printc("#include <sys/errno.h>");
|
|
printc("#include <sys/kernel.h>");
|
|
printc("#include <sys/module.h>");
|
|
printc("#include <sys/linker.h>");
|
|
printc("#include <sys/firmware.h>");
|
|
printc("#include <sys/systm.h>\n");
|
|
|
|
if (opt_l) {
|
|
printc("static long " opt_l "_license_ack = 0;");
|
|
}
|
|
|
|
for (file_i = 0; file_i < num_files; file_i++) {
|
|
symb = filenames[file_i];
|
|
# '-', '.' and '/' are converted to '_'
|
|
gsub(/-|\.|\//, "_", symb);
|
|
printc("extern char _binary_" symb "_start[], _binary_" symb "_end[];");
|
|
}
|
|
|
|
printc("\nstatic int\n"\
|
|
modname "_fw_modevent(module_t mod, int type, void *unused)\
|
|
{\
|
|
const struct firmware *fp, *parent;\
|
|
int error;\
|
|
switch (type) {\
|
|
case MOD_LOAD:\n");
|
|
|
|
if (opt_l) {
|
|
printc("\
|
|
TUNABLE_LONG_FETCH(\"legal." opt_l ".license_ack\", &" opt_l "_license_ack);\
|
|
if (!" opt_l "_license_ack) {\
|
|
printf(\"" opt_m ": You need to read the LICENSE file in /usr/share/doc/legal/" opt_l ".LICENSE.\\n\");\
|
|
printf(\"" opt_m ": If you agree with the license, set legal." opt_l ".license_ack=1 in /boot/loader.conf.\\n\");\
|
|
return(EPERM);\
|
|
}\n");
|
|
}
|
|
|
|
for (file_i = 0; file_i < num_files; file_i++) {
|
|
short = shortnames[file_i];
|
|
symb = filenames[file_i];
|
|
version = versions[file_i];
|
|
# '-', '.' and '/' are converted to '_'
|
|
gsub(/-|\.|\//, "_", symb);
|
|
|
|
reg = "\t\tfp = ";
|
|
reg = reg "firmware_register(\"" short "\", _binary_" symb "_start , ";
|
|
reg = reg "(size_t)(_binary_" symb "_end - _binary_" symb "_start), ";
|
|
reg = reg version ", ";
|
|
|
|
if (file_i == 0)
|
|
reg = reg "NULL);";
|
|
else
|
|
reg = reg "parent);";
|
|
|
|
printc(reg);
|
|
|
|
printc("\t\tif (fp == NULL)");
|
|
printc("\t\t\tgoto fail_" file_i ";");
|
|
if (file_i == 0)
|
|
printc("\t\tparent = fp;");
|
|
}
|
|
|
|
printc("\t\treturn (0);");
|
|
|
|
for (file_i = num_files - 1; file_i > 0; file_i--) {
|
|
printc("fail_" file_i ":")
|
|
printc("\t\t(void)firmware_unregister(\"" shortnames[file_i - 1] "\");");
|
|
}
|
|
|
|
printc("\tfail_0:");
|
|
printc("\t\treturn (ENXIO);");
|
|
|
|
printc("\tcase MOD_UNLOAD:");
|
|
|
|
for (file_i = 1; file_i < num_files; file_i++) {
|
|
printc("\t\terror = firmware_unregister(\"" shortnames[file_i] "\");");
|
|
printc("\t\tif (error)");
|
|
printc("\t\t\treturn (error);");
|
|
}
|
|
|
|
printc("\t\terror = firmware_unregister(\"" shortnames[0] "\");");
|
|
|
|
printc("\t\treturn (error);\
|
|
}\
|
|
return (EINVAL);\
|
|
}\
|
|
\
|
|
static moduledata_t " modname "_fw_mod = {\
|
|
\"" modname "_fw\",\
|
|
" modname "_fw_modevent,\
|
|
0\
|
|
};\
|
|
DECLARE_MODULE(" modname "_fw, " modname "_fw_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);\
|
|
MODULE_VERSION(" modname "_fw, 1);\
|
|
MODULE_DEPEND(" modname "_fw, firmware, 1, 1, 1);\
|
|
");
|
|
|
|
if (opt_c)
|
|
if ((rc = system("mv -f " ctmpfilename " " cfilename))) {
|
|
print "'mv -f " ctmpfilename " " cfilename "' failed: " rc \
|
|
> "/dev/stderr";
|
|
exit 1;
|
|
}
|
|
|
|
exit 0;
|
|
|
|
}
|