Re: [PATCH v7 2/2] add new platform driver for PCI RC

2016-02-04 Thread Joao Pinto
Hi Bjorn and Arnd, Removing the irq_handler causes the irq request to fail because in request_threaded_irq() both handler and thread_fn are NULL. What's the typical procedure for this? Joao On 2/4/2016 11:14 AM, Joao Pinto wrote: > Hi Bjorn, > > On 2/3/2016 6:38 PM, Bjorn Helg

[PATCH v8 1/2] PCI support added to ARC

2016-02-04 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Change v7 -> v8: - Nothing changed (just to keep up with patch set version). Change v6 -> v7 (B

[PATCH v8 0/2] adding PCI support to AXS10x

2016-02-04 Thread Joao Pinto
were produced against Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): PCI support added to ARC add new platform driver for PCI RC .../devicetree/bindings/pci/pcie-dw-pltfm.txt | 36 +++ MAINTAINERS| 7

[PATCH v8 2/2] add new platform driver for PCI RC

2016-02-04 Thread Joao Pinto
This patch adds a new driver that will be the reference platform driver for all PCI RC IP Protoyping Kits based on ARC SDP. Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Change v7 -> v8 (Bjorn Helgaas and Arnd Bergmann): - driver name was changed from pcie-synopsys to pcie-dw-pltfm

Re: [PATCH v8 2/2] add new platform driver for PCI RC

2016-02-04 Thread Joao Pinto
Hi Bjorn, On 2/4/2016 6:19 PM, Bjorn Helgaas wrote: > On Thu, Feb 04, 2016 at 03:52:10PM +0000, Joao Pinto wrote: >> This patch adds a new driver that will be the reference platform driver >> for all PCI RC IP Protoyping Kits based on ARC SDP. >> >> Signed-off-by: Joao

Re: [PATCH v7 2/2] add new platform driver for PCI RC

2016-02-03 Thread Joao Pinto
o include the config space Joao On 2/3/2016 6:05 PM, Bjorn Helgaas wrote: > Hi Joao & Arnd, > > On Tue, Feb 02, 2016 at 09:25:25PM +0100, Arnd Bergmann wrote: >> On Monday 01 February 2016 18:07:45 Joao Pinto wrote: >>> This patch adds a new driver that will be the

Re: [PATCH 3/3] add support for DWC UFS Host Controller

2016-02-03 Thread Joao Pinto
++ Vinayak Holikatti Hi Vinayak, Could I please get your opinion about the patch set? thanks. On 2/3/2016 3:39 PM, Arnd Bergmann wrote: > On Wednesday 03 February 2016 15:01:34 Joao Pinto wrote: >> >> Hi Arnd, >> >> On 2/3/2016 12:54 PM, Arnd Bergmann wrote: >&g

Re: [PATCH 3/3] add support for DWC UFS Host Controller

2016-02-03 Thread Joao Pinto
Hi, On 2/3/2016 3:39 PM, Arnd Bergmann wrote: > On Wednesday 03 February 2016 15:01:34 Joao Pinto wrote: >> >> Hi Arnd, >> >> On 2/3/2016 12:54 PM, Arnd Bergmann wrote: >>> On Wednesday 03 February 2016 11:28:26 Joao Pinto wrote: >>>> >>>&g

Re: [PATCH 3/3] add support for DWC UFS Host Controller

2016-02-03 Thread Joao Pinto
Hi Arnd, On 2/3/2016 12:54 PM, Arnd Bergmann wrote: > On Wednesday 03 February 2016 11:28:26 Joao Pinto wrote: >> >> Signed-off-by: Joao Pinto > > This needs a changelog comment, like every patch. > >> @@ -0,0 +1,16 @@ >> +* Universal Flash Stor

[PATCH 3/3] add support for DWC UFS Host Controller

2016-02-03 Thread Joao Pinto
Signed-off-by: Joao Pinto --- Documentation/devicetree/bindings/ufs/ufs-dwc.txt | 16 + MAINTAINERS | 6 + drivers/scsi/ufs/Kconfig | 45 ++ drivers/scsi/ufs/Makefile | 2 + drivers/scsi/ufs/ufs-dwc.c

