Re: [PATCH v2 4/5] usb: common: otg-fsm: add HNP polling support

2015-03-12 Thread Peter Chen
On Thu, Mar 12, 2015 at 10:30:23AM +0800, Li Jun wrote: > Adds HNP polling timer when transits to host state, the OTG status request > will be sent to peripheral after timeout, if host request flag is set, it will > switch to peripheral state, otherwise it will repeat HNP polling every 1.5s > and

Re: linux-next: manual merge of the net-next tree with the vfs tree

2015-03-12 Thread David Miller
From: Al Viro Date: Fri, 13 Mar 2015 03:56:09 + > On Thu, Mar 12, 2015 at 11:24:26PM -0400, David Miller wrote: >> From: Stephen Rothwell >> Date: Fri, 13 Mar 2015 13:15:43 +1100 >> >> > Today's linux-next merge of the net-next tree got a conflict in >> > net/socket.c between commits 005139

Re: linux-next: manual merge of the net-next tree with the vfs tree

2015-03-12 Thread Stephen Rothwell
Hi Al, On Fri, 13 Mar 2015 03:56:09 + Al Viro wrote: > > On Thu, Mar 12, 2015 at 11:24:26PM -0400, David Miller wrote: > > From: Stephen Rothwell > > Date: Fri, 13 Mar 2015 13:15:43 +1100 > > > > > Today's linux-next merge of the net-next tree got a conflict in > > > net/socket.c between co

Re: linux-next: manual merge of the net-next tree with the vfs tree

2015-03-12 Thread Al Viro
On Thu, Mar 12, 2015 at 11:24:26PM -0400, David Miller wrote: > From: Stephen Rothwell > Date: Fri, 13 Mar 2015 13:15:43 +1100 > > > Today's linux-next merge of the net-next tree got a conflict in > > net/socket.c between commits 005139a14660 ("fs: remove ki_nbytes") and > > e9eab93cc2dc ("fs: do

Re: [PATCH v2 2/5] usb: chipidea: udc: add OTG status request handling

2015-03-12 Thread Peter Chen
On Thu, Mar 12, 2015 at 11:04:09AM -0500, Felipe Balbi wrote: > Hi, > > On Thu, Mar 12, 2015 at 10:30:21AM +0800, Li Jun wrote: > > From: Li Jun > > > > Peripheral answers OTG status selector request from host according to > > host_request_flag of gadget, length is 1. > > > > Signed-off-by: Li

Re: [PATCH v2 2/5] usb: chipidea: udc: add OTG status request handling

2015-03-12 Thread Peter Chen
On Thu, Mar 12, 2015 at 10:30:21AM +0800, Li Jun wrote: > From: Li Jun > > Peripheral answers OTG status selector request from host according to > host_request_flag of gadget, length is 1. > > Signed-off-by: Li Jun > --- > drivers/usb/chipidea/udc.c | 28 +++- > 1 fil

Re: [PATCH v2 1/5] usb: gadget: add host_requestf_flag in usb_gadget for OTG HNP

2015-03-12 Thread Peter Chen
On Thu, Mar 12, 2015 at 10:30:20AM +0800, Li Jun wrote: > From: Li Jun > > Adds host_request_flag for gadget to store host request information from > application, which can be used to response to HNP polling from host. typo, %s/response to/respond > > Signed-off-by: Li Jun > --- > include/li

[PATCH 1/2] serial: 8250_pci: remove non-used var for F81504

2015-03-12 Thread Peter Hung
Remove pci_fintek_setup() non-used var with calculation ciobase Signed-off-by: Peter Hung --- drivers/tty/serial/8250/8250_pci.c | 11 ++- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c index 892eb32.

[PATCH 0/2] serial: 8250_pci: Fintek products patches

2015-03-12 Thread Peter Hung
These series patches works for Fintek F81504/F81508/F81512 PCI to Serial Port. and patch 0002 is following with patch 0001. patch 0001 is just cleanup non-used source code. patch 0002 is major patch. The serial port of our product will failed after wakeup from S3(STR). It's due to when the syste

[PATCH 2/2] serial: 8250_pci: port failed after wakeup from S3

