xref: /illumos-gate/usr/src/data/ucode/update.amd (revision d32f26ee)
1#!/bin/ksh
2
3# This file and its contents are supplied under the terms of the
4# Common Development and Distribution License ("CDDL"), version 1.0.
5# You may only use this file in accordance with the terms of version
6# 1.0 of the CDDL.
7#
8# A full copy of the text of the CDDL should have accompanied this
9# source. A copy of the CDDL is also available via the Internet at
10# http://www.illumos.org/license/CDDL.
11
12# Copyright 2022 OmniOS Community Edition (OmniOSce) Association.
13# Copyright 2023 Oxide Computer Company
14
15# A simple update script that checks out the upstream AMD firmware
16# repository, extracts the microcode into separate files within the amd/
17# directory, generates the required combined equivalence table and updates
18# the pkg(7) manifest.
19
20UPSTREAM=git://git.kernel.org
21UPSTREAM_PATH=/pub/scm/linux/kernel/git/firmware/linux-firmware.git
22
23# These are the GPG keys that AMD use to sign their CPU microcode updates
24# The first key is the current one and the second is one they have used for
25# older CPU families.
26GPGSERVER=keys.gnupg.net
27typeset -a GPGKEYS=(
28	0xFC7C6C505DAFCC14718357CAE4BE5339F328AE73
29	0x916A770823A7B27AADE01565A5E8DBC98C0108B4
30)
31
32function errexit {
33	echo "$@" >&2
34	exit 1
35}
36
37FW=platform/i86pc/ucode/AuthenticAMD
38
39export LC_ALL=C.UTF-8
40
41set -e
42set -o pipefail
43
44mf=../../pkg/manifests/system-microcode-amd.p5m
45[[ -f $mf ]] || errexit "Run from usr/src/data/ucode"
46
47function find_cmd {
48	typeset cmd="$1"
49	typeset var=$(echo $cmd | tr '[:lower:]' '[:upper:]')
50	typeset -n path="$var"
51	path=$(whence -fp "$cmd")
52	if (($? != 0)) || [ ! -x "$path" ]; then
53		errexit "Cannot find executable '$cmd' in PATH"
54	fi
55}
56
57# This script uses a few commands which are not part of illumos and are
58# expected to be available in the path.
59find_cmd git
60find_cmd gpg
61find_cmd pkgfmt
62find_cmd stat
63# Search for 'ucodeadm'. If you need to use an updated ucodeadm to handle this
64# firmware update, as is occasionally necessary, ensure it occurs earlier in
65# the path than /usr/sbin.
66find_cmd ucodeadm
67
68tmp=$(mktemp -d)
69[[ -n "$tmp" && -d "$tmp" ]]
70mkdir $tmp/out || errexit "Failed to create temporary directory"
71trap 'rm -rf $tmp' EXIT
72
73echo "** Adding AMD GPG signing keys to temporary keyring"
74mkdir -m 0700 $tmp/gnupg
75$GPG --homedir $tmp/gnupg --keyserver $GPGSERVER --receive-keys ${GPGKEYS[@]}
76
77echo "** Cloning $UPSTREAM$UPSTREAM_PATH"
78$GIT clone $UPSTREAM$UPSTREAM_PATH $tmp/ucode
79
80ver=`$GIT -C $tmp/ucode log -n1 --format=%ad --date=format:%Y%m%d amd-ucode`
81echo "** Updating to microcode version $ver"
82
83echo "** Verifying microcode signatures"
84for f in $tmp/ucode/amd-ucode/*.bin; do
85	if [[ ! -f "$f.asc" ]]; then
86		echo "Signature missing for ${f##*/}"
87		exit 1
88	fi
89	$GPG --homedir $tmp/gnupg --trust-model=always --verify $f{.asc,}
90done
91
92# Now that everything is in place and verified, begin modifying the tree.
93
94rm -f amd/*-*
95
96cp $tmp/ucode/LICENSE.amd-ucode amd/THIRDPARTYLICENSE
97echo AMD Processor Microcode Data Files > amd/THIRDPARTYLICENSE.descrip
98
99for f in $tmp/ucode/amd-ucode/*.bin; do
100	bf=${f##*/}
101	bf=${bf#microcode_}
102	bf=${bf%.bin}
103	[[ $bf = amd* ]] || errexit "$f does not look like a firmware file"
104	echo "Converting $bf"
105	mkdir $tmp/out/$bf
106	cp $f $tmp/amd-fw
107	$UCODEADM -l $tmp/amd-fw
108	$UCODEADM -i -R $tmp/out/$bf $tmp/amd-fw
109	rm -f $tmp/amd-fw
110done
111
112# Copy the firmware files into place
113cp $tmp/out/*/*-?? amd/
114
115# Combine the equivalence tables from the different updates into one
116# Each equivalence-table file is a sequence of 16-byte records with a
117# 16-byte terminator which is all zeros. To merge, we just concatenate
118# the non-terminator records and then add 16 bytes from /dev/zero.
119{
120	for f in $tmp/out/*/equivalence-table; do
121		size=$($STAT -c %s $f)
122		((size -= 16))
123		dd if=$f bs=1 count=$size status=none
124	done
125	# Add terminator
126	dd if=/dev/zero bs=1 count=16 status=none
127} > amd/equivalence-table
128
129$PKGFMT -u $mf
130mv $mf $mf.tmp
131egrep -v "file path=$FW" $mf.tmp > $mf
132rm -f $mf.tmp
133
134for f in amd/*; do
135	bf=${f##*/}
136	[[ $bf = THIRDPARTYLICENSE* ]] && continue
137	[[ $bf = Makefile* ]] && continue
138	echo "file path=$FW/$bf group=sys mode=0444 reboot-needed=true" >> $mf
139done
140
141sed -i "/pkg.fmri.*microcode\/amd@/s/@[0-9]*/@$ver/" $mf
142
143$PKGFMT -fv2 $mf
144
145