Re: Gator with IKS config but not running on big.LITTLE

2013-06-12 Thread Andy Green
Hi - Something maybe unrelated after inserting gator successfully get some kernel logs coming [ 52.491528] CPU PMU: unable to set irq affinity (irq=0, cpu=0) [ 52.496351] CPU PMU: unable to set irq affinity (irq=0, cpu=0) ... irq = 0 isn't looking very happy... are there more new DT pro

Re: Gator with IKS config but not running on big.LITTLE

2013-06-12 Thread Andy Green
Thanks for the info: you're right I missed that. When I add it, the BUG is gone on gator module insertion, so from my POV we can call it fixed. -Andy On 11 June 2013 23:12, Jon Medhurst (Tixy) wrote: > On Tue, 2013-06-11 at 22:49 +0800, Andy Green wrote: >> Blows chunks the same with this >> >>

Re: [PATCH 01/10] USB: OHCI: Properly handle ohci-at91 suspend

2013-06-12 Thread Alan Stern
On Wed, 12 Jun 2013, Alan Stern wrote: > On Wed, 12 Jun 2013, Manjunath Goudar wrote: > > > Suspend scenario in case of ohci-at91 glue was not properly > > handled as it was not suspending generic part of ohci controller. > > Calling explicitly the ohci_suspend()routine in ohci_hcd_at91_drv_suspe

Re: [PATCH 03/10] USB: OHCI: Properly handle ohci-da8xx suspend

2013-06-12 Thread Manjunath Goudar
On 12 June 2013 21:24, Sergei Shtylyov wrote: > Hello. > > > On 12-06-2013 19:28, Manjunath Goudar wrote: > > Suspend scenario in case of ohci-da8xx glue was not >> properly handled as it was not suspending generic part >> of ohci controller.Calling explicitly the ohci_suspend() >> routine in ohc

Re: [PATCH 01/10] USB: OHCI: Properly handle ohci-at91 suspend

2013-06-12 Thread Alan Stern
On Wed, 12 Jun 2013, Manjunath Goudar wrote: > Suspend scenario in case of ohci-at91 glue was not properly > handled as it was not suspending generic part of ohci controller. > Calling explicitly the ohci_suspend()routine in ohci_hcd_at91_drv_suspend() > will ensure proper handling of suspend scen

[PATCH V2 1/6] USB: OHCI: make ohci-exynos a separate driver

2013-06-12 Thread Manjunath Goudar
Separate the Samsung OHCI EXYNOS host controller driver from ohci-hcd host code so that it can be built as a separate driver module. This work is part of enabling multi-platform kernels on ARM; it would be nice to have in 3.11. V2: -exynos_ohci_hcd structure assignment error fixed. -Removed mul

Re: [PATCH 02/10] USB: OHCI: Properly handle ohci-s3c2410 suspend

2013-06-12 Thread Sergei Shtylyov
Hello. On 12-06-2013 19:28, Manjunath Goudar wrote: Suspend scenario in case of ohci-s3c2410 glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_s3c2410_drv_suspend() will ensure proper handling of susp

[PATCH V2 6/6] USB: OHCI: make ohci-s3c2410 a separate driver

2013-06-12 Thread Manjunath Goudar
Separate the Samsung OHCI S3C host controller driver from ohci-hcd host code so that it can be built as a separate driver module. This work is part of enabling multi-platform kernels on ARM; it would be nice to have in 3.11. V2: -Set non-standard fields in ohci_s3c2410_hc_driver manually, rat

[PATCH V2 4/6] USB: OHCI: make ohci-spear a separate driver

2013-06-12 Thread Manjunath Goudar
Separate the ST OHCI SPEAr host controller driver from ohci-hcd host code so that it can be built as a separate driver module. This work is part of enabling multi-platform kernels on ARM; it would be nice to have in 3.11. V2: -ohci_setup() removed because it is called in .reset member of the oh

[PATCH V2 2/6] USB: OHCI: make ohci-omap a separate driver

2013-06-12 Thread Manjunath Goudar
Separate the TI OHCI OMAP1/2 host controller driver from ohci-hcd host code so that it can be built as a separate driver module. This work is part of enabling multi-platform kernels on ARM; it would be nice to have in 3.11. V2: -omap_ohci_clock_power(0) called in usb_hcd_omap_remove(). -Removed

[PATCH V2 5/6] USB: OHCI: make ohci-at91 a separate driver

2013-06-12 Thread Manjunath Goudar
Separate the TI OHCI Atmel host controller driver from ohci-hcd host code so that it can be built as a separate driver module. This work is part of enabling multi-platform kernels on ARM; it would be nice to have in 3.11. V2: -Set non-standard fields in ohci_at91_hc_driver manually, rather than

[PATCH V2 3/6] USB: OHCI: make ohci-omap3 a separate driver

2013-06-12 Thread Manjunath Goudar
Separate the TI OHCI OMAP3 host controller driver from ohci-hcd host code so that it can be built as a separate driver module. This work is part of enabling multi-platform kernels on ARM; it would be nice to have in 3.11. V2: -ohci_setup() removed because it is called in .reset member of the o

Re: [PATCH 03/10] USB: OHCI: Properly handle ohci-da8xx suspend

2013-06-12 Thread Sergei Shtylyov
Hello. On 12-06-2013 19:28, Manjunath Goudar wrote: Suspend scenario in case of ohci-da8xx glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_da8xx_suspend() will ensure proper handling of suspend scenario

[PATCH V2 0/6] USB: OHCI: more bus glues as separate modules

2013-06-12 Thread Manjunath Goudar
These patches are for separating the SOC On-Chip ohci host controller from ohci-hcd host code into its own driver module. This work is part of enabling multi-platform kernels on ARM. V2: In patch 5/6 and 6/6: -Set non-standard fields in hc_driver manually, rather than relying on an expanded

[PATCH 08/10] USB: OHCI: Properly handle ohci-pxa27x suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-pxa27x glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_pxa27x_drv_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd B

[PATCH 04/10] USB: OHCI: Properly handle ohci-ep93xx suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-ep93xx glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_ep93xx_drv_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd B

[PATCH 10/10] USB: OHCI: Properly handle ohci-spear suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-spear glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in spear_ohci_hcd_drv_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd Ber

[PATCH 06/10] USB: OHCI: Properly handle ohci-omap suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-omap glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_omap_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd Bergmann Cc:

[PATCH 05/10] USB: OHCI: Properly handle ohci-exynos suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-exynos glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in exynos_ohci_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd Bergmann

[PATCH 02/10] USB: OHCI: Properly handle ohci-s3c2410 suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-s3c2410 glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_hcd_s3c2410_drv_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd

[PATCH 07/10] USB: OHCI: Properly handle ohci-platform suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-platform glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_platform_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd Bergm

[PATCH 09/10] USB: OHCI: Properly handle ohci-sm501 suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-sm501 glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_sm501_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd Bergmann C

[PATCH 00/10] USB: OHCI:Properly handle ohci_suspend()routine in bus glue

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci bus glue was not properly handled as it was not suspending generic part of ohci controller. Calling explicitly the ohci_suspend()routine will ensure proper handling of suspend scenario. Manjunath Goudar (10): USB: OHCI: Properly handle ohci-at91 suspend USB

[PATCH 03/10] USB: OHCI: Properly handle ohci-da8xx suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-da8xx glue was not properly handled as it was not suspending generic part of ohci controller.Calling explicitly the ohci_suspend() routine in ohci_da8xx_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd Bergmann C

[PATCH 01/10] USB: OHCI: Properly handle ohci-at91 suspend

2013-06-12 Thread Manjunath Goudar
Suspend scenario in case of ohci-at91 glue was not properly handled as it was not suspending generic part of ohci controller. Calling explicitly the ohci_suspend()routine in ohci_hcd_at91_drv_suspend() will ensure proper handling of suspend scenario. Signed-off-by: Manjunath Goudar Cc: Arnd Bergm

IKSHackbox going away

2013-06-12 Thread Dave Pigott
Hi all, Next Wednesday, 19th June, we intend to take IKSHackbox out of circulation and turn it into a LAVA TC2. We will be backing up the existing configuration, just in case we need to deploy a new one or revert the existing one. We'll also be removing the ssh access (for obvious reasons). If