2015-03-12 Thread Peter Hung
Serial ports of F81504/F81508/F81512 will failed when wakeup from S3(STR). It's due to when the system wakeup from S3(STR), this PCI device's configuration space from 0x40 to 0x40 + max_port * 0x08 should be re-configured. We move all initialization from pci_fintek_setup() to pci_fintek_init() an

RE: [PATCH v2 1/4] usb: renesas_usbhs: fix spinlock suspected in a gadget complete function

2015-03-12 Thread yoshihiro shimoda
Hi, > Hi, > > On Thu, Mar 12, 2015 at 05:40:56AM +, yoshihiro shimoda wrote: > > Hi, > > < snip > > > > > > > try something like below: > > > > > > diff --git a/drivers/usb/renesas_usbhs/mod_gadget.c > > > b/drivers/usb/renesas_usbhs/mod_gadget.c > > > index e0384af77e56..e9d75d85be59 100644

[PATCH v3 1/1] usb: xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers

2015-03-12 Thread Lu Baolu
When a device with an isochronous endpoint is plugged into the Intel xHCI host controller, and the driver submits multiple frames per URB, the xHCI driver will set the Block Event Interrupt (BEI) flag on all but the last TD for the URB. This causes the host controller to place an event on the event

Re: [PATCH v2 18/22] usb: gadget: serial: %pf is only for function pointers

2015-03-12 Thread Fabio Estevam
On Thu, Mar 12, 2015 at 6:46 PM, Scott Wood wrote: > Use %ps for actual addresses, otherwise you'll get bad output > on arches like ppc64 where %pf expects a function descriptor > (which is not what __builtin_return_address returns). > > Signed-off-by: Scott Wood > Cc: linux-usb@vger.kernel.org >

[PATCH v2 18/22] usb: gadget: serial: %pf is only for function pointers

2015-03-12 Thread Scott Wood
Use %ps for actual addresses, otherwise you'll get bad output on arches like ppc64 where %pf expects a function descriptor (which is not what __builtin_return_address returns). Signed-off-by: Scott Wood Cc: linux-usb@vger.kernel.org Cc: Felipe Balbi Cc: Fabio Estevam CC: Sergei Shtylyov --- v2

[PATCH v4 0/5] usb/gadget: independent registration of gadgets and gadget drivers

2015-03-12 Thread Ruslan Bilovol
This patchset adds independent registration of gadgets and gadget drivers to udc-core. This is very useful for built-in modules into kernel case since it's possible situation that gadget driver is probing at a time when no gadgets are registered in udc-core. In this case instead of silently failing

[PATCH v4 3/5] usb: gadget: udc-core: remove unused usb_udc_attach_driver()

2015-03-12 Thread Ruslan Bilovol
Now when last user of usb_udc_attach_driver() is switched to passing UDC name via usb_gadget_driver struct, it's safe to remove this function Signed-off-by: Ruslan Bilovol --- drivers/usb/gadget/udc/udc-core.c | 26 -- include/linux/usb/gadget.h| 2 -- 2 files ch

[PATCH v4 5/5] usb: gadget: udc-core: independent registration of gadgets and gadget drivers

2015-03-12 Thread Ruslan Bilovol
Change behavior during registration of gadgets and gadget drivers in udc-core. Instead of previous approach when for successful probe of usb gadget driver at least one usb gadget should be already registered use another one where gadget drivers and gadgets can be registered in udc-core independentl

[PATCH v4 2/5] usb: gadget: configfs: pass UDC name via usb_gadget_driver struct

2015-03-12 Thread Ruslan Bilovol
Now when udc-core supports binding to specific UDC by passing its name via 'udc_name' member of usb_gadget_driver struct, switch to this generic approach. Signed-off-by: Ruslan Bilovol --- drivers/usb/gadget/configfs.c | 27 ++- 1 file changed, 14 insertions(+), 13 deleti

[PATCH v4 4/5] usb: gadget: legacy: don't use __init/__exit attributes for bind/unbind path

2015-03-12 Thread Ruslan Bilovol
In order to prepare to independent gadgets and gadget drivers registration in udc-core, some of the functions can't have __init/__exit attributes (almost only bind/unbind callbacks are affected) Signed-off-by: Ruslan Bilovol --- drivers/usb/gadget/legacy/acm_ms.c | 6 +++--- drivers/usb/g