[PATCH 2/3] added support for ufs 2.0

2016-02-03 Thread Joao Pinto
Signed-off-by: Joao Pinto --- drivers/scsi/ufs/ufshcd.c | 29 + drivers/scsi/ufs/ufshci.h | 1 + 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c index 85cd256..2b5f2bf 100644 --- a/drivers/scsi

[PATCH 0/3] add support for DWC UFS Controller

2016-02-03 Thread Joao Pinto
The work consisted of: - Tweak ufshcd.c for UFS 2.0 support - Implement ufshcd-dwc which contains all DWC HW specific code - Implement a ufs-dwc glue platform driver Joao Pinto (3): fixed typo added support for ufs 2.0 add support for DWC UFS Host Controller Documentation/devicetree

[PATCH 1/3] fixed typo in ufshcd-pltfrm

2016-02-03 Thread Joao Pinto
Signed-off-by: Joao Pinto --- drivers/scsi/ufs/ufshcd-pltfrm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/ufs/ufshcd-pltfrm.c b/drivers/scsi/ufs/ufshcd-pltfrm.c index d2a7b12..0522891 100644 --- a/drivers/scsi/ufs/ufshcd-pltfrm.c +++ b/drivers/scsi/ufs

[PATCH 3/3] add support for DWC UFS Host Controller

2016-02-03 Thread Joao Pinto
Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Documentation/devicetree/bindings/ufs/ufs-dwc.txt | 16 + MAINTAINERS | 6 + drivers/scsi/ufs/Kconfig | 45 ++ drivers/scsi/ufs/Makefile | 2 + d

[PATCH 2/3] added support for ufs 2.0

2016-02-03 Thread Joao Pinto
Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- drivers/scsi/ufs/ufshcd.c | 29 + drivers/scsi/ufs/ufshci.h | 1 + 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c index 85cd256..2b5f2bf

[PATCH 1/3] fixed typo in ufshcd-pltfrm

2016-02-03 Thread Joao Pinto
Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- drivers/scsi/ufs/ufshcd-pltfrm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/ufs/ufshcd-pltfrm.c b/drivers/scsi/ufs/ufshcd-pltfrm.c index d2a7b12..0522891 100644 --- a/drivers/scsi/ufs/ufshcd-pltfrm.c

[PATCH 0/3] add support for DWC UFS Controller

2016-02-03 Thread Joao Pinto
The work consisted of: - Tweak ufshcd.c for UFS 2.0 support - Implement ufshcd-dwc which contains all DWC HW specific code - Implement a ufs-dwc glue platform driver Joao Pinto (3): fixed typo added support for ufs 2.0 add support for DWC UFS Host Controller Documentation/devicetree

Re: [PATCH 3/3] add support for DWC UFS Host Controller

2016-02-03 Thread Joao Pinto
Hi Arnd, On 2/3/2016 12:54 PM, Arnd Bergmann wrote: > On Wednesday 03 February 2016 11:28:26 Joao Pinto wrote: >> >> Signed-off-by: Joao Pinto <jpi...@synopsys.com> > > This needs a changelog comment, like every patch. > >> @@ -0,0 +1,16 @@ >> +* Uni

Re: [PATCH 3/3] add support for DWC UFS Host Controller

2016-02-03 Thread Joao Pinto
Hi, On 2/3/2016 3:39 PM, Arnd Bergmann wrote: > On Wednesday 03 February 2016 15:01:34 Joao Pinto wrote: >> >> Hi Arnd, >> >> On 2/3/2016 12:54 PM, Arnd Bergmann wrote: >>> On Wednesday 03 February 2016 11:28:26 Joao Pinto wrote: >>>> >

Re: [PATCH 3/3] add support for DWC UFS Host Controller

2016-02-03 Thread Joao Pinto
++ Vinayak Holikatti Hi Vinayak, Could I please get your opinion about the patch set? thanks. On 2/3/2016 3:39 PM, Arnd Bergmann wrote: > On Wednesday 03 February 2016 15:01:34 Joao Pinto wrote: >> >> Hi Arnd, >> >> On 2/3/2016 12:54 PM, Arnd Bergmann wrote: >&g

Re: [PATCH v7 2/2] add new platform driver for PCI RC

