public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
From: Vincent Mailhol <mailhol@kernel.org>
To: Arun Muthusamy <arun.muthusamy@gaisler.com>
Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-can@vger.kernel.org, robh@kernel.org, krzk+dt@kernel.org,
	conor+dt@kernel.org, mkl@pengutronix.de
Subject: Re: [PATCH v5 13/16] can: grcan: Add CANFD TX support alongside legacy CAN
Date: Sun, 22 Feb 2026 16:28:48 +0100	[thread overview]
Message-ID: <4fb9e8fa-8bc1-42da-a173-bb8f84e266b6@kernel.org> (raw)
In-Reply-To: <20260216135344.23246-14-arun.muthusamy@gaisler.com>

On 16/02/2026 at 14:53, Arun Muthusamy wrote:
> Include CANFD TX support with the legacy CAN support, enabling
> support for extended data payloads to provide higher bit rates.
> 
> Signed-off-by: Arun Muthusamy <arun.muthusamy@gaisler.com>
> ---
>  drivers/net/can/grcan.c | 111 ++++++++++++++++++++++++++++++----------
>  1 file changed, 85 insertions(+), 26 deletions(-)
> 
> diff --git a/drivers/net/can/grcan.c b/drivers/net/can/grcan.c
> index 28fa219e1c3b..ae9f6fd4c8bf 100644
> --- a/drivers/net/can/grcan.c
> +++ b/drivers/net/can/grcan.c
> @@ -196,6 +196,10 @@ struct grcan_registers {
>  #define GRCAN_MSG_OFF		0x00000002
>  #define GRCAN_MSG_PASS		0x00000001
>  
> +#define GRCAN_MSG_EID_MASK      GENMASK(28, 0)
> +#define GRCAN_MSG_BID_MASK      GENMASK(28, 18)
> +#define GRCAN_MSG_DLC_MASK      GENMASK(31, 28)
> +
>  #define GRCAN_BUFFER_ALIGNMENT		1024
>  #define GRCAN_DEFAULT_BUFFER_SIZE	1024
>  #define GRCAN_VALID_TR_SIZE_MASK	0x001fffc0
> @@ -228,6 +232,9 @@ struct grcan_registers {
>  #define GRCANFD_FDBTR_PS2_BIT 5
>  #define GRCANFD_FDBTR_SJW_BIT 0
>  
> +#define GRCAN_TX_BRS  BIT(25)
> +#define GRCAN_TX_FDF  BIT(26)
> +
>  /* Hardware capabilities */
>  struct grcan_hwcap {
>  	/* CAN-FD capable, indicates GRCANFD IP.
> @@ -1222,6 +1229,19 @@ static void grcan_transmit_catch_up(struct net_device *dev)
>  	spin_unlock_irqrestore(&priv->lock, flags);
>  }
>  
> +static int grcan_numbds(int len)
> +{
> +	if (len <= GRCAN_CLASSIC_DATA_SIZE)
> +		return 1;
> +
> +	return 1 + DIV_ROUND_UP(len - GRCAN_CLASSIC_DATA_SIZE, GRCAN_MSG_SIZE);
> +}
> +
> +static inline union grcan_msg_slot *grcan_tx_msg_slot(struct grcan_dma *dma, u32 off)
> +{
> +	return (union grcan_msg_slot *)((u8 *)dma->tx.msg_slot + off);
> +}
> +
>  static int grcan_receive(struct net_device *dev, int budget)
>  {
>  	struct grcan_priv *priv = netdev_priv(dev);
> @@ -1404,15 +1424,23 @@ static netdev_tx_t grcan_start_xmit(struct sk_buff *skb,
>  				    struct net_device *dev)
>  {
>  	struct grcan_priv *priv = netdev_priv(dev);
> -	struct grcan_registers __iomem *regs = priv->regs;
> +	struct grcan_registers __iomem *regs;
> +	u32 eff, rtr, dlc, tmp, err, can_id;
>  	struct grcan_dma *dma = &priv->dma;
> -	struct can_frame *cf = (struct can_frame *)skb->data;
> +	u32 bds, copy_len, payload_offset;
>  	u32 id, txwr, txrd, space, txctrl;
> -	int slotindex;
> -	u32 *slot;

All the slot refactor is not part of adding CANFD support. It should
be squashed in previous patch:

  can: grcan: Refactor GRCAN DMA buffer to use structured memory layout

As a result, it is hard to understand which part of this patch is
related to struct grcan_dma_buffer refactor and which part is the
introduction of the new CAN FD feature.

> -	u32 rtr, eff, dlc, tmp, err;
> +	union grcan_msg_slot *msg;
> +	struct canfd_frame *cfd;
> +	struct can_frame *cf;
>  	unsigned long flags;
> -	u32 oneshotmode = priv->can.ctrlmode & CAN_CTRLMODE_ONE_SHOT;
> +	u32 oneshotmode;
> +	int slotindex;
> +	u8 *payload;
> +	u8 len;
> +	int i;
> +
> +	regs = priv->regs;
> +	oneshotmode = priv->can.ctrlmode & CAN_CTRLMODE_ONE_SHOT;
>  
>  	if (can_dev_dropped_skb(dev, skb))
>  		return NETDEV_TX_OK;
> @@ -1423,6 +1451,18 @@ static netdev_tx_t grcan_start_xmit(struct sk_buff *skb,
>  	if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)
>  		return NETDEV_TX_BUSY;
>  
> +	cfd = (struct canfd_frame *)skb->data;
> +	len = cfd->len;
> +	can_id  = cfd->can_id;
> +	payload = cfd->data;
> +
> +	if (can_is_canfd_skb(skb)) {
> +		dlc = can_fd_len2dlc(len);
> +	} else {
> +		cf = (struct can_frame *)skb->data;
> +		dlc = can_get_cc_dlc(cf, priv->can.ctrlmode);
> +	}
> +
>  	/* Reads of priv->eskbp and shut-downs of the queue needs to
>  	 * be atomic towards the updates to priv->eskbp and wake-ups
>  	 * of the queue in the interrupt handler.
> @@ -1433,7 +1473,7 @@ static netdev_tx_t grcan_start_xmit(struct sk_buff *skb,
>  	space = grcan_txspace(dma->tx.size, txwr, priv->eskbp);
>  
>  	slotindex = txwr / GRCAN_MSG_SIZE;
> -	slot = (u32 *)((u8 *)dma->tx.msg_slot + txwr);
> +	bds = grcan_numbds(len);
>  
>  	if (unlikely(space == 1))
>  		netif_stop_queue(dev);
> @@ -1449,24 +1489,44 @@ static netdev_tx_t grcan_start_xmit(struct sk_buff *skb,
>  		return NETDEV_TX_BUSY;
>  	}
>  
> -	/* Convert and write CAN message to DMA buffer */
> -	eff = cf->can_id & CAN_EFF_FLAG;
> -	rtr = cf->can_id & CAN_RTR_FLAG;
> -	id = cf->can_id & (eff ? CAN_EFF_MASK : CAN_SFF_MASK);
> -	dlc = cf->len;
> -	if (eff)
> -		tmp = (id << GRCAN_MSG_EID_BIT) & GRCAN_MSG_EID;
> -	else
> -		tmp = (id << GRCAN_MSG_BID_BIT) & GRCAN_MSG_BID;
> -	slot[0] = (eff ? GRCAN_MSG_IDE : 0) | (rtr ? GRCAN_MSG_RTR : 0) | tmp;
> +	msg = grcan_tx_msg_slot(dma, txwr);
> +	memset(msg, 0, sizeof(*msg));
> +
> +	eff = can_id & CAN_EFF_FLAG;
> +	rtr = can_id & CAN_RTR_FLAG;
> +	id  = can_id & (eff ? CAN_EFF_MASK : CAN_SFF_MASK);
> +
> +	tmp = eff ? FIELD_PREP(GRCAN_MSG_EID_MASK, id)
> +		  : FIELD_PREP(GRCAN_MSG_BID_MASK, id);
> +
> +	msg->header.id = (eff ? GRCAN_MSG_IDE : 0) |
> +		      (rtr ? GRCAN_MSG_RTR : 0) |
> +		      tmp;
>  
> -	slot[1] = ((dlc << GRCAN_MSG_DLC_BIT) & GRCAN_MSG_DLC);
> -	slot[2] = 0;
> -	slot[3] = 0;
> -	if (dlc > 0)
> -		memcpy(&slot[2], cf->data, sizeof(u32));
> -	if (dlc > 4)
> -		memcpy(&slot[3], cf->data + 4, sizeof(u32));

You introduced this in patch #5:

  can: grcan: optimize DMA by 32-bit accesses

to just remove it here. Please rework your series. You shouldn't undo
what you previously introduced. If patch #8 becomes unneeded, just drop
it.

> +	msg->header.ctrl = FIELD_PREP(GRCAN_MSG_DLC_MASK, dlc);
> +
> +	if (can_is_canfd_skb(skb)) {
> +		msg->header.ctrl |= GRCAN_TX_FDF;
> +		if (cfd->flags & CANFD_BRS)
> +			msg->header.ctrl |= GRCAN_TX_BRS;
> +	}
> +
> +	copy_len = min_t(u32, len, GRCAN_CLASSIC_DATA_SIZE);
> +	memcpy(msg->header.data, payload, copy_len);
> +	payload_offset = copy_len;
> +
> +	txwr = grcan_ring_add(txwr, GRCAN_MSG_SIZE, dma->tx.size);
> +
> +	for (i = 1; i < bds; i++) {
> +		msg = grcan_tx_msg_slot(dma, txwr);
> +
> +		memset(msg, 0, sizeof(*msg));
> +		copy_len = min_t(u32, (u32)len - payload_offset, (u32)GRCAN_MSG_SIZE);
> +		memcpy(msg->frags.data, payload + payload_offset, copy_len);
> +		payload_offset += copy_len;
> +
> +		txwr = grcan_ring_add(txwr, GRCAN_MSG_SIZE, dma->tx.size);
> +	}
>  
>  	/* Checking that channel has not been disabled. These cases
>  	 * should never happen
> @@ -1508,8 +1568,7 @@ static netdev_tx_t grcan_start_xmit(struct sk_buff *skb,
>  	wmb();
>  
>  	/* Update write pointer to start transmission */
> -	grcan_write_reg(&regs->txwr,
> -			grcan_ring_add(txwr, GRCAN_MSG_SIZE, dma->tx.size));
> +	grcan_write_reg(&regs->txwr, txwr);
>  
>  	return NETDEV_TX_OK;
>  }


Yours sincerely,
Vincent Mailhol

  reply	other threads:[~2026-02-22 15:28 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-16 13:53 [PATCH v5 00/16] can: grcan: Enhance driver with CANFD Support and Improvements Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 01/16] dt-bindings: Add vendor prefix for Frontgrade Gaisler AB Arun Muthusamy
2026-02-16 14:53   ` Krzysztof Kozlowski
2026-02-16 13:53 ` [PATCH v5 02/16] net: can: Convert gaisler,grcan to DT schema Arun Muthusamy
2026-02-16 14:59   ` Krzysztof Kozlowski
2026-02-16 13:53 ` [PATCH v5 03/16] MAINTAINERS: Add maintainers for GRCAN CAN network driver Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 04/16] can: grcan: Add clock handling Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 05/16] can: grcan: Replace bit timing macros with literal values Arun Muthusamy
2026-02-16 15:01   ` Krzysztof Kozlowski
2026-03-05 15:43     ` Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 06/16] can: grcan: Simplify timing configuration Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 07/16] can: grcan: add FD capability detection and nominal bit-timing Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 08/16] can: grcan: optimize DMA by 32-bit accesses Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 09/16] can: grcan: set DMA mask for GRCAN and GRCANFD to 32-bit Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 10/16] can: grcan: Add saving and restoring of CAN FD baud-rate registers Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 11/16] can: grcan: Reserve space between cap and next register to align with address layout Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 12/16] can: grcan: Refactor GRCAN DMA buffer to use structured memory layout Arun Muthusamy
2026-02-22 15:46   ` Vincent Mailhol
2026-02-16 13:53 ` [PATCH v5 13/16] can: grcan: Add CANFD TX support alongside legacy CAN Arun Muthusamy
2026-02-22 15:28   ` Vincent Mailhol [this message]
2026-02-16 13:53 ` [PATCH v5 14/16] can: grcan: Add CANFD RX " Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 15/16] can: grcan: Update echo skb handling to match variable length CANFD frame Arun Muthusamy
2026-02-16 13:53 ` [PATCH v5 16/16] can: grcan: Advertise CANFD capability Arun Muthusamy

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=4fb9e8fa-8bc1-42da-a173-bb8f84e266b6@kernel.org \
    --to=mailhol@kernel.org \
    --cc=arun.muthusamy@gaisler.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-can@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mkl@pengutronix.de \
    --cc=robh@kernel.org \
    /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