[PATCH v4 1/5] usb: gadget: bind UDC by name passed via usb_gadget_driver structure

2015-03-12 Thread Ruslan Bilovol
Introduce new 'udc_name' member to usb_gadget_driver structure. The 'udc_name' is a name of UDC that usb_gadget_driver should be bound to. If udc_name is NULL, it will be bound to any available UDC. Signed-off-by: Ruslan Bilovol --- drivers/usb/gadget/udc/udc-core.c | 24 +++-

[PATCH] usb: dwc2: pci: Select the generic PHY for dwc2-pci driver

2015-03-12 Thread John Youn
The dwc2-pci driver requires the generic PHY. This fixes undefined reference issues when it is not selected. Reported-by: kbuild test robot Signed-off-by: John Youn --- This fixes issue with commit 9024c495 on -next. John drivers/usb/dwc2/Kconfig | 1 + 1 file changed, 1 insertion(+) diff -

Re: [PATCH] phy: Add a driver for dm816x USB PHY

2015-03-12 Thread Tony Lindgren
* Rusty Russell [150311 18:15]: > Tony Lindgren writes: > > * Paul Bolle [150311 04:16]: > > Oh, it should be just GPL v2 like most of the kernel. Probably copied > > the header from some other phy driver, will update that instead. > > Well, all my code is explicitly v2 or later. > > I'll leav

Please kindly read my message

2015-03-12 Thread Sandra toyin rain elizabeth
Please kindly read my message Hello it is with tears that i am writing to you i need your help and assistance am an aging widow suffering from long time cancer of the throat and I inherited from my late husband, the sum of 9. 5 Millions Nine Million Five Hundred Thousand Dollars and I need

Re: [PATCH v2 1/1] usb: xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers

2015-03-12 Thread Devin Heitmueller
On Thu, Mar 12, 2015 at 6:15 AM, Lu Baolu wrote: > When a device with an isochronous endpoint is plugged into the Intel > xHCI host controller, and the driver submits multiple frames per URB, > the xHCI driver will set the Block Event Interrupt (BEI) flag on all > but the last TD for the URB. This

Re: [PATCH v2 1/1] usb: xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers

2015-03-12 Thread Alistair Grant
On Thu, Mar 12, 2015 at 11:15 AM, Lu Baolu wrote: > When a device with an isochronous endpoint is plugged into the Intel > xHCI host controller, and the driver submits multiple frames per URB, > the xHCI driver will set the Block Event Interrupt (BEI) flag on all > but the last TD for the URB. Thi

[PATCH v2 0/2] usb: dwc2: add support for big-endian Lantiq SoCs

2015-03-12 Thread Antti Seppälä
Here are two patches needed to add support for mips based big-endian SoCs made by Lantiq to dwc2 driver. The first patch converts the readl/writel io-accessors of dwc2 to big-endian friendly versions and was discussed on the linux-usb ml already earlier. The second patch adds default fifo paramet

[PATCH 2/2] usb: dwc2: Add default fifo sizes for Lantiq SoCs

2015-03-12 Thread Antti Seppälä
Lantiq SoCs define the total_fifo_size to be 552 dwords which is too small for algorithm in dwc2_calculate_dynamic_fifo to work properly. This patch provides sensible defaults for fifo sizes for Lantiq SoCs to be used in dwc2 driver. The default values are taken from original ifx-hcd driver. Sign

[PATCH v2 1/2] usb: dwc2: Use platform endianness when accessing registers

2015-03-12 Thread Antti Seppälä
This patch switches calls to readl/writel to their dwc2_readl/dwc2_writel equivalents which preserve platform endianness. This patch is necessary to access dwc2 registers correctly on big endian systems such as the mips based SoCs made by Lantiq. Then dwc2 can be used to replace ifx-hcd driver for

Re: [PATCH 18/22] usb: gadget: serial: %pF is only for function pointers

2015-03-12 Thread Scott Wood
On Thu, 2015-03-12 at 15:36 +0300, Sergei Shtylyov wrote: > Hello. > > On 3/12/2015 6:13 AM, Scott Wood wrote: > > > Use %pS for actual addresses, otherwise you'll get bad output > > %pS or %ps? > > > on arches like ppc64 where %pF expects a function descriptor. > > %pF or %pf? And wha

Re: [PATCH 18/22] usb: gadget: serial: %pF is only for function pointers

2015-03-12 Thread Fabio Estevam
On Thu, Mar 12, 2015 at 1:40 PM, Scott Wood wrote: > No. __builtin_return_address() returns a pointer to an instruction, not > a function pointer descriptor. If you use %pF on the former, it'll > print instruction opcodes as if they were the address. Then you should mention this in the commit

Re: [PATCH 18/22] usb: gadget: serial: %pF is only for function pointers

2015-03-12 Thread Scott Wood
On Thu, 2015-03-12 at 12:51 -0300, Fabio Estevam wrote: > On Thu, Mar 12, 2015 at 12:13 AM, Scott Wood wrote: > > Use %pS for actual addresses, otherwise you'll get bad output > > on arches like ppc64 where %pF expects a function descriptor. > > From Documentation/printk-formats.txt: > > "On

Re: [PATCH v2 1/4] usb: renesas_usbhs: fix spinlock suspected in a gadget complete function

2015-03-12 Thread Felipe Balbi
Hi, On Thu, Mar 12, 2015 at 05:40:56AM +, yoshihiro shimoda wrote: > Hi, > > > On Thu, Mar 12, 2015 at 04:33:41AM +, yoshihiro shimoda wrote: > > > Hi Geert-san again, > > > > > > > Hi Geert-san, > > > > > > > > Thank you for the reply again! > > > > > > > > > Hi Shimoda-san, > > > > > >

Re: [PATCH v2 4/5] usb: common: otg-fsm: add HNP polling support

2015-03-12 Thread Felipe Balbi
On Thu, Mar 12, 2015 at 10:30:23AM +0800, Li Jun wrote: > Adds HNP polling timer when transits to host state, the OTG status request > will be sent to peripheral after timeout, if host request flag is set, it will > switch to peripheral state, otherwise it will repeat HNP polling every 1.5s > and

Re: [PATCH v2 2/5] usb: chipidea: udc: add OTG status request handling

2015-03-12 Thread Felipe Balbi
Hi, On Thu, Mar 12, 2015 at 10:30:21AM +0800, Li Jun wrote: > From: Li Jun > > Peripheral answers OTG status selector request from host according to > host_request_flag of gadget, length is 1. > > Signed-off-by: Li Jun > --- > drivers/usb/chipidea/udc.c | 28 +++- >

Re: [PATCH 18/22] usb: gadget: serial: %pF is only for function pointers

2015-03-12 Thread Fabio Estevam
On Thu, Mar 12, 2015 at 12:13 AM, Scott Wood wrote: > Use %pS for actual addresses, otherwise you'll get bad output > on arches like ppc64 where %pF expects a function descriptor. >From Documentation/printk-formats.txt: "On ia64, ppc64 and parisc64 architectures function pointers are act

Re: [PATCH 18/22] usb: gadget: serial: %pF is only for function pointers

2015-03-12 Thread Felipe Balbi
On Thu, Mar 12, 2015 at 12:27:07AM -0500, Scott Wood wrote: > On Wed, 2015-03-11 at 23:45 -0500, Felipe Balbi wrote: > > On Wed, Mar 11, 2015 at 10:13:53PM -0500, Scott Wood wrote: > > > Use %pS for actual addresses, otherwise you'll get bad output > > > on arches like ppc64 where %pF expects a fun

Re: Bug 46201 - FTDI driver "error from flowcontrol urb"

2015-03-12 Thread Alan Stern
On Thu, 12 Mar 2015, Martin Stolpe wrote: > Hello, > > I'm affected by the bug described in > https://bugzilla.kernel.org/show_bug.cgi?id=46201 and would like to > help to triage the cause of this bug. Unfortunately I have no > experience in kernel debugging and my programming skills are rather >

Re: [PATCH 1/1] usb: xhci: handle Config Error Change (CEC) in xhci driver

2015-03-12 Thread Mathias Nyman
On 06.03.2015 10:12, Lu Baolu wrote: > Linux xHCI driver doesn't report and handle port cofig error change. > If Port Configure Error for root hub port occurs, CEC bit in PORTSC > would be set by xHC and remains 1. This happends when the root port > fails to configure its link partner, e.g. the por

