[PATCH v2 3/3] ARM: dts: dra7: Add syscon-pllreset syscon to SATA PHY

2015-06-02 Thread Roger Quadros
This register is required to be passed to the SATA PHY driver to workaround errata i783 (SATA Lockup After SATA DPLL Unlock/Relock). Signed-off-by: Roger Quadros rog...@ti.com Signed-off-by: Sekhar Nori nsek...@ti.com --- arch/arm/boot/dts/dra7.dtsi | 1 + 1 file changed, 1 insertion(+) diff

Re: [PATCHv4 03/10] arm/dts: dra7xx: add 'ti,set-rate-parent' for dss_dss_clk

2015-06-02 Thread Tero Kristo
On 06/01/2015 09:23 AM, Tomi Valkeinen wrote: We need set-rate-parent flags for the display's clock path so that the DSS driver can change the clock rate of the PLL. This patchs adds the ti,set-rate-parent flag to 'dss_dss_clk' clock node, which is only a gate clock, allowing the setting of the

Re: [PATCHv4 01/10] arm: dra7: add DESHDCP clock

2015-06-02 Thread Tero Kristo
On 06/01/2015 09:23 AM, Tomi Valkeinen wrote: Add a new Linux clock for DRA7 based SoCs to control DESHDCP clock. Signed-off-by: Tomi Valkeinen tomi.valkei...@ti.com Acked-by: Tero Kristo t-kri...@ti.com --- arch/arm/boot/dts/dra7.dtsi | 5 +

Re: [PATCH 2/3] phy: ti-pipe3: i783 workaround for SATA lockup after dpll unlock/relock

2015-06-02 Thread Roger Quadros
Kishon, On 20/05/15 16:19, Kishon Vijay Abraham I wrote: Hi Roger, On Tuesday 12 May 2015 09:37 PM, Roger Quadros wrote: SATA_PLL_SOFT_RESET bit of CTRL_CORE_SMA_SW_0 must be toggled between a SATA DPLL unlock and re-lock to prevent SATA lockup. Introduce a new DT parameter 'syscon-pllreset'

Re: Please revert 3eea8b5d68c801fec788b411582b803463834752 as it breaks touchscreen on n900.

2015-06-02 Thread Pavel Machek
On Mon 2015-06-01 14:32:13, Dmitry Torokhov wrote: On Mon, Jun 01, 2015 at 11:22:26PM +0200, Maxime Ripard wrote: Hi Dmitry, On Mon, Jun 01, 2015 at 10:47:30AM -0700, Dmitry Torokhov wrote: On Mon, Jun 01, 2015 at 05:21:11PM +0200, Pavel Machek wrote: The

Re: [PATCH 1/7] gpio: omap: fix omap_gpio_free to not clean up irq configuration

2015-06-02 Thread Javier Martinez Canillas
Hello Linus, On Mon, Jun 1, 2015 at 3:11 PM, Linus Walleij linus.wall...@linaro.org wrote: On Fri, May 22, 2015 at 4:35 PM, Grygorii Strashko grygorii.stras...@linaro.org wrote: This patch fixes following issue: - GPIOn is used as IRQ by some dev, for example PCF8575.INT - gpio6.11 - PCFx

Re: [PATCH 2/5] ARM: OMAP2+: DRA7: Add hwmod entries for PWMSS

2015-06-02 Thread Tero Kristo
On 06/01/2015 02:53 PM, Vignesh R wrote: Add hwmod entries for the PWMSS on DRA7. Can you provide some documentation references for this data? I was looking at the TRM and at least the main_clk selection is somewhat unclear to me. -Tero Signed-off-by: Vignesh R vigne...@ti.com ---

Re: [PATCH 3/5] ARM: dts: DRA7: Add TBCLK for PWMSS

