Re: [alsa-devel] [PATCH v2 0/6] Add S/PDIF common driver for Samsung SoCs

2010-10-13 Thread Jassi Brar
On Tue, Oct 12, 2010 at 8:19 PM, Seungwhan Youn sw.y...@samsung.com wrote: Hi, This patch-set is a 2nd version for new S/PDIF common driver that supports S/PDIF PCM audio on S5PC100, S5PC110 and S5PV210. This patch-set is based on two different branches that :-  o ARM patches are based on

RE: [PATCH v2 4/6] ARM: S5P: Add EPLL rate change warning

2010-10-13 Thread Kukjin Kim
Seungwhan Youn wrote: This patch adds warning about changing EPLL rate to notice that other driver that controls H/W, which is using EPLL, will has unknown effects by this EPLL rate change. Signed-off-by: Seungwhan Youn sw.y...@samsung.com --- arch/arm/mach-s5p64x0/clock-s5p6440.c |

RE: [PATCH v2 1/6] ARM: S5P: Reduce duplicated EPLL control codes

2010-10-13 Thread Kukjin Kim
Seungwhan Youn wrote: S5P Samsung SoCs has a EPLL to support various PLL clock sources for other H/W blocks. Until now, to control EPLL, each of SoCs make their own functions in 'mach-s5pxxx/clock.c'. But some of functions, 'xxx_epll_get_rate()' and 'xxx_epll_enable()', are exactly same in

RE: [PATCH v2 3/6] ARM: S5PV210: Add EPLL clock operations

2010-10-13 Thread Kukjin Kim
Seungwhan Youn wrote: This patch adds EPLL specific clock get_rate/set_rate operations on S5PV210. Signed-off-by: Seungwhan Youn sw.y...@samsung.com --- arch/arm/mach-s5pv210/clock.c | 77 + 1 files changed, 77 insertions(+), 0 deletions(-)

Re: [PATCH v2 4/6] ARM: S5P: Add EPLL rate change warning

