mirror of
https://github.com/torvalds/linux.git
synced 2026-05-01 13:02:35 -04:00
Add fundamental firmware (FW) communication operations via PF-FW mailbox, including: - FW sync (via HW info query with retries) - HW reset (post FW command to reset hardware) - MAC address retrieval (request FW for port-specific MAC) - Power management (powerup/powerdown notification to FW) Signed-off-by: Dong Yibo <dong100@mucse.com> Reviewed-by: Vadim Fedorenko <vadim.fedorenko@linux.dev> Link: https://patch.msgid.link/20251101013849.120565-5-dong100@mucse.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
12 lines
277 B
Makefile
12 lines
277 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright(c) 2020 - 2025 MUCSE Corporation.
|
|
#
|
|
# Makefile for the MUCSE(R) 1GbE PCI Express ethernet driver
|
|
#
|
|
|
|
obj-$(CONFIG_MGBE) += rnpgbe.o
|
|
rnpgbe-objs := rnpgbe_main.o\
|
|
rnpgbe_chip.o\
|
|
rnpgbe_mbx.o\
|
|
rnpgbe_mbx_fw.o
|