Bug 46201 - FTDI driver "error from flowcontrol urb"

2015-03-12 Thread Martin Stolpe
Hello, I'm affected by the bug described in https://bugzilla.kernel.org/show_bug.cgi?id=46201 and would like to help to triage the cause of this bug. Unfortunately I have no experience in kernel debugging and my programming skills are rather limited. Is there anything I can do to help? Regards M

Re: [PATCH] ARM: dts: remove usb2-phy on Exynos5 series SoC

2015-03-12 Thread Vivek Gautam
Hi, On Thu, Mar 12, 2015 at 3:40 PM, Jaewon Kim wrote: > Exynos5 series SoC does not have usb2-phy on USB3.0 Controller. > It is controlled by only usb3-phy. So, this patch remove usb2-phy > property. Why would you want to remove the usb2-phy property ? The usb2-phy projected here is actually t

Re: [PATCH 18/22] usb: gadget: serial: %pF is only for function pointers

2015-03-12 Thread Sergei Shtylyov
Hello. On 3/12/2015 6:13 AM, Scott Wood wrote: Use %pS for actual addresses, otherwise you'll get bad output %pS or %ps? on arches like ppc64 where %pF expects a function descriptor. %pF or %pf? And what is a function descriptor? Signed-off-by: Scott Wood Cc: linux-usb@vger.kerne

[no subject]

2015-03-12 Thread pepa6...@ono.com
Proposal, Respond to my personal email; mrs.zhangxiao1962@outlook. com Yours Sincerely. Mrs. Zhang Xiao (Accounts book Keeper) Angang Steel Company Limited 396 Nan Zhong Hua Lu, Tie Dong District Anshan, Liaoning 114021, China. -- To unsubscribe from this list: send the line "unsubscribe li

[PATCH v2 1/1] usb: xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers

2015-03-12 Thread Lu Baolu
When a device with an isochronous endpoint is plugged into the Intel xHCI host controller, and the driver submits multiple frames per URB, the xHCI driver will set the Block Event Interrupt (BEI) flag on all but the last TD for the URB. This causes the host controller to place an event on the event

[PATCH] phy: exynos5-usbdrd: Add to support for Exynos5433 SoC

2015-03-12 Thread Jaewon Kim
This patch adds driver data to support for Exynos5433 SoC. The Exynos5433 has one USB3.0 Host and USB3.0 DRD(Dual Role Device). Exynos5433 is simplar to Eyxnos7 but Exynos5433 have one more USB3.0 Host controller. Signed-off-by: Jaewon Kim --- .../devicetree/bindings/phy/samsung-phy.txt|

[PATCH] ARM: dts: remove usb2-phy on Exynos5 series SoC

2015-03-12 Thread Jaewon Kim
Exynos5 series SoC does not have usb2-phy on USB3.0 Controller. It is controlled by only usb3-phy. So, this patch remove usb2-phy property. Signed-off-by: Jaewon Kim --- arch/arm/boot/dts/exynos5250.dtsi |4 ++-- arch/arm/boot/dts/exynos5420.dtsi |8 2 files changed, 6 insertion

Re: [PATCH] USB: ehci-mxc: i.MX35: add workaround for ENGcm11601

2015-03-12 Thread Bas Vermeulen
Hi Sascha, On Wed, March 11, 2015 4:46 pm, Sascha Hauer wrote: > On Wed, Mar 11, 2015 at 04:05:31PM +0100, Bas Vermeulen wrote: >> >> On Wed, March 11, 2015 4:01 pm, Sascha Hauer wrote: >> > On Wed, Mar 11, 2015 at 03:52:53PM +0100, Bas Vermeulen wrote: >> >> Hello, >> >> >> >> On Wed, March 11, 2

Re: [PATCH] usb: phy: Find the right match in devm_usb_phy_match

2015-03-12 Thread Felipe Balbi
On Wed, Mar 11, 2015 at 12:55:42PM +0800, Axel Lin wrote: > The res parameter passed to devm_usb_phy_match() is the location where the > pointer to the usb_phy is stored, hence it needs to be dereferenced before > comparing to the match data in order to find the correct match. > > Signed-off-by: A