2016-02-03 Thread Joao Pinto
o include the config space Joao On 2/3/2016 6:05 PM, Bjorn Helgaas wrote: > Hi Joao & Arnd, > > On Tue, Feb 02, 2016 at 09:25:25PM +0100, Arnd Bergmann wrote: >> On Monday 01 February 2016 18:07:45 Joao Pinto wrote: >>> This patch adds a new driver that will be the

[PATCH] Synopsys driver updated in Maintainers

2016-02-02 Thread Joao Pinto
Driver name changed but not updated in MAINTAINERS. Signed-off-by: Joao Pinto --- MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index d2e4506..caba688 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -8234,8 +8234,8 @@ PCI DRIVER

Re: [PATCH v7 0/2] adding PCI support to AXS10x

2016-02-02 Thread Joao Pinto
Found it. Thanks. On 2/2/2016 5:17 PM, Joao Pinto wrote: > Hi Bjorn, > Thanks. Could you please send me the git URL for me to give it a try? > > Joao > > On 2/2/2016 5:14 PM, Bjorn Helgaas wrote: >> On Mon, Feb 01, 2016 at 06:07:43PM +, Joao Pinto wrote: >>

Re: [PATCH v7 0/2] adding PCI support to AXS10x

2016-02-02 Thread Joao Pinto
Hi Bjorn, Thanks. Could you please send me the git URL for me to give it a try? Joao On 2/2/2016 5:14 PM, Bjorn Helgaas wrote: > On Mon, Feb 01, 2016 at 06:07:43PM +0000, Joao Pinto wrote: >> This patch set has the goal to add suppport for DesignWare PCIe RC in ARC >> AXS1

Re: [PATCH] add support for DWC UFS Host Controller

2016-02-02 Thread Joao Pinto
ian Calaby wrote: > Hi Joao, > > On Tue, Feb 2, 2016 at 10:47 PM, Joao Pinto wrote: >> >> Hi Julian, >> I am already changing the architecture and I will send a v2 soon. >> Thanks for the review. > > Awesome, I look forward to it. > > Thanks, > Thanks. Joao

Re: [PATCH] add support for DWC UFS Host Controller

2016-02-02 Thread Joao Pinto
Hi Julian, I am already changing the architecture and I will send a v2 soon. Thanks for the review. Joao On 2/2/2016 11:44 AM, Julian Calaby wrote: > Hi Joao, > > On Tue, Feb 2, 2016 at 9:22 PM, Joao Pinto wrote: >> Hi Julian, >> >> Thanks for the review. My comme

Re: [PATCH] add support for DWC UFS Host Controller

2016-02-02 Thread Joao Pinto
Hi Julian, Thanks for the review. My comments are below. On 2/2/2016 1:00 AM, Julian Calaby wrote: > Hi Joao, > > On Mon, Feb 1, 2016 at 11:47 PM, Joao Pinto wrote: >> This patch includes: >> - quirks in the ufs core driver to support Synopsys MPHY Test Chip config >&g

Re: [PATCH] add support for DWC UFS Host Controller

2016-02-02 Thread Joao Pinto
ian Calaby wrote: > Hi Joao, > > On Tue, Feb 2, 2016 at 10:47 PM, Joao Pinto <joao.pi...@synopsys.com> wrote: >> >> Hi Julian, >> I am already changing the architecture and I will send a v2 soon. >> Thanks for the review. > > Awesome, I look forward to it. > > Thanks, > Thanks. Joao

Re: [PATCH] add support for DWC UFS Host Controller

2016-02-02 Thread Joao Pinto
Hi Julian, Thanks for the review. My comments are below. On 2/2/2016 1:00 AM, Julian Calaby wrote: > Hi Joao, > > On Mon, Feb 1, 2016 at 11:47 PM, Joao Pinto <joao.pi...@synopsys.com> wrote: >> This patch includes: >> - quirks in the ufs core driver to support Syn

Re: [PATCH] add support for DWC UFS Host Controller

