From: Vadim Fedorenko <vadim.fedorenko@linux.dev>
To: weishangjuan@eswincomputing.com, devicetree@vger.kernel.org,
andrew+netdev@lunn.ch, davem@davemloft.net, edumazet@google.com,
kuba@kernel.org, pabeni@redhat.com, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org,
linux-arm-kernel@lists.infradead.org, mcoquelin.stm32@gmail.com,
alexandre.torgue@foss.st.com, yong.liang.choong@linux.intel.com,
vladimir.oltean@nxp.com, rmk+kernel@armlinux.org.uk,
faizal.abdul.rahim@linux.intel.com,
prabhakar.mahadev-lad.rj@bp.renesas.com, inochiama@gmail.com,
jan.petrous@oss.nxp.com, jszhang@kernel.org,
p.zabel@pengutronix.de, boon.khai.ng@altera.com,
0x1207@gmail.com, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-stm32@st-md-mailman.stormreply.com
Cc: ningyu@eswincomputing.com, linmin@eswincomputing.com,
lizhi2@eswincomputing.com
Subject: Re: [PATCH v4 2/2] ethernet: eswin: Add eic7700 ethernet driver
Date: Wed, 27 Aug 2025 13:43:31 +0100 [thread overview]
Message-ID: <228e871e-a5c7-4570-b672-a97ac3db90c5@linux.dev> (raw)
In-Reply-To: <20250827081418.2347-1-weishangjuan@eswincomputing.com>
On 27/08/2025 09:14, weishangjuan@eswincomputing.com wrote:
> From: Shangjuan Wei <weishangjuan@eswincomputing.com>
>
> Add Ethernet controller support for Eswin's eic7700 SoC. The driver
> provides management and control of Ethernet signals for the eiC7700
> series chips.
>
> Signed-off-by: Zhi Li <lizhi2@eswincomputing.com>
> Signed-off-by: Shangjuan Wei <weishangjuan@eswincomputing.com>
> ---
[...]
> +/**
> + * eic7700_apply_delay - Update TX or RX delay bits in delay parameter value.
> + * @delay_ps: Delay in picoseconds (capped at 12.7ns).
> + * @reg: Pointer to register value to modify.
> + * @is_rx: True for RX delay (bits 30:24), false for TX delay (bits 14:8).
> + *
> + * Converts delay to 0.1ns units, caps at 0x7F, and sets appropriate bits.
> + * Only RX or TX bits are updated; other bits remain unchanged.
> + */
> +static inline void eic7700_apply_delay(u32 delay_ps, u32 *reg, bool is_rx)
inlining functions in .c files is discouraged in netdev, let the
compiler decide inlining
> +{
> + if (!reg)
> + return;
please, avoid defensive programming. with this check you also mixing
code and variables..
> +
> + u32 val = min(delay_ps / 100, EIC7700_MAX_DELAY_UNIT);
> +> + if (is_rx) {
> + *reg &= ~EIC7700_ETH_RX_ADJ_DELAY;
> + *reg |= (val << 24) & EIC7700_ETH_RX_ADJ_DELAY;
> + } else {
> + *reg &= ~EIC7700_ETH_TX_ADJ_DELAY;
> + *reg |= (val << 8) & EIC7700_ETH_TX_ADJ_DELAY;
these 2 assignments should be converted to FIELD_PREP()
> + }
> +}
> +
prev parent reply other threads:[~2025-08-27 12:43 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-27 8:11 [PATCH v4 0/2] Add driver support for Eswin eic7700 SoC ethernet controller weishangjuan
2025-08-27 8:13 ` [PATCH v4 1/2] dt-bindings: ethernet: eswin: Document for EIC7700 SoC weishangjuan
2025-08-27 12:48 ` Krzysztof Kozlowski
2025-08-27 8:14 ` [PATCH v4 2/2] ethernet: eswin: Add eic7700 ethernet driver weishangjuan
2025-08-27 8:24 ` Russell King (Oracle)
2025-08-28 10:05 ` 李志
2025-09-02 2:20 ` 李志
2025-08-27 12:37 ` Andrew Lunn
2025-08-27 12:43 ` Vadim Fedorenko [this message]
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=228e871e-a5c7-4570-b672-a97ac3db90c5@linux.dev \
--to=vadim.fedorenko@linux.dev \
--cc=0x1207@gmail.com \
--cc=alexandre.torgue@foss.st.com \
--cc=andrew+netdev@lunn.ch \
--cc=boon.khai.ng@altera.com \
--cc=conor+dt@kernel.org \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=edumazet@google.com \
--cc=faizal.abdul.rahim@linux.intel.com \
--cc=inochiama@gmail.com \
--cc=jan.petrous@oss.nxp.com \
--cc=jszhang@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=kuba@kernel.org \
--cc=linmin@eswincomputing.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=lizhi2@eswincomputing.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=ningyu@eswincomputing.com \
--cc=p.zabel@pengutronix.de \
--cc=pabeni@redhat.com \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=rmk+kernel@armlinux.org.uk \
--cc=robh@kernel.org \
--cc=vladimir.oltean@nxp.com \
--cc=weishangjuan@eswincomputing.com \
--cc=yong.liang.choong@linux.intel.com \
/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).