Re: [PATCH] ARM: EXYNOS4: Add PWM backlight support on Samsung SMDKV310

2011-06-21 Thread JinGoo Han
Hi, Banajit. > -Original Message- > From: linux-samsung-soc-ow...@vger.kernel.org [mailto:linux-samsung-soc- > ow...@vger.kernel.org] On Behalf Of Banajit Goswami > Sent: Wednesday, June 22, 2011 3:41 PM > To: linux-samsung-soc@vger.kernel.org > Cc: kgene@samsung.com; ben-li...@fluff.or

RE: [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx

2011-06-21 Thread Kukjin Kim
Abdoulaye Walsimou GAYE wrote: > > Heiko Stübner wrote: > > The syscore_ops patch from Rafael J. Wysocki introduced some small > > glitches for the S3C24XX cpus resulting in compile errors. > > > > Heiko Stuebner (3): > >Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan > >

[PATCH V5 2/5] ARM: EXYNOS4: Add FIMD resource definition

2011-06-21 Thread Jingoo Han
From: Jonghun Han This patch adds resource definitions for EXYNOS4 FIMD. IRQ and SFR definitions are added. Signed-off-by: Jonghun Han Signed-off-by: Jingoo Han --- arch/arm/mach-exynos4/include/mach/irqs.h |8 arch/arm/mach-exynos4/include/mach/map.h |5 + 2 files chang

[PATCH V5 1/5] ARM: EXYNOS4: Change clock name for FIMD

2011-06-21 Thread Jingoo Han
This patch changes clock name for FIMD from "fimd" to "lcd". Signed-off-by: Jingoo Han --- arch/arm/mach-exynos4/clock.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-exynos4/clock.c b/arch/arm/mach-exynos4/clock.c index 871f9d5..12e6853 100644 --- a/a

[PATCH V5 5/5] ARM: EXYNOS4: Add platform data for EXYNOS4 FIMD and LTE480WV platform-lcd

2011-06-21 Thread Jingoo Han
From: Jonghun Han This patch adds support EXYNOS4 FIMD0 and LTE480WV LCD pannel. Signed-off-by: Jonghun Han Signed-off-by: Jingoo Han --- arch/arm/mach-exynos4/mach-smdkc210.c | 114 + arch/arm/mach-exynos4/mach-smdkv310.c | 114 ++

[PATCH V5 3/5] ARM: EXYNOS4: Add platform device and helper functions for FIMD

2011-06-21 Thread Jingoo Han
From: Jonghun Han This patch adds platform device s5p_device_fimd0 for EXYNOS4 FIMD0. EXYNOS4 has two FIMDs(FIMD0, FIMD1). FIMD1 will be added later. Some definitions used to enable EXYNOS4 FIMD0 are added. Signed-off-by: Jonghun Han Signed-off-by: Jingoo Han --- arch/arm/mach-exynos4/Kconfig

[PATCH V5 4/5] video: s3c-fb: Add support EXYNOS4 FIMD

2011-06-21 Thread Jingoo Han
This patch adds struct s3c_fb_driverdata s3c_fb_data_exynos4 for EXYNOS4 and adds lcd clock gating support. FIMD driver needs two clocks for FIMD IP and LCD pixel clock. Previously, both clocks are provided by using bus clock such as HCLK. However, EXYNOS4 can not select HCLK for LCD pixel clock b

[PATCH V5 0/5] ARM: EXYNOS4: Add support EXYNOS4 FIMD

2011-06-21 Thread JinGoo Han
This patch series is based on the latest git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git This was originally submitted by Jonghun Han http://www.spinics.net/lists/arm-kernel/msg101781.html This patch adds support FIMD(Fully Interactive Mobile Display) on Exynos4. The 4th patch is

[PATCH] ARM: EXYNOS4: Add PWM backlight support on Samsung SMDKV310

2011-06-21 Thread Banajit Goswami
This patch adds support for LCD backlight using PWM timer for Samsung SMDKV310 board. Signed-off-by: Banajit Goswami --- arch/arm/mach-exynos4/Kconfig |1 + arch/arm/mach-exynos4/mach-smdkv310.c | 43 + 2 files changed, 44 insertions(+), 0 deletions(

Re: [PATCH v2 4/4] Exynos4 NURI: support for NTC thermistor

2011-06-21 Thread MyungJoo Ham
On Tue, Jun 21, 2011 at 7:50 PM, Mark Brown wrote: > On Tue, Jun 21, 2011 at 11:07:13AM +0900, MyungJoo Ham wrote: > >> +#include > > This doesn't appear to be in mainline. Right, not just yet. I should've added comment about the patch just being applied to "next". I've added it as it was told

RE: [PATCH 0/3] ARM: Exynos4: Universal C210 machine update

2011-06-21 Thread Kukjin Kim
Marek Szyprowski wrote: > > Hello, > > This is a short patch series that updates device definitions for > Universal C210 board. The series is based on kgene/for-next kernel tree. > > Best regards > -- > Marek Szyprowski > Samsung Poland R&D Center > > > Marek Szyprowski (3): > ARM: Exynos4:

Re: [RFC][PATCH 4/5] ARM: S5P64x0: Adding OTG PHY control code

2011-06-21 Thread Kyungmin Park
On Tue, Jun 21, 2011 at 4:03 PM, wrote: > From: Praveen Paneri > > A generic method to initialize and exit OTG PHY which can be > used for all the samsung SoCs. > OTG platdata structure added in platform to pass required > platform specific functions and data to the driver. > > Signed-off-by: Pr

[PATCH V4 5/5] ARM: EXYNOS4: Add platform data for EXYNOS4 FIMD and LTE480WV platform-lcd

2011-06-21 Thread JinGoo Han
From: Jonghun Han This patch adds support EXYNOS4 FIMD0 and LTE480WV LCD pannel. Signed-off-by: Jonghun Han Signed-off-by: Jingoo Han --- arch/arm/mach-exynos4/mach-smdkc210.c | 114 + arch/arm/mach-exynos4/mach-smdkv310.c | 114 ++

[PATCH V4 4/5] video: s3c-fb: Add support EXYNOS4 FIMD

2011-06-21 Thread JinGoo Han
This patch adds struct s3c_fb_driverdata s3c_fb_data_exynos4 for EXYNOS4 and adds lcd clock gating support. FIMD driver needs two clocks for FIMD IP and LCD pixel clock. Previously, both clocks are provided by using bus clock such as HCLK. However, EXYNOS4 can not select HCLK for LCD pixel clock b

[PATCH V4 3/5] ARM: EXYNOS4: Add platform device and helper functions for FIMD

2011-06-21 Thread JinGoo Han
From: Jonghun Han This patch adds platform device s5p_device_fimd0 for EXYNOS4 FIMD0. EXYNOS4 has two FIMDs(FIMD0, FIMD1). FIMD1 will be added later. Some definitions used to enable EXYNOS4 FIMD0 are added. Signed-off-by: Jonghun Han Signed-off-by: Jingoo Han --- arch/arm/mach-exynos4/Kconfig

[PATCH V4 2/5] ARM: EXYNOS4: Add FIMD resource definition

2011-06-21 Thread JinGoo Han
From: Jonghun Han This patch adds resource definitions for EXYNOS4 FIMD. IRQ and SFR definitions are added. Signed-off-by: Jonghun Han Signed-off-by: Jingoo Han --- arch/arm/mach-exynos4/include/mach/irqs.h |8 arch/arm/mach-exynos4/include/mach/map.h |5 + 2 files chang

Re: [PATCH v2 1/4] Exynos4 NURI: configure regulators and PMIC

2011-06-21 Thread Tushar Behera
On Wednesday 22 June 2011 08:01 AM, MyungJoo Ham wrote: On Tue, Jun 21, 2011 at 2:33 PM, Tushar Behera wrote: On Tuesday 21 June 2011 07:37 AM, MyungJoo Ham wrote: Signed-off-by: MyungJoo Ham Signed-off-by: Kyungmin Park -- Changes from v1. Thanks so much for your valuable comments, Mark. -

[PATCH V4 1/5] ARM: EXYNOS4: Change clock name for FIMD

2011-06-21 Thread JinGoo Han
This patch changes clock name for FIMD from "fimd" to "lcd". Signed-off-by: Jingoo Han --- arch/arm/mach-exynos4/clock.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-exynos4/clock.c b/arch/arm/mach-exynos4/clock.c index 871f9d5..12e6853 100644 --- a/a

[PATCH V4 0/5] ARM: EXYNOS4: Add support EXYNOS4 FIMD

2011-06-21 Thread JinGoo Han
This patch series is based on the latest git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git This was originally submitted by Jonghun Han http://www.spinics.net/lists/arm-kernel/msg101781.html This patch adds support FIMD(Fully Interactive Mobile Display) on Exynos4. The 4th patch is

Re: [PATCH v2 1/5] Samsung SoC ADC: use regulator (VDD for ADC).

2011-06-21 Thread MyungJoo Ham
On Tue, Jun 21, 2011 at 7:43 PM, Mark Brown wrote: > On Tue, Jun 21, 2011 at 10:58:43AM +0900, MyungJoo Ham wrote: > >> +     ret = regulator_enable(adc->vdd); >> +     if (!ret) >> +             goto err_ioremap; >> + > > This test looks the wrong way round?  regulator_enable() should return 0 >

Re: [PATCH v2 1/4] Exynos4 NURI: configure regulators and PMIC

2011-06-21 Thread MyungJoo Ham
On Tue, Jun 21, 2011 at 8:49 PM, Tushar Behera wrote: > On Tuesday 21 June 2011 04:40 PM, Mark Brown wrote: >> >> On Tue, Jun 21, 2011 at 11:03:12AM +0530, Tushar Behera wrote: >> >>> Will it be possible to move PMIC specific defines to a common file >>> and make appropriate calls in the board-spe

Re: [PATCH v2 1/4] Exynos4 NURI: configure regulators and PMIC

2011-06-21 Thread MyungJoo Ham
On Tue, Jun 21, 2011 at 2:33 PM, Tushar Behera wrote: > On Tuesday 21 June 2011 07:37 AM, MyungJoo Ham wrote: >> >> Signed-off-by: MyungJoo Ham >> Signed-off-by: Kyungmin Park >> >> -- >> Changes from v1. Thanks so much for your valuable comments, Mark. >> - Removed unnecessary initialization data

RE: [RFC][PATCH 0/5] USB: DWC OTG: Add dwc_otg driver for S5P6440 samsung SoC.

2011-06-21 Thread Marek Szyprowski
Hello, On Tuesday, June 21, 2011 2:36 PM Praveen Paneri wrote: > On Tue, Jun 21, 2011 at 4:21 PM, PRAVEEN PANERI > wrote: > Hi, > > > > Hello, > > > > On Tuesday, June 21, 2011 9:04 AM p.pan...@samsung.com wrote: > > > > > From: Praveen Paneri > > > > > > These patches modify DWC OTG driver for

Re: [RFC][PATCH 4/5] ARM: S5P64x0: Adding OTG PHY control code

2011-06-21 Thread Russell King - ARM Linux
On Tue, Jun 21, 2011 at 05:56:05PM +0530, Praveen Paneri wrote: > Hi, > > On Tue, Jun 21, 2011 at 4:20 PM, PRAVEEN PANERI wrote: Err, that attributation is wrong. > > On Tue, Jun 21, 2011 at 12:33:46PM +0530, p.pan...@samsung.com wrote: > > > +#include > > > +#include > > > +#include > > > +#in

Re: [RFC][PATCH 0/5] USB: DWC OTG: Add dwc_otg driver for S5P6440 samsung SoC.

2011-06-21 Thread Praveen Paneri
Hi, On Tue, Jun 21, 2011 at 4:21 PM, PRAVEEN PANERI wrote: Hi, > > Hello, > > On Tuesday, June 21, 2011 9:04 AM p.pan...@samsung.com wrote: > > > From: Praveen Paneri > > > > These patches modify DWC OTG driver for ARM and add it for ARM based SoCs. > > Currently it has been tested for Samsung's

Re: [RFC][PATCH 4/5] ARM: S5P64x0: Adding OTG PHY control code

2011-06-21 Thread Praveen Paneri
Hi, On Tue, Jun 21, 2011 at 4:20 PM, PRAVEEN PANERI wrote: > > On Tue, Jun 21, 2011 at 12:33:46PM +0530, p.pan...@samsung.com wrote: > > +#include > > +#include > > +#include > > +#include > > +#include > > +#include > > +#include > > linux/gpio.h please. will change it Thanks Paneri > > > > > >

Re: [RFC][PATCH 3/5] ARM: SAMSUNG: Adding IO mapping for OTG PHY.

2011-06-21 Thread Praveen Paneri
Hi, On Tue, Jun 21, 2011 at 4:48 PM, Banajit Goswami wrote: > Hi Praveen, > > On Tue, Jun 21, 2011 at 12:33 PM, wrote: >> >> From: Praveen Paneri >> >> Adding virtual addresses for OTG PHY. >> >> Signed-off-by: Praveen Paneri >> --- >>  arch/arm/mach-s5p64x0/cpu.c |    5 + >>  1 files chan

Re: [RFC][PATCH 2/5] ARM: SAMSUNG: Changing the build condition of OTG platform device for samsung.

2011-06-21 Thread Sergei Shtylyov
Hello. On 21-06-2011 15:49, Felipe Balbi wrote: From: Praveen Paneri Adding dwc driver name in existing platform device to probe DWC OTG driver. Introduced otg_set_platdata function to pass platform data Added selectable config option to add DWC OTG driver for different machines. Signed-o

Re: [RFC][PATCH 1/5] USB: DWC OTG: Modification in DWC OTG driver for ARM based SoCs.

2011-06-21 Thread Praveen Paneri
Hi, On Tue, Jun 21, 2011 at 4:18 PM, PRAVEEN PANERI wrote: > > Hi, > > On Tue, Jun 21, 2011 at 12:33:43PM +0530, p.pan...@samsung.com wrote: > > From: Praveen Paneri > > > > This patch modifies DWC OTG for ARM based SoCs. Currently it has > > been tested for Samsung S5P6440. Can easily be built f

Re: [PATCH v2 1/4] Exynos4 NURI: configure regulators and PMIC

2011-06-21 Thread Mark Brown
On Tue, Jun 21, 2011 at 05:19:14PM +0530, Tushar Behera wrote: > On Tuesday 21 June 2011 04:40 PM, Mark Brown wrote: >> If the board is similar enough in design to be sharing the PMIC code >> that sounds like it should be sharing a lot more of the board setup >> code. > Origen board details can b

Re: [RFC][PATCH 2/5] ARM: SAMSUNG: Changing the build condition of OTG platform device for samsung.

2011-06-21 Thread Felipe Balbi
Hi, On Tue, Jun 21, 2011 at 05:20:25PM +0530, Praveen Paneri wrote: > > > @@ -37,7 +39,12 @@ static struct resource s3c_usb_hsotg_resources[] = { > > >  static u64 s3c_hsotg_dmamask = DMA_BIT_MASK(32); > > > > > >  struct platform_device s3c_device_usb_hsotg = { > > > +#ifdef CONFIG_S3C_DEV_USB_HS

Re: [RFC][PATCH 2/5] ARM: SAMSUNG: Changing the build condition of OTG platform device for samsung.

2011-06-21 Thread Praveen Paneri
Hi, On Tue, Jun 21, 2011 at 4:17 PM, PRAVEEN PANERI wrote: > > Hi, > > On Tue, Jun 21, 2011 at 12:33:44PM +0530, p.pan...@samsung.com wrote: > > From: Praveen Paneri > > > > Adding dwc driver name in existing platform device > > to probe DWC OTG driver. > > Introduced otg_set_platdata function to

Re: [RFC][PATCH 2/5] ARM: SAMSUNG: Changing the build condition of OTG platform device for samsung.

2011-06-21 Thread Felipe Balbi
Hi, On Tue, Jun 21, 2011 at 03:47:04PM +0400, Sergei Shtylyov wrote: > Hello. > > On 21-06-2011 11:03, p.pan...@samsung.com wrote: > > >From: Praveen Paneri > > >Adding dwc driver name in existing platform device > >to probe DWC OTG driver. > >Introduced otg_set_platdata function to pass platfo

Re: [PATCH v2 1/4] Exynos4 NURI: configure regulators and PMIC

2011-06-21 Thread Tushar Behera
On Tuesday 21 June 2011 04:40 PM, Mark Brown wrote: On Tue, Jun 21, 2011 at 11:03:12AM +0530, Tushar Behera wrote: Will it be possible to move PMIC specific defines to a common file and make appropriate calls in the board-specific file? In that way, we can re-use this PMIC code on some other

Re: [RFC][PATCH 2/5] ARM: SAMSUNG: Changing the build condition of OTG platform device for samsung.

2011-06-21 Thread Sergei Shtylyov
Hello. On 21-06-2011 11:03, p.pan...@samsung.com wrote: From: Praveen Paneri Adding dwc driver name in existing platform device to probe DWC OTG driver. Introduced otg_set_platdata function to pass platform data Added selectable config option to add DWC OTG driver for different machines.

Re: [PATCH 6/6] arm: exynos4: Add a new Exynos4 device tree enabled machine

2011-06-21 Thread Thomas Abraham
On 20 June 2011 22:25, Grant Likely wrote: >> + >> +static const struct of_dev_auxdata exynos4_auxdata_lookup[] __initconst = { >> +       OF_DEV_AUXDATA("samsung,s3c-sdhci", EXYNOS4_PA_HSMMC(2), >> +                               "s3c-sdhci.2", &s3c_hsmmc2_def_platdata), >> +       OF_DEV_AUXD

[PATCH v2 3/3] ARM: EXYNOS4: Add EPLL clock operations

2011-06-21 Thread Naveen Krishna Chatradhi
S5PV210 and EXYNOS4 uses similar PLL(PLL46XX) for EPLL. So, The EPLL set rate function is duplicated. Note: Moved common code to plat-s5p, as commented by Kukjin Kim. Signed-off-by: Naveen Krishna Chatradhi --- arch/arm/mach-exynos4/clock.c|1 + arch/arm/mach-s5pv210/clock.c

[PATCH v2 2/3] ARM: EXYNOS4: Add sclk_spdif clocks.

2011-06-21 Thread Naveen Krishna Chatradhi
Add the sclk_spdif clock is of type 'struct clksrc_clk' clock. Also, add clk_spdifextclk clocks of type 'struct clk' clock. Signed-off-by: Naveen Krishna Chatradhi --- arch/arm/mach-exynos4/clock.c | 35 +++ 1 files changed, 35 insertions(+), 0 deletions(-) dif

[PATCH v2 1/3] ARM: Samsung: Move duplicate code

2011-06-21 Thread Naveen Krishna Chatradhi
Move the duplicated code for SPDIF ops from S5PV210 and S5PC100. So, the same can be used in EXYNOS4. Signed-off-by: Naveen Krishna Chatradhi --- Note: Moved common code to plat-s5p, as suggested by Kukjin Kim. arch/arm/mach-s5pc100/clock.c | 37 +--- arch

[PATCH V2 0/3] ARM: Add SPDIF support for EXYNOS4

2011-06-21 Thread Naveen Krishna Chatradhi
o To Kukjin Kim, Sangbeom Kim, Jassi Brar and Seungwhan Youn [PATCH v2 1/3] ARM: Samsung: Move duplicate code o This is a prerequisite for 2/3 and 3/3 patches thus mentioned as "v2". [PATCH v2 2/3] ARM: EXYNOS4: Add sclk_spdif clocks. o v1 patch is https://patchwork.kernel.org/patch/867882/ [PA

Re: [PATCH 2/6] serial: samsung: Add device tree support for s5pv210 uart driver

2011-06-21 Thread Mark Brown
On Mon, Jun 20, 2011 at 10:43:50AM -0600, Grant Likely wrote: > I think I've commented on this before, but I do try to avoid direct > coding registers into the DT. That said, sometimes there really isn't > a nice human-friendly way of encoding things and direct register > values is the best appro

Re: [PATCH 2/6] serial: samsung: Add device tree support for s5pv210 uart driver

2011-06-21 Thread Thomas Abraham
Hi Grant, On 20 June 2011 22:13, Grant Likely wrote: > > For custom properties, you should prefix the property name with 'samsung,'. > > This looks very much like directly encoding the Linux flags into the > device tree.  The binding should be completely contained within > itself, and not refer t

Re: [RFC][PATCH 3/5] ARM: SAMSUNG: Adding IO mapping for OTG PHY.

2011-06-21 Thread Banajit Goswami
Hi Praveen, On Tue, Jun 21, 2011 at 12:33 PM, wrote: > > From: Praveen Paneri > > Adding virtual addresses for OTG PHY. > > Signed-off-by: Praveen Paneri > --- >  arch/arm/mach-s5p64x0/cpu.c |    5 + >  1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/mach-s5p64x0/

Re: [PATCH v2 1/4] Exynos4 NURI: configure regulators and PMIC

2011-06-21 Thread Mark Brown
On Tue, Jun 21, 2011 at 11:03:12AM +0530, Tushar Behera wrote: > Will it be possible to move PMIC specific defines to a common file > and make appropriate calls in the board-specific file? > In that way, we can re-use this PMIC code on some other boards (e.g. > Insignal low-cost board Origen feat

Re: [PATCH 1/6] serial: samsung: Keep a copy of platform data in driver's private data

2011-06-21 Thread Thomas Abraham
Hi Grant, On 20 June 2011 21:24, Grant Likely wrote: > On Mon, Jun 20, 2011 at 5:02 AM, Thomas Abraham > wrote: >> The driver depends on pdev->dev.platform_data to retrive information >> about the platform data even after the initialization. To add device >> tree support, this has to be changed

Re: [PATCH v2 1/4] Exynos4 NURI: configure regulators and PMIC

2011-06-21 Thread Mark Brown
On Tue, Jun 21, 2011 at 11:07:10AM +0900, MyungJoo Ham wrote: > Signed-off-by: MyungJoo Ham > Signed-off-by: Kyungmin Park This looks good, though you should also be able to make the supply lists into __initdata. -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in

Re: [PATCH v2 4/4] Exynos4 NURI: support for NTC thermistor

2011-06-21 Thread Mark Brown
On Tue, Jun 21, 2011 at 11:07:13AM +0900, MyungJoo Ham wrote: > +#include This doesn't appear to be in mainline. > +/* NTC Thermistor */ > +static struct platform_device nuri_ncp15wb473_thermistor; > +static int read_thermistor_uV(void) Blank line between these two. > +{ > + static struct

Re: [PATCH v2 1/5] Samsung SoC ADC: use regulator (VDD for ADC).

2011-06-21 Thread Mark Brown
On Tue, Jun 21, 2011 at 10:58:43AM +0900, MyungJoo Ham wrote: > + ret = regulator_enable(adc->vdd); > + if (!ret) > + goto err_ioremap; > + This test looks the wrong way round? regulator_enable() should return 0 on success but this will treat that as an error. > static int

RE: [RFC][PATCH 0/5] USB: DWC OTG: Add dwc_otg driver for S5P6440 samsung SoC.

2011-06-21 Thread Marek Szyprowski
Hello, On Tuesday, June 21, 2011 9:04 AM p.pan...@samsung.com wrote: > From: Praveen Paneri > > These patches modify DWC OTG driver for ARM and add it for ARM based SoCs. > Currently it has been tested for Samsung's S5P6440. The development is > still > under process so these are not the best s

Re: [RFC][PATCH 4/5] ARM: S5P64x0: Adding OTG PHY control code

2011-06-21 Thread Russell King - ARM Linux
On Tue, Jun 21, 2011 at 12:33:46PM +0530, p.pan...@samsung.com wrote: > +#include > +#include > +#include > +#include > +#include > +#include > +#include linux/gpio.h please. -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majord..

Re: [RFC][PATCH 4/5] ARM: S5P64x0: Adding OTG PHY control code

2011-06-21 Thread Felipe Balbi
Hi, On Tue, Jun 21, 2011 at 12:33:46PM +0530, p.pan...@samsung.com wrote: > From: Praveen Paneri > > A generic method to initialize and exit OTG PHY which can be > used for all the samsung SoCs. > OTG platdata structure added in platform to pass required > platform specific functions and data to

Re: [RFC][PATCH 1/5] USB: DWC OTG: Modification in DWC OTG driver for ARM based SoCs.

2011-06-21 Thread Felipe Balbi
Hi, On Tue, Jun 21, 2011 at 12:33:43PM +0530, p.pan...@samsung.com wrote: > From: Praveen Paneri > > This patch modifies DWC OTG for ARM based SoCs. Currently it has > been tested for Samsung S5P6440. Can easily be built for others > as well. > > Following features are tested for basic function

Re: [RFC][PATCH 2/5] ARM: SAMSUNG: Changing the build condition of OTG platform device for samsung.

2011-06-21 Thread Felipe Balbi
Hi, On Tue, Jun 21, 2011 at 12:33:44PM +0530, p.pan...@samsung.com wrote: > From: Praveen Paneri > > Adding dwc driver name in existing platform device > to probe DWC OTG driver. > Introduced otg_set_platdata function to pass platform data > Added selectable config option to add DWC OTG driver f

Re: [PATCH v2 1/5] ARM: EXYNOS4: Change clock name for FIMD

2011-06-21 Thread Sylwester Nawrocki
On 06/21/2011 06:18 AM, JinGoo Han wrote: >>> --+---++ >>> exynos4 | ACLK_160 (fimd) | O | SCLK_FIMD (sclk_fimd)| >>> --++---+ >> ^^^ >> In mach-exynos4/clock.c

Re: [PATCH v2 5/5] ARM: EXYNOS4: Add platform data for EXYNOS4 FIMD and LTE480WV platform-lcd

2011-06-21 Thread Tushar Behera
Hi Jingoo Han, On Tuesday 21 June 2011 09:38 AM, JinGoo Han wrote: > Hi, Tushar Behera. > >> -Original Message- >> From: linux-samsung-soc-ow...@vger.kernel.org [mailto:linux-samsung-soc- >> ow...@vger.kernel.org] On Behalf Of Tushar Behera >> Sent: Tuesday, June 21, 2011 12:47 PM >> To: J