2016-02-02 Thread Joao Pinto
Hi Julian, I am already changing the architecture and I will send a v2 soon. Thanks for the review. Joao On 2/2/2016 11:44 AM, Julian Calaby wrote: > Hi Joao, > > On Tue, Feb 2, 2016 at 9:22 PM, Joao Pinto <joao.pi...@synopsys.com> wrote: >> Hi Julian, >> >> T

Re: [PATCH v7 0/2] adding PCI support to AXS10x

2016-02-02 Thread Joao Pinto
Hi Bjorn, Thanks. Could you please send me the git URL for me to give it a try? Joao On 2/2/2016 5:14 PM, Bjorn Helgaas wrote: > On Mon, Feb 01, 2016 at 06:07:43PM +0000, Joao Pinto wrote: >> This patch set has the goal to add suppport for DesignWare PCIe RC in ARC >> AXS1

Re: [PATCH v7 0/2] adding PCI support to AXS10x

2016-02-02 Thread Joao Pinto
Found it. Thanks. On 2/2/2016 5:17 PM, Joao Pinto wrote: > Hi Bjorn, > Thanks. Could you please send me the git URL for me to give it a try? > > Joao > > On 2/2/2016 5:14 PM, Bjorn Helgaas wrote: >> On Mon, Feb 01, 2016 at 06:07:43PM +, Joao Pinto wrote: >>

[PATCH] Synopsys driver updated in Maintainers

2016-02-02 Thread Joao Pinto
Driver name changed but not updated in MAINTAINERS. Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index d2e4506..caba688 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -

[PATCH v7 2/2] add new platform driver for PCI RC

2016-02-01 Thread Joao Pinto
-New driver called pcie-synopsys Signed-off-by: Joao Pinto --- Change v6 -> v7 (Bjorn Helgaas): - driver name was changed from pcie-snpsdev to pcie-synopsys - driver internals (functions and certain variables) also changed name accordingly - devicetree bindings documentation also chan

[PATCH v7 0/2] adding PCI support to AXS10x

2016-02-01 Thread Joao Pinto
were produced against Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): PCI support added to ARC add new platform driver for PCI RC .../devicetree/bindings/pci/pcie-synopsys.txt | 33 +++ MAINTAINERS| 7

[PATCH v7 1/2] PCI support added to ARC

2016-02-01 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto --- Change v6 -> v7 (Bjorn Helgaas): - Parenthesis removed from definitions Change v5 -> v6 (Vineet Gupta): - Removed EXPORT_

[PATCH] add support for DWC UFS Host Controller

2016-02-01 Thread Joao Pinto
for Synopsys PCI ID in the pci glue driver - new platform glue driver for Synopsys devices Signed-off-by: Joao Pinto --- Documentation/devicetree/bindings/ufs/ufs-dwc.txt | 16 + drivers/scsi/ufs/Kconfig | 54 ++ drivers/scsi/ufs/Makefile | 1 + drivers

[PATCH] add support for DWC UFS Host Controller

2016-02-01 Thread Joao Pinto
driver - new platform glue driver for Synopsys devices Signed-off-by: Joao Pinto --- Documentation/devicetree/bindings/ufs/ufs-dwc.txt | 16 + drivers/scsi/ufs/Kconfig | 54 ++ drivers/scsi/ufs/Makefile | 1 + drivers/scsi/ufs/ufs-dwc.c

Re: [PATCH v6 1/2] PCI support added to ARC

2016-02-01 Thread Joao Pinto
other patch. > > On Thu, Jan 14, 2016 at 11:04:32AM +, Joao Pinto wrote: >> This patch adds PCI support to ARC and updates drivers/pci Makefile >> enabling the ARC arch to use the generic PCI setup functions. >> >> Signed-off-by: Joao Pinto >> --- >> Chan

Re: [PATCH v6 1/2] PCI support added to ARC

2016-02-01 Thread Joao Pinto
other patch. > > On Thu, Jan 14, 2016 at 11:04:32AM +, Joao Pinto wrote: >> This patch adds PCI support to ARC and updates drivers/pci Makefile >> enabling the ARC arch to use the generic PCI setup functions. >> >> Signed-off-by: Joao Pinto <jpi...@synopsys

[PATCH] add support for DWC UFS Host Controller

2016-02-01 Thread Joao Pinto
for Synopsys PCI ID in the pci glue driver - new platform glue driver for Synopsys devices Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Documentation/devicetree/bindings/ufs/ufs-dwc.txt | 16 + drivers/scsi/ufs/Kconfig | 54 ++ drivers/scsi/ufs/Ma

[PATCH] add support for DWC UFS Host Controller

2016-02-01 Thread Joao Pinto
driver - new platform glue driver for Synopsys devices Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Documentation/devicetree/bindings/ufs/ufs-dwc.txt | 16 + drivers/scsi/ufs/Kconfig | 54 ++ drivers/scsi/ufs/Makefile | 1 + drivers/sc

[PATCH v7 0/2] adding PCI support to AXS10x

2016-02-01 Thread Joao Pinto
were produced against Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): PCI support added to ARC add new platform driver for PCI RC .../devicetree/bindings/pci/pcie-synopsys.txt | 33 +++ MAINTAINERS| 7

[PATCH v7 1/2] PCI support added to ARC

2016-02-01 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Change v6 -> v7 (Bjorn Helgaas): - Parenthesis removed from definitions Change v5 -> v6 (Vineet Gupta

[PATCH v7 2/2] add new platform driver for PCI RC

2016-02-01 Thread Joao Pinto
-New driver called pcie-synopsys Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Change v6 -> v7 (Bjorn Helgaas): - driver name was changed from pcie-snpsdev to pcie-synopsys - driver internals (functions and certain variables) also changed name accordingly - devicetree bindings docu

Re: [PATCH v6 1/2] PCI support added to ARC

2016-01-28 Thread Joao Pinto
Hi Bjorn, Thanks for the info. Joao On 1/27/2016 9:59 PM, Bjorn Helgaas wrote: > Hi Joao, > > On Wed, Jan 27, 2016 at 02:29:21PM +0000, Joao Pinto wrote: >> Hi Bjorn, >> Could you please tell me what are the perspectives of pulling this patch set >> to >> m

Re: [PATCH v6 1/2] PCI support added to ARC

2016-01-28 Thread Joao Pinto
Hi Bjorn, Thanks for the info. Joao On 1/27/2016 9:59 PM, Bjorn Helgaas wrote: > Hi Joao, > > On Wed, Jan 27, 2016 at 02:29:21PM +0000, Joao Pinto wrote: >> Hi Bjorn, >> Could you please tell me what are the perspectives of pulling this patch set >> to >> m

Re: [PATCH v6 1/2] PCI support added to ARC

2016-01-27 Thread Joao Pinto
Hi Bjorn, Could you please tell me what are the perspectives of pulling this patch set to mainline? On 1/14/2016 11:11 AM, Vineet Gupta wrote: > On Thursday 14 January 2016 04:34 PM, Joao Pinto wrote: >> This patch adds PCI support to ARC and updates drivers/pci Makefile >> enabli

Re: [PATCH v6 1/2] PCI support added to ARC

2016-01-27 Thread Joao Pinto
Hi Bjorn, Could you please tell me what are the perspectives of pulling this patch set to mainline? On 1/14/2016 11:11 AM, Vineet Gupta wrote: > On Thursday 14 January 2016 04:34 PM, Joao Pinto wrote: >> This patch adds PCI support to ARC and updates drivers/pci Makefile >> enabli

[PATCH v3 0/2] adding PCI support to AXS10x

2015-12-21 Thread Joao Pinto
were produced against Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): PCI support added to ARC add new platform driver for PCI RC .../devicetree/bindings/pci/pcie-snpsdev.txt | 33 +++ MAINTAINERS| 7

[PATCH v3 2/2] add new platform driver for PCI RC

2015-12-21 Thread Joao Pinto
-MAINTAINERS file was updated to include the new driver -Documentation/devicetree/bindings/pci was updated to include the new driver documentation -New driver called pcie-snpsdev Signed-off-by: Joao Pinto --- Changes v2 -> v3: - link init stuff was moved to a snpsdev_pcie_establish_link() funct

[PATCH v3 1/2] PCI support added to ARC

2015-12-21 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto --- Change v2 -> v3 (Bjorn Helgaas): - arch/arc/kernel/pcibios.c unused functions were removed and also the arch/arc/include/asm/mach/pc

[PATCH v3 1/2] PCI support added to ARC

2015-12-21 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Change v2 -> v3 (Bjorn Helgaas): - arch/arc/kernel/pcibios.c unused functions were removed and also the

[PATCH v3 0/2] adding PCI support to AXS10x

2015-12-21 Thread Joao Pinto
were produced against Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): PCI support added to ARC add new platform driver for PCI RC .../devicetree/bindings/pci/pcie-snpsdev.txt | 33 +++ MAINTAINERS| 7

[PATCH v3 2/2] add new platform driver for PCI RC

2015-12-21 Thread Joao Pinto
-MAINTAINERS file was updated to include the new driver -Documentation/devicetree/bindings/pci was updated to include the new driver documentation -New driver called pcie-snpsdev Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Changes v2 -> v3: - link init stuff

Re: [PATCH v2 1/2] PCI support added to ARC

2015-12-18 Thread Joao Pinto
Hi Bjorn, Thanks for the review. I am going to simplify the code and send a v3 patch set. Joao On 12/17/2015 9:11 PM, Bjorn Helgaas wrote: > On Wed, Dec 16, 2015 at 02:14:55PM +0000, Joao Pinto wrote: >> This patch adds PCI support to ARC and updates drivers/pci Makefile enabling &

Re: [PATCH v2 1/2] PCI support added to ARC

2015-12-18 Thread Joao Pinto
Hi Bjorn, Thanks for the review. I am going to simplify the code and send a v3 patch set. Joao On 12/17/2015 9:11 PM, Bjorn Helgaas wrote: > On Wed, Dec 16, 2015 at 02:14:55PM +0000, Joao Pinto wrote: >> This patch adds PCI support to ARC and updates drivers/pci Makefile enabling &

[PATCH v2 0/2] adding PCI support to AXS10x

2015-12-16 Thread Joao Pinto
were produced against Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): PCI support added to ARC add new platform driver for PCI RC .../devicetree/bindings/pci/pcie-snpsdev.txt | 28 ++ MAINTAINERS| 7

[PATCH v2 1/2] PCI support added to ARC

2015-12-16 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto --- Change v1 -> v2: - In arch/arc/Kconfig, the new menu entry (Bus Configuration) was moved to the slot between sourcing of drivers/Kcon

[PATCH v2 2/2] add new platform driver for PCI RC

2015-12-16 Thread Joao Pinto
-MAINTAINERS file was updated to include the new driver -Documentation/devicetree/bindings/pci was updated to include the new driver documentation -New driver called pcie-snpsdev Signed-off-by: Joao Pinto --- Changes v1 -> v2 (Bjorn Helgaas): - Fixups snpsdev_pcie_fixup_bri

[PATCH v2 0/2] adding PCI support to AXS10x

2015-12-16 Thread Joao Pinto
were produced against Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): PCI support added to ARC add new platform driver for PCI RC .../devicetree/bindings/pci/pcie-snpsdev.txt | 28 ++ MAINTAINERS| 7

[PATCH v2 1/2] PCI support added to ARC

2015-12-16 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Change v1 -> v2: - In arch/arc/Kconfig, the new menu entry (Bus Configuration) was moved to the slo

[PATCH v2 2/2] add new platform driver for PCI RC

2015-12-16 Thread Joao Pinto
-MAINTAINERS file was updated to include the new driver -Documentation/devicetree/bindings/pci was updated to include the new driver documentation -New driver called pcie-snpsdev Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- Changes v1 -> v2 (Bjorn Helgaas): - Fixups snpsdev_pcie_fix

Re: [PATCH 2/2] PCI support added to ARC

