From: Vishal Verma <vishal.l.verma@intel.com>
To: linux-cxl@vger.kernel.org
Cc: nvdimm@lists.linux.dev,
Alison Schofield <alison.schofield@intel.com>,
Ira Weiny <ira.weiny@intel.com>,
Dave Jiang <dave.jiang@intel.com>,
Dan Williams <dan.j.williams@intel.com>,
Vishal Verma <vishal.l.verma@intel.com>
Subject: [PATCH ndctl 5/5] test/cxl-update-firmware: add a unit test for firmware update
Date: Fri, 21 Apr 2023 21:10:03 -0600 [thread overview]
Message-ID: <20230405-vv-fw_update-v1-5-722a7a5baea3@intel.com> (raw)
In-Reply-To: <20230405-vv-fw_update-v1-0-722a7a5baea3@intel.com>
Add a unit test to exercise the different operating modes of the
cxl-update-firmware command. Perform an update synchronously,
asynchronously, on multiple devices, and attempt cancellation of an
in-progress update.
Cc: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
---
test/cxl-update-firmware.sh | 195 ++++++++++++++++++++++++++++++++++++++++++++
test/meson.build | 2 +
2 files changed, 197 insertions(+)
diff --git a/test/cxl-update-firmware.sh b/test/cxl-update-firmware.sh
new file mode 100755
index 0000000..c6cd742
--- /dev/null
+++ b/test/cxl-update-firmware.sh
@@ -0,0 +1,195 @@
+#!/bin/bash
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (C) 2023 Intel Corporation. All rights reserved.
+
+. $(dirname $0)/common
+
+rc=77
+
+set -ex
+
+trap 'err $LINENO' ERR
+
+check_prereq "jq"
+check_prereq "dd"
+check_prereq "sha256sum"
+
+modprobe -r cxl_test
+modprobe cxl_test
+rc=1
+
+mk_fw_file()
+{
+ size="$1"
+
+ if [[ ! $size ]]; then
+ err "$LINENO"
+ fi
+ if (( size > 64 )); then
+ err "$LINENO"
+ fi
+
+ fw_file="$(mktemp -p /tmp fw_file_XXXX)"
+ dd if=/dev/urandom of="$fw_file" bs=1M count="$size"
+ echo "$fw_file"
+}
+
+find_memdevs()
+{
+ count="$1"
+
+ if [[ ! $count ]]; then
+ count=1
+ fi
+
+ "$CXL" list -M -b "$CXL_TEST_BUS" \
+ | jq -r '.[] | select(.host | startswith("cxl_mem.")) | .memdev' \
+ | head -"$count"
+}
+
+do_update_fw()
+{
+ "$CXL" update-firmware -b "$CXL_TEST_BUS" "$@"
+}
+
+wait_complete()
+{
+ mem="$1" # single memdev, not a list
+ max_wait="$2" # in seconds
+ waited=0
+
+ while true; do
+ json="$("$CXL" list -m "$mem" -F)"
+ in_prog="$(jq -r '.[].firmware.fw_update_in_progress' <<< "$json")"
+ if [[ $in_prog == "true" ]]; then
+ sleep 1
+ waited="$((waited + 1))"
+ continue
+ else
+ break
+ fi
+ if (( waited == max_wait )); then
+ echo "completion timeout for $mem"
+ err "$LINENO"
+ fi
+ done
+}
+
+validate_json_state()
+{
+ json="$1"
+ state="$2"
+
+ while read -r in_prog_state; do
+ if [[ $in_prog_state == $state ]]; then
+ continue
+ else
+ echo "expected fw_update_in_progress:$state"
+ err "$LINENO"
+ fi
+ done < <(jq -r '.[].firmware.fw_update_in_progress' <<< "$json")
+}
+
+validate_fw_update_in_progress()
+{
+ validate_json_state "$1" "true"
+}
+
+validate_fw_update_idle()
+{
+ validate_json_state "$1" "false"
+}
+
+validate_staged_slot()
+{
+ json="$1"
+ slot="$2"
+
+ while read -r staged_slot; do
+ if [[ $staged_slot == $slot ]]; then
+ continue
+ else
+ echo "expected staged_slot:$slot"
+ err "$LINENO"
+ fi
+ done < <(jq -r '.[].firmware.staged_slot' <<< "$json")
+}
+
+check_sha()
+{
+ mem="$1"
+ file="$2"
+ csum_path="/sys/bus/platform/devices/cxl_mem.${mem#mem}/fw_buf_checksum"
+
+ mem_csum="$(cat "$csum_path")"
+ file_csum="$(sha256sum "$file" | awk '{print $1}')"
+
+ if [[ $mem_csum != $file_csum ]]; then
+ echo "checksum failure for mem$mem"
+ err "$LINENO"
+ fi
+}
+
+test_blocking_update()
+{
+ file="$(mk_fw_file 8)"
+ mem="$(find_memdevs 1)"
+ json=$(do_update_fw -F "$file" --wait "$mem")
+ validate_fw_update_idle "$json"
+ # cxl_test's starting slot is '2', so staged should be 3
+ validate_staged_slot "$json" 3
+ check_sha "$mem" "$file"
+ rm "$file"
+}
+
+test_nonblocking_update()
+{
+ file="$(mk_fw_file 16)"
+ mem="$(find_memdevs 1)"
+ json=$(do_update_fw -F "$file" "$mem")
+ validate_fw_update_in_progress "$json"
+ wait_complete "$mem" 15
+ validate_fw_update_idle "$("$CXL" list -m "$mem" -F)"
+ check_sha "$mem" "$file"
+ rm "$file"
+}
+
+test_multiple_memdev()
+{
+ num_mems=2
+
+ file="$(mk_fw_file 16)"
+ declare -a mems
+ mems=( $(find_memdevs "$num_mems") )
+ json="$(do_update_fw -F "$file" "${mems[@]}")"
+ validate_fw_update_in_progress "$json"
+ # use the in-band wait this time
+ json="$(do_update_fw --wait "${mems[@]}")"
+ validate_fw_update_idle "$json"
+ for mem in ${mems[@]}; do
+ check_sha "$mem" "$file"
+ done
+ rm "$file"
+}
+
+test_cancel()
+{
+ file="$(mk_fw_file 16)"
+ mem="$(find_memdevs 1)"
+ json=$(do_update_fw -F "$file" "$mem")
+ validate_fw_update_in_progress "$json"
+ do_update_fw --cancel "$mem"
+ # cancellation is asynchronous, and the result looks the same as idle
+ wait_complete "$mem" 15
+ validate_fw_update_idle "$("$CXL" list -m "$mem" -F)"
+ # no need to check_sha
+ rm "$file"
+}
+
+test_blocking_update
+test_nonblocking_update
+test_multiple_memdev
+test_cancel
+
+check_dmesg "$LINENO"
+modprobe -r cxl_test
diff --git a/test/meson.build b/test/meson.build
index a956885..0f4d3c4 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -155,6 +155,7 @@ cxl_sysfs = find_program('cxl-region-sysfs.sh')
cxl_labels = find_program('cxl-labels.sh')
cxl_create_region = find_program('cxl-create-region.sh')
cxl_xor_region = find_program('cxl-xor-region.sh')
+cxl_update_firmware = find_program('cxl-update-firmware.sh')
tests = [
[ 'libndctl', libndctl, 'ndctl' ],
@@ -198,6 +199,7 @@ if get_option('destructive').enabled()
tests += [
[ 'firmware-update.sh', firmware_update, 'ndctl' ],
+ [ 'cxl-update-firmware.sh', cxl_update_firmware, 'cxl' ],
[ 'pmem-ns', pmem_ns, 'ndctl' ],
[ 'sub-section.sh', sub_section, 'dax' ],
[ 'dax-dev', dax_dev, 'dax' ],
--
2.40.0
next prev parent reply other threads:[~2023-04-22 3:12 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-22 3:09 [PATCH ndctl 0/5] cxl: firmware update support for libcxl and cxl-cli Vishal Verma
2023-04-22 3:09 ` [PATCH ndctl 1/5] cxl/memdev.c: allow filtering memdevs by bus Vishal Verma
2023-05-19 17:57 ` Dave Jiang
2023-04-22 3:10 ` [PATCH ndctl 2/5] cxl/list: print firmware info in memdev listings Vishal Verma
2023-05-19 18:21 ` Dave Jiang
2023-04-22 3:10 ` [PATCH ndctl 3/5] cxl/fw_loader: add APIs to get current state of the FW loader mechanism Vishal Verma
2023-05-19 18:49 ` Dave Jiang
2023-04-22 3:10 ` [PATCH ndctl 4/5] cxl: add an update-firmware command Vishal Verma
2023-04-24 23:14 ` Verma, Vishal L
2023-05-19 18:57 ` Dave Jiang
2023-04-22 3:10 ` Vishal Verma [this message]
2023-05-19 19:00 ` [PATCH ndctl 5/5] test/cxl-update-firmware: add a unit test for firmware update Dave Jiang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230405-vv-fw_update-v1-5-722a7a5baea3@intel.com \
--to=vishal.l.verma@intel.com \
--cc=alison.schofield@intel.com \
--cc=dan.j.williams@intel.com \
--cc=dave.jiang@intel.com \
--cc=ira.weiny@intel.com \
--cc=linux-cxl@vger.kernel.org \
--cc=nvdimm@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox