Re: [PATCH v10 2/8] ARM: l2c: Refactor the driver to use commit-like interface

2014-12-30 Thread Tomasz Figa
Thanks a lot for investigating this, even before I could look into splitting this. 2014-12-30 3:23 GMT+09:00 Nishanth Menon n...@ti.com: On 12/23/2014 04:48 AM, Marek Szyprowski wrote: -static void l2c310_resume(void) +static void l2c310_configure(void __iomem *base) { - void __iomem

Re: [PATCH 2/3] usb: dwc3: add Fujitsu Specific Glue layer

2014-12-30 Thread Arnd Bergmann
On Monday 29 December 2014 01:52:04 Sneeker Yeh wrote: +static int dwc3_mb86s70_remove_child(struct device *dev, void *unused) +{ + struct platform_device *pdev = to_platform_device(dev); + + of_device_unregister(pdev); + + return 0; +} + +static u64

Re: [PATCH v5 0/4] Fixes for SDIO interrupts for dw_mmc

2014-12-30 Thread Ulf Hansson
On 19 December 2014 at 20:02, Doug Anderson diand...@chromium.org wrote: Ulf, On Fri, Dec 19, 2014 at 2:17 AM, Ulf Hansson ulf.hans...@linaro.org wrote: On 3 December 2014 at 00:42, Doug Anderson diand...@chromium.org wrote: Bing Zhao at Marvell found a problem with dw_mmc where interrupts

Re: [PATCH 1/3] mmc: core: Allow host driver to provide isr for card-detect interrupts.

2014-12-30 Thread Ulf Hansson
On 24 December 2014 at 22:20, NeilBrown ne...@suse.de wrote: One of the reasons omap_hsmmc doesn't use the slot-gpio library is that it has some non-standard functionality in the card-detect interrupt service routine. To make it possible for omap_hsmmc (and maybe others) to be converted to

Re: [PATCH 3/3] ARM: edma: Split up header file to platform_data and API file

2014-12-30 Thread Peter Ujfalusi
On 12/08/2014 02:49 PM, Vinod Koul wrote: On Thu, Nov 27, 2014 at 12:41:31PM +0200, Peter Ujfalusi wrote: include/linux/platform_data/ is not a correct place to keep the API definitions for edma, it is meant to be only for the pdata for the device. Clean up this by moving the API to

Re: [PATCHv2] media: i2c/adp1653: devicetree support for adp1653

2014-12-30 Thread Sakari Ailus
Hi Pavel, Thanks for the patch! A few comments below. On Wed, Dec 24, 2014 at 11:34:34PM +0100, Pavel Machek wrote: We are moving to device tree support on OMAP3, but that currently breaks ADP1653 driver. This adds device tree support, plus required documentation. Signed-off-by: Pavel

Re: [PATCH 2/4] usb: dwc3: gadget: Stop TRB preparation after limit is reached

2014-12-30 Thread Amit Virdi
The only reason why I have not been able to test these fixes on the latest is because the customized webcam gadget is not ported on the latest kernel. There have been a lot of changes in the video framework lately and that is not my area of expertise. So porting the customized webcam gadget

Re: [PATCH v10 2/8] ARM: l2c: Refactor the driver to use commit-like interface

2014-12-30 Thread Nishanth Menon
On 12/30/2014 03:05 AM, Tomasz Figa wrote: Thanks a lot for investigating this, even before I could look into splitting this. 2014-12-30 3:23 GMT+09:00 Nishanth Menon n...@ti.com: On 12/23/2014 04:48 AM, Marek Szyprowski wrote: -static void l2c310_resume(void) +static void

Re: [PATCH 2/4] usb: dwc3: gadget: Stop TRB preparation after limit is reached

2014-12-30 Thread Felipe Balbi
On Tue, Dec 30, 2014 at 08:11:13PM +0530, Amit Virdi wrote: The only reason why I have not been able to test these fixes on the latest is because the customized webcam gadget is not ported on the latest kernel. There have been a lot of changes in the video framework lately and that is not

Re: v3.19-rc1 regression(?) on N900

2014-12-30 Thread Pavel Machek
On Mon 2014-12-29 10:04:46, Tomi Valkeinen wrote: Hi, On 26/12/14 00:21, Aaro Koskinen wrote: ...however, I can confirm that framebuffer is broken: [8.230743] omapfb omapfb: no displays [8.255584] omapfb omapfb: failed to setup omapfb [8.260620] platform omapfb:

Re: [PATCH 2/3] hwmon: Driver for OMAP3 temperature sensor

2014-12-30 Thread Pavel Machek
On Mon 2014-12-29 14:35:55, Nishanth Menon wrote: On 12/29/2014 12:15 PM, Pavel Machek wrote: On Mon 2014-12-29 12:01:03, Nishanth Menon wrote: On Mon, Dec 29, 2014 at 11:52 AM, Grazvydas Ignotas nota...@gmail.com wrote: On Fri, Dec 26, 2014 at 2:34 PM, Sebastian Reichel s...@kernel.org

Re: [PATCH 2/3] hwmon: Driver for OMAP3 temperature sensor

2014-12-30 Thread Pavel Machek
On Mon 2014-12-29 11:04:48, Guenter Roeck wrote: On Mon, Dec 29, 2014 at 07:15:56PM +0100, Pavel Machek wrote: On Mon 2014-12-29 12:01:03, Nishanth Menon wrote: On Mon, Dec 29, 2014 at 11:52 AM, Grazvydas Ignotas nota...@gmail.com wrote: On Fri, Dec 26, 2014 at 2:34 PM, Sebastian

Re: am335x: cpsw: interrupt failure

2014-12-30 Thread Felipe Balbi
Hi, On Mon, Dec 29, 2014 at 11:13:55AM -0600, Felipe Balbi wrote: U-Boot version: 2014.07 Kernel config is omap2plus with enabled USB # cat /proc/version Linux version 3.18.0 (user@user-VirtualBox) (gcc version 4.8.3 20140320 (prerelease) (Sourcery CodeBench Lite

[PATCH] serial: omap_8250: Fix RTS handling

2014-12-30 Thread Peter Hurley
The OMAP3 UART ignores MCR[1] (ie., UART_MCR_RTS) when in autoRTS mode (UPF_HARD_FLOW + CRTSCTS). This makes it impossible for either the serial core or userspace to manually flow control the sender. Disable autoRTS mode when RTS is lowered and restore the previous mode when RTS is raised. Note