2015-11-26 Thread Joao Pinto
Hi Bjorn, On 11/25/2015 4:46 PM, Bjorn Helgaas wrote: > On Wed, Nov 25, 2015 at 05:25:37AM +, Vineet Gupta wrote: >> On Tuesday 24 November 2015 08:02 PM, Joao Pinto wrote: > >>> + pr_err("PCI: Device %s not available because"/ >>>

Re: [PATCH 2/2] PCI support added to ARC

2015-11-26 Thread Joao Pinto
Hi Bjorn, On 11/25/2015 4:46 PM, Bjorn Helgaas wrote: > On Wed, Nov 25, 2015 at 05:25:37AM +, Vineet Gupta wrote: >> On Tuesday 24 November 2015 08:02 PM, Joao Pinto wrote: > >>> + pr_err("PCI: Device %s not available because"/ >>>

[PATCH 1/2] add new platform driver for PCI RC

2015-11-24 Thread Joao Pinto
-MAINTAINERS file was updated to include the new driver -Documentation/devicetree/bindings/pci was updated to include the new driver documentation -New driver called pcie-snpsdev Signed-off-by: Joao Pinto --- .../devicetree/bindings/pci/pcie-snpsdev.txt | 28 ++ MAINTAINERS

[PATCH 2/2] PCI support added to ARC

2015-11-24 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto --- arch/arc/Kconfig| 22 +++ arch/arc/include/asm/dma.h | 5 + arch/arc/include/asm/io.h | 2 + arch/arc

[PATCH 0/2] adding PCI support to AXS10x

2015-11-24 Thread Joao Pinto
were produced against the 'next' branch of Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): add new platform driver for PCI RC PCI support added to ARC .../devicetree/bindings/pci/pcie-snpsdev.txt | 28 ++ MAINTAINERS

[PATCH 2/2] PCI support added to ARC

2015-11-24 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto --- arch/arc/Kconfig| 22 +++ arch/arc/include/asm/dma.h | 5 + arch/arc/include/asm/io.h | 2 + arch/arc

[PATCH 1/2] add new platform driver for PCI RC

2015-11-24 Thread Joao Pinto
driver -MAINTAINERS file was updated to include the new driver -Documentation/devicetree/bindings/pci was updated to include the new driver documentation Signed-off-by: Joao Pinto --- .../devicetree/bindings/pci/pcie-snpsdev.txt | 28 ++ MAINTAINERS| 7

[PATCH 0/2] adding PCI support to AXS10x

2015-11-24 Thread Joao Pinto
were produced against the 'next' branch of Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): add new platform driver for PCI RC PCI support added to ARC .../devicetree/bindings/pci/pcie-snpsdev.txt | 28 ++ MAINTAINERS

[PATCH 1/2] add new platform driver for PCI RC

2015-11-24 Thread Joao Pinto
-MAINTAINERS file was updated to include the new driver -Documentation/devicetree/bindings/pci was updated to include the new driver documentation -New driver called pcie-snpsdev Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- .../devicetree/bindings/pci/pcie-snpsdev.txt

[PATCH 0/2] adding PCI support to AXS10x

2015-11-24 Thread Joao Pinto
were produced against the 'next' branch of Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): add new platform driver for PCI RC PCI support added to ARC .../devicetree/bindings/pci/pcie-snpsdev.txt | 28 ++ MAINTAINERS

[PATCH 2/2] PCI support added to ARC

2015-11-24 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- arch/arc/Kconfig| 22 +++ arch/arc/include/asm/dma.h | 5 + arch/arc/include/as

[PATCH 1/2] add new platform driver for PCI RC

2015-11-24 Thread Joao Pinto
driver -MAINTAINERS file was updated to include the new driver -Documentation/devicetree/bindings/pci was updated to include the new driver documentation Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- .../devicetree/bindings/pci/pcie-snpsdev.txt | 28 ++ MAINT

[PATCH 2/2] PCI support added to ARC

2015-11-24 Thread Joao Pinto
This patch adds PCI support to ARC and updates drivers/pci Makefile enabling the ARC arch to use the generic PCI setup functions. Signed-off-by: Joao Pinto <jpi...@synopsys.com> --- arch/arc/Kconfig| 22 +++ arch/arc/include/asm/dma.h | 5 + arch/arc/include/as

[PATCH 0/2] adding PCI support to AXS10x

2015-11-24 Thread Joao Pinto
were produced against the 'next' branch of Bjorn Helgaas' repository. It was properly tested in an IP Prototyping Kit. Joao Pinto (2): add new platform driver for PCI RC PCI support added to ARC .../devicetree/bindings/pci/pcie-snpsdev.txt | 28 ++ MAINTAINERS

<    3   4   5   6   7   8