Re: [RFC v2] dmaengine: omap-dma: Start DMA without delay for cyclic channels

2013-04-08 Thread Peter Ujfalusi
Russell, On 04/03/2013 01:17 PM, Peter Ujfalusi wrote: cyclic DMA is only used by audio which needs DMA to be started without a delay. If the DMA for audio is started using the tasklet we experience random channel switch (to be more precise: channel shift). Reported-by: Peter Meerwald

[PATCH] omapdss: use devm_clk_get()

2013-04-08 Thread Archit Taneja
Use devm_clk_get() instead of clk_get() for dss, and for outputs hdmi and venc. This reduces reduces code and simplifies error handling. Signed-off-by: Archit Taneja arc...@ti.com --- drivers/video/omap2/dss/dss.c | 18 +++--- drivers/video/omap2/dss/hdmi.c | 16 ++--

Re: [PATCH, RFC, RFT] ARM/dts: omap4-panda: Add pinmux configuration for status leds

2013-04-08 Thread Vincent Stehlé
On 04/05/2013 07:03 PM, Vincent Stehlé wrote: (..) This is tested on PandaBoard ES only for the moment; so I would appreciate any test report on PandaBoard Ax! Hi, I could verify this works fine on PandaBoard A4, too. Would you consider it for merging, please? Best regards, V. -- To

Re: [PATCH v3 2/4] ARM: OMAP4+: PM: Consolidate OMAP4 PM code to re-use it for OMAP5

2013-04-08 Thread Santosh Shilimkar
On Saturday 06 April 2013 03:04 AM, Tony Lindgren wrote: * Santosh Shilimkar santosh.shilim...@ti.com [130405 06:01]: OMAP5 has backward compatible PRCM block and it's programming model is mostly similar to OMAP4. Same is going to be maintained for future OMAP4 based SOCs. Hence consolidate

Re: [PATCH v3 0/4] ARM: OMAP4+: PM: Consolidate code for re-use on OMAP5

2013-04-08 Thread Santosh Shilimkar
On Saturday 06 April 2013 05:12 AM, Kevin Hilman wrote: Santosh Shilimkar santosh.shilim...@ti.com writes: As discussed on list, I split the v2 [1] series into cleanup and OMAP5 support. Thanks. This series contains the clean-up patches. I have rebased on top of Tony's pull request

Re: [PATCH] ARM: OMAP4: PM: fix PM regression introduced by recent clock cleanup

2013-04-08 Thread Kishon Vijay Abraham I
Hi, On Wednesday 13 February 2013 01:58 AM, Paul Walmsley wrote: Commit 17b7e7d33530e2bbd3bdc90f4db09b91cfdde2bb (ARM: OMAP4: clock/hwmod data: start to remove some IP block control clocks) introduced a regression preventing the L3INIT clockdomain of OMAP4 systems from entering idle. This in

Re: [PATCH v4 00/21] ARM: OMAP2+: Adapt to ehci-omap changes for 3.10

2013-04-08 Thread Benoit Cousson
Hi Tony, On 04/05/2013 05:43 PM, Tony Lindgren wrote: * Benoit Cousson b-cous...@ti.com [130405 03:00]: On 04/05/2013 10:30 AM, Benoit Cousson wrote: ... ARM: dts: OMAP4: Add HS USB Host IP nodes ARM: dts: OMAP3: Add HS USB Host IP nodes ARM: dts: omap3-beagle: Add USB Host support

Re: [PATCH 1/3] ARM: dts: Update OMAP3430 SDP NAND and ONENAND properties

2013-04-08 Thread Benoit Cousson
Hi Jon, On 04/08/2013 03:17 AM, Jon Hunter wrote: The GPMC timing properties for device-tree have been updated by adding a -ns or -ps suffix to indicate the units of time the property represents (as suggested by Rob Herring). Therefore, update the timing property names for the OMAP3430 SDP

[PATCH 0/8] staging: ti-soc-thermal: fixes and TODO update

2013-04-08 Thread Eduardo Valentin
Hello Greg, Here is a series of fixes and I am also updating and revising the TODO list. The fixes present in this series are: . Extrapolation rules for OMAP4/5 (have been updated) . Defer probe whenever cpufreq is not ready (Thanks to Keerthy for reporting) . Device removal was checking for

[PATCH 1/8] staging: ti-soc-thermal: update TODO list

2013-04-08 Thread Eduardo Valentin
This patch removes out of the TODO list those already completed. Here is the status and why they are removed: on ti-bandgap.c: -- Add support to hwmon: REMOVED, no need to have hwmon interfaces as the control is done via thermal framework. -- Test every exposed API to userland: DONE, via thermal

[PATCH 2/8] staging: ti-soc-thermal: fix min/max TODO (already done)

2013-04-08 Thread Eduardo Valentin
Min/Max cooling state are defined by registration helper function, if no specific limits are passed. No need to change this code. Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com --- drivers/staging/ti-soc-thermal/ti-thermal-common.c |2 +- 1 files changed, 1 insertions(+), 1

[PATCH 3/8] staging: ti-soc-thermal: Remove TC1/TC2 TODO (already done)

2013-04-08 Thread Eduardo Valentin
TC1/TC2 are not needed anymore, API has been upgraded. This is a TODO left-over. Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com --- drivers/staging/ti-soc-thermal/ti-thermal-common.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git

[PATCH 4/8] staging: ti-soc-thermal: introduce OMAP4430 extrapolation constants

2013-04-08 Thread Eduardo Valentin
This patch defines and utilizes the extrapolation constants for OMAP4430. Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com --- .../staging/ti-soc-thermal/omap4-thermal-data.c|8 drivers/staging/ti-soc-thermal/ti-thermal.h|4 2 files changed, 8

[PATCH 5/8] staging: ti-soc-thermal: update OMAP5 extrapolation rules

2013-04-08 Thread Eduardo Valentin
Update the constants to the correct hotspot extrapolation equation constants. OMAP4 constants are revisited and correct. Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com --- .../staging/ti-soc-thermal/omap5-thermal-data.c|1 - drivers/staging/ti-soc-thermal/ti-thermal.h|

[PATCH 6/8] staging: ti-soc-thermal: remove extrapolation rules from TODO

2013-04-08 Thread Eduardo Valentin
Extrapolation rules have been revisited. Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com --- drivers/staging/ti-soc-thermal/TODO |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/staging/ti-soc-thermal/TODO b/drivers/staging/ti-soc-thermal/TODO index

[PATCH 7/8] staging: ti-soc-thermal: defer probe if cpufreq is not ready

2013-04-08 Thread Eduardo Valentin
When builtin compiled, there is a chance for this driver be probed before cpufreq driver is up and running. In this case, the cpucooling device can be wrong initialized. Thus, this patch makes sure this driver is probed only when cpufreq driver is ready. Whenever there is no cpufreq driver

[PATCH 8/8] staging: ti-soc-thermal: fix device removal

2013-04-08 Thread Eduardo Valentin
While removing, the device needs to unregister the sensor from thermal framework. Before calling the call back the driver needs to check if the call back is registered. This patch fix the check by checking the right callback. Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com ---

Re: [PATCH] spi: spi-omap2-mcspi.c: Add dts for slave device configuration.

2013-04-08 Thread Mark Brown
On Mon, Apr 08, 2013 at 02:18:00PM +0200, Matthias Brugger wrote: 2013/3/26 Matthias Brugger matthias@gmail.com TI omap2 mcspi allows the slave devices to configure the behavior of the SPI master. This patch adds device tree support to the existing options. Any comments on this

Re: [PATCH v5 1/6] drivers: phy: add generic PHY framework

2013-04-08 Thread Kishon Vijay Abraham I
Hi, On Thursday 04 April 2013 05:24 AM, Stephen Warren wrote: On 04/03/2013 06:53 AM, Kishon Vijay Abraham I wrote: The PHY framework provides a set of APIs for the PHY drivers to create/destroy a PHY and APIs for the PHY users to obtain a reference to the PHY with or without using phandle. To

[GIT PULL] remoteproc fixes for 3.9

2013-04-08 Thread Ohad Ben-Cohen
The following changes since commit f6161aa153581da4a3867a2d1a7caf4be19b6ec9: Linux 3.9-rc2 (2013-03-10 16:54:19 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git tags/remoteproc-3.9-fixes for you to fetch changes up to

[GIT PULL] an hwspinlock fix for 3.9

2013-04-08 Thread Ohad Ben-Cohen
The following changes since commit f6161aa153581da4a3867a2d1a7caf4be19b6ec9: Linux 3.9-rc2 (2013-03-10 16:54:19 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git tags/hwspinlock-3.9-fix for you to fetch changes up to

Re: [PATCH] ARM: OMAP4: PM: fix PM regression introduced by recent clock cleanup

2013-04-08 Thread Paul Walmsley
Hi, On Mon, 8 Apr 2013, Kishon Vijay Abraham I wrote: On Wednesday 13 February 2013 01:58 AM, Paul Walmsley wrote: Commit 17b7e7d33530e2bbd3bdc90f4db09b91cfdde2bb (ARM: OMAP4: clock/hwmod data: start to remove some IP block control clocks) introduced a regression preventing the L3INIT

Re: [GIT PULL 1/3] omap non critical fixes for v3.10 merge window

2013-04-08 Thread Arnd Bergmann
On Tuesday 02 April 2013, Tony Lindgren wrote: The following changes since commit 07961ac7c0ee8b546658717034fe692fd12eefa9: Linux 3.9-rc5 (2013-03-31 15:12:43 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap

Re: [RFC PATCH 1/4] retu-mfd: support also Tahvo

2013-04-08 Thread Samuel Ortiz
Hi Aaro, On Thu, Mar 07, 2013 at 04:40:18PM +0200, Aaro Koskinen wrote: Tahvo is a multi-function device on Nokia 770, implementing USB transceiver and charge/battery control. It's so close to Retu that a single driver can support both. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi

Re: [PATCH v3 2/4] ARM: OMAP4+: PM: Consolidate OMAP4 PM code to re-use it for OMAP5

2013-04-08 Thread Tony Lindgren
* Santosh Shilimkar santosh.shilim...@ti.com [130408 03:51]: On Saturday 06 April 2013 03:04 AM, Tony Lindgren wrote: * Santosh Shilimkar santosh.shilim...@ti.com [130405 06:01]: OMAP5 has backward compatible PRCM block and it's programming model is mostly similar to OMAP4. Same is going to

Re: [GIT PULL] OMAP: PM: fixes for v3.10

2013-04-08 Thread Tony Lindgren
* Kevin Hilman khil...@linaro.org [130405 17:14]: Tony, This OMAP PM fixes tag is based on your cleanup-v2 branch due to some dependencies in the series from Santosh you already merged. Kevin The following changes since commit c309f7f46167e85d1aae2fd31f23e7d2b5cdfbe0: Merge

Re: [GIT PULL] OMAP: PM: cpuidle cleanups for v3.10

2013-04-08 Thread Tony Lindgren
* Kevin Hilman khil...@linaro.org [130405 17:17]: Tony, Please pull the following changes for OMAP CPUidle for v3.10. Kevin The following changes since commit 07961ac7c0ee8b546658717034fe692fd12eefa9: Linux 3.9-rc5 (2013-03-31 15:12:43 -0700) are available in the git repository

Re: [GIT PULL 1/3] omap non critical fixes for v3.10 merge window

2013-04-08 Thread Tony Lindgren
* Arnd Bergmann a...@arndb.de [130408 09:29]: On Tuesday 02 April 2013, Tony Lindgren wrote: The following changes since commit 07961ac7c0ee8b546658717034fe692fd12eefa9: Linux 3.9-rc5 (2013-03-31 15:12:43 -0700) are available in the git repository at:

Re: [PATCH v4 00/21] ARM: OMAP2+: Adapt to ehci-omap changes for 3.10

2013-04-08 Thread Tony Lindgren
* Benoit Cousson b-cous...@ti.com [130408 05:11]: Hi Tony, On 04/05/2013 05:43 PM, Tony Lindgren wrote: * Benoit Cousson b-cous...@ti.com [130405 03:00]: On 04/05/2013 10:30 AM, Benoit Cousson wrote: ... ARM: dts: OMAP4: Add HS USB Host IP nodes ARM: dts: OMAP3: Add HS USB

Re: [PATCH] ARM: OMAP4: PM: fix PM regression introduced by recent clock cleanup

2013-04-08 Thread Paul Walmsley
On Mon, 8 Apr 2013, Paul Walmsley wrote: On Mon, 8 Apr 2013, Kishon Vijay Abraham I wrote: On Wednesday 13 February 2013 01:58 AM, Paul Walmsley wrote: Commit 17b7e7d33530e2bbd3bdc90f4db09b91cfdde2bb (ARM: OMAP4: clock/hwmod data: start to remove some IP block control clocks)

Re: [RFC v2] dmaengine: omap-dma: Start DMA without delay for cyclic channels

2013-04-08 Thread Russell King - ARM Linux
On Mon, Apr 08, 2013 at 09:11:04AM +0200, Peter Ujfalusi wrote: Russell, On 04/03/2013 01:17 PM, Peter Ujfalusi wrote: cyclic DMA is only used by audio which needs DMA to be started without a delay. If the DMA for audio is started using the tasklet we experience random channel switch

Re: [PATCHv3] driver: serial: prevent UART console idle on suspend while using no_console_suspend

2013-04-08 Thread Russell King - ARM Linux
On Fri, Apr 05, 2013 at 06:45:33PM +0530, Sourav Poddar wrote: With dt boot, uart wakeup after suspend is non functional while using no_console_suspend in the bootargs. With no_console_suspend used, we should prevent the runtime suspend of the uart port which is getting used as an console.

Re: [RFC v2] dmaengine: omap-dma: Start DMA without delay for cyclic channels

2013-04-08 Thread Tony Lindgren
* Russell King - ARM Linux li...@arm.linux.org.uk [130408 10:15]: On Mon, Apr 08, 2013 at 09:11:04AM +0200, Peter Ujfalusi wrote: Russell, On 04/03/2013 01:17 PM, Peter Ujfalusi wrote: cyclic DMA is only used by audio which needs DMA to be started without a delay. If the DMA for

Re: [GIT PULL 1/3] omap usb platform init changes for v3.10 merge window

2013-04-08 Thread Arnd Bergmann
On Thursday 04 April 2013, Tony Lindgren wrote: b05a674d73e4eb314fa1b6c78e37aef1: usb: phy: nop: Add some parameters to platform data (2013-03-18 11:13:54 +0200) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap

Re: [RFC PATCH 3/3] ARM: OMAP2+: Add command line parameter for debugSS module control

2013-04-08 Thread Tony Lindgren
Hi, * hvaib...@ti.com hvaib...@ti.com [130304 03:40]: From: Vaibhav Hiremath hvaib...@ti.com Currently there is no clean mechanism to control debugSS module and you have to always keep clocks enabled, either, - By enabling it during boot as part of clk_init function. Or - By

Re: [RFC PATCH 0/3] ARM: OMAP2+: Add command line parameter for debugSS module control

2013-04-08 Thread Tony Lindgren
* Hiremath, Vaibhav hvaib...@ti.com [130314 04:33]: From: Hiremath, Vaibhav This patch introduces new kernel parameter omap_debugss_en, which will allow user to control debugSS module enable/disable part during boot-time. In case of OMAP3, the debugSS is part of EMU domain and is

Re: [GIT PULL 2/3] omap timer changes for v3.10 merge window

2013-04-08 Thread Arnd Bergmann
On Thursday 04 April 2013, Tony Lindgren wrote: Clean-up for omap2+ timers from Jon Hunter jon-hun...@ti.com: This series consists mainly of clean-ups for clockevents and clocksource timers on OMAP2+ devices. The most significant change in functionality comes from the 5th patch which is

Re: [GIT PULL 2/3] omap timer changes for v3.10 merge window

2013-04-08 Thread Arnd Bergmann
On Thursday 04 April 2013, Tony Lindgren wrote: arch/arm/mach-omap2/board-cm-t3517.c | 2 +- arch/arm/mach-omap2/board-generic.c | 2 +- arch/arm/mach-omap2/common.h | 3 +- arch/arm/mach-omap2/timer.c | 124 ++- 4 files changed, 66

Re: [GIT PULL 2/3] omap timer changes for v3.10 merge window

2013-04-08 Thread Tony Lindgren
* Arnd Bergmann a...@arndb.de [130408 10:45]: On Thursday 04 April 2013, Tony Lindgren wrote: arch/arm/mach-omap2/board-cm-t3517.c | 2 +- arch/arm/mach-omap2/board-generic.c | 2 +- arch/arm/mach-omap2/common.h | 3 +- arch/arm/mach-omap2/timer.c | 124

Re: [GIT PULL 2/3] omap timer changes for v3.10 merge window

2013-04-08 Thread Tony Lindgren
* Arnd Bergmann a...@arndb.de [130408 10:41]: On Thursday 04 April 2013, Tony Lindgren wrote: Clean-up for omap2+ timers from Jon Hunter jon-hun...@ti.com: This series consists mainly of clean-ups for clockevents and clocksource timers on OMAP2+ devices. The most significant change in

Re: [GIT PULL 3/3] omap gpmc changes for v3.10 merge window

2013-04-08 Thread Arnd Bergmann
On Thursday 04 April 2013, Tony Lindgren wrote: GPMC updates from Jon Hunter jon-hun...@ti.com: Adds GPMC (General Purpose Memory Controller) DT support for NOR flash and Ethernet and includes various GPMC cleans-up and fixes. This series is dependent on commit 7185684 (ARM: OMAP: use

Re: [PATCH 1/2] mfd: twl4030-madc: Add support for raw value in twl4030_madc_conversion

2013-04-08 Thread Tony Lindgren
* Pali Rohár pali.ro...@gmail.com [130404 02:37]: On Sunday 24 March 2013 15:03:29 Pali Rohár wrote: On Saturday 02 March 2013 23:23:05 Pali Rohár wrote: On Friday 15 February 2013 23:56:49 Pali Rohár wrote: Driver twl4030-madc has hardcoded channel types (10 - battery current, 1 -

Re: [PATCH RESEND 1/1] omap4: control: Add the CONTROL_SMART2IO_PADCONF_2 register definition

2013-04-08 Thread Tony Lindgren
* Ruslan Bilovol ruslan.bilo...@ti.com [130313 17:16]: This patch adds missing CONTROL_SMART2IO_PADCONF_2 register definition Sorry for the delay on this one. After looking at these registers, there's no need to define them here. These all relate to pinconf, and these all can now be handled by

Central Linux ARM wiki

2013-04-08 Thread Luis R. Rodriguez
Do we have a central place to centrally document ARM development upstream? I'd like to start using a central place to start documenting things for some stuff I'd like to work on and I don't want to use any vendor specific stuff. Are we go happy with using elinux.org ? If so can we add a reference

Re: [PATCH] ARM: OMAP2+: omap2plus_defconfig: Add support for BMP085 pressure sensor

2013-04-08 Thread Tony Lindgren
* Ruslan Bilovol ruslan.bilo...@ti.com [130218 05:24]: This patch enables BMP085 pressure sensor that can be found on OMAP4 Blaze Tablet development platform Signed-off-by: Ruslan Bilovol ruslan.bilo...@ti.com Thanks adding to omap-for-v3.10/board. Regards, Tony ---

Re: [PATCH] ARM: OMAP: zoom: Use pwm stack for lcd and keyboard backlight

2013-04-08 Thread Tony Lindgren
* Tomi Valkeinen tomi.valkei...@ti.com [130311 05:16]: On 2013-03-11 13:57, Peter Ujfalusi wrote: Use pwm_leds driver for the keyboard light and pwm-backlight for the lcd backlight control (instead of implementing the PWM driver part in the board file). Signed-off-by: Peter Ujfalusi

Re: [PATCH V3 1/2] ARM: OMAP: board-4430sdp: Provide regulator to pwm-backlight

2013-04-08 Thread Tony Lindgren
* Andrew Chew ac...@nvidia.com [130313 15:37]: The pwm-backlight driver now takes a mandatory regulator that is gotten during driver probe. Initialize a dummy regulator to satisfy this requirement. Signed-off-by: Andrew Chew ac...@nvidia.com --- Changed the device name of the backlight

Re: [PATCH] ARM: OMAP: RX-51: add missing regulator supply definitions for lis3lv02d

2013-04-08 Thread Tony Lindgren
* Aaro Koskinen aaro.koski...@iki.fi [130401 13:08]: Add missing regulator definitions for lis3lv02d accelerometer. Fixes the following probe issue: [ 57.737518] lis3lv02d_i2c 3-001d: Failed to get supply 'Vdd': -517 [ 57.747100] i2c 3-001d: Driver lis3lv02d_i2c requests probe deferral

Re: [PATCH] omap2+: Remove useless Makefile line

2013-04-08 Thread Tony Lindgren
* Paul Bolle pebo...@tiscali.nl [130405 03:21]: Merge commit 952414505f55afe5cd6dc004765076aa22b3ed7e (Merge branch 'next/cleanup' of git://git.linaro.org/people/arnd/arm-soc) added references to CONFIG_MACH_PCM049 and board-omap4pcm049.o to this Makefile. But there's no Kconfig symbol

Re: [PATCH v2 RESEND] ARM: OMAP1: fix omap_udc registration

2013-04-08 Thread Tony Lindgren
* Aaro Koskinen aaro.koski...@iki.fi [130401 13:07]: omap_udc platform device is not registered properly anymore: CONFIG_USB_GADGET_OMAP was deleted by 193ab2a6 (usb: gadget: allow multiple gadgets to be built) already in v3.1. Fix by using CONFIG_USB_OMAP instead. Tested on Nokia 770 by

Re: [PATCH V3 1/2] ARM: OMAP: board-4430sdp: Provide regulator to pwm-backlight

2013-04-08 Thread Thierry Reding
On Mon, Apr 08, 2013 at 02:46:24PM -0700, Tony Lindgren wrote: * Andrew Chew ac...@nvidia.com [130313 15:37]: The pwm-backlight driver now takes a mandatory regulator that is gotten during driver probe. Initialize a dummy regulator to satisfy this requirement. Signed-off-by: Andrew

Re: [PATCH 1/1] of/irq: store IRQ trigger/level in struct resource flags

2013-04-08 Thread Rob Herring
On 04/05/2013 02:48 AM, Javier Martinez Canillas wrote: According to Documentation/devicetree/bindings/interrupt-controller/interrupts.txt the #interrupt-cells property of an interrupt-controller is used to define the number of cells needed to specify a single interrupt. A commonly used

Re: [PATCH 1/1] of/irq: store IRQ trigger/level in struct resource flags

2013-04-08 Thread Stephen Warren
On 04/08/2013 04:05 PM, Rob Herring wrote: On 04/05/2013 02:48 AM, Javier Martinez Canillas wrote: According to Documentation/devicetree/bindings/interrupt-controller/interrupts.txt the #interrupt-cells property of an interrupt-controller is used to define the number of cells needed to

Re: [PATCH V3 1/2] ARM: OMAP: board-4430sdp: Provide regulator to pwm-backlight

2013-04-08 Thread Tony Lindgren
* Thierry Reding thierry.red...@avionic-design.de [130408 15:01]: On Mon, Apr 08, 2013 at 02:46:24PM -0700, Tony Lindgren wrote: * Andrew Chew ac...@nvidia.com [130313 15:37]: The pwm-backlight driver now takes a mandatory regulator that is gotten during driver probe. Initialize a dummy

Re: [PATCH] omap2+: Remove useless Makefile line

2013-04-08 Thread Tony Lindgren
* Paul Bolle pebo...@tiscali.nl [130405 03:17]: Commit f41caddbe73f52a42f529d668ce47b4d693fd2c0 (omap2+: Use Kconfig symbol in Makefile instead of obj-y) reorganized this Makefile. But, for some reason, it also added references to CONFIG_MACH_ENCORE and board-omap3encore.o. But there's no

Re: [PATCH 1/1] of/irq: store IRQ trigger/level in struct resource flags

2013-04-08 Thread Javier Martinez Canillas
On 04/09/2013 12:05 AM, Rob Herring wrote: On 04/05/2013 02:48 AM, Javier Martinez Canillas wrote: According to Documentation/devicetree/bindings/interrupt-controller/interrupts.txt the #interrupt-cells property of an interrupt-controller is used to define the number of cells needed to

[GIT PULL] ARM: OMAP: Device Tree for 3.10

2013-04-08 Thread Benoit Cousson
Hi Tony, Please pull the following commits for OMAP Device Tree for v3.10. Note that the branch is based on two other branches: - omap-devel-b-for-3.10 from Paul to get the AM33xx missing hwmod and thus avoid a regression with Santosh's hwmod cleanup including in this DT series [1]. It avoids

Re: [PATCH 1/1] of/irq: store IRQ trigger/level in struct resource flags

2013-04-08 Thread Javier Martinez Canillas
On 04/09/2013 12:16 AM, Stephen Warren wrote: On 04/08/2013 04:05 PM, Rob Herring wrote: On 04/05/2013 02:48 AM, Javier Martinez Canillas wrote: According to Documentation/devicetree/bindings/interrupt-controller/interrupts.txt the #interrupt-cells property of an interrupt-controller is used

Re: [PATCH v4 0/3] ARM: OMAP2+: Export SoC information to userspace using SoC infrastructure

2013-04-08 Thread Tony Lindgren
* Ruslan Bilovol ruslan.bilo...@ti.com [130214 03:59]: Hi, This patch series is an attempt to export some OMAP SoC information (like name, revision etc.) to userspace. The first patch does some unification of OMAP SoC information representation in current sources. Second patch adds exactly

Re: [PATCH] ARM: OMAP4: Enable fix for Cortex-A9 erratas

2013-04-08 Thread Tony Lindgren
* Sricharan R r.sricha...@ti.com [130321 07:46]: This enables the fixes for the below erratas applicable for OMAP4 Socs. 754322: Faulty MMU translations following ASID switch 775420: A data cache maintenance operation which aborts, followed by an ISB, without any DSB in-between,

Re: [PATCH, RFC, RFT] ARM/dts: omap4-panda: Add pinmux configuration for status leds

2013-04-08 Thread Tony Lindgren
* Vincent Stehlé v-ste...@ti.com [130405 10:08]: Add pinmux configuration for the OMAP4 PandaBoard ES status leds. We need to introduce an empty leds_core_pins section in the shared omap4-panda.dts for this, which is only used in the -es case. While at it, fix the heartbeat led for

Re: [GIT PULL] ARM: OMAP: Device Tree for 3.10

2013-04-08 Thread Tony Lindgren
* Benoit Cousson b-cous...@ti.com [130408 15:50]: Hi Tony, Please pull the following commits for OMAP Device Tree for v3.10. Note that the branch is based on two other branches: - omap-devel-b-for-3.10 from Paul to get the AM33xx missing hwmod and thus avoid a regression with Santosh's

Re: [PATCH v2] arm/dts: OMAP3: fix pinctrl-single configuration

2013-04-08 Thread Tony Lindgren
* Christoph Fritz chf.fr...@googlemail.com [130329 09:36]: - Fix 'function-mask' referring to TRM (Omap 36xx) Section 13.4.4: Pad Functional Multiplexing and Configuration. - Fix 'omap3_pmx_wkup' referring to TRM Table 13-6: Wkup Control Module Pad Configuration Register Fields.

Re: [PATCH 1/1] of/irq: store IRQ trigger/level in struct resource flags

2013-04-08 Thread Rob Herring
On 04/08/2013 05:56 PM, Javier Martinez Canillas wrote: On 04/09/2013 12:16 AM, Stephen Warren wrote: On 04/08/2013 04:05 PM, Rob Herring wrote: On 04/05/2013 02:48 AM, Javier Martinez Canillas wrote: According to Documentation/devicetree/bindings/interrupt-controller/interrupts.txt the

[GIT PULL 1/5] omap pm fixes for v3.10 merge window

2013-04-08 Thread Tony Lindgren
The following changes since commit c309f7f46167e85d1aae2fd31f23e7d2b5cdfbe0: Merge branch 'for_3.10/omap_generic_cleanup_v2' of git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux into omap-for-v3.10/cleanup-v2 (2013-03-28 14:45:31 -0700) are available in the git repository at:

Re: AM3517 DaVinci EMAC Ethernet performance issues

2013-04-08 Thread CF Adad
Mugunthan and all, We have essentially proven our theory, but have yet to solve the problem.  Our theory was that the driver was essentially taking a few second nap during transmission, despite there being plenty more work to do.  We further theorized that our custom userspace application was