2015-06-02 Thread Tero Kristo
On 06/01/2015 02:53 PM, Vignesh R wrote: tbclk is used by ehrpwm to generate PWM waveform on DRA7 SoC. Add Linux clock to control ehrpwm tbclk. Care to add TRM reference here? -Tero Signed-off-by: Vignesh R vigne...@ti.com --- arch/arm/boot/dts/dra7.dtsi | 5 +

Re: [PATCHv4 02/10] CLK: TI: always enable DESHDCP clock

2015-06-02 Thread Tero Kristo
On 06/02/2015 12:49 AM, Tony Lindgren wrote: Hi Mike, Stephen Tero, * Tomi Valkeinen tomi.valkei...@ti.com [150531 23:25]: DESHDCP clock is needed on DRA7 based SoCs to enable the DSS IP. That clock is an odd one, as it is not supposed to be any kind of core clock for DSS, and we don't even

[PATCH] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Jyri Sarha
Find the configured DMA controller by asking for a DMA channel in the probe phase and releasing it right after. The controller device can be found via the dma_chan struct and the controller is recognized from the compatible property of its device node. The patch assumes EDMA if there is no device

Re: Please revert 3eea8b5d68c801fec788b411582b803463834752 as it breaks touchscreen on n900.

2015-06-02 Thread Maxime Ripard
On Mon, Jun 01, 2015 at 02:32:13PM -0700, Dmitry Torokhov wrote: On Mon, Jun 01, 2015 at 11:22:26PM +0200, Maxime Ripard wrote: Hi Dmitry, On Mon, Jun 01, 2015 at 10:47:30AM -0700, Dmitry Torokhov wrote: On Mon, Jun 01, 2015 at 05:21:11PM +0200, Pavel Machek wrote: The

[PATCH] ARM: omap2plus_defconfig: Enable TOUCHSCREEN_PIXCIR

2015-06-02 Thread Roger Quadros
Some of the OMAP based boards e.g. am437x-gp-evm have the Pixcir touch controller. Enable the related device driver. Signed-off-by: Roger Quadros rog...@ti.com --- arch/arm/configs/omap2plus_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/omap2plus_defconfig

[PATCH v2 1/3] phy: ti-pipe3: fix suspend

2015-06-02 Thread Roger Quadros
Relying on PM-ops for shutting down PHY clocks was a bad idea since the users (e.g. PCIe/SATA) might not have been suspended by then. The main culprit for not shutting down the clocks was the stray pm_runtime_get() call in probe. Fix the whole thing in the right way by getting rid of that

[PATCH v2 2/3] phy: ti-pipe3: i783 workaround for SATA lockup after dpll unlock/relock

2015-06-02 Thread Roger Quadros
SATA_PLL_SOFT_RESET bit of CTRL_CORE_SMA_SW_0 must be toggled between a SATA DPLL unlock and re-lock to prevent SATA lockup. Introduce a new DT parameter 'syscon-pllreset' to provide the syscon regmap access to this register which sits in the control module. If the register is not provided we

[PATCH v2 0/3] phy: ti-pipe3: dra7: sata: allow suspend to RAM (core-retention)

2015-06-02 Thread Roger Quadros
Hi, We fix 2 things here to ensure that PHY clocks are disabled during system suspend. 1) Stop relying on pm_runtime ops to disable our clocks as they don't fit in well with the PHY framework usage scenario. This ensures that all clocks are disabled when phy_exit() is called. 2) Implement

Re: [PATCH 2/7] gpio: omap: fix error handling in omap_gpio_irq_type

2015-06-02 Thread Javier Martinez Canillas
Hello Grygorii, On Fri, May 22, 2015 at 4:35 PM, Grygorii Strashko grygorii.stras...@linaro.org wrote: The GPIO bank will be kept powered in case if input parameters are invalid or error occurred in omap_gpio_irq_type. Hence, fix it by ensuring that GPIO bank will be unpowered in case of

Re: [PATCH] ARM: dts: AM35xx: fix system control module clocks

2015-06-02 Thread Tero Kristo
On 06/02/2015 12:26 AM, Paul Walmsley wrote: On Mon, 1 Jun 2015, Tony Lindgren wrote: * Tony Lindgren t...@atomide.com [150601 11:06]: * Paul Walmsley p...@pwsan.com [150601 10:45]: See for example the Build warnings from toolchain, Kernel warnings during boot to userspace, Kernel warnings

Re: Please revert 3eea8b5d68c801fec788b411582b803463834752 as it breaks touchscreen on n900.

2015-06-02 Thread Dmitry Torokhov
On Tue, Jun 02, 2015 at 10:58:45AM -0700, Dmitry Torokhov wrote: On Tue, Jun 02, 2015 at 11:44:47AM +0200, Maxime Ripard wrote: On Mon, Jun 01, 2015 at 02:32:13PM -0700, Dmitry Torokhov wrote: On Mon, Jun 01, 2015 at 11:22:26PM +0200, Maxime Ripard wrote: Hi Dmitry, On Mon, Jun

Re: Regression with AM43xx devices

2015-06-02 Thread Dave Gerlach
On 06/02/2015 02:17 PM, Felipe Balbi wrote: Hi Dave, You commit fabbe6df130a46d5b5e7484b2273d69c4be3012a (ARM: OMAP: AM43xx hwmod: Add data for am43xx emif hwmod) listed below added a new WARNING during boot to all AM43xx-based boards. Full boot logs can be found at [1], but it seems like

Re: Regression with AM43xx devices

2015-06-02 Thread Felipe Balbi
On Tue, Jun 02, 2015 at 02:17:52PM -0500, Felipe Balbi wrote: Hi Dave, You commit fabbe6df130a46d5b5e7484b2273d69c4be3012a (ARM: OMAP: AM43xx hwmod: Add data for am43xx emif hwmod) listed below added a new WARNING during boot to all AM43xx-based boards. Full boot logs can be found at [1],

Re: [PATCH 02/10] ARM: OMAP3: Fix crypto support for HS devices

2015-06-02 Thread Paul Walmsley
On Tue, 26 May 2015, Pali Rohár wrote: Hi Paul, this patch is also for omap2... Can you review it too? On Saturday 28 February 2015 17:24:36 Pavel Machek wrote: On Thu 2015-02-26 14:49:52, Pali Rohár wrote: Register crypto hwmod links only if they are not disabled in DT. If DT

Re: [PATCH 2/2] ARM: dts: am4372: Add emif node

2015-06-02 Thread Felipe Balbi
On Wed, May 06, 2015 at 12:25:33PM -0500, Dave Gerlach wrote: Add node for TI AM4372 EMIF. Signed-off-by: Dave Gerlach d-gerl...@ti.com Tony, this patch fixes the regression I just reported at [1], care to pick this one up ? Tested-by: Felipe Balbi ba...@ti.com Acked-by: Felipe Balbi

Re: [PATCH 1/2] ARM: OMAP: AM43xx hwmod: Add data for am43xx emif hwmod

2015-06-02 Thread Paul Walmsley
On Wed, 6 May 2015, Dave Gerlach wrote: Without a hwmod for am43xx emif use counting for emif clockdomain does not happen correctly so it may be shut off by pm code unintentionally. Signed-off-by: Dave Gerlach d-gerl...@ti.com Thanks, sent upstream for v4.2. - Paul -- To unsubscribe from

Regression with AM43xx devices

2015-06-02 Thread Felipe Balbi
Hi Dave, You commit fabbe6df130a46d5b5e7484b2273d69c4be3012a (ARM: OMAP: AM43xx hwmod: Add data for am43xx emif hwmod) listed below added a new WARNING during boot to all AM43xx-based boards. Full boot logs can be found at [1], but it seems like we should, at least for the merge window, revert

Re: Please revert 3eea8b5d68c801fec788b411582b803463834752 as it breaks touchscreen on n900.

2015-06-02 Thread Dmitry Torokhov
On Tue, Jun 02, 2015 at 11:44:47AM +0200, Maxime Ripard wrote: On Mon, Jun 01, 2015 at 02:32:13PM -0700, Dmitry Torokhov wrote: On Mon, Jun 01, 2015 at 11:22:26PM +0200, Maxime Ripard wrote: Hi Dmitry, On Mon, Jun 01, 2015 at 10:47:30AM -0700, Dmitry Torokhov wrote: On Mon, Jun

Re: Regression with AM43xx devices

2015-06-02 Thread Paul Walmsley
On Tue, 2 Jun 2015, Felipe Balbi wrote: You commit fabbe6df130a46d5b5e7484b2273d69c4be3012a (ARM: OMAP: AM43xx hwmod: Add data for am43xx emif hwmod) listed below added a new WARNING during boot to all AM43xx-based boards. Full boot logs can be found at [1], Speaking of which, could you guys

Re: [PATCH RFC v2 2/7] ASoC: hdmi: Remove obsolete dummy HDMI codec

2015-06-02 Thread Mark Brown
On Tue, May 26, 2015 at 09:59:06PM +0300, Jyri Sarha wrote: -#ifdef CONFIG_OF -static const struct of_device_id hdmi_audio_codec_ids[] = { - { .compatible = linux,hdmi-audio, }, - { } -}; -MODULE_DEVICE_TABLE(of, hdmi_audio_codec_ids); -#endif There is actually a binding document,

Re: [Gta04-owner] [PATCH 5/6] phy: twl4030-usb: add support for reading resistor on ID pin.

2015-06-02 Thread Pavel Machek
On Tue 2015-06-02 16:06:47, Dr. H. Nikolaus Schaller wrote: Hi, Am 02.06.2015 um 15:49 schrieb Kishon Vijay Abraham I kis...@ti.com: Hi, On Tuesday 02 June 2015 03:07 AM, NeilBrown wrote: On Mon, 1 Jun 2015 19:06:52 +0530 Kishon Vijay Abraham I kis...@ti.com wrote: Hi,

Re: [PATCH 2/2] ARM: dts: am4372: Add emif node

2015-06-02 Thread Tony Lindgren
* Felipe Balbi ba...@ti.com [150602 12:26]: On Wed, May 06, 2015 at 12:25:33PM -0500, Dave Gerlach wrote: Add node for TI AM4372 EMIF. Signed-off-by: Dave Gerlach d-gerl...@ti.com Tony, this patch fixes the regression I just reported at [1], care to pick this one up ? OK thanks yes

Re: [PATCH v2] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Jyri Sarha
On 06/02/15 19:16, Misael Lopez Cruz wrote: Jyri, On 06/02/2015 08:49 AM, Jyri Sarha wrote: Find the configured DMA controller by asking for a DMA channel in the probe phase and releasing it right after. The controller device can be found via the dma_chan struct and the controller is

Re: [PATCH RFC v2 1/7] ASoC: core: If component doesn't have of_node use parent's node instead

2015-06-02 Thread Mark Brown
On Tue, May 26, 2015 at 09:59:05PM +0300, Jyri Sarha wrote: If an ASoC component device does not have a device tree node, use its parent's node instead, when looking for a matching DAI based on a device tree reference. Applied, thanks. signature.asc Description: Digital signature

[PATCH v3] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Jyri Sarha
Find the configured DMA controller by asking for a DMA channel in the probe phase and releasing it right after. The controller device can be found via the dma_chan struct and the controller is recognized from the compatible property of its device node. The patch assumes EDMA if there is no device

Re: [Gta04-owner] [PATCH 5/6] phy: twl4030-usb: add support for reading resistor on ID pin.

2015-06-02 Thread Dr. H. Nikolaus Schaller
Hi, Am 02.06.2015 um 22:11 schrieb Pavel Machek pa...@ucw.cz: On Tue 2015-06-02 16:06:47, Dr. H. Nikolaus Schaller wrote: Hi, Am 02.06.2015 um 15:49 schrieb Kishon Vijay Abraham I kis...@ti.com: Hi, On Tuesday 02 June 2015 03:07 AM, NeilBrown wrote: On Mon, 1 Jun 2015 19:06:52 +0530

Re: [PATCH 2/2] ARM: DRA7: hwmod: Fix GPMC from preventing core suspend

2015-06-02 Thread Paul Walmsley
On Tue, 2 Jun 2015, Roger Quadros wrote: GPMC hwmod is flagged as HWMOD_INIT_NO_IDLE so it is kept enabled at boot. If the GPMC driver is not loaded then GPMC will not be idled thus preventing CORE from going idle during suspend. Disable HWMOD_INIT_NO_IDLE and HWMOD_INIT_NO_RESET. The

Re: [PATCH 1/2] ARM: DRA7: hwmod: fix gpmc hwmod

2015-06-02 Thread Paul Walmsley
On Tue, 2 Jun 2015, Roger Quadros wrote: GPMC smart idle is not really broken but it does not support smart idle with wakeup. Fixes: 556708fe8718 (ARM: OMAP: DRA7: hwmod: Make gpmc software supervised as the smart idle is broken) Signed-off-by: Roger Quadros rog...@ti.com Thanks,

Re: [PATCH] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Peter Ujfalusi
On 06/02/2015 01:40 PM, Jyri Sarha wrote: +enum { +MCASP_EDMA = 1, Why start from 1? This is just an implementation detail, for if statement below. Maybe I should restucture for better readability. No need to change if it makes the code flow better. I was just asking. I'm not sure

Re: [PATCH 3/5] ARM: dts: DRA7: Add TBCLK for PWMSS

2015-06-02 Thread Vignesh R
On Tuesday 02 June 2015 01:52 PM, Tero Kristo wrote: On 06/01/2015 02:53 PM, Vignesh R wrote: tbclk is used by ehrpwm to generate PWM waveform on DRA7 SoC. Add Linux clock to control ehrpwm tbclk. Care to add TRM reference here? Ok, I will add the following reference. tbclk is derived

Re: [PATCH] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Peter Ujfalusi
On 06/02/2015 02:11 PM, Jyri Sarha wrote: -switch (mcasp-version) { +ret = -EINVAL; Why? What was the problem with setting the ret in the default case? I would need to have that I three places now for the #else cases, when devicetree tries to configure pcm driver that has not been

[PATCH 0/2] ARM: DRA7: hwmod: fix gpmc hwmod for core-retention

2015-06-02 Thread Roger Quadros
Hi, Disabling GPMC node in device tree prevents core retention on dra7-evm. Fix that by getting rid of HWMOD_INIT_NO_IDLE NO_RESET. Fixup gpmc hwmod as it doesn't support SIDLE_SMART_WKUP. cheers, -roger Roger Quadros (2): ARM: DRA7: hwmod: fix gpmc hwmod ARM: DRA7: hwmod: Fix GPMC from

[PATCH 1/2] ARM: DRA7: hwmod: fix gpmc hwmod

2015-06-02 Thread Roger Quadros
GPMC smart idle is not really broken but it does not support smart idle with wakeup. Fixes: 556708fe8718 (ARM: OMAP: DRA7: hwmod: Make gpmc software supervised as the smart idle is broken) Signed-off-by: Roger Quadros rog...@ti.com --- arch/arm/mach-omap2/omap_hwmod_7xx_data.c | 6 ++ 1

[PATCH 2/2] ARM: DRA7: hwmod: Fix GPMC from preventing core suspend

2015-06-02 Thread Roger Quadros
GPMC hwmod is flagged as HWMOD_INIT_NO_IDLE so it is kept enabled at boot. If the GPMC driver is not loaded then GPMC will not be idled thus preventing CORE from going idle during suspend. Disable HWMOD_INIT_NO_IDLE and HWMOD_INIT_NO_RESET. The only reason HWMOD_INIT_NO_RESET was there was to

Re: [PATCH] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Peter Ujfalusi
On 06/02/2015 11:58 AM, Jyri Sarha wrote: Find the configured DMA controller by asking for a DMA channel in the probe phase and releasing it right after. The controller device can be found via the dma_chan struct and the controller is recognized from the compatible property of its device node.

Re: [PATCHv3 01/27] ARM: OMAP2+: clock: export driver API to setup/get clock features

2015-06-02 Thread Tero Kristo
On 05/29/2015 01:04 AM, Stephen Boyd wrote: On 05/25, Tero Kristo wrote: + +/** + * ti_clk_get_features - get clock driver features flags + * + * Get TI clock driver features description. Returns a pointer + * to the current feature setup. + */ +struct ti_clk_features *ti_clk_get_features(void)

Re: [PATCH 2/5] ARM: OMAP2+: DRA7: Add hwmod entries for PWMSS

2015-06-02 Thread Vignesh R
Hi Tero, On Tuesday 02 June 2015 01:51 PM, Tero Kristo wrote: On 06/01/2015 02:53 PM, Vignesh R wrote: Add hwmod entries for the PWMSS on DRA7. Can you provide some documentation references for this data? I was looking at the TRM and at least the main_clk selection is somewhat unclear to

Re: [PATCH] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Jyri Sarha
On 06/02/15 13:31, Peter Ujfalusi wrote: On 06/02/2015 11:58 AM, Jyri Sarha wrote: Find the configured DMA controller by asking for a DMA channel in the probe phase and releasing it right after. The controller device can be found via the dma_chan struct and the controller is recognized from the

Re: [PATCH] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Jyri Sarha
I missed two comments first time around... On 06/02/15 13:31, Peter Ujfalusi wrote: On 06/02/2015 11:58 AM, Jyri Sarha wrote: Find the configured DMA controller by asking for a DMA channel in the probe phase and releasing it right after. The controller device can be found via the dma_chan

Re: [PATCH] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Mark Brown
On Tue, Jun 02, 2015 at 01:31:28PM +0300, Peter Ujfalusi wrote: On 06/02/2015 11:58 AM, Jyri Sarha wrote: +enum { + MCASP_EDMA = 1, Why start from 1? It's a fairly common style to ensure that zero initialised structures don't have a default value. Don't know if that's the intent here

Re: [Gta04-owner] [PATCH 5/6] phy: twl4030-usb: add support for reading resistor on ID pin.

2015-06-02 Thread Dr. H. Nikolaus Schaller
Hi, Am 02.06.2015 um 15:49 schrieb Kishon Vijay Abraham I kis...@ti.com: Hi, On Tuesday 02 June 2015 03:07 AM, NeilBrown wrote: On Mon, 1 Jun 2015 19:06:52 +0530 Kishon Vijay Abraham I kis...@ti.com wrote: Hi, On Thursday 16 April 2015 01:33 PM, NeilBrown wrote: From: NeilBrown

Re: [PATCH 2/7] gpio: omap: fix error handling in omap_gpio_irq_type

2015-06-02 Thread grygorii.stras...@linaro.org
On 06/02/2015 12:40 PM, Javier Martinez Canillas wrote: Hello Grygorii, On Fri, May 22, 2015 at 4:35 PM, Grygorii Strashko grygorii.stras...@linaro.org wrote: The GPIO bank will be kept powered in case if input parameters are invalid or error occurred in omap_gpio_irq_type. Hence, fix it by

[PATCH v2] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Jyri Sarha
Find the configured DMA controller by asking for a DMA channel in the probe phase and releasing it right after. The controller device can be found via the dma_chan struct and the controller is recognized from the compatible property of its device node. The patch assumes EDMA if there is no device

Re: [PATCH 5/6] phy: twl4030-usb: add support for reading resistor on ID pin.

2015-06-02 Thread Kishon Vijay Abraham I
Hi, On Tuesday 02 June 2015 03:07 AM, NeilBrown wrote: On Mon, 1 Jun 2015 19:06:52 +0530 Kishon Vijay Abraham I kis...@ti.com wrote: Hi, On Thursday 16 April 2015 01:33 PM, NeilBrown wrote: From: NeilBrown ne...@suse.de The twl4030 phy can measure, with low precision, the

Re: [PATCH 02/13] dmaengine: Introduce dma_request_slave_channel_compat_reason()

2015-06-02 Thread Vinod Koul
On Fri, May 29, 2015 at 05:32:50PM +0300, Peter Ujfalusi wrote: On 05/29/2015 01:18 PM, Vinod Koul wrote: On Fri, May 29, 2015 at 11:42:27AM +0200, Geert Uytterhoeven wrote: On Fri, May 29, 2015 at 11:33 AM, Vinod Koul vinod.k...@intel.com wrote: On Tue, May 26, 2015 at 04:25:57PM +0300,

Re: [GIT PULL] ARM: OMAP2+: hwmod code and data changes for v4.2

2015-06-02 Thread Tony Lindgren
* Paul Walmsley p...@pwsan.com [150601 20:24]: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Tony, The following changes since commit e26081808edadfd257c6c9d81014e3b25e9a6118: Linux 4.1-rc4 (2015-05-18 10:13:47 -0700) are available in the git repository at:

Re: [PATCH] ARM: omap2plus_defconfig: Enable TOUCHSCREEN_PIXCIR

2015-06-02 Thread Tony Lindgren
* Roger Quadros rog...@ti.com [150602 02:46]: Some of the OMAP based boards e.g. am437x-gp-evm have the Pixcir touch controller. Enable the related device driver. Signed-off-by: Roger Quadros rog...@ti.com --- arch/arm/configs/omap2plus_defconfig | 1 + 1 file changed, 1 insertion(+)

Re: [PATCH v2] ASoC: davinci-mcasp: Choose PCM driver based on configured DMA controller

2015-06-02 Thread Misael Lopez Cruz
Jyri, On 06/02/2015 08:49 AM, Jyri Sarha wrote: Find the configured DMA controller by asking for a DMA channel in the probe phase and releasing it right after. The controller device can be found via the dma_chan struct and the controller is recognized from the compatible property of its device

[GIT PULL 1/3] omap device tree changes for v4.2, part 2

2015-06-02 Thread Tony Lindgren
The following changes since commit 52dfcbfc94833b0192d439127ee9ff46023cdbb2: ARM: dts: am335x-evm: add mmc3 and wlan definitions to dts (2015-05-21 12:05:59 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap

[GIT PULL 3/3] omap soc changes for v4.2

2015-06-02 Thread Tony Lindgren
The following changes since commit e26081808edadfd257c6c9d81014e3b25e9a6118: Linux 4.1-rc4 (2015-05-18 10:13:47 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.2/soc-pt1-take2 for you to fetch changes up to

[GIT PULL 2/3] omap defconfig changes for v4.2

2015-06-02 Thread Tony Lindgren
The following changes since commit b787f68c36d49bb1d9236f403813641efa74a031: Linux 4.1-rc1 (2015-04-26 17:59:10 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.2/o2_dc for you to fetch changes up to

Re: [PATCHv4 10/10] arm/dts: am57xx-beagle-x15.dts: add HDMI

2015-06-02 Thread Tomi Valkeinen
On 02/06/15 00:51, Tony Lindgren wrote: * Tomi Valkeinen tomi.valkei...@ti.com [150531 23:25]: AM57xx Beagle X15 has a HDMI output. This patch adds the device tree nodes required for HDMI. This one does not seem to apply to linux next, did not look further where it conflicts. Looks like