From: Paul Gortmaker <paul.gortmaker@windriver.com>
To: Scott Wood <scottwood@freescale.com>
Cc: gregkh@suse.de, alan@linux.intel.com, galak@kernel.crashing.org,
linux-serial@vger.kernel.org, linuxppc-dev@lists.ozlabs.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/3] 8250: add workaround for MPC8[356]xx UART break IRQ storm
Date: Thu, 1 Dec 2011 19:05:06 -0500 [thread overview]
Message-ID: <4ED81632.3030809@windriver.com> (raw)
In-Reply-To: <4ED812E4.60905@freescale.com>
On 11-12-01 06:51 PM, Scott Wood wrote:
> On 12/01/2011 05:47 PM, Paul Gortmaker wrote:
>> diff --git a/include/linux/serial_8250.h b/include/linux/serial_8250.h
>> index 8c660af..b0f4042 100644
>> --- a/include/linux/serial_8250.h
>> +++ b/include/linux/serial_8250.h
>> @@ -18,6 +18,11 @@
>> #define UART_BUG_TXEN (1 << 1) /* buggy TX IIR status */
>> #define UART_BUG_NOMSR (1 << 2) /* buggy MSR status bits (Au1x00) */
>> #define UART_BUG_THRE (1 << 3) /* buggy THRE reassertion */
>> +#ifdef CONFIG_PPC32
>> +#define UART_BUG_FSLBK (1 << 4) /* buggy FSL break IRQ storm */
>> +#else /* help GCC optimize away IRQ handler errata code for ARCH != PPC32 */
>> +#define UART_BUG_FSLBK 0
>> +#endif
>
> I believe this bug still exists on our 64-bit chips.
OK, I'll simply change the above to CONFIG_PPC then.
Thanks,
Paul.
>
> -Scott
>
WARNING: multiple messages have this Message-ID (diff)
From: Paul Gortmaker <paul.gortmaker@windriver.com>
To: Scott Wood <scottwood@freescale.com>
Cc: gregkh@suse.de, linux-kernel@vger.kernel.org,
linux-serial@vger.kernel.org, linuxppc-dev@lists.ozlabs.org,
alan@linux.intel.com
Subject: Re: [PATCH 3/3] 8250: add workaround for MPC8[356]xx UART break IRQ storm
Date: Thu, 1 Dec 2011 19:05:06 -0500 [thread overview]
Message-ID: <4ED81632.3030809@windriver.com> (raw)
In-Reply-To: <4ED812E4.60905@freescale.com>
On 11-12-01 06:51 PM, Scott Wood wrote:
> On 12/01/2011 05:47 PM, Paul Gortmaker wrote:
>> diff --git a/include/linux/serial_8250.h b/include/linux/serial_8250.h
>> index 8c660af..b0f4042 100644
>> --- a/include/linux/serial_8250.h
>> +++ b/include/linux/serial_8250.h
>> @@ -18,6 +18,11 @@
>> #define UART_BUG_TXEN (1 << 1) /* buggy TX IIR status */
>> #define UART_BUG_NOMSR (1 << 2) /* buggy MSR status bits (Au1x00) */
>> #define UART_BUG_THRE (1 << 3) /* buggy THRE reassertion */
>> +#ifdef CONFIG_PPC32
>> +#define UART_BUG_FSLBK (1 << 4) /* buggy FSL break IRQ storm */
>> +#else /* help GCC optimize away IRQ handler errata code for ARCH != PPC32 */
>> +#define UART_BUG_FSLBK 0
>> +#endif
>
> I believe this bug still exists on our 64-bit chips.
OK, I'll simply change the above to CONFIG_PPC then.
Thanks,
Paul.
>
> -Scott
>
WARNING: multiple messages have this Message-ID (diff)
From: Paul Gortmaker <paul.gortmaker@windriver.com>
To: Scott Wood <scottwood@freescale.com>
Cc: <gregkh@suse.de>, <alan@linux.intel.com>,
<galak@kernel.crashing.org>, <linux-serial@vger.kernel.org>,
<linuxppc-dev@lists.ozlabs.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 3/3] 8250: add workaround for MPC8[356]xx UART break IRQ storm
Date: Thu, 1 Dec 2011 19:05:06 -0500 [thread overview]
Message-ID: <4ED81632.3030809@windriver.com> (raw)
In-Reply-To: <4ED812E4.60905@freescale.com>
On 11-12-01 06:51 PM, Scott Wood wrote:
> On 12/01/2011 05:47 PM, Paul Gortmaker wrote:
>> diff --git a/include/linux/serial_8250.h b/include/linux/serial_8250.h
>> index 8c660af..b0f4042 100644
>> --- a/include/linux/serial_8250.h
>> +++ b/include/linux/serial_8250.h
>> @@ -18,6 +18,11 @@
>> #define UART_BUG_TXEN (1 << 1) /* buggy TX IIR status */
>> #define UART_BUG_NOMSR (1 << 2) /* buggy MSR status bits (Au1x00) */
>> #define UART_BUG_THRE (1 << 3) /* buggy THRE reassertion */
>> +#ifdef CONFIG_PPC32
>> +#define UART_BUG_FSLBK (1 << 4) /* buggy FSL break IRQ storm */
>> +#else /* help GCC optimize away IRQ handler errata code for ARCH != PPC32 */
>> +#define UART_BUG_FSLBK 0
>> +#endif
>
> I believe this bug still exists on our 64-bit chips.
OK, I'll simply change the above to CONFIG_PPC then.
Thanks,
Paul.
>
> -Scott
>
next prev parent reply other threads:[~2011-12-02 0:05 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-01 23:47 [PATCH 0/3] RFC Fix Fsl 8250 BRK bug via letting plat code set bugs Paul Gortmaker
2011-12-01 23:47 ` Paul Gortmaker
2011-12-01 23:47 ` [PATCH 1/3] serial: make bugs field not specific to 8250 type uarts Paul Gortmaker
2011-12-01 23:47 ` Paul Gortmaker
2011-12-02 0:51 ` Alan Cox
2011-12-02 0:51 ` Alan Cox
2011-12-02 1:32 ` Paul Gortmaker
2011-12-02 1:32 ` Paul Gortmaker
2011-12-02 1:32 ` Paul Gortmaker
2011-12-02 11:49 ` Alan Cox
2011-12-02 11:49 ` Alan Cox
2011-12-01 23:47 ` [PATCH 2/3] serial: allow passing in hardware bug info via platform device Paul Gortmaker
2011-12-01 23:47 ` Paul Gortmaker
2011-12-01 23:47 ` [PATCH 3/3] 8250: add workaround for MPC8[356]xx UART break IRQ storm Paul Gortmaker
2011-12-01 23:47 ` Paul Gortmaker
2011-12-01 23:51 ` Scott Wood
2011-12-01 23:51 ` Scott Wood
2011-12-01 23:51 ` Scott Wood
2011-12-02 0:05 ` Paul Gortmaker [this message]
2011-12-02 0:05 ` Paul Gortmaker
2011-12-02 0:05 ` Paul Gortmaker
2011-12-02 0:17 ` Kumar Gala
2011-12-02 0:17 ` Kumar Gala
2011-12-02 0:17 ` Kumar Gala
2011-12-02 11:30 ` Alan Cox
2011-12-02 11:30 ` Alan Cox
2011-12-02 11:30 ` Alan Cox
2011-12-02 16:34 ` Paul Gortmaker
2011-12-02 16:34 ` Paul Gortmaker
2011-12-02 16:34 ` Paul Gortmaker
2011-12-02 17:27 ` Scott Wood
2011-12-02 17:27 ` Scott Wood
2011-12-02 17:27 ` Scott Wood
2011-12-02 0:57 ` Alan Cox
2011-12-02 0:57 ` Alan Cox
2011-12-02 1:42 ` Paul Gortmaker
2011-12-02 1:42 ` Paul Gortmaker
2011-12-02 1:42 ` Paul Gortmaker
2011-12-04 23:42 ` [PATCH 0/6] RFCv2 Fix Fsl 8250 BRK bug Paul Gortmaker
2011-12-04 23:42 ` Paul Gortmaker
2011-12-04 23:42 ` [PATCH 1/6] serial: move struct uart_8250_port from 8250.c to 8250.h Paul Gortmaker
2011-12-04 23:42 ` Paul Gortmaker
2011-12-04 23:42 ` [PATCH 2/6] serial: clean up parameter passing for 8250 Rx IRQ handling Paul Gortmaker
2011-12-04 23:42 ` Paul Gortmaker
2011-12-04 23:42 ` [PATCH 3/6] serial: export the key functions for an 8250 IRQ handler Paul Gortmaker
2011-12-04 23:42 ` Paul Gortmaker
2011-12-04 23:42 ` [PATCH 4/6] serial: make 8250 timeout use the specified " Paul Gortmaker
2011-12-04 23:42 ` Paul Gortmaker
2011-12-04 23:42 ` [PATCH 5/6] serial: manually inline serial8250_handle_port Paul Gortmaker
2011-12-04 23:42 ` Paul Gortmaker
2011-12-04 23:42 ` [PATCH 6/6] serial: add irq handler for Freescale 16550 errata Paul Gortmaker
2011-12-04 23:42 ` Paul Gortmaker
2011-12-05 12:18 ` [PATCH 0/6] RFCv2 Fix Fsl 8250 BRK bug Alan Cox
2011-12-05 12:18 ` Alan Cox
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=4ED81632.3030809@windriver.com \
--to=paul.gortmaker@windriver.com \
--cc=alan@linux.intel.com \
--cc=galak@kernel.crashing.org \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=scottwood@freescale.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.