RE: [PATCH] ASoC: Samsung: Fix build error

2012-08-10 Thread Kukjin Kim
Sachin Kamat wrote: Fixes the following build error: In file included from arch/arm/mach-exynos/include/mach/dma.h:24:0, from arch/arm/plat-samsung/include/plat/dma-ops.h:17, from arch/arm/plat-samsung/include/plat/dma.h:128, from

RE: [PATCH] ARM: Exynos: Enable DT support by default for Exynos5 SoC

2012-08-10 Thread Kukjin Kim
Sachin Kamat wrote: Since support for Exynos5 SoC based boards is going to be only device tree (DT) based, it makes no sense to provide DT as a user selectable feature in menuconfig (De-selecting it gives no machine record defined linker error). Hence enabling it along with ARCH_EXYNOS5

Re: [PATCH] ASoC: Samsung: Fix build error

2012-08-10 Thread Sachin Kamat
Hi Kukjin, On 10 August 2012 11:33, Kukjin Kim kgene@samsung.com wrote: Sachin Kamat wrote: Fixes the following build error: In file included from arch/arm/mach-exynos/include/mach/dma.h:24:0, from arch/arm/plat-samsung/include/plat/dma-ops.h:17, from

Re: [PATCH v3 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs

2012-08-10 Thread Felipe Balbi
HI, On Fri, Aug 10, 2012 at 11:17:29AM +0530, Praveen Paneri wrote: On Fri, Aug 10, 2012 at 7:03 AM, Joonyoung Shim jy0922.s...@samsung.com wrote: Hi, Praveen. On 08/08/2012 04:40 PM, Praveen Paneri wrote: Changes from v2: Changed the driver filenames to samsung-usbphy Changed

Re: [PATCH v3 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs

2012-08-10 Thread Praveen Paneri
On Fri, Aug 10, 2012 at 11:46 AM, Felipe Balbi ba...@ti.com wrote: HI, On Fri, Aug 10, 2012 at 11:17:29AM +0530, Praveen Paneri wrote: On Fri, Aug 10, 2012 at 7:03 AM, Joonyoung Shim jy0922.s...@samsung.com wrote: Hi, Praveen. On 08/08/2012 04:40 PM, Praveen Paneri wrote: Changes

Re: [PATCH] ARM: Exynos: Enable DT support by default for Exynos5 SoC

2012-08-10 Thread Sachin Kamat
On 10 August 2012 11:44, Kukjin Kim kgene@samsung.com wrote: Sachin Kamat wrote: Since support for Exynos5 SoC based boards is going to be only device tree (DT) based, it makes no sense to provide DT as a user selectable feature in menuconfig (De-selecting it gives no machine record

RE: [PATCH v3 4/5] ARM: S3C64XX: Enabling samsung-usbphy driver

2012-08-10 Thread Anton Tikhomirov
Hi Praveen, -Original Message- From: linux-usb-ow...@vger.kernel.org [mailto:linux-usb- ow...@vger.kernel.org] On Behalf Of Praveen Paneri Sent: Wednesday, August 08, 2012 4:41 PM To: linux-...@vger.kernel.org Cc: devicetree-disc...@lists.ozlabs.org; linux-arm-

[PATCH v4 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs

2012-08-10 Thread Praveen Paneri
Changes from v3: Replaced susbsys_initcall()/module_exit() by module_platform_driver(). Accordingly in the hsotg driver returned -EPROBE_DEFER until phy driver is registered Removed unnecessary devm_usb_put_phy() call from the hsotg driver remove. Changes from v2: Changed the driver filenames to

[PATCH v4 2/5] usb: s3c-hsotg: Adding phy driver support

2012-08-10 Thread Praveen Paneri
Adding the transceiver to hsotg driver. Keeping the platform data for continuing the smooth operation for boards which still uses it Signed-off-by: Praveen Paneri p.pan...@samsung.com --- drivers/usb/gadget/s3c-hsotg.c | 37 +++-- 1 files changed, 27

[PATCH v4 3/5] ARM: S3C64XX: Removing old phy setup code

2012-08-10 Thread Praveen Paneri
This patch removes old phy code from platform side. 'setup-usb-phy.c' will be used for providing transceiver platform data in next patch. Not all of the platform data code is removed as there are others making use of platform_data defined for hsotg. That can be removed once all the SoCs start

[PATCH v4 4/5] ARM: S3C64XX: Enabling samsung-usbphy driver

2012-08-10 Thread Praveen Paneri
Adding platform device for samsung-usbphy driver. Enabling it for s3c64xx based machines using s3c-hsotg. Signed-off-by: Praveen Paneri p.pan...@samsung.com --- arch/arm/mach-s3c64xx/include/mach/map.h |2 + arch/arm/mach-s3c64xx/mach-crag6410.c|4 +++

[PATCH v4 5/5] ARM: Exynos4210: Enabling samsung-usbphy driver

2012-08-10 Thread Praveen Paneri
Adding usbphy node for Exynos4210 along with the platform data. Signed-off-by: Praveen Paneri p.pan...@samsung.com --- arch/arm/boot/dts/exynos4210.dtsi |5 + arch/arm/mach-exynos/include/mach/map.h |1 + arch/arm/mach-exynos/mach-exynos4-dt.c |8

Re: [PATCH v4 1/5] usb: phy: samsung: Introducing usb phy driver for hsotg

2012-08-10 Thread Felipe Balbi
Hi, On Fri, Aug 10, 2012 at 12:40:27PM +0530, Praveen Paneri wrote: This driver uses usb_phy interface to interact with s3c-hsotg. Supports phy_init and phy_shutdown functions to enable/disable phy. Tested with smdk6410 and smdkv310. More SoCs can be brought under later. Signed-off-by:

Re: [PATCH v4 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs

2012-08-10 Thread Felipe Balbi
On Fri, Aug 10, 2012 at 12:40:26PM +0530, Praveen Paneri wrote: Changes from v3: Replaced susbsys_initcall()/module_exit() by module_platform_driver(). Accordingly in the hsotg driver returned -EPROBE_DEFER until phy driver is registered Removed unnecessary devm_usb_put_phy() call from the

Re: [PATCH v4 1/5] usb: phy: samsung: Introducing usb phy driver for hsotg

2012-08-10 Thread Praveen Paneri
On Fri, Aug 10, 2012 at 12:34 PM, Felipe Balbi ba...@ti.com wrote: Hi, On Fri, Aug 10, 2012 at 12:40:27PM +0530, Praveen Paneri wrote: This driver uses usb_phy interface to interact with s3c-hsotg. Supports phy_init and phy_shutdown functions to enable/disable phy. Tested with smdk6410 and

Re: [PATCH v4 1/5] usb: phy: samsung: Introducing usb phy driver for hsotg

2012-08-10 Thread ABRAHAM, KISHON VIJAY
Hi, On Fri, Aug 10, 2012 at 12:40 PM, Praveen Paneri p.pan...@samsung.com wrote: This driver uses usb_phy interface to interact with s3c-hsotg. Supports phy_init and phy_shutdown functions to enable/disable phy. Tested with smdk6410 and smdkv310. More SoCs can be brought under later.

Re: [PATCH v4 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs

2012-08-10 Thread Praveen Paneri
On Fri, Aug 10, 2012 at 12:36 PM, Felipe Balbi ba...@ti.com wrote: On Fri, Aug 10, 2012 at 12:40:26PM +0530, Praveen Paneri wrote: Changes from v3: Replaced susbsys_initcall()/module_exit() by module_platform_driver(). Accordingly in the hsotg driver returned -EPROBE_DEFER until phy driver is

Re: [PATCH v4 1/5] usb: phy: samsung: Introducing usb phy driver for hsotg

2012-08-10 Thread Praveen Paneri
On Fri, Aug 10, 2012 at 12:49 PM, ABRAHAM, KISHON VIJAY kis...@ti.com wrote: Hi, On Fri, Aug 10, 2012 at 12:40 PM, Praveen Paneri p.pan...@samsung.com wrote: This driver uses usb_phy interface to interact with s3c-hsotg. Supports phy_init and phy_shutdown functions to enable/disable phy.

Re: [PATCH v3 4/5] ARM: S3C64XX: Enabling samsung-usbphy driver

2012-08-10 Thread Praveen Paneri
On Fri, Aug 10, 2012 at 12:24 PM, Anton Tikhomirov av.tikhomi...@samsung.com wrote: Hi Praveen, -Original Message- From: linux-usb-ow...@vger.kernel.org [mailto:linux-usb- ow...@vger.kernel.org] On Behalf Of Praveen Paneri Sent: Wednesday, August 08, 2012 4:41 PM To:

Re: [PATCH v4 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs

2012-08-10 Thread Felipe Balbi
On Fri, Aug 10, 2012 at 01:04:48PM +0530, Praveen Paneri wrote: On Fri, Aug 10, 2012 at 12:36 PM, Felipe Balbi ba...@ti.com wrote: On Fri, Aug 10, 2012 at 12:40:26PM +0530, Praveen Paneri wrote: Changes from v3: Replaced susbsys_initcall()/module_exit() by module_platform_driver().

Re: [PATCH 1/2] ARM: S3C64XX: Update configuration for WM5102 module on Cragganmore

2012-08-10 Thread Mark Brown
On Fri, Aug 10, 2012 at 01:56:23PM +0900, Kukjin Kim wrote: Probably, this patch needs following? If you're ok, I will fix build error by above when I apply. Yes, thanks. -- To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in the body of a message to

Re: [PATCH] ASoC: Samsung: Fix build error

2012-08-10 Thread Mark Brown
On Wed, Aug 08, 2012 at 11:34:43AM +0530, Sachin Kamat wrote: Fixes the following build error: In file included from arch/arm/mach-exynos/include/mach/dma.h:24:0, from arch/arm/plat-samsung/include/plat/dma-ops.h:17, Applied, thanks. -- To unsubscribe from this list: send the

RE: [PATCH v3 2/2] ARM: EXYNOS: Add Gscaler device from DT

2012-08-10 Thread Kukjin Kim
Kukjin Kim wrote: Sylwester Nawrocki wrote: On 08/06/2012 08:27 AM, Shaik Ameer Basha wrote: After all this discussion, I can see two possibilities here. 1] If Kukjin Kim is sure about G-Scaler remains unchanged, across all the exynos5 series SoCs, It is fine to go with