[GIT PULL] USB fixes for v4.0-rc3

2015-03-12 Thread Felipe Balbi
Hi Greg, This is likely my last pull for the -rc, but things may change. Let me know if you need any changes Patches tested on platforms I have access to. cheers The following changes since commit 9eccca0843205f87c00404b663188b88eb248051: Linux 4.0-rc3 (2015-03-08 16:09:09 -0700) are availa

Re: [PATCH 1/1] usb: xhci: apply XHCI_AVOID_BEI quirk to Intel ValleyView and LynxPoint LP

2015-03-12 Thread Lu, Baolu
On 03/12/2015 03:54 PM, Greg Kroah-Hartman wrote: On Thu, Mar 12, 2015 at 09:39:06AM +0800, Lu Baolu wrote: When a device with an isochronous endpoint is plugged into the Intel xHCI host controller, and the driver submits multiple frames per URB, the xHCI driver will set the Block Event Interr

[PATCH] usb: musb: dsps: request phy using our device pointer

2015-03-12 Thread Felipe Balbi
musb shouldn't have of_node and phy phandle is passed to dsps device, not musb's. Signed-off-by: Felipe Balbi --- drivers/usb/musb/musb_dsps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c index baa757ba1353..a528d

Re: [PATCH] phy: Add a driver for dm816x USB PHY

2015-03-12 Thread Tony Lindgren
* Kishon Vijay Abraham I [150311 02:58]: > Hi Tony, > > On Tuesday 10 March 2015 02:21 AM, Tony Lindgren wrote: > >Add a minimal driver for dm816x USB. Otherwise we can just use > >the existing musb_am335x and musb_dsps on dm816x. > > If we can use an existing driver, I'd prefer that. Hmm that

Re: [PATCH 1/1] usb: xhci: apply XHCI_AVOID_BEI quirk to Intel ValleyView and LynxPoint LP

2015-03-12 Thread Lu, Baolu
On 03/12/2015 04:46 PM, Mathias Nyman wrote: On 12.03.2015 03:39, Lu Baolu wrote: When a device with an isochronous endpoint is plugged into the Intel xHCI host controller, and the driver submits multiple frames per URB, the xHCI driver will set the Block Event Interrupt (BEI) flag on all but

Re: [PATCH 1/1] usb: xhci: apply XHCI_AVOID_BEI quirk to Intel ValleyView and LynxPoint LP

2015-03-12 Thread Mathias Nyman
On 12.03.2015 03:39, Lu Baolu wrote: > When a device with an isochronous endpoint is plugged into the Intel > xHCI host controller, and the driver submits multiple frames per URB, > the xHCI driver will set the Block Event Interrupt (BEI) flag on all > but the last TD for the URB. This causes the h

Re: [PATCH] USB: ehci-mxc: i.MX35: add workaround for ENGcm11601

2015-03-12 Thread Sascha Hauer
On Wed, Mar 11, 2015 at 03:52:53PM +0100, Bas Vermeulen wrote: > Hello, > > On Wed, March 11, 2015 2:51 pm, Sascha Hauer wrote: > > This driver normally is not used with device tree. Without additional > > kernel changes the chipidea driver is used instead. > > I'm just forward-porting a patch I

Re: [PATCH] USB: ehci-mxc: i.MX35: add workaround for ENGcm11601

2015-03-12 Thread Bas Vermeulen
Hello, On Wed, March 11, 2015 2:51 pm, Sascha Hauer wrote: > This driver normally is not used with device tree. Without additional > kernel changes the chipidea driver is used instead. I'm just forward-porting a patch I made for 2.6.31.14 to workaround an issue we found. I'm unsure where to fit t

Re: [V4.0.0-rc3] Xhci Regression: ERROR Transfer event TRB DMA ptr not part of current TD

2015-03-12 Thread Mathias Nyman
On 11.03.2015 18:16, Jörg Otte wrote: > 2015-03-11 12:01 GMT+01:00 Jörg Otte : >> 2015-03-10 18:04 GMT+01:00 Mathias Nyman : >>> On 10.03.2015 17:36, Jörg Otte wrote: >>> >> I'd suspect one of these two patches: >> >> commit 45ba2154d12fc43b70312198ec47085f10be801a >> xhci: fix

