freebsd-dev/usr.sbin/fwget/pci/pci_network_realtek
Bjoern A. Zeeb dd8a74e74d fwget: add support for various WiFi NICs
Add support for Realtek, QCA, and Mediatek WiFi NIC cards.
We group the matching entries by driver in sub-functions in order
to semi-automatically create the lists for now.

Reviewed by:	manu
Differential Revision: https://reviews.freebsd.org/D40073
2023-05-20 11:18:51 +00:00

66 lines
2.4 KiB
Plaintext

#-
# SPDX-License-Identifier: BSD-2-Clause
#
# Copyright 2023 Bjoern A. Zeeb
#
# 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.
#
# rtw88
pci_network_realtek_rtw88()
{
# awk '/PCI_DEVICE\(PCI_VENDOR_ID_REALTEK,/ { gsub(").*", "", $2); printf "%s)\taddpkg \"wifi-firmware-rtw88-kmod\"; return 1 ;;\n", tolower($2) }' *.c
case "$1" in
0xd723) addpkg "wifi-firmware-rtw88-kmod"; return 1 ;;
0xb821) addpkg "wifi-firmware-rtw88-kmod"; return 1 ;;
0xc821) addpkg "wifi-firmware-rtw88-kmod"; return 1 ;;
0xb822) addpkg "wifi-firmware-rtw88-kmod"; return 1 ;;
0xc822) addpkg "wifi-firmware-rtw88-kmod"; return 1 ;;
0xc82f) addpkg "wifi-firmware-rtw88-kmod"; return 1 ;;
esac
}
# rtw89
pci_network_realtek_rtw89()
{
# awk '/PCI_DEVICE\(PCI_VENDOR_ID_REALTEK,/ { gsub(").*", "", $2); printf "%s)\taddpkg \"wifi-firmware-rtw89-kmod\"; return 1 ;;\n", tolower($2) }' *.c
case "$1" in
0x8852) addpkg "wifi-firmware-rtw89-kmod"; return 1 ;;
0xa85a) addpkg "wifi-firmware-rtw89-kmod"; return 1 ;;
0xc852) addpkg "wifi-firmware-rtw89-kmod"; return 1 ;;
esac
}
pci_network_realtek()
{
for _drv in rtw88 rtw89; do
pci_network_realtek_${_drv} "$1"
case $? in
1) break ;;
esac
done
}