#- # SPDX-License-Identifier: BSD-2-Clause # # Copyright 2023 Bjoern A. Zeeb # Copyright (c) 2024 The FreeBSD Foundation # # Portions of this software were developed by Björn Zeeb # under sponsorship from the FreeBSD Foundation. # # 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() { case "$1" in # The case pattern table below is generated by a script also helping # to generate the flavor/firmware Makefile definitions for ports. # { sys/contrib/dev/rtw88/zzz_fw_ports_fwget.sh } ### >>> 0xd723) addpkg "wifi-firmware-rtw88-kmod-rtw8723d"; return 1 ;; 0xb821) addpkg "wifi-firmware-rtw88-kmod-rtw8821c"; return 1 ;; 0xc821) addpkg "wifi-firmware-rtw88-kmod-rtw8821c"; return 1 ;; 0xb822) addpkg "wifi-firmware-rtw88-kmod-rtw8822b"; return 1 ;; 0xc822) addpkg "wifi-firmware-rtw88-kmod-rtw8822c"; return 1 ;; 0xc82f) addpkg "wifi-firmware-rtw88-kmod-rtw8822c"; return 1 ;; ### <<< esac } # rtw89 pci_network_realtek_rtw89() { case "$1" in # The case pattern table below is generated by a script also helping # to generate the flavor/firmware Makefile definitions for ports. # { sys/contrib/dev/rtw89/zzz_fw_ports_fwget.sh } ### >>> 0xb851) addpkg "wifi-firmware-rtw89-kmod-rtw8851b"; return 1 ;; 0x8852) addpkg "wifi-firmware-rtw89-kmod-rtw8852a"; return 1 ;; 0xa85a) addpkg "wifi-firmware-rtw89-kmod-rtw8852a"; return 1 ;; 0xb852) addpkg "wifi-firmware-rtw89-kmod-rtw8852b"; return 1 ;; 0xb85b) addpkg "wifi-firmware-rtw89-kmod-rtw8852b"; return 1 ;; 0xc852) addpkg "wifi-firmware-rtw89-kmod-rtw8852c"; return 1 ;; 0x8922) addpkg "wifi-firmware-rtw89-kmod-rtw8922a"; return 1 ;; ### <<< esac } pci_network_realtek() { for _drv in rtw88 rtw89; do pci_network_realtek_${_drv} "$1" case $? in 1) break ;; esac done }