Re: [PATCH] phy: Add a driver for dm816x USB PHY

2015-03-12 Thread Kishon Vijay Abraham I
Hi Tony, On Tuesday 10 March 2015 02:21 AM, Tony Lindgren wrote: Add a minimal driver for dm816x USB. Otherwise we can just use the existing musb_am335x and musb_dsps on dm816x. If we can use an existing driver, I'd prefer that. Cc: Brian Hutchinson Cc: Felipe Balbi Signed-off-by: Tony Lin

Re: [PATCHv7 2/4] USB: gadget: atmel_usba_udc: Request an auto disabled Vbus signal IRQ instead of an auto enabled IRQ request followed by IRQ disable

2015-03-12 Thread Sylvain Rochet
Hello Felipe, On Tue, Mar 10, 2015 at 04:12:14PM -0500, Felipe Balbi wrote: > Hi, > > (dropping patch, my only context is subject line) > > "USB: gadget: atmel_usba_udc: Request an auto disabled Vbus signal IRQ > instead of an auto enabled IRQ request followed by IRQ disable" > > Holy crap, tha

Re: [PATCH] udc: gadget: atmel_usba_udc: depend on COMMON_CLK_AT91

2015-03-12 Thread Alexandre Belloni
On 10/03/2015 at 16:23:53 -0500, Felipe Balbi wrote : > > Yeah, let's drop it for now but I have the feeling that this will > > break (I actually broke it when switching at91 to multiplatform). > > aha, that changes it. So you already have something which makes this > break ? Are you planning on s

Re: [PATCH 1/2] usb: dwc2: Use platform endianness when accessing registers

2015-03-12 Thread Felipe Balbi
Hi, On Sat, Jan 31, 2015 at 01:18:46PM +0200, Antti Seppälä wrote: > This patch switches calls to readl/writel to their > dwc2_readl/dwc2_writel equivalents which preserve platform endianness. > > This patch is necessary to access dwc2 registers correctly on big endian > systems such as the mips

Re: [PATCH 1/1] usb: xhci: apply XHCI_AVOID_BEI quirk to Intel ValleyView and LynxPoint LP

2015-03-12 Thread Greg Kroah-Hartman
On Thu, Mar 12, 2015 at 09:39:06AM +0800, Lu Baolu wrote: > When a device with an isochronous endpoint is plugged into the Intel > xHCI host controller, and the driver submits multiple frames per URB, > the xHCI driver will set the Block Event Interrupt (BEI) flag on all > but the last TD for the U

Re: [V4.0.0-rc3] Xhci Regression: ERROR Transfer event TRB DMA ptr not part of current TD

2015-03-12 Thread Mathias Nyman
On 10.03.2015 19:29, Alan Stern wrote: > On Tue, 10 Mar 2015, Mathias Nyman wrote: > >> Yes, thank you >> >> Seems that It wasn't mature enough, I'll revert it. >> >> From your logs I can see what went wrong, >> >> If you still have some time, could you try out a patch (attached) and see if >> i

Re: [PATCH] usb: dwc2: host: fix dwc2 disconnect bug

2015-03-12 Thread John Youn
On 3/9/2015 3:03 PM, Vincent Palatin wrote: > On Thu, Mar 5, 2015 at 11:17 PM, Yunzhi Li wrote: >> When dwc2 controller detects a disconnect interrupt, >> dwc2_hcd_disconnect() should be called immediately to do clean-up >> jobs and set port_connect_status_change flag to notify usb hub >> driver d

Re: [V4.0.0-rc3] Xhci Regression: ERROR Transfer event TRB DMA ptr not part of current TD

2015-03-12 Thread Jörg Otte
2015-03-10 15:03 GMT+01:00 Jörg Otte : > 2015-03-10 14:06 GMT+01:00 Mathias Nyman : >> On 10.03.2015 11:40, Jörg Otte wrote: >>> If I plug in my USB DVB-T stick I get the following in dmesg: >>> >>> dvb-usb: found a 'TerraTec/qanu USB2.0 Highspeed DVB-T Receiver' in warm >>> state. >>> dvb-usb: wi