All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marc Kleine-Budde <mkl@pengutronix.de>
To: Alexander Stein <alexander.stein@systec-electronic.com>,
	Wolfgang Grandegger <wg@grandegger.com>
Cc: linux-can@vger.kernel.org
Subject: Re: [PATCH 2/4] can: flexcan: Detect error passive state change
Date: Fri, 15 Aug 2014 10:07:06 +0200	[thread overview]
Message-ID: <53EDBFAA.3070809@pengutronix.de> (raw)
In-Reply-To: <1407850987-26707-2-git-send-email-alexander.stein@systec-electronic.com>

[-- Attachment #1: Type: text/plain, Size: 1745 bytes --]

On 08/12/2014 03:43 PM, Alexander Stein wrote:
> Assuming there is no CAN frame reception or CAN_CTRLMODE_BERR_REPORTING:
> If the Tx error counter steps from 127 to 128 the hardware enters error
> passive. But in this case the FLEXCAN_ESR_ERR_STATE bits are unset:
> TWRN_INT and RWRN_INT are not set during the transition from <96 to >=96.

Which hardware are you using? According to the documentation TWRN_INT
and RWRN_INT _are_ actually set during the transition from <96 to >=96.

> So we do not schedule NAPI thus not evaluating the error counters.
> So we also check TX_WRN and RX_WRN in order to detect error passive.
> 
> Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
> ---
>  drivers/net/can/flexcan.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/can/flexcan.c b/drivers/net/can/flexcan.c
> index fd79dd40840b..5e391ec70a2b 100644
> --- a/drivers/net/can/flexcan.c
> +++ b/drivers/net/can/flexcan.c
> @@ -721,7 +721,8 @@ static irqreturn_t flexcan_irq(int irq, void *dev_id)
>  	 * - bus error IRQ and bus error reporting is activated
>  	 */
>  	if ((reg_iflag1 & FLEXCAN_IFLAG_RX_FIFO_AVAILABLE) ||
> -	    (reg_esr & FLEXCAN_ESR_ERR_STATE) ||
> +	    (reg_esr & (FLEXCAN_ESR_ERR_STATE |
> +			FLEXCAN_ESR_TX_WRN | FLEXCAN_ESR_RX_WRN)) ||
>  	    flexcan_has_and_handle_berr(priv, reg_esr)) {
>  		/*
>  		 * The error bits are cleared on read,
> 

Marc

-- 
Pengutronix e.K.                  | Marc Kleine-Budde           |
Industrial Linux Solutions        | Phone: +49-231-2826-924     |
Vertretung West/Dortmund          | Fax:   +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686  | http://www.pengutronix.de   |


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

  reply	other threads:[~2014-08-15  8:07 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-12 13:43 [PATCH 1/4 RESEND] can: flexcan: Disable error interrupt when bus error reporting is disabled Alexander Stein
2014-08-12 13:43 ` [PATCH 2/4] can: flexcan: Detect error passive state change Alexander Stein
2014-08-15  8:07   ` Marc Kleine-Budde [this message]
2014-08-18  6:05     ` Alexander Stein
2014-08-12 13:43 ` [PATCH 3/4] can: flexcan: Put enabling error irq into separate function Alexander Stein
2014-08-12 13:43 ` [PATCH 4/4] can: flexcan: Disable error irq when in error passive Alexander Stein
2014-08-14 11:18   ` Marc Kleine-Budde
2014-08-14 13:19     ` Alexander Stein
2014-08-14 13:58       ` Marc Kleine-Budde
2014-08-20  5:53         ` Alexander Stein
2014-08-14 10:21 ` [PATCH 1/4 RESEND] can: flexcan: Disable error interrupt when bus error reporting is disabled Marc Kleine-Budde

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=53EDBFAA.3070809@pengutronix.de \
    --to=mkl@pengutronix.de \
    --cc=alexander.stein@systec-electronic.com \
    --cc=linux-can@vger.kernel.org \
    --cc=wg@grandegger.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.