1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00
VILLASnode/fpga/scripts/reset_pci_device.sh
Steffen Vogel f776cba693 relicense project to Apache 2.0
The project is now also REUSE compliant: https://reuse.software/
Previous copyright holders have provided their
acknowledgement to transition to the new license in the
following GitHub PR: https://github.com/VILLASframework/fpga/pull/66

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2023-01-07 17:20:15 +01:00

19 lines
537 B
Bash
Executable file

#!/bin/bash
#
# Reset PCI devices like FPGAs after a reflash
#
# Author: Steffen Vogel <post@steffenvogel.de>
# SPDX-FileCopyrightText: 2017-2022, Institute for Automation of Complex Power Systems, EONERC
# SPDX-License-Identifier: Apache-2.0
##################################################################################
if [ "$#" -ne 1 ]; then
echo "usage: $0 BUS:DEV.FNC"
exit 1
fi
BDF=$1
echo "1" > /sys/bus/pci/devices/${BDF}/remove
echo "1" > /sys/bus/pci/rescan
echo "1" > /sys/bus/pci/devices/${BDF}/reset