From: Andrew Lunn <andrew@lunn.ch>
To: Yibo Dong <dong100@mucse.com>
Cc: Vadim Fedorenko <vadim.fedorenko@linux.dev>,
andrew+netdev@lunn.ch, davem@davemloft.net, edumazet@google.com,
kuba@kernel.org, pabeni@redhat.com, horms@kernel.org,
corbet@lwn.net, gur.stavi@huawei.com, maddy@linux.ibm.com,
mpe@ellerman.id.au, danishanwar@ti.com, lee@trager.us,
gongfan1@huawei.com, lorenzo@kernel.org, geert+renesas@glider.be,
Parthiban.Veerasooran@microchip.com, lukas.bulwahn@redhat.com,
alexanderduyck@fb.com, richardcochran@gmail.com, kees@kernel.org,
gustavoars@kernel.org, netdev@vger.kernel.org,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-hardening@vger.kernel.org
Subject: Re: [PATCH net-next v7 4/5] net: rnpgbe: Add basic mbx_fw support
Date: Wed, 27 Aug 2025 21:54:58 +0200 [thread overview]
Message-ID: <a61b6cdb-0f20-480c-877a-68c920e76ae2@lunn.ch> (raw)
In-Reply-To: <05B2D818DB1348E6+20250827014211.GA469112@nic-Precision-5820-Tower>
> I try to explain the it:
>
> driver-->fw, we has two types request:
> 1. without response, such as mucse_mbx_ifinsmod
> 2. with response, such as mucse_fw_get_macaddr
>
> fw --> driver, we has one types request:
> 1. link status (link speed, duplex, pause status...)
Is the firmware multi threaded? By that, i mean can there be two
request/responses going on at once?
I'm assuming not.
So there appears to be four use cases:
1) Fire and forget, request without response.
2) Request with a response
3) Link state change from the firmware
4) Race condition: Request/response and link state change at the same time.
Again, assuming the firmware is single threaded, there must be a big
mutex around the message box so there can only be one thread doing any
sort of interaction with the firmware.
Since there can only be one thread waiting for the response, the
struct completion can be a member of the message box. The thread
waiting for a response uses wait_for_completion(mbx->completion).
The interrupt handler can look at the type of message it got from the
firmware. If it is a link state, process it, and exit. If it is
anything else, complete(mbx->completion) and exit.
I don't see the need for any sort of cookie.
Andrew
next prev parent reply other threads:[~2025-08-27 19:55 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-22 2:34 [PATCH net-next v7 0/5] Add driver for 1Gbe network chips from MUCSE Dong Yibo
2025-08-22 2:34 ` [PATCH net-next v7 1/5] net: rnpgbe: Add build support for rnpgbe Dong Yibo
2025-08-22 4:32 ` Parthiban.Veerasooran
2025-08-22 5:23 ` Yibo Dong
2025-08-22 2:34 ` [PATCH net-next v7 2/5] net: rnpgbe: Add n500/n210 chip support Dong Yibo
2025-08-22 2:34 ` [PATCH net-next v7 3/5] net: rnpgbe: Add basic mbx ops support Dong Yibo
2025-08-22 4:41 ` Parthiban.Veerasooran
2025-08-22 5:25 ` Yibo Dong
2025-08-22 2:34 ` [PATCH net-next v7 4/5] net: rnpgbe: Add basic mbx_fw support Dong Yibo
2025-08-22 4:49 ` Parthiban.Veerasooran
2025-08-22 5:37 ` Yibo Dong
2025-08-22 6:07 ` Parthiban.Veerasooran
2025-08-22 6:51 ` Yibo Dong
2025-08-22 8:05 ` Parthiban.Veerasooran
2025-08-22 9:04 ` Yibo Dong
2025-08-22 14:33 ` Andrew Lunn
2025-08-23 2:03 ` Yibo Dong
2025-08-22 14:43 ` Andrew Lunn
2025-08-23 1:58 ` Yibo Dong
2025-08-23 15:17 ` Andrew Lunn
2025-08-24 4:10 ` Yibo Dong
2025-08-24 15:15 ` Andrew Lunn
2025-08-25 1:30 ` Yibo Dong
2025-08-23 15:02 ` Vadim Fedorenko
2025-08-24 3:46 ` Yibo Dong
2025-08-25 16:37 ` Vadim Fedorenko
2025-08-26 1:31 ` Yibo Dong
2025-08-26 10:14 ` Vadim Fedorenko
2025-08-26 11:05 ` Yibo Dong
2025-08-26 12:39 ` Andrew Lunn
2025-08-27 1:42 ` Yibo Dong
2025-08-27 19:54 ` Andrew Lunn [this message]
2025-08-28 2:02 ` Yibo Dong
2025-08-22 2:34 ` [PATCH net-next v7 5/5] net: rnpgbe: Add register_netdev Dong Yibo
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=a61b6cdb-0f20-480c-877a-68c920e76ae2@lunn.ch \
--to=andrew@lunn.ch \
--cc=Parthiban.Veerasooran@microchip.com \
--cc=alexanderduyck@fb.com \
--cc=andrew+netdev@lunn.ch \
--cc=corbet@lwn.net \
--cc=danishanwar@ti.com \
--cc=davem@davemloft.net \
--cc=dong100@mucse.com \
--cc=edumazet@google.com \
--cc=geert+renesas@glider.be \
--cc=gongfan1@huawei.com \
--cc=gur.stavi@huawei.com \
--cc=gustavoars@kernel.org \
--cc=horms@kernel.org \
--cc=kees@kernel.org \
--cc=kuba@kernel.org \
--cc=lee@trager.us \
--cc=linux-doc@vger.kernel.org \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lorenzo@kernel.org \
--cc=lukas.bulwahn@redhat.com \
--cc=maddy@linux.ibm.com \
--cc=mpe@ellerman.id.au \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=richardcochran@gmail.com \
--cc=vadim.fedorenko@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;
as well as URLs for NNTP newsgroup(s).