2010-10-13 Thread Mark Brown
On Wed, Oct 13, 2010 at 04:55:55PM +0900, Kukjin Kim wrote: Seungwhan Youn wrote: This patch adds warning about changing EPLL rate to notice that other driver that controls H/W, which is using EPLL, will has unknown effects by this EPLL rate change. + printk(KERN_WARNING EPLL Rate

RE: [PATCH v2 4/6] ARM: S5P: Add EPLL rate change warning

2010-10-13 Thread Kukjin Kim
Mark Brown wrote: On Wed, Oct 13, 2010 at 04:55:55PM +0900, Kukjin Kim wrote: Seungwhan Youn wrote: This patch adds warning about changing EPLL rate to notice that other driver that controls H/W, which is using EPLL, will has unknown effects by this EPLL rate change. +

Re: [PATCH v2 1/6] ARM: S5P: Reduce duplicated EPLL control codes

2010-10-13 Thread Seungwhan Youn
On Wed, Oct 13, 2010 at 5:05 PM, Kukjin Kim kgene@samsung.com wrote: Seungwhan Youn wrote: S5P Samsung SoCs has a EPLL to support various PLL clock sources for other H/W blocks. Until now, to control EPLL, each of SoCs make their own functions in 'mach-s5pxxx/clock.c'. But some of

[PATCH v3 1/6] ARM: S5P: Reduce duplicated EPLL control codes

2010-10-13 Thread Seungwhan Youn
S5P Samsung SoCs has a EPLL to support various PLL clock sources for other H/W blocks. Until now, to control EPLL, each of SoCs make their own functions in 'mach-s5pxxx/clock.c'. But some of functions, 'xxx_epll_get_rate()' and 'xxx_epll_enable()', are exactly same in all S5P SoCs, so this patch

[PATCH v3 4/6] ARM: S5P: Add EPLL rate change warning

2010-10-13 Thread Seungwhan Youn
This patch adds warning about changing EPLL rate to notice that other driver that controls H/W, which is using EPLL, will has unknown effects by this EPLL rate change. Signed-off-by: Seungwhan Youn sw.y...@samsung.com --- This patch is re-worked to avoid conflict with previous re-worked patch(

[PATCH 1/4] MFC: Changes in include/linux/videodev2.h for MFC 5.1 codec

2010-10-13 Thread Kamil Debski
Add fourcc values for compressed video stream formats and V4L2_CTRL_CLASS_CODEC. Also adds controls used by MFC driver. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- include/linux/videodev2.h | 48

[RFC/PATCH 0/4] Multi Format Codec 5.0 driver for S5PC110 SoC

2010-10-13 Thread Kamil Debski
Hello, == Introduction == The purpose of this RFC is to discuss the driver for a hw video codec embedded in the new Samusng's SoCs. Multi Format Codec 5.0 is able to handle video decoding of in a range of formats. So far no hardware codec was supported in V4L2 and this

[PATCH 2/4] MFC: Add MFC 5.1 driver to plat-s5p

2010-10-13 Thread Kamil Debski
Add platform support for Multi Format Codec 5.1 is a module available on S5PC110 and S5PC210 Samsung SoCs. Hardware is capable of handling a range of video codecs and this driver provides V4L2 interface for video decoding. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin

[PATCH 4/4] s5pc110: Enable MFC 5.1 on Goni

2010-10-13 Thread Kamil Debski
Multi Format Codec 5.1 is a module available on S5PC110 and S5PC210 Samsung SoCs. Hardware is capable of handling a range of video codecs. Signed-off-by: Kamil Debski k.deb...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- arch/arm/mach-s5pv210/Kconfig |1 +

[PATCH 0/2] ARM: SAMSUNG: Add Support Power Domain Control

2010-10-13 Thread Kukjin Kim
This patch adds support Power Domain Control based on Runtim PM. Each Power Domain is represented by a Power Domain device and the devices belong to these Power Domains should be set as a child device of the Power Domain devices. The corresponding drivers of the devices should implement Runtime

[PATCH 1/2] ARM: SAMSUNG: Add support for Power Domain control

2010-10-13 Thread Kukjin Kim
From: Changhwan Youn chaos.y...@samsung.com This patch implements Power Domain control based on Runtime PM framework. Each Power Domain is represented by a Power Domain device and the devices belong to these Power Domains should be set as a child device of the Power Domain devices. The

[PATCH 2/2] ARM: S5PV310: Add support Power Domain

2010-10-13 Thread Kukjin Kim
From: Changhwan Youn chaos.y...@samsung.com This patch adds support Power Domain for S5PV310 and S5PC210. Signed-off-by: Changhwan Youn chaos.y...@samsung.com Signed-off-by: Kukjin Kim kgene@samsung.com --- arch/arm/mach-s5pv310/Kconfig |7 +

[PATCH 2/2] ARM: S5PV310: Support ethernet for SMDKV310 and SMDKC210

2010-10-13 Thread Sangbeom Kim
From: Daein Moon moon9...@samsung.com This patch adds to support ethernet for SMDKV310 and SMDKC210 board. - define smc911x resources - define configurations of smc911x platform data - define platform device smsc911x - initialize srom controller for lan9215 chip Signed-off-by: Daein Moon

[PATCH 1/2] ARM: S5PV310: Add support SROMC

2010-10-13 Thread Sangbeom Kim
From: Daein Moon moon9...@samsung.com This patch adds support SROMC for S5PV310 and S5PC210. Signed-off-by: Daein Moon moon9...@samsung.com Signed-off-by: Sangbeom Kim sbki...@samsung.com --- arch/arm/mach-s5pv310/cpu.c|5 ++ arch/arm/mach-s5pv310/include/mach/map.h

[PATCH 0/2] ARM: S5PV310: Add support ethernet for SMDKV310 and SMDKC210

2010-10-13 Thread Sangbeom Kim
This patch adds support ethernet for SMDKV310 and SMDKC210 boards. NOTE: Depends on EINT and GPIOlib. [PATCH 1/2] ARM: S5PV310: Add support SROMC [PATCH 2/2] ARM: S5PV310: Support ethernet for SMDKV310 and SMDKC210 -- To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in

RE: [PATCH 2/2] ARM: S5PV310: Add support Power Domain

2010-10-13 Thread Marek Szyprowski
Hello, On Wednesday, October 13, 2010 1:47 PM Kukjin Kim wrote: From: Changhwan Youn chaos.y...@samsung.com This patch adds support Power Domain for S5PV310 and S5PC210. Signed-off-by: Changhwan Youn chaos.y...@samsung.com Signed-off-by: Kukjin Kim kgene@samsung.com ---

RE: [PATCH v3 4/6] ARM: S5P: Add EPLL rate change warning

2010-10-13 Thread Kukjin Kim
Seungwhan Youn wrote: This patch adds warning about changing EPLL rate to notice that other driver that controls H/W, which is using EPLL, will has unknown effects by this EPLL rate change. Signed-off-by: Seungwhan Youn sw.y...@samsung.com --- This patch is re-worked to avoid conflict

RE: [PATCH 2/3] ARM: S5PV210: Add init code of audio to Goni and Aquila board

2010-10-13 Thread Kukjin Kim
Chanwoo Choi wrote: This patch add initializtion code of audio and I2S platform drivers to Goni and Aquila board. Signed-off-by : Chanwoo Choi cw00.c...@samsung.com Signed-off-by : Joonyoung Shim jy0922.s...@samsung.com Signed-off-by : Kyungmin Park kyungmin.p...@samsung.com ---

RE: [PATCH 3/3] ARM: S5PV210: Add voltage consumer of WM8994 to the regulator framework

2010-10-13 Thread Kukjin Kim
Chanwoo Choi wrote: This patch add cose related to regulator. To control powre consumeption have registered the voltage consumer of WM8994 to the regulator framework. Additionally, I explain the constraints of the regulator of WM8994 codec. All these consumer supply of WM8994 codec

Re: [PATCH 2/3] ARM: S5PV210: Add init code of audio to Goni and Aquila board

2010-10-13 Thread Jassi Brar
On Thu, Oct 14, 2010 at 10:13 AM, Kyungmin Park kyungmin.p...@samsung.com wrote: On Thu, Oct 14, 2010 at 10:07 AM, Jassi Brar jassisinghb...@gmail.com wrote: On Thu, Oct 14, 2010 at 9:32 AM, Kukjin Kim kgene@samsung.com wrote: Chanwoo Choi wrote: This patch add initializtion code of audio

[PATCH v2 1/2] ARM: S5PV210: Add i2c information to Goni and Aquila board

2010-10-13 Thread Chanwoo Choi
This patch the I2C board information for the WM8994 used in the Goni/Aquila as audio codec and adds the I2C platform drivers. Signed-off-by : Chanwoo Choi cw00.c...@samsung.com Signed-off-by : Joonyoung Shim jy0922.s...@samsung.com Signed-off-by : Kyungmin Park kyungmin.p...@samsung.com ---

[PATCH v2 2/2] ARM: S5PV210: Add init code of audio to Goni and Auqila board

2010-10-13 Thread Chanwoo Choi
This patch add initialization code of audio and I2S platform drivers to Goni and Aquila board. Signed-off-by : Chanwoo Choi cw00.c...@samsung.com Signed-off-by : Joonyoung Shim jy0922.s...@samsung.com Signed-off-by : Kyungmin Park kyungmin.p...@samsung.com Reviewed-by : Mark Brown

RE: [PATCH V2 2/2] ARM: S5PV310: Add support GPIOlib

2010-10-13 Thread Kukjin Kim
Sangbeom Kim wrote: From: Jongpill Lee boyko@samsung.com This patch adds GPIOlib support for S5PV310 and S5PC210. Signed-off-by: Jongpill Lee boyko@samsung.com Signed-off-by: Sangbeom Kim sbki...@samsung.com --- NOTE: This patch used mapped VA IO as GPIO virtual address.

RE: [PATCH V2 1/2] ARM: S5P: Add initial map for GPIO2 and GPIO3

2010-10-13 Thread Kukjin Kim
Sangbeom Kim wrote: From: Jongpill Lee boyko@samsung.com This patch adds initial map for GPIO2 and GPIO3. S5PV310/S5PC210 has separated GPIO1, GPIO2 and GPIO3. Signed-off-by: Jongpill Lee boyko@samsung.com Signed-off-by: Sangbeom Kim sbki...@samsung.com --- Changes since v1:

RE: [PATCH v2 1/2] ARM: S5PV210: Add i2c information to Goni and Aquila board

2010-10-13 Thread Kukjin Kim
Chanwoo Choi wrote: This patch the I2C board information for the WM8994 used in the Goni/Aquila as audio codec and adds the I2C platform drivers. Signed-off-by : Chanwoo Choi cw00.c...@samsung.com Signed-off-by : Joonyoung Shim jy0922.s...@samsung.com Signed-off-by : Kyungmin Park

Re: [PATCH V2 1/2] ARM: S5P: Add initial map for GPIO2 and GPIO3

2010-10-13 Thread Kyungmin Park
On Thu, Oct 14, 2010 at 2:24 PM, Kukjin Kim kgene@samsung.com wrote: Sangbeom Kim wrote: From: Jongpill Lee boyko@samsung.com This patch adds initial map for GPIO2 and GPIO3. S5PV310/S5PC210 has separated GPIO1, GPIO2 and GPIO3. Signed-off-by: Jongpill Lee boyko@samsung.com

RE: [PATCH V2 1/2] ARM: S5P: Add initial map for GPIO2 and GPIO3

2010-10-13 Thread Kukjin Kim
Kyungmin Park wrote: On Thu, Oct 14, 2010 at 2:24 PM, Kukjin Kim kgene@samsung.com wrote: Sangbeom Kim wrote: From: Jongpill Lee boyko@samsung.com This patch adds initial map for GPIO2 and GPIO3. S5PV310/S5PC210 has separated GPIO1, GPIO2 and GPIO3. Signed-off-by: