I NEED YOUR HELP URGENTLY!!!

2018-10-21 Thread GEN KELVIN
Compliment of the day to you. I am Gen.Kelvin W Howard, I am sending this brief letter to solicit your partnership of Sixteen Million Two Hundred Thousand United States Dollars ($16,200,000). I shall send you more information and procedures when I receive positive response from you.Best Regards

Re: Logitech G27 leds no more supported

2018-10-21 Thread elrondo46
SOLVED that's due to this is compiled as modules: CONFIG_LEDS_SYSCON CONFIG_LEDS_SYSCON and not as YES option Thnaks ‐‐‐ Original Message ‐‐‐ Le dimanche 21 octobre 2018 08:16, a écrit : > There is no switch in G27, it's a pure PC wheel, and leds are not recognized > > Sent with Proton

[PATCH] usb: dwc2: disable power_down on rockchip devices

2018-10-21 Thread Hal Emmerich
>From 04fbf78e4e569bf872f1ffcb0a6f9b89569dc913 Mon Sep 17 00:00:00 2001 From: Hal Emmerich Date: Thu, 19 Jul 2018 21:48:08 -0500 Subject: [PATCH] usb: dwc2: disable power_down on rockchip devices  The bug would let the usb controller enter partial power down,  which was formally known as hibernat

[PATCH v2 0/4] usb: chipidea: imx: add HSIC support

2018-10-21 Thread Peter Chen
Most of NXP (Freescale) i.mx USB part has HSIC support, in this series, we add support for them, it should cover all imx6 and imx7d SoC. Changes for v2: - Compile error reported by kbuild robot [Patch 2/4] - Comment from Frieder Schrempf about code structure [Patch 2/4] - Comment from Fabio about

[PATCH v2 2/4] usb: chipidea: imx: add HSIC support

2018-10-21 Thread Peter Chen
To support imx HSIC, there are some special requirement: - The HSIC pad is 1.2v, it may need to supply from external - The data/strobe pin needs to be pulled down first, and after host mode is initialized, the strobe pin needs to be pulled up - During the USB suspend/resume, special setting is ne

[PATCH v2 4/4] doc: usb: ci-hdrc-usb2: Add pinctrl properties for HSIC pin groups

2018-10-21 Thread Peter Chen
For USB HSIC, the data and strobe pin needs to be pulled down at default, we consider it as "idle" state. When the USB host is ready to be used, the strobe pin needs to be pulled up, we consider it as "active" state. Signed-off-by: Peter Chen --- Documentation/devicetree/bindings/usb/ci-hdrc-usb

[PATCH v2 1/4] usb: chipidea: add flag for imx hsic implementation

2018-10-21 Thread Peter Chen
NXP (Freecale) imx HSIC design has some special requirements, add some flags at host code to handle them. Signed-off-by: Peter Chen --- drivers/usb/chipidea/host.c | 24 include/linux/usb/chipidea.h | 3 +++ 2 files changed, 27 insertions(+) diff --git a/drivers/usb/c

[PATCH v2 3/4] usb: chipidea: host: override ehci->hub_control

2018-10-21 Thread Peter Chen
The chipidea controller has some special requirements during suspend/resume, override common ehci->hub_control to implement it. Signed-off-by: Peter Chen --- drivers/usb/chipidea/host.c | 74 + 1 file changed, 74 insertions(+) diff --git a/drivers/usb

Re: Query on usb/core/devio.c

2018-10-21 Thread Oliver Neukum
On Do, 2018-10-18 at 13:42 -0400, Alan Stern wrote: > On Thu, 18 Oct 2018, Mayuresh Kulkarni wrote: > > > > The only way to make the ioctl work properly is to have it do a > > > runtime-PM put at the start and then a runtime-PM get before it If and only if you want to do this with one ioctl() If

[PATCH] USB: misc: appledisplay: add 20" Apple Cinema Display

2018-10-21 Thread Mattias Jacobsson
Add another Apple Cinema Display to the list of supported displays Signed-off-by: Mattias Jacobsson <2...@mok.nu> --- drivers/usb/misc/appledisplay.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/misc/appledisplay.c b/drivers/usb/misc/appledisplay.c index bd539f3058bc..85b48c6dd

[PATCH 2/2] usb: xhci: fix timeout for transition from RExit to U0

2018-10-21 Thread Aaron Ma
This definition is used by msecs_to_jiffies in milliseconds. According to the comments, max rexit timeout should be 20ms. Align with the comments to properly calculate the delay. Verified on Sunrise Point-LP and Cannon Lake. Signed-off-by: Aaron Ma --- drivers/usb/host/xhci.h | 2 +- 1 file cha

[PATCH 1/2] usb: xhci: fix uninitialized completion when USB3 port got wrong status

2018-10-21 Thread Aaron Ma
Realtek USB3.0 Card Reader [0bda:0328] reports wrong port status on Cannon lake PCH USB3.1 xHCI [8086:a36d] after resume from S3, after clear port reset it works fine. Since this device is registered on USB3 roothub at boot, when port status reports not superspeed, xhci_get_port_status will call a

Re: [PATCH 2/2] usb: xhci: fix timeout for transition from RExit to U0

2018-10-21 Thread Greg KH
On Mon, Oct 22, 2018 at 01:08:45AM +0800, Aaron Ma wrote: > This definition is used by msecs_to_jiffies in milliseconds. > According to the comments, max rexit timeout should be 20ms. > Align with the comments to properly calculate the delay. > > Verified on Sunrise Point-LP and Cannon Lake. > >

Re: [PATCH 2/2] usb: xhci: fix timeout for transition from RExit to U0

2018-10-21 Thread Aaron Ma
On 10/22/18 2:21 AM, Greg KH wrote: > Can we put the units in the #define itself so that this will be more > obvious in the future? Like XHCI_MAX_REXIT_TIMEOUT_MS? If no other concerns about these 2 patches, I will send V2 of 2nd patch to follow your advice. Thanks, Aaron