[PATCH] ARM: S5PV210: Update I2C-1 Clock Register Property.

2010-08-19 Thread MyungJoo Ham
CLK_GATE_IP3[8] is RESERVED. The port I2C_HDMI_DDY of CLK_GATE_IP3[10] is used as another I2C port (but not dedicated to HDMI as if it is a general I2C port) Therefore, we define the unused I2C-1 (IP3[8] is not used) as another I2C there was left undefined but used. Signed-off-by: MyungJoo Ham

Re: [PATCH 13/14] ARM: S5PV310: Add video clocks

2010-08-19 Thread MyungJoo Ham
On Wed, Aug 18, 2010 at 11:01 PM, Kukjin Kim kgene@samsung.com wrote: From: Jongpill Lee boyko@samsung.com This patch adds video clocks for S5PV310/S5PC210. Signed-off-by: Jongpill Lee boyko@samsung.com Signed-off-by: Kukjin Kim kgene@samsung.com ---  

Re: [PATCH] MAX8952 PMIC Driver Initial Release

2010-08-19 Thread Mark Brown
On Thu, Aug 19, 2010 at 04:05:15PM +0900, MyungJoo Ham wrote: If MAX8952's EN is not going to be changed by this driver, the user should set gpio_en_writable as false. In S5PC210/UNIVERSL board, controlling EN pin at MAX8952 driver can be dangerous because this gpio pin is shared with another

Re: [PATCH 12/14] ARM: S5PV310: Add various clocks

2010-08-19 Thread MyungJoo Ham
On Wed, Aug 18, 2010 at 11:01 PM, Kukjin Kim kgene@samsung.com wrote: From: Jongpill Lee boyko@samsung.com This patch adds clocks for S5PV310/S5PC210. Signed-off-by: Jongpill Lee boyko@samsung.com Signed-off-by: Kukjin Kim kgene@samsung.com ---  

Re: [PATCH RFC] h1940: use gpiolib for latch access

2010-08-19 Thread Vasily Khoruzhick
В сообщении от 4 августа 2010 18:26:35 автор Ben Dooks написал: /* Configures BT serial port GPIOs */ s3c_gpio_cfgpin(S3C2410_GPH(0), S3C2410_GPH0_nCTS0); - s3c_gpio_cfgpull(S3C2410_GPH(0), S3C_GPIO_PULL_NONE); + s3c_gpio_setpull(S3C2410_GPH(0), S3C_GPIO_PULL_NONE);

[PATCH 0/3] h1940 series

2010-08-19 Thread Vasily Khoruzhick
This patch series replaces h1940-specific latch-related functions with gpiolib, fixes compilation error for h1940-bluetooth and adds PM support for mmc driver. -- To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in the body of a message to majord...@vger.kernel.org More

[PATCH 2/3] h1940: fix h1940-bluetooth compilation

2010-08-19 Thread Vasily Khoruzhick
Signed-off-by: Vasily Khoruzhick anars...@gmail.com --- arch/arm/mach-s3c2410/h1940-bluetooth.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/mach-s3c2410/h1940-bluetooth.c b/arch/arm/mach-s3c2410/h1940-bluetooth.c index 8aa2f19..6b86a72 100644 ---

[PATCH 3/3] h1940: implement mmc_power function

2010-08-19 Thread Vasily Khoruzhick
Signed-off-by: Vasily Khoruzhick anars...@gmail.com --- arch/arm/mach-s3c2410/include/mach/h1940-latch.h |2 +- arch/arm/mach-s3c2410/mach-h1940.c | 23 +++-- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git

[PATCH v2] ARM: SAMSUNG: Remove flags of struct s3c2410_uartcfg

2010-08-19 Thread Joonyoung Shim
The flags of struct s3c2410_uartcfg is assigned to 0 to the all samsung arch machines and it isn't used by samsung uart driver. Signed-off-by: Joonyoung Shim jy0922.s...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- This v2 patch is rebased at latest mainline kernel.

Re: [PATCH] MAX8952 PMIC Driver Initial Release

2010-08-19 Thread MyungJoo Ham
Thank you for the comments. They will be applied to the next patch revision releasing soon. On Thu, Aug 19, 2010 at 7:46 PM, Mark Brown broo...@opensource.wolfsonmicro.com wrote: On Thu, Aug 19, 2010 at 04:05:15PM +0900, MyungJoo Ham wrote: (snip) +     max8952_write_reg(max8952,

[PATCH v2] MAX8952 PMIC Driver Initial Release

2010-08-19 Thread MyungJoo Ham
MAX8952 PMIC is used to provide voltage output between 770mV - 1400mV with DVS support. In this initial release, users can set voltages for four DVS modes, RAMP delay values, and SYNC frequency. Controlling FPWM/SYNC_MODE/Pull-Down/Ramp Modes and reading CHIP_ID is not supported in this release.