Re: [PATCH v4 4/5] net: rnpgbe: Add basic mbx_fw support
From: MD Danish Anwar
Date: Thu Aug 14 2025 - 08:11:25 EST
On 14/08/25 1:08 pm, Dong Yibo wrote:
> Initialize basic mbx_fw ops, such as get_capability, reset phy
> and so on.
>
> Signed-off-by: Dong Yibo <dong100@xxxxxxxxx>
> ---
> drivers/net/ethernet/mucse/rnpgbe/Makefile | 3 +-
> drivers/net/ethernet/mucse/rnpgbe/rnpgbe.h | 4 +
> .../net/ethernet/mucse/rnpgbe/rnpgbe_mbx_fw.c | 264 ++++++++++++++++++
> .../net/ethernet/mucse/rnpgbe/rnpgbe_mbx_fw.h | 201 +++++++++++++
> 4 files changed, 471 insertions(+), 1 deletion(-)
> create mode 100644 drivers/net/ethernet/mucse/rnpgbe/rnpgbe_mbx_fw.c
> create mode 100644 drivers/net/ethernet/mucse/rnpgbe/rnpgbe_mbx_fw.h
>
> +
> +/**
> + * mbx_cookie_zalloc - Alloc a cookie structure
> + * @priv_len: private length for this cookie
> + *
> + * @return: cookie structure on success
> + **/
> +static struct mbx_req_cookie *mbx_cookie_zalloc(int priv_len)
> +{
> + struct mbx_req_cookie *cookie;
> +
> + cookie = kzalloc(struct_size(cookie, priv, priv_len), GFP_KERNEL);
> + if (cookie) {
> + cookie->timeout_jiffes = 30 * HZ;
Typo: should be "timeout_jiffies" instead of "timeout_jiffes"
> + cookie->magic = COOKIE_MAGIC;
> + cookie->priv_len = priv_len;
> + }
> + return cookie;
> +}
> +
> +/**
--
Thanks and Regards,
Danish