linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Due to some broken bitfiles, we can't trust IntCtl
@ 2009-07-10  8:49 Raghu Gandham
  2009-07-10 16:13 ` Ralf Baechle
  0 siblings, 1 reply; 4+ messages in thread
From: Raghu Gandham @ 2009-07-10  8:49 UTC (permalink / raw)
  To: linux-mips; +Cc: raghu, chris

From: Robin Randhawa <robin@mips.com>

Signed-off-by: Chris Dearman <chris@mips.com>
---

 arch/mips/include/asm/irq.h |    1 +
 arch/mips/kernel/traps.c    |    4 ++++
 2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/arch/mips/include/asm/irq.h b/arch/mips/include/asm/irq.h
index 09b08d0..ca0b5ed 100644
--- a/arch/mips/include/asm/irq.h
+++ b/arch/mips/include/asm/irq.h
@@ -158,6 +158,7 @@ extern void free_irqno(unsigned int irq);
  * IE7.  Since R2 their number has to be read from the c0_intctl register.
  */
 #define CP0_LEGACY_COMPARE_IRQ 7
+#define CP0_LEGACY_PERFCNT_IRQ 7
 
 extern int cp0_compare_irq;
 extern int cp0_perfcount_irq;
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c
index 08f1edf..0b6e328 100644
--- a/arch/mips/kernel/traps.c
+++ b/arch/mips/kernel/traps.c
@@ -1538,7 +1538,11 @@ void __cpuinit per_cpu_trap_init(void)
 	 */
 	if (cpu_has_mips_r2) {
 		cp0_compare_irq = (read_c0_intctl() >> 29) & 7;
+		if (!cp0_compare_irq)
+			cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ;
 		cp0_perfcount_irq = (read_c0_intctl() >> 26) & 7;
+		if (!cp0_perfcount_irq)
+			cp0_perfcount_irq = CP0_LEGACY_PERFCNT_IRQ;
 		if (cp0_perfcount_irq == cp0_compare_irq)
 			cp0_perfcount_irq = -1;
 	} else {

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Due to some broken bitfiles, we can't trust IntCtl
  2009-07-10  8:49 [PATCH] Due to some broken bitfiles, we can't trust IntCtl Raghu Gandham
@ 2009-07-10 16:13 ` Ralf Baechle
  2009-07-10 17:53   ` Gandham, Raghu
  0 siblings, 1 reply; 4+ messages in thread
From: Ralf Baechle @ 2009-07-10 16:13 UTC (permalink / raw)
  To: Raghu Gandham; +Cc: linux-mips, chris

On Fri, Jul 10, 2009 at 01:49:43AM -0700, Raghu Gandham wrote:

> diff --git a/arch/mips/include/asm/irq.h b/arch/mips/include/asm/irq.h
> index 09b08d0..ca0b5ed 100644
> --- a/arch/mips/include/asm/irq.h
> +++ b/arch/mips/include/asm/irq.h
> @@ -158,6 +158,7 @@ extern void free_irqno(unsigned int irq);
>   * IE7.  Since R2 their number has to be read from the c0_intctl register.
>   */
>  #define CP0_LEGACY_COMPARE_IRQ 7
> +#define CP0_LEGACY_PERFCNT_IRQ 7
>  
>  extern int cp0_compare_irq;
>  extern int cp0_perfcount_irq;
> diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c
> index 08f1edf..0b6e328 100644
> --- a/arch/mips/kernel/traps.c
> +++ b/arch/mips/kernel/traps.c
> @@ -1538,7 +1538,11 @@ void __cpuinit per_cpu_trap_init(void)
>  	 */
>  	if (cpu_has_mips_r2) {
>  		cp0_compare_irq = (read_c0_intctl() >> 29) & 7;
> +		if (!cp0_compare_irq)
> +			cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ;
>  		cp0_perfcount_irq = (read_c0_intctl() >> 26) & 7;
> +		if (!cp0_perfcount_irq)
> +			cp0_perfcount_irq = CP0_LEGACY_PERFCNT_IRQ;
>  		if (cp0_perfcount_irq == cp0_compare_irq)
>  			cp0_perfcount_irq = -1;
>  	} else {

Is there still any point in applying this patch?  I thought only a bunch
of early bitfiles were affected but it was never actually taped out?

  Ralf

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH] Due to some broken bitfiles, we can't trust IntCtl
  2009-07-10 16:13 ` Ralf Baechle
@ 2009-07-10 17:53   ` Gandham, Raghu
  2009-07-10 17:53     ` Gandham, Raghu
  0 siblings, 1 reply; 4+ messages in thread
From: Gandham, Raghu @ 2009-07-10 17:53 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips, Dearman, Chris

 

> 
> Is there still any point in applying this patch?  I thought 
> only a bunch of early bitfiles were affected but it was never 
> actually taped out?

The earlier bitfiles which had the problem never taped out. Please skip
this patch. 

Thanks,
Raghu

> 
>   Ralf
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH] Due to some broken bitfiles, we can't trust IntCtl
  2009-07-10 17:53   ` Gandham, Raghu
@ 2009-07-10 17:53     ` Gandham, Raghu
  0 siblings, 0 replies; 4+ messages in thread
From: Gandham, Raghu @ 2009-07-10 17:53 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips, Dearman, Chris

 

> 
> Is there still any point in applying this patch?  I thought 
> only a bunch of early bitfiles were affected but it was never 
> actually taped out?

The earlier bitfiles which had the problem never taped out. Please skip
this patch. 

Thanks,
Raghu

> 
>   Ralf
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-07-10 17:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-10  8:49 [PATCH] Due to some broken bitfiles, we can't trust IntCtl Raghu Gandham
2009-07-10 16:13 ` Ralf Baechle
2009-07-10 17:53   ` Gandham, Raghu
2009-07-10 17:53     ` Gandham, Raghu

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).