blob: 436c0fd15115c83fd8bd9459a7504cb2b4b22650 [file] [log] [blame]
Yegor Timoshenkoc2e49412018-10-07 01:58:27 +00001#!/usr/bin/env bash
Martin Roth29535842015-11-05 07:51:28 -07002#
3# This file is part of the coreboot project.
4#
5# Copyright (C) 2015 Google Inc.
6#
7# All rights reserved.
8#
9# Redistribution and use in source and binary forms, with or without
10# modification, are permitted provided that the following conditions are met:
11#
12# 1. Redistributions of source code must retain the above copyright notice,
13# this list of conditions and the following disclaimer.
14#
15# 2. Redistributions in binary form must reproduce the above copyright notice,
16# this list of conditions and the following disclaimer in the documentation
17# and/or other materials provided with the distribution.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29# POSSIBILITY OF SUCH DAMAGE.
30#
31
32if [ -z "$1" ] || [ -z "$2" ]; then
Bartek Pastudzki69a88dd2018-04-06 12:40:09 +020033 printf "Usage: %s <output file> \"<microcode .h files>\"\\n" "$0"
Martin Roth29535842015-11-05 07:51:28 -070034fi
35
36OUTFILE=$1
37TMPFILE=$(mktemp microcode_XXXX)
38cat > "${TMPFILE}.c" << EOF
39#include <stdio.h>
40unsigned int microcode[] = {
41EOF
42
Bartek Pastudzki69a88dd2018-04-06 12:40:09 +020043include_file() {
44 if [ "${1: -4}" == ".inc" ]; then
45 awk '{gsub( /h.*$/, "", $2 ); print "0x" $2 ","; }' "$1" \
46 >> "${TMPFILE}.c"
47 else
48 echo "#include \"$1\"" >> "${TMPFILE}.c"
49 fi
50}
51
52for UCODE in "${@:2}"; do
53 if [ -d "$UCODE" ]; then
54 for f in "$UCODE/"*.inc
55 do
56 include_file "$f"
57 done
58 else
59 include_file "$UCODE"
60 fi
Martin Roth29535842015-11-05 07:51:28 -070061done
62
63cat >> "${TMPFILE}.c" << EOF
64};
65int main(void)
66{
67 FILE *f = fopen("$OUTFILE", "wb");
68 fwrite(microcode, sizeof(microcode), 1, f);
69 fclose(f);
70 return 0;
71}
72EOF
73
74gcc -o "$TMPFILE" "${TMPFILE}.c"
Marshall Dawson1bc2b0b2016-06-25 10:17:07 -060075[ -f "${TMPFILE}.exe" ] && mv "${TMPFILE}.exe" "$TMPFILE"
Martin Roth29535842015-11-05 07:51:28 -070076"./$TMPFILE"
77rm "$TMPFILE" "${TMPFILE}.c"