Re: [PATCH 2/4] ARM: dts: add support for mixer to exynos4

2013-01-28 Thread Tomasz Figa
Hi Rahul, Sylwester, On Monday 28 of January 2013 12:14:38 Rahul Sharma wrote: > On Mon, Jan 28, 2013 at 2:34 AM, Sylwester Nawrocki > > wrote: > > On 01/25/2013 11:39 AM, Rahul Sharma wrote: > >> diff --git a/arch/arm/boot/dts/exynos4.dtsi > >> b/arch/arm/boot/dts/exynos4.dtsi > >> index 6c2c79

Re: [PATCH 1/4] ARM: dts: add support for hdmi to exynos4

2013-01-28 Thread Tomasz Figa
Hi Rahul, On Monday 28 of January 2013 12:25:27 Rahul Sharma wrote: > Hi Thomas, > > On Fri, Jan 25, 2013 at 11:10 PM, Thomas Abraham > > wrote: > > On 25 January 2013 02:39, Rahul Sharma wrote: > >> Signed-off-by: Rahul Sharma > >> > >> Conflicts: > >> arch/arm/mach-exynos/mach-exy

Re: [PATCH 5/6] ARM: dts: Add basic dts include files for Samsung S3C64xx SoCs

2013-01-28 Thread Mark Rutland
On Fri, Jan 25, 2013 at 07:15:48PM +, Kukjin Kim wrote: > Tomasz Figa wrote: > > [...] > > > > Well, the number of CPU types does not grow rapidly. It will be much > > > less than one per SoC -- so keeping the list up to date shouldn't be > > > that much effort. > > > > > > For ARM1176JZF-S,

Re: [PATCH 1/4] ARM: dts: add support for hdmi to exynos4

2013-01-28 Thread Rahul Sharma
Hi Tomasz, On Mon, Jan 28, 2013 at 2:14 PM, Tomasz Figa wrote: > Hi Rahul, > > On Monday 28 of January 2013 12:25:27 Rahul Sharma wrote: >> Hi Thomas, >> >> On Fri, Jan 25, 2013 at 11:10 PM, Thomas Abraham >> >> wrote: >> > On 25 January 2013 02:39, Rahul Sharma > wrote: >> >> Signed-off-by: Ra

[PATCH v4 1/2] usb: phy: samsung: Common out the generic stuff

2013-01-28 Thread Vivek Gautam
Moving register and structure definitions to header file, and keeping the generic functions to be used across multiple PHYs in common file "samsung-usbphy.c". Also renaming the usb 2.0 phy driver to "samsung-usb2.c" Signed-off-by: Vivek Gautam --- Changes from v3: - Using separate config SAMSUN

[PATCH v4 2/2] usb: phy: samsung: Add PHY support for USB 3.0 controller

2013-01-28 Thread Vivek Gautam
Adding PHY driver support for USB 3.0 controller for Samsung's SoCs. Signed-off-by: Vivek Gautam --- Changes from v3: - Making SAMSUNG_USB3PHY dependent on SAMSUNG_USBPHY. - Adding USB_DWC3 to dependencies of SAMSUNG_USB2PHY since dwc3 controller also looks for USB2 type PHY. drivers/usb/

[PATCH 0/4] usb: dwc3/xhci: Enable runtime power management

2013-01-28 Thread Vivek Gautam
This patch-series enables runtime power management on xhci-plat, dwc3-core, dwc3-exynos as well as on samsung-usb3 type PHY. This allows usb 3.0 host ports to be power managed at runtime. We also turn off the PHY ref_clk PLL, which supplies reference clock to USB3 type phy, when ports are not in us

[PATCH 1/4] usb: xhci: Enable runtime pm in xhci-plat

2013-01-28 Thread Vivek Gautam
By enabling runtime pm in this driver is allows users of xhci-plat to enter into runtime pm. This is not full runtime pm support (AKA xhci-plat doesn't actually power anything off when in runtime suspend mode) but just basic enablement. Signed-off-by: Vivek Gautam Signed-off-by: Doug Anderson -

[PATCH 2/4] USB: dwc3: Adjust runtime pm the dwc3 driver to allow runtime suspend

2013-01-28 Thread Vivek Gautam
The current code in the dwc3 probe effectively disables runtime pm from ever working because it calls a get() that was never put() until device removal. Change the runtime pm code to match the standard formula and allow runtime pm to function. Note that this doesn't enable full runtime pm on the

[PATCH 3/4] usb: dwc3: exynos: Enable runtime power management

2013-01-28 Thread Vivek Gautam
Enabling runtime power management on dwc3-exynos to save power and allow its PHY's power to be managed at runtime. Signed-off-by: Vivek Gautam --- drivers/usb/dwc3/dwc3-exynos.c | 47 1 files changed, 47 insertions(+), 0 deletions(-) diff --git a/drive

[PATCH 4/4] usb: phy: samsung: Enable runtime power management on samsung-usb3

2013-01-28 Thread Vivek Gautam
Enabling runtime power management support on samsung-usb3 phy and further adding support to turn off the PHY ref_clk PLL. It thereby requires PHY ref_clk to be switched between internal core clock and external PLL clock. Signed-off-by: Vivek Gautam --- drivers/usb/phy/samsung-usb3.c | 107 +++

Re: [PATCH 2/4] USB: dwc3: Adjust runtime pm the dwc3 driver to allow runtime suspend

2013-01-28 Thread Felipe Balbi
On Mon, Jan 28, 2013 at 05:12:26PM +0530, Vivek Gautam wrote: > The current code in the dwc3 probe effectively disables runtime pm > from ever working because it calls a get() that was never put() until > device removal. Change the runtime pm code to match the standard > formula and allow runtime

Re: [PATCH 3/4] usb: dwc3: exynos: Enable runtime power management

2013-01-28 Thread Felipe Balbi
On Mon, Jan 28, 2013 at 05:12:27PM +0530, Vivek Gautam wrote: > Enabling runtime power management on dwc3-exynos to save > power and allow its PHY's power to be managed at runtime. > > Signed-off-by: Vivek Gautam > --- > drivers/usb/dwc3/dwc3-exynos.c | 47 > ++

Re: [PATCH 3/4] usb: dwc3: exynos: Enable runtime power management

2013-01-28 Thread Vivek Gautam
Hi Balbi, On Mon, Jan 28, 2013 at 5:17 PM, Felipe Balbi wrote: > On Mon, Jan 28, 2013 at 05:12:27PM +0530, Vivek Gautam wrote: >> Enabling runtime power management on dwc3-exynos to save >> power and allow its PHY's power to be managed at runtime. >> >> Signed-off-by: Vivek Gautam >> --- >> dr

Re: [PATCH 4/4] usb: phy: samsung: Enable runtime power management on samsung-usb3

2013-01-28 Thread Felipe Balbi
Hi, On Mon, Jan 28, 2013 at 05:12:28PM +0530, Vivek Gautam wrote: > Enabling runtime power management support on samsung-usb3 phy > and further adding support to turn off the PHY ref_clk PLL. > It thereby requires PHY ref_clk to be switched between internal > core clock and external PLL clock. >

Re: [PATCH 3/4] usb: dwc3: exynos: Enable runtime power management

2013-01-28 Thread Felipe Balbi
Hi, On Mon, Jan 28, 2013 at 05:28:30PM +0530, Vivek Gautam wrote: > >> +static int dwc3_exynos_runtime_resume(struct device *dev) > >> +{ > >> + struct dwc3_exynos *exynos = dev_get_drvdata(dev); > >> + struct platform_device *pdev_dwc = exynos->dwc3; > >> + struct dwc3

Re: [PATCH] drivers: cpufreq: exynos: update related_cpus mask to fix hotplug dump

2013-01-28 Thread Rafael J. Wysocki
On Monday, January 28, 2013 09:45:02 AM Viresh Kumar wrote: > On Thu, Jan 24, 2013 at 9:40 AM, Inderpal Singh > wrote: > > commit "7e6087e595d3...cpufreq: Simplify cpufreq_add_dev()" started using > > related_cpus mask to check if the current cpu is already managed. > > > > With above commit hotpl

Re: [PATCH 3/4] usb: dwc3: exynos: Enable runtime power management

2013-01-28 Thread Vivek Gautam
On Mon, Jan 28, 2013 at 5:42 PM, Felipe Balbi wrote: > Hi, > > On Mon, Jan 28, 2013 at 05:28:30PM +0530, Vivek Gautam wrote: >> >> +static int dwc3_exynos_runtime_resume(struct device *dev) >> >> +{ >> >> + struct dwc3_exynos *exynos = dev_get_drvdata(dev); >> >> + struct platform_dev

Re: [PATCH 3/4] usb: dwc3: exynos: Enable runtime power management

2013-01-28 Thread Felipe Balbi
On Mon, Jan 28, 2013 at 05:57:04PM +0530, Vivek Gautam wrote: > On Mon, Jan 28, 2013 at 5:42 PM, Felipe Balbi wrote: > > Hi, > > > > On Mon, Jan 28, 2013 at 05:28:30PM +0530, Vivek Gautam wrote: > >> >> +static int dwc3_exynos_runtime_resume(struct device *dev) > >> >> +{ > >> >> + struct dwc3

Re: [PATCH] drivers: cpufreq: exynos: update related_cpus mask to fix hotplug dump

2013-01-28 Thread Viresh Kumar
On 28 January 2013 17:56, Rafael J. Wysocki wrote: > So here's a deal: I'll drop "cpufreq: Simplify cpufreq_add_dev()" for now and > you'll generate a new patch that won't cause the WARN_ON() to trigger. OK? :( Or what about set all cpus from policy->cpus into related_cpus in our core code? So,

Re: [PATCH 4/4] usb: phy: samsung: Enable runtime power management on samsung-usb3

2013-01-28 Thread Vivek Gautam
Hi Felipe, On Mon, Jan 28, 2013 at 5:39 PM, Felipe Balbi wrote: > Hi, > > On Mon, Jan 28, 2013 at 05:12:28PM +0530, Vivek Gautam wrote: >> Enabling runtime power management support on samsung-usb3 phy >> and further adding support to turn off the PHY ref_clk PLL. >> It thereby requires PHY ref_c

Re: [PATCH 5/6] ARM: dts: Add basic dts include files for Samsung S3C64xx SoCs

2013-01-28 Thread Dave Martin
On Mon, Jan 28, 2013 at 09:02:40AM +, Mark Rutland wrote: > On Fri, Jan 25, 2013 at 07:15:48PM +, Kukjin Kim wrote: > > Tomasz Figa wrote: > > > > [...] > > > > > > Well, the number of CPU types does not grow rapidly. It will be much > > > > less than one per SoC -- so keeping the list u

Re: [PATCH 4/4] usb: phy: samsung: Enable runtime power management on samsung-usb3

2013-01-28 Thread Felipe Balbi
Hi, On Mon, Jan 28, 2013 at 06:34:15PM +0530, Vivek Gautam wrote: > >> @@ -65,7 +67,22 @@ static u32 samsung_usb3_phy_set_refclk(struct > >> samsung_usbphy *sphy) > >> return reg; > >> } > >> > >> -static int samsung_exynos5_usb3_phy_enable(struct samsung_usbphy *sphy) > >> +/* > >> + * Se

Re: [PATCH] drivers: cpufreq: exynos: update related_cpus mask to fix hotplug dump

2013-01-28 Thread Rafael J. Wysocki
On Monday, January 28, 2013 06:29:35 PM Viresh Kumar wrote: > On 28 January 2013 17:56, Rafael J. Wysocki wrote: > > So here's a deal: I'll drop "cpufreq: Simplify cpufreq_add_dev()" for now > > and > > you'll generate a new patch that won't cause the WARN_ON() to trigger. OK? > > :( > > Or wh

Re: [PATCH 4/4] usb: phy: samsung: Enable runtime power management on samsung-usb3

2013-01-28 Thread Vivek Gautam
Hi Felipe, On Mon, Jan 28, 2013 at 6:37 PM, Felipe Balbi wrote: > Hi, > > On Mon, Jan 28, 2013 at 06:34:15PM +0530, Vivek Gautam wrote: >> >> @@ -65,7 +67,22 @@ static u32 samsung_usb3_phy_set_refclk(struct >> >> samsung_usbphy *sphy) >> >> return reg; >> >> } >> >> >> >> -static int sam

Re: [PATCH 4/4] usb: phy: samsung: Enable runtime power management on samsung-usb3

2013-01-28 Thread Felipe Balbi
On Mon, Jan 28, 2013 at 06:54:42PM +0530, Vivek Gautam wrote: > Hi Felipe, > > > On Mon, Jan 28, 2013 at 6:37 PM, Felipe Balbi wrote: > > Hi, > > > > On Mon, Jan 28, 2013 at 06:34:15PM +0530, Vivek Gautam wrote: > >> >> @@ -65,7 +67,22 @@ static u32 samsung_usb3_phy_set_refclk(struct > >> >> sa

Re: [PATCH 2/4] USB: dwc3: Adjust runtime pm the dwc3 driver to allow runtime suspend

2013-01-28 Thread Vivek Gautam
Hi Felipe, On Mon, Jan 28, 2013 at 5:15 PM, Felipe Balbi wrote: > On Mon, Jan 28, 2013 at 05:12:26PM +0530, Vivek Gautam wrote: >> The current code in the dwc3 probe effectively disables runtime pm >> from ever working because it calls a get() that was never put() until >> device removal. Chang

Re: [PATCH 0/4] Add generic DMA DT binding support

2013-01-28 Thread Vinod Koul
On Fri, Jan 18, 2013 at 05:03:40PM +0530, Padmavathi Venna wrote: > This patch set adds support for generic dma device tree bindings for > Samsung platforms and is dependent on the following patches from > Vinod Koul next branch > 1)of: Add generic device tree DMA helpers > 2)dmaengine: add helper

Re: [PATCH V6 10/10] dmaengine: Fix compilation error in non-DT case

2013-01-28 Thread Vinod Koul
On Fri, Jan 18, 2013 at 05:17:09PM +0530, Padmavathi Venna wrote: > Signed-off-by: Padmavathi Venna > --- > include/linux/dmaengine.h |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h > index 8cd0e25..c88f302 1006

Re: [PATCH 3/4] ARM: dts: Add #dma-cells for generic dma binding support

2013-01-28 Thread Arnd Bergmann
On Friday 18 January 2013, Padmavathi Venna wrote: > diff --git a/Documentation/devicetree/bindings/dma/arm-pl330.txt > b/Documentation/devicetree/bindings/dma/arm-pl330.txt > index 36e27d5..457a233 100644 > --- a/Documentation/devicetree/bindings/dma/arm-pl330.txt > +++ b/Documentation/devicetree

Re: [PATCH 2/4] DMA: PL330: Register the DMA controller with the generic DMA helpers

2013-01-28 Thread Arnd Bergmann
On Friday 18 January 2013, Padmavathi Venna wrote: > + pfi = devm_kzalloc(&adev->dev, sizeof(*pfi), GFP_KERNEL); > + if (!pfi) { > + dev_err(&adev->dev, "unable to allocate mem\n"); > + return -ENOMEM; > + } > + > + pfi->dma_cap = pd->cap_mask; >

Re: [PATCH 1/4] DMA: PL330: Add xlate function

2013-01-28 Thread Arnd Bergmann
On Friday 18 January 2013, Padmavathi Venna wrote: > +struct dma_chan *of_dma_pl330_xlate(struct of_phandle_args *dma_spec, > + struct of_dma *ofdma) > +{ > + int count = dma_spec->args_count; > + struct of_dma_filter_info *info = ofdma->of_

Re: [PATCH 0/4] Add generic DMA DT binding support

2013-01-28 Thread Arnd Bergmann
On Monday 28 January 2013, Vinod Koul wrote: > On Fri, Jan 18, 2013 at 05:03:40PM +0530, Padmavathi Venna wrote: > > This patch set adds support for generic dma device tree bindings for > > Samsung platforms and is dependent on the following patches from > > Vinod Koul next branch > > 1)of: Add gen

[PATCH] Fix compilation error on S3C2440

2013-01-28 Thread Alexey Galakhov
There was a compilation error introduced on Dec 7, 2012 by commit a08485d8fdf6f67ca5f173b68d8f873c574745f2. Combination of CONFIG_CPU_S3C2440 and CONFIG_SND_S3C24XX_I2S caused the following: sound/soc/samsung/s3c24xx-i2s.c: In function 's3c24xx_iis_dev_probe': sound/soc/samsung/s3c24xx-i2s.c:472:2

Re: [PATCH 2/4] DMA: PL330: Register the DMA controller with the generic DMA helpers

2013-01-28 Thread Jon Hunter
On 01/28/2013 08:51 AM, Arnd Bergmann wrote: > On Friday 18 January 2013, Padmavathi Venna wrote: >> + pfi = devm_kzalloc(&adev->dev, sizeof(*pfi), GFP_KERNEL); >> + if (!pfi) { >> + dev_err(&adev->dev, "unable to allocate mem\n"); >> + return -ENOMEM; >> +

Re: [PATCH 2/4] DMA: PL330: Register the DMA controller with the generic DMA helpers

2013-01-28 Thread Arnd Bergmann
On Monday 28 January 2013, Jon Hunter wrote: > On 01/28/2013 08:51 AM, Arnd Bergmann wrote: > > On Friday 18 January 2013, Padmavathi Venna wrote: > >> + pfi = devm_kzalloc(&adev->dev, sizeof(*pfi), GFP_KERNEL); > >> + if (!pfi) { > >> + dev_err(&adev->dev, "unable to allo

Re: [PATCH 1/4] ARM: dts: add support for hdmi to exynos4

2013-01-28 Thread Tomasz Figa
On Monday 28 of January 2013 14:53:10 Rahul Sharma wrote: > Hi Tomasz, > > On Mon, Jan 28, 2013 at 2:14 PM, Tomasz Figa wrote: > > Hi Rahul, > > > > On Monday 28 of January 2013 12:25:27 Rahul Sharma wrote: > >> Hi Thomas, > >> > >> On Fri, Jan 25, 2013 at 11:10 PM, Thomas Abraham > >> > >>

Re: [RFC/PATCH 29/32] usb: gadget: pxa27x_udc: let udc-core manage gadget->dev

2013-01-28 Thread Robert Jarzmik
Felipe Balbi writes: > By simply setting a flag, we can drop some > boilerplate code. > > Signed-off-by: Felipe Balbi > --- > drivers/usb/gadget/pxa27x_udc.c | 9 + Acked-by: Robert Jarzmik And I tested also your patch and it works in my environment. For next patches I'd like to be CCe

Re: [PATCH v4 4/7] ARM: Exynos: allow dt based discovery of mct controller using clocksource_of_init

2013-01-28 Thread Stephen Warren
On 01/21/2013 03:02 AM, Thomas Abraham wrote: > Add entries to __clksrc_of_table so that Exynos MCT controller is discoverable > using call to clocksource_of_init. With this change, it would be appropriate > to > rename the function 'exynos4_timer_init' as 'mct_init' since it aptly > describes >

Re: [PATCH v4 3/7] ARM: Exynos: add device tree support for MCT controller driver

2013-01-28 Thread Stephen Warren
On 01/21/2013 03:02 AM, Thomas Abraham wrote: > Allow the MCT controller base address and interrupts to be obtained from > device tree and remove unused static definitions of these. The non-dt support > for Exynos5250 is removed but retained for Exynos4210 based platforms. Patches 3 and later in t

Re: [PATCH 2/4] DMA: PL330: Register the DMA controller with the generic DMA helpers

2013-01-28 Thread Jon Hunter
On 01/28/2013 12:01 PM, Arnd Bergmann wrote: > On Monday 28 January 2013, Jon Hunter wrote: >> On 01/28/2013 08:51 AM, Arnd Bergmann wrote: >>> On Friday 18 January 2013, Padmavathi Venna wrote: + pfi = devm_kzalloc(&adev->dev, sizeof(*pfi), GFP_KERNEL); + if (!pfi) { +

Re: [PATCH v4 5/5] mmc: dw_mmc: Remove DW_MCI_QUIRK_NO_WRITE_PROTECT

2013-01-28 Thread Chris Ball
Hi Doug, On Mon, Jan 14 2013, Doug Anderson wrote: > The whole bundle of all 5 patches at v4 is here: > http://patchwork.kernel.org/bundle/dianders/mmc_wp/ Thanks, I've pushed all 5 to mmc-next for 3.9 now with the collected ACKs. - Chris. -- Chris Ball One Laptop

[PATCH Resend 0/6] ARM: dts: Add MFC support for Exynos4

2013-01-28 Thread Sachin Kamat
Resending this series after adding support for some Exynos4412 boards (patches 5 and 6) and renaming the patch titles to "ARM: dts: ". This series is based on for-next branch of Kukjin Kim's tree. git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git Sachin Kamat (6): ARM: dts:

[PATCH 1/6] ARM: dts: Update MFC DT binding documentation

2013-01-28 Thread Sachin Kamat
Added an example for bindings for illustration and clarity. Cc: devicetree-disc...@lists.ozlabs.org Cc: Arun Kumar K Signed-off-by: Sachin Kamat --- .../devicetree/bindings/media/s5p-mfc.txt | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/Documenta

[PATCH 2/6] ARM: dts: Add MFC codec support for Exynos4 DT machines

2013-01-28 Thread Sachin Kamat
This patch adds MFC codec support for Exynos4 DT machines. Signed-off-by: Sachin Kamat --- arch/arm/boot/dts/exynos4.dtsi |7 +++ arch/arm/mach-exynos/mach-exynos4-dt.c | 17 + 2 files changed, 24 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/exy

[PATCH 3/6] ARM: dts: Add MFC codec support to SMDKV310 DT

2013-01-28 Thread Sachin Kamat
Added MFC codec support to SMDKV310 DT file. Signed-off-by: Sachin Kamat --- arch/arm/boot/dts/exynos4210-smdkv310.dts |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/exynos4210-smdkv310.dts b/arch/arm/boot/dts/exynos4210-smdkv310.dts index f634907

[PATCH 4/6] ARM: dts: Add MFC codec support to Origen DT

2013-01-28 Thread Sachin Kamat
This patch adds MFC codec support to Origen DT file. Signed-off-by: Sachin Kamat --- arch/arm/boot/dts/exynos4210-origen.dts |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/exynos4210-origen.dts b/arch/arm/boot/dts/exynos4210-origen.dts index f2710

[PATCH 5/6] ARM: dts: Add MFC codec entry to exynos4412-origen DT file

2013-01-28 Thread Sachin Kamat
Added MFC codec entry to exynos4412-origen.dts. Signed-off-by: Sachin Kamat --- arch/arm/boot/dts/exynos4412-origen.dts |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/exynos4412-origen.dts b/arch/arm/boot/dts/exynos4412-origen.dts index 4eba374..d

[PATCH 6/6] ARM: dts: Add MFC codec entry to exynos4412-smdk4412 DT file

2013-01-28 Thread Sachin Kamat
Added MFC DT entry to exynos4412-smdk4412.dts file. Signed-off-by: Sachin Kamat --- arch/arm/boot/dts/exynos4412-smdk4412.dts |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/exynos4412-smdk4412.dts b/arch/arm/boot/dts/exynos4412-smdk4412.dts index

Failure due to missing (Exynos related) pinctrl patch

2013-01-28 Thread Sachin Kamat
Hi Linus, Kukjin, Patch titled "pinctrl: exynos: change PINCTRL_EXYNOS option" (linux-next commit Id: 7452b64d) which is present in linux-next is missing in the mainline kernel. This patch is required along with the patch "gpio: samsung: fix pinctrl condition for exynos and exynos5440" (mainline c

Re: [PATCH V6 04/10] spi: s3c64xx: Modify SPI driver to use generic DMA DT support

2013-01-28 Thread Mark Brown
On Fri, Jan 18, 2013 at 05:17:03PM +0530, Padmavathi Venna wrote: > This patch modifies the SPI driver to use generic dma dt bindings > support. This passes all the required arguments to dma dev request > functon which in turn calls the dma_request_slave_channel or dma__ > request_channel based on

RE: [PATCH 1/2] arm: exynos5: Enable PM generic domain support in Kconfig

2013-01-28 Thread Kukjin Kim
Prasanna Kumar wrote: > > This patch adds support to enable PM generic domains > under Exynos5 family > > Signed-off-by: Prasanna Kumar > --- > arch/arm/mach-exynos/Kconfig |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mac

RE: [PATCH 0/3] ARM:exynos5:power-domain: Save and restore CLK_TOP_SRC3 via clock framework.

2013-01-28 Thread Kukjin Kim
Prasanna Kumar wrote: > > After Suspend-Resume operation of exynos5, CLK_TOP_SRC3 register > modified > while power gating G-scaler and MFC power domains.This is seen only after > suspend and resume. > > The solution to this problem is to save CLK_SRC_TOP3 register and restore > it while powergat

Re: [PATCH v4 2/2] usb: phy: samsung: Add PHY support for USB 3.0 controller

2013-01-28 Thread Vivek Gautam
CC: Doug Anderson On Mon, Jan 28, 2013 at 3:56 PM, Vivek Gautam wrote: > Adding PHY driver support for USB 3.0 controller for Samsung's > SoCs. > > Signed-off-by: Vivek Gautam > --- > > Changes from v3: > - Making SAMSUNG_USB3PHY dependent on SAMSUNG_USBPHY. > - Adding USB_DWC3 to dependencie

RE: [PATCH] Fix compilation error on S3C2440

2013-01-28 Thread Kukjin Kim
Alexey Galakhov wrote: > > There was a compilation error introduced on Dec 7, 2012 > by commit a08485d8fdf6f67ca5f173b68d8f873c574745f2. > Following is better: The commit a08485d8 ("ASoC: Samsung: Do not register samsung audio dma device as pdev") introduced compilation error. > Combination of

RE: Failure due to missing (Exynos related) pinctrl patch

2013-01-28 Thread Kukjin Kim
Sachin Kamat wrote: > > Hi Linus, Kukjin, > > Patch titled "pinctrl: exynos: change PINCTRL_EXYNOS option" > (linux-next commit Id: 7452b64d) which is present in linux-next is > missing in the mainline kernel. This patch is required along with the > patch "gpio: samsung: fix pinctrl condition for

Re: [PATCH V6 03/10] ARM: SAMSUNG: Make dma request compatible to generic dma bindings.

2013-01-28 Thread Mark Brown
On Fri, Jan 18, 2013 at 05:17:02PM +0530, Padmavathi Venna wrote: > This patch make the dma dev request operation compatible for both > DT and non-DT cases. It takes the all the arguments required for > dma_request_slave_channel and dma_request_channel. If the driver > is initiated via DT or non-DT

Re: [PATCH v4 3/4] ARM: Exynos5250: Add clock information for dwc3-exynos

2013-01-28 Thread Vivek Gautam
Hi Tomasz, On Wed, Jan 16, 2013 at 8:35 PM, Vivek Gautam wrote: > Hi Tomasz, > > > On Wed, Jan 16, 2013 at 1:19 PM, Tomasz Figa wrote: >> Hi Vivek, >> >> Don't you need also some clkdev lookup entry to make the clock available >> in the driver? >> > > This clock source we added with a motive of

Re: [PATCH V6 07/10] ASoC: SMDK: WM8994: Add device tree support for machine file

2013-01-28 Thread Mark Brown
On Fri, Jan 18, 2013 at 05:17:06PM +0530, Padmavathi Venna wrote: > +Samsung SMDK audio complex This is just for SMDKs with WM8994. I'll apply but please send a followup patch to clarify this - it'll be a different binding for others like the older boards using WM8580 and WM9713. > +

Re: [PATCH V6 08/10] ARM: dts: Modify SPI nodes according generic DMA DT bindings

2013-01-28 Thread Mark Brown
On Fri, Jan 18, 2013 at 05:17:07PM +0530, Padmavathi Venna wrote: > This patch removes custom way of adding spi dma channels and > adds according to new generic DMA DT bindings. Applied, thanks. signature.asc Description: Digital signature

Re: [PATCH V6 09/10] ASoC: Samsung: Update Kconfig for I2S,SPDIF and PCM audio

2013-01-28 Thread Mark Brown
On Fri, Jan 18, 2013 at 05:17:08PM +0530, Padmavathi Venna wrote: > Update Kconfig file to enable I2S,PCM audio for wm8994 and spdif on all > samsung platforms. Applied, thanks. signature.asc Description: Digital signature

[PATCH 0/1] Adds display-timing node parsing to exynos drm fimd

2013-01-28 Thread Leela Krishna Amudala
This patch adds display-timing node parsing to drm fimd, this depends on the display helper patchset at http://lists.freedesktop.org/archives/dri-devel/2013-January/033998.html Patch is based on branch "exynos-drm-next" at http://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git/ It

[PATCH 1/1] video: drm: exynos: Adds display-timing node parsing using video helper function

2013-01-28 Thread Leela Krishna Amudala
This patch adds display-timing node parsing using video helper function Signed-off-by: Leela Krishna Amudala Tested-by: Vikas Sajjan --- drivers/gpu/drm/exynos/exynos_drm_fimd.c | 31 +++ 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/