All of lore.kernel.org
 help / color / mirror / Atom feed
* PATCH[60485 Bug adding breakpoint]
@ 2014-03-22 21:47 ` Nick Krause
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Krause @ 2014-03-22 21:47 UTC (permalink / raw)
  To: ralf; +Cc: linux-mips, linux-kernel

Here is my new patch as corrected for the the bug 60845.
https://bugzilla.kernel.org/show_bug.cgi?id=60845
This is the link to the bug and my comments / conversation on to get the corrections needed.
Below is my patch for the bug, please let me know if it gets added finally .

--- linux-3.13.6/arch/mips/pci/msi-octeon.c.orig    2014-03-22 17:32:44.762754254 -0400
+++ linux-3.13.6/arch/mips/pci/msi-octeon.c    2014-03-22 17:34:19.974753699 -0400
@@ -150,6 +150,7 @@ msi_irq_allocated:
         msg.address_lo =
             ((128ul << 20) + CVMX_PCI_MSI_RCV) & 0xffffffff;
         msg.address_hi = ((128ul << 20) + CVMX_PCI_MSI_RCV)>> 32;
+        break;
     case OCTEON_DMA_BAR_TYPE_BIG:
         /* When using big bar, Bar 0 is based at 0 */
         msg.address_lo = (0 + CVMX_PCI_MSI_RCV) & 0xffffffff;
Signed-off-by: nickkrause@sympatico.ca
Nick
 		 	   		  

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

* PATCH[60485 Bug adding breakpoint]
@ 2014-03-22 21:47 ` Nick Krause
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Krause @ 2014-03-22 21:47 UTC (permalink / raw)
  To: ralf; +Cc: linux-mips, linux-kernel

Here is my new patch as corrected for the the bug 60845.
https://bugzilla.kernel.org/show_bug.cgi?id=60845
This is the link to the bug and my comments / conversation on to get the corrections needed.
Below is my patch for the bug, please let me know if it gets added finally .

--- linux-3.13.6/arch/mips/pci/msi-octeon.c.orig    2014-03-22 17:32:44.762754254 -0400
+++ linux-3.13.6/arch/mips/pci/msi-octeon.c    2014-03-22 17:34:19.974753699 -0400
@@ -150,6 +150,7 @@ msi_irq_allocated:
         msg.address_lo =
             ((128ul << 20) + CVMX_PCI_MSI_RCV) & 0xffffffff;
         msg.address_hi = ((128ul << 20) + CVMX_PCI_MSI_RCV)>> 32;
+        break;
     case OCTEON_DMA_BAR_TYPE_BIG:
         /* When using big bar, Bar 0 is based at 0 */
         msg.address_lo = (0 + CVMX_PCI_MSI_RCV) & 0xffffffff;
Signed-off-by: nickkrause@sympatico.ca
Nick
 		 	   		  
From macro@linux-mips.org Sat Mar 22 23:21:05 2014
Received: with ECARTIS (v1.0.0; list linux-mips); Sat, 22 Mar 2014 23:21:07 +0100 (CET)
Received: from localhost.localdomain ([127.0.0.1]:50931 "EHLO
        localhost.localdomain" rhost-flags-OK-OK-OK-OK)
        by eddie.linux-mips.org with ESMTP id S6816015AbaCVWVFDKnWt (ORCPT
        <rfc822;linux-mips@linux-mips.org>); Sat, 22 Mar 2014 23:21:05 +0100
Date:   Sat, 22 Mar 2014 22:21:04 +0000 (GMT)
From:   "Maciej W. Rozycki" <macro@linux-mips.org>
To:     "Steven J. Hill" <Steven.Hill@imgtec.com>
cc:     linux-mips@linux-mips.org, Ralf Baechle <ralf@linux-mips.org>
Subject: Re: [PATCH] MIPS: Add 1074K CPU support explicitly.
In-Reply-To: <1389992630-64139-1-git-send-email-Steven.Hill@imgtec.com>
Message-ID: <alpine.LFD.2.10.1403222210230.21669@eddie.linux-mips.org>
References: <1389992630-64139-1-git-send-email-Steven.Hill@imgtec.com>
User-Agent: Alpine 2.10 (LFD 1266 2009-07-14)
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Return-Path: <macro@linux-mips.org>
X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0)
X-Orcpt: rfc822;linux-mips@linux-mips.org
Original-Recipient: rfc822;linux-mips@linux-mips.org
X-archive-position: 39554
X-ecartis-version: Ecartis v1.0.0
Sender: linux-mips-bounce@linux-mips.org
Errors-to: linux-mips-bounce@linux-mips.org
X-original-sender: macro@linux-mips.org
Precedence: bulk
List-help: <mailto:ecartis@linux-mips.org?Subject=help>
List-unsubscribe: <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips>
List-software: Ecartis version 1.0.0
List-Id: linux-mips <linux-mips.eddie.linux-mips.org>
X-List-ID: linux-mips <linux-mips.eddie.linux-mips.org>
List-subscribe: <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips>
List-owner: <mailto:ralf@linux-mips.org>
List-post: <mailto:linux-mips@linux-mips.org>
List-archive: <http://www.linux-mips.org/archives/linux-mips/>
X-list: linux-mips
Content-Length: 1451
Lines: 49

On Fri, 17 Jan 2014, Steven J. Hill wrote:

> From: "Steven J. Hill" <Steven.Hill@imgtec.com>
> 
> The 1074K is a multiprocessing coherent processing system (CPS) based
> on modified 74K cores. This patch makes the 1074K an actual unique
> CPU type, instead of a 74K derivative, which it is not.
> 
> Signed-off-by: Steven J. Hill <Steven.Hill@imgtec.com>
> Reviewed-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
> ---
[...]
> diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c
> index 13b549a..7184363 100644
> --- a/arch/mips/mm/c-r4k.c
> +++ b/arch/mips/mm/c-r4k.c
> @@ -1106,9 +1106,10 @@ static void probe_pcache(void)
>  	case CPU_34K:
>  	case CPU_74K:
>  	case CPU_1004K:
> +	case CPU_1074K:
>  	case CPU_INTERAPTIV:
>  	case CPU_PROAPTIV:
> -		if (current_cpu_type() == CPU_74K)
> +		if ((c->cputype == CPU_74K) || (c->cputype == CPU_1074K))
>  			alias_74k_erratum(c);
>  		if ((read_c0_config7() & (1 << 16))) {
>  			/* effectively physically indexed dcache,

 Hmm, wouldn't it make sense to avoid the repeated condition check and 
make it:

	case CPU_74K:
	case CPU_1074K:
		alias_74k_erratum(c);
		/* Fall through. */
	case CPU_M14KC:
	case CPU_M14KEC:
	case CPU_24K:
	case CPU_34K:
 	case CPU_INTERAPTIV:
 	case CPU_PROAPTIV:
 		if ((read_c0_config7() & (1 << 16))) {
 			/* effectively physically indexed dcache,
	
or suchlike instead?  Also why `c->cputype == CPU_74K' rather than 
`current_cpu_type() == CPU_74K'?

  Maciej

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

* RE: PATCH[60485 Bug adding breakpoint]
  2014-03-22 21:47 ` Nick Krause
@ 2014-03-24  0:19   ` Nick Krause
  -1 siblings, 0 replies; 7+ messages in thread
From: Nick Krause @ 2014-03-24  0:19 UTC (permalink / raw)
  To: alan; +Cc: linux-mips, linux-kernel, ralf





Here is my new patch as corrected for the the bug 60845.
https://bugzilla.kernel.org/show_bug.cgi?id=60845
This is the link to the bug and my comments / conversation on to get the corrections needed.
 Below is my patch for the bug, please let me know if it gets added finally Alan .

 --- linux-3.13.6/arch/mips/pci/msi-octeon.c.orig    2014-03-22 17:32:44.762754254 -0400
 +++ linux-3.13.6/arch/mips/pci/msi-octeon.c    2014-03-22 17:34:19.974753699 -0400
 @@ -150,6 +150,7 @@ msi_irq_allocated:
          msg.address_lo =
              ((128ul << 20) + CVMX_PCI_MSI_RCV) & 0xffffffff;
          msg.address_hi = ((128ul << 20) + CVMX_PCI_MSI_RCV)>> 32;
 +        break;
      case OCTEON_DMA_BAR_TYPE_BIG:
        /* When using big bar, Bar 0 is based at 0 */
          msg.address_lo = (0 + CVMX_PCI_MSI_RCV) & 0xffffffff; Signed-off-by: nickkrause@sympatico.ca
Nick


 		 	   		  

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

* RE: PATCH[60485 Bug adding breakpoint]
@ 2014-03-24  0:19   ` Nick Krause
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Krause @ 2014-03-24  0:19 UTC (permalink / raw)
  To: alan; +Cc: linux-mips, linux-kernel, ralf





Here is my new patch as corrected for the the bug 60845.
https://bugzilla.kernel.org/show_bug.cgi?id=60845
This is the link to the bug and my comments / conversation on to get the corrections needed.
 Below is my patch for the bug, please let me know if it gets added finally Alan .

 --- linux-3.13.6/arch/mips/pci/msi-octeon.c.orig    2014-03-22 17:32:44.762754254 -0400
 +++ linux-3.13.6/arch/mips/pci/msi-octeon.c    2014-03-22 17:34:19.974753699 -0400
 @@ -150,6 +150,7 @@ msi_irq_allocated:
          msg.address_lo =
              ((128ul << 20) + CVMX_PCI_MSI_RCV) & 0xffffffff;
          msg.address_hi = ((128ul << 20) + CVMX_PCI_MSI_RCV)>> 32;
 +        break;
      case OCTEON_DMA_BAR_TYPE_BIG:
        /* When using big bar, Bar 0 is based at 0 */
          msg.address_lo = (0 + CVMX_PCI_MSI_RCV) & 0xffffffff; Signed-off-by: nickkrause@sympatico.ca
Nick


 		 	   		  
From Paul.Burton@imgtec.com Mon Mar 24 11:20:00 2014
Received: with ECARTIS (v1.0.0; list linux-mips); Mon, 24 Mar 2014 11:20:03 +0100 (CET)
Received: from mailapp01.imgtec.com ([195.89.28.114]:49249 "EHLO
        mailapp01.imgtec.com" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org
        with ESMTP id S6816503AbaCXKUAcLLTm (ORCPT
        <rfc822;linux-mips@linux-mips.org>); Mon, 24 Mar 2014 11:20:00 +0100
Received: from KLMAIL01.kl.imgtec.org (unknown [192.168.5.35])
        by Websense Email Security Gateway with ESMTPS id 2B55DDDC4CE6F
        for <linux-mips@linux-mips.org>; Mon, 24 Mar 2014 10:19:52 +0000 (GMT)
Received: from KLMAIL02.kl.imgtec.org (192.168.5.97) by KLMAIL01.kl.imgtec.org
 (192.168.5.35) with Microsoft SMTP Server (TLS) id 14.3.174.1; Mon, 24 Mar
 2014 10:19:54 +0000
Received: from LEMAIL01.le.imgtec.org (192.168.152.62) by
 klmail02.kl.imgtec.org (192.168.5.97) with Microsoft SMTP Server (TLS) id
 14.3.174.1; Mon, 24 Mar 2014 10:19:53 +0000
Received: from pburton-linux.le.imgtec.org (192.168.154.79) by
 LEMAIL01.le.imgtec.org (192.168.152.62) with Microsoft SMTP Server (TLS) id
 14.3.174.1; Mon, 24 Mar 2014 10:19:53 +0000
From:   Paul Burton <paul.burton@imgtec.com>
To:     <linux-mips@linux-mips.org>
CC:     Paul Burton <paul.burton@imgtec.com>
Subject: [PATCH 00/12] CPS SMP fixes
Date:   Mon, 24 Mar 2014 10:19:23 +0000
Message-ID: <1395656375-9300-1-git-send-email-paul.burton@imgtec.com>
X-Mailer: git-send-email 1.8.5.3
MIME-Version: 1.0
Content-Type: text/plain
X-Originating-IP: [192.168.154.79]
Return-Path: <Paul.Burton@imgtec.com>
X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0)
X-Orcpt: rfc822;linux-mips@linux-mips.org
Original-Recipient: rfc822;linux-mips@linux-mips.org
X-archive-position: 39560
X-ecartis-version: Ecartis v1.0.0
Sender: linux-mips-bounce@linux-mips.org
Errors-to: linux-mips-bounce@linux-mips.org
X-original-sender: paul.burton@imgtec.com
Precedence: bulk
List-help: <mailto:ecartis@linux-mips.org?Subject=help>
List-unsubscribe: <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips>
List-software: Ecartis version 1.0.0
List-Id: linux-mips <linux-mips.eddie.linux-mips.org>
X-List-ID: linux-mips <linux-mips.eddie.linux-mips.org>
List-subscribe: <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips>
List-owner: <mailto:ralf@linux-mips.org>
List-post: <mailto:linux-mips@linux-mips.org>
List-archive: <http://www.linux-mips.org/archives/linux-mips/>
X-list: linux-mips
Content-Length: 1487
Lines: 35

This series provides a few fixes & cleanups mostly related to the
MIPS CPS SMP implementation, fixing a few potential build errors &
allowing use on cores without the MT ASE & without CONFIG_MIPS_MT.
The final two patches fix use on big endian systems.

Paul Burton (12):
  MIPS: add cpu_vpe_id macro
  MIPS: provide empty mips_mt_set_cpuoptions when CONFIG_MIPS_MT=n
  MIPS: fix core number detection for MT cores
  MIPS: remove ifdef around core number probe
  MIPS: smp-cmp: remove incorrect core number probe
  MIPS: smp-cps: fix build when CONFIG_MIPS_MT_SMP=n
  MIPS: smp-cps: don't run MT instructions if cpu doesn't have MT
  MIPS: smp-mt: use common GIC IPI implementation
  MIPS: Malta: GIC IPIs may be used without MT
  MIPS: fix warning when including smp-ops.h with CONFIG_SMP=n
  MIPS: CM: use __raw_ memory access functions
  MIPS: CPC: use __raw_ memory access functions

 arch/mips/Kconfig                |  1 +
 arch/mips/include/asm/cpu-info.h |  6 ++++++
 arch/mips/include/asm/mips-cm.h  |  4 ++--
 arch/mips/include/asm/mips-cpc.h |  4 ++--
 arch/mips/include/asm/mips_mt.h  |  5 +++++
 arch/mips/include/asm/smp-ops.h  |  6 +++---
 arch/mips/kernel/cpu-probe.c     |  7 ++++---
 arch/mips/kernel/smp-cmp.c       |  3 +--
 arch/mips/kernel/smp-cps.c       | 14 ++++++++++----
 arch/mips/kernel/smp-mt.c        | 23 +----------------------
 arch/mips/mti-malta/malta-int.c  | 19 +++++++++++--------
 11 files changed, 46 insertions(+), 46 deletions(-)

-- 
1.8.5.3

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

* RESEND: PATCH[60485 Bug adding breakpoint for msi-pci]
  2014-03-24  0:19   ` Nick Krause
@ 2014-03-25  2:27     ` Nick Krause
  -1 siblings, 0 replies; 7+ messages in thread
From: Nick Krause @ 2014-03-25  2:27 UTC (permalink / raw)
  To: alan; +Cc: linux-mips, linux-kernel, ralf



----------------------------------------
> From: nickkrause@sympatico.ca
> To: alan@lxorguk.ukuu.org.uk
> CC: linux-mips@linux-mips.org; linux-kernel@vger.kernel.org; ralf@linux-mips.org
> Subject: RE: PATCH[60485 Bug adding breakpoint]
> Date: Mon, 24 Mar 2014 00:19:29 +0000
>
>
>
>
>
> Here is my new patch as corrected for the the bug 60845.
> https://bugzilla.kernel.org/show_bug.cgi?id=60845
> This is the link to the bug and my comments / conversation on to get the corrections needed.
>  Below is my patch for the bug, please let me know if it gets added finally Alan .
>
>  --- linux-3.13.6/arch/mips/pci/msi-octeon.c.orig    2014-03-22 17:32:44.762754254 -0400
>  +++ linux-3.13.6/arch/mips/pci/msi-octeon.c    2014-03-22 17:34:19.974753699 -0400
>  @@ -150,6 +150,7 @@ msi_irq_allocated:
>           msg.address_lo =
>               ((128ul << 20) + CVMX_PCI_MSI_RCV) & 0xffffffff;
>           msg.address_hi = ((128ul << 20) + CVMX_PCI_MSI_RCV)>> 32;
>  +        break;
>       case OCTEON_DMA_BAR_TYPE_BIG:
>         /* When using big bar, Bar 0 is based at 0 */
>           msg.address_lo = (0 + CVMX_PCI_MSI_RCV) & 0xffffffff; Signed-off-by: nickkrause@sympatico.ca
> Nick
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
 		 	   		  

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

* RESEND: PATCH[60485 Bug adding breakpoint for msi-pci]
@ 2014-03-25  2:27     ` Nick Krause
  0 siblings, 0 replies; 7+ messages in thread
From: Nick Krause @ 2014-03-25  2:27 UTC (permalink / raw)
  To: alan; +Cc: linux-mips, linux-kernel, ralf



----------------------------------------
> From: nickkrause@sympatico.ca
> To: alan@lxorguk.ukuu.org.uk
> CC: linux-mips@linux-mips.org; linux-kernel@vger.kernel.org; ralf@linux-mips.org
> Subject: RE: PATCH[60485 Bug adding breakpoint]
> Date: Mon, 24 Mar 2014 00:19:29 +0000
>
>
>
>
>
> Here is my new patch as corrected for the the bug 60845.
> https://bugzilla.kernel.org/show_bug.cgi?id=60845
> This is the link to the bug and my comments / conversation on to get the corrections needed.
>  Below is my patch for the bug, please let me know if it gets added finally Alan .
>
>  --- linux-3.13.6/arch/mips/pci/msi-octeon.c.orig    2014-03-22 17:32:44.762754254 -0400
>  +++ linux-3.13.6/arch/mips/pci/msi-octeon.c    2014-03-22 17:34:19.974753699 -0400
>  @@ -150,6 +150,7 @@ msi_irq_allocated:
>           msg.address_lo =
>               ((128ul << 20) + CVMX_PCI_MSI_RCV) & 0xffffffff;
>           msg.address_hi = ((128ul << 20) + CVMX_PCI_MSI_RCV)>> 32;
>  +        break;
>       case OCTEON_DMA_BAR_TYPE_BIG:
>         /* When using big bar, Bar 0 is based at 0 */
>           msg.address_lo = (0 + CVMX_PCI_MSI_RCV) & 0xffffffff; Signed-off-by: nickkrause@sympatico.ca
> Nick
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
 		 	   		  
From linus.walleij@linaro.org Tue Mar 25 15:07:03 2014
Received: with ECARTIS (v1.0.0; list linux-mips); Tue, 25 Mar 2014 15:07:19 +0100 (CET)
Received: from mail-oa0-f44.google.com ([209.85.219.44]:38043 "EHLO
        mail-oa0-f44.google.com" rhost-flags-OK-OK-OK-OK)
        by eddie.linux-mips.org with ESMTP id S6821284AbaCYOHC5MQqF (ORCPT
        <rfc822;linux-mips@linux-mips.org>); Tue, 25 Mar 2014 15:07:02 +0100
Received: by mail-oa0-f44.google.com with SMTP id n16so616428oag.17
        for <linux-mips@linux-mips.org>; Tue, 25 Mar 2014 07:06:54 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=1e100.net; s=20130820;
        h=x-gm-message-state:mime-version:in-reply-to:references:date
         :message-id:subject:from:to:cc:content-type;
        bh=CTge+HluogvYftZ/PMGQ6T+iVUOcAlYGdNseftG50yI=;
        b=Eg7+Vcq1bwQQA/WVhcQb5HWP+W7XWYdxjpDV62J/jjLbofSfYK3a2wtJ8MfsOZNpxQ
         cEdLxtXLDxqlJP62RN6stvkpcEktbyxveCiin3NotI5wiS76cDZWJvBjbdpmI1ny+2Ei
         pvyxCJLUGkzDNfLiQT1K7d2gACYhMOhahQ7nzGfmT/li/RqJkWzvXFE0WF2LOkLW8ev+
         87266GKcJ12k7xbBlqoOEwTfZ0zXDa6fJJ2a+48ySl9BY+gAxIWzwRYdM0PZ1nTzIUG7
         kuP3EHKklocPZdYOB++0CDj6+sEaEG906l8dRKcQKDOP4OgpjGQZotHbqFY1ke9ZLnDM
         nBFg==
X-Gm-Message-State: ALoCoQnMproRwgcXzuU5gdYJk6h91XiVxNF9o5B0I7oCMO3ReZ4tF48L+V0Utp9WTIbRmeuxptRe
MIME-Version: 1.0
X-Received: by 10.60.161.101 with SMTP id xr5mr1008984oeb.71.1395756413961;
 Tue, 25 Mar 2014 07:06:53 -0700 (PDT)
Received: by 10.182.85.202 with HTTP; Tue, 25 Mar 2014 07:06:53 -0700 (PDT)
In-Reply-To: <20140319170030.GH17197@linux-mips.org>
References: <1390518477-10020-1-git-send-email-linus.walleij@linaro.org>
        <20140319170030.GH17197@linux-mips.org>
Date:   Tue, 25 Mar 2014 15:06:53 +0100
Message-ID: <CACRpkdYownU1JcCi=iuWEDokdD22j6qH2kARHZiKTOBmpg0xUw@mail.gmail.com>
Subject: Re: [PATCH] gpio: vr41xx: mark GPIO lines used for IRQ
From:   Linus Walleij <linus.walleij@linaro.org>
To:     Ralf Baechle <ralf@linux-mips.org>
Cc:     "linux-gpio@vger.kernel.org" <linux-gpio@vger.kernel.org>,
        Alexandre Courbot <acourbot@nvidia.com>,
        linux-mips@linux-mips.org, Yoichi Yuasa <yuasa@linux-mips.org>
Content-Type: text/plain; charset=ISO-8859-1
Return-Path: <linus.walleij@linaro.org>
X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0)
X-Orcpt: rfc822;linux-mips@linux-mips.org
Original-Recipient: rfc822;linux-mips@linux-mips.org
X-archive-position: 39578
X-ecartis-version: Ecartis v1.0.0
Sender: linux-mips-bounce@linux-mips.org
Errors-to: linux-mips-bounce@linux-mips.org
X-original-sender: linus.walleij@linaro.org
Precedence: bulk
List-help: <mailto:ecartis@linux-mips.org?Subject=help>
List-unsubscribe: <mailto:ecartis@linux-mips.org?subject=unsubscribe%20linux-mips>
List-software: Ecartis version 1.0.0
List-Id: linux-mips <linux-mips.eddie.linux-mips.org>
X-List-ID: linux-mips <linux-mips.eddie.linux-mips.org>
List-subscribe: <mailto:ecartis@linux-mips.org?subject=subscribe%20linux-mips>
List-owner: <mailto:ralf@linux-mips.org>
List-post: <mailto:linux-mips@linux-mips.org>
List-archive: <http://www.linux-mips.org/archives/linux-mips/>
X-list: linux-mips
Content-Length: 948
Lines: 29

On Wed, Mar 19, 2014 at 6:00 PM, Ralf Baechle <ralf@linux-mips.org> wrote:
> On Fri, Jan 24, 2014 at 12:07:57AM +0100, Linus Walleij wrote:
>
> Added Yoichi to cc.
>
>> When an IRQ is started on a GPIO line, mark this GPIO as IRQ in
>> the gpiolib so we can keep track of the usage centrally.
>>
>> Cc: Ralf Baechle <ralf@linux-mips.org>
>> Cc: linux-mips@linux-mips.org
>> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
>> ---
>> It would be much appreciated if one of the MIPS people could
>> test this patch, thanks in advance. (I did compile-test it
>> with a MIPS cross compiler.)
>> ---
>
> I haven't received any test results but as it's looking good I'm queueing
> this for 3.15.

If it works I'd like to queue it through the GPIO tree actually,
as I need to tweak it a bit to use the new resource callbacks
from the IRQ tree.

(But no big deal if you've already prepped your queue,
I can fix this up later.)

Yours,
Linus Walleij

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

* Re: RESEND: PATCH[60485 Bug adding breakpoint for msi-pci]
  2014-03-25  2:27     ` Nick Krause
  (?)
@ 2014-03-25 16:10     ` Borislav Petkov
  -1 siblings, 0 replies; 7+ messages in thread
From: Borislav Petkov @ 2014-03-25 16:10 UTC (permalink / raw)
  To: Nick Krause; +Cc: alan, linux-mips, linux-kernel, ralf

On Tue, Mar 25, 2014 at 02:27:04AM +0000, Nick Krause wrote:
> > Here is my new patch as corrected for the the bug 60845.
> > https://bugzilla.kernel.org/show_bug.cgi?id=60845
> > This is the link to the bug and my comments / conversation on to get the corrections needed.
> >  Below is my patch for the bug, please let me know if it gets added finally Alan .
> >
> >  --- linux-3.13.6/arch/mips/pci/msi-octeon.c.orig    2014-03-22 17:32:44.762754254 -0400
> >  +++ linux-3.13.6/arch/mips/pci/msi-octeon.c    2014-03-22 17:34:19.974753699 -0400
> >  @@ -150,6 +150,7 @@ msi_irq_allocated:
> >           msg.address_lo =
> >               ((128ul << 20) + CVMX_PCI_MSI_RCV) & 0xffffffff;
> >           msg.address_hi = ((128ul << 20) + CVMX_PCI_MSI_RCV)>> 32;
> >  +        break;

Looks like this has been fixed already: 7f02c463057fc527f52066742b84d9d89b22e83d

-- 
Regards/Gruss,
    Boris.

Sent from a fat crate under my desk. Formatting is fine.
--

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

end of thread, other threads:[~2014-03-25 16:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-22 21:47 PATCH[60485 Bug adding breakpoint] Nick Krause
2014-03-22 21:47 ` Nick Krause
2014-03-24  0:19 ` Nick Krause
2014-03-24  0:19   ` Nick Krause
2014-03-25  2:27   ` RESEND: PATCH[60485 Bug adding breakpoint for msi-pci] Nick Krause
2014-03-25  2:27     ` Nick Krause
2014-03-25 16:10     ` Borislav Petkov

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.