Re: [rtc-linux] [PATCH 2/2] rtc: rtc-s3c: Updates RTC driver for clock enabling support

2010-07-22 Thread Wan ZongShun
2010/7/21 Kukjin Kim kgene@samsung.com: From: Atul Dahiya atul.dah...@samsung.com This Patch updates existing Samsung RTC driver for clock enabling support. Signed-off-by: Atul Dahiya atul.dah...@samsung.com Signed-off-by: Kukjin Kim kgene@samsung.com ---  drivers/rtc/rtc-s3c.c |  

RE: [PATCH v3] Samsung: sdhci-s3c: add support for new card detection methods

2010-07-22 Thread Marek Szyprowski
Hello, On Thursday, July 22, 2010 1:12 AM On Fri, 16 Jul 2010 08:24:26 +0200 Marek Szyprowski m.szyprow...@samsung.com wrote: arch/arm/mach-s3c64xx/setup-sdhci-gpio.c | 14 +--- arch/arm/mach-s5pc100/setup-sdhci-gpio.c | 21 ++ -

[PATCH v4] Samsung: add new card detection methods in s3c-sdhci driver (platform part)

2010-07-22 Thread Marek Szyprowski
prepared against linux-next kernel tree from 20100722. Changes since V3: - renamed patch to avoid confusion with the patch for the s3c-sdhci driver itself - added (platform part) in subject Changes since V2: - added support for HSMMC3 device Changes since V1: - added support for gpio external

[PATCH v4] sdhci-s3c: add support for new card detection methods (driver part)

2010-07-22 Thread Marek Szyprowski
On some Samsung SoCs not all SDHCI controllers have card detect (CD) line. For some embedded designs it is not even needed, because ususally the device (like SDIO flash memory or wifi controller) is permanently wired to the controller. There are also systems which have a card detect line connected

[PATCH v4 0/7] ARM: S5PV210: CPUFREQ Initial Support

2010-07-22 Thread MyungJoo Ham
S5PV210 CPUFREQ Initial Support. This is a series of patches to enable CPUFREQ for S5PV210. Although this works without PMIC's DVS support, it is not as effective without DVS support as supposed. AVS is not supported in this version. MyungJoo Ham (7): ARM: S5PV210: Allow to probe whether

[PATCH v4 1/7] ARM: S5PV210: Allow to probe whether workaround codes are required.

2010-07-22 Thread MyungJoo Ham
Early products of S5PV210 had several errata that require kernel to avoid using some parts/instructions of the CPU or to add protection instructions. There are products with such early production CPUs; thus, we want to distinguish them in kernel. This patch is to distinguish such products.

[PATCH v4 2/7] ARM: Samsung SoC: added hclk/pclk info to s3c_freq for s5pv210 cpu-freq

2010-07-22 Thread MyungJoo Ham
S5PV210 requires msys/dsys info as well; thus, we've included those at struct s3c_freq, which is used by CPUFREQ of S5PV210. Signed-off-by: MyungJoo Ham myungjoo@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- arch/arm/plat-samsung/include/plat/cpu-freq.h |6 ++

[PATCH v4 4/7] ARM: S5P: Virtual Addresses for DMCx registers.

2010-07-22 Thread MyungJoo Ham
The CPUFREQ driver requires an access to DMCx registers. We define virtual addresses of DMCx registers. Signed-off-by: MyungJoo Ham myungjoo@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- arch/arm/plat-s5p/include/plat/map-s5p.h |3 +++ 1 files changed, 3

[PATCH v4 6/7] ARM: S5PV210: macros for clock registers at regs-clock.h

2010-07-22 Thread MyungJoo Ham
Previously, most of CLK_DIV/SRC register accessing mask and shift values were used at arch/arm/mach-s5pv210/clock.c only; thus we had not been using macros for these. However, as CPUFREQ uses those shift and mask values as well, we'd better define them at a single location, whose proper location

Re: [PATCH v4 7/7] ARM: S5PV210: Initial CPUFREQ Support

2010-07-22 Thread Mark Brown
On Thu, Jul 22, 2010 at 06:22:53PM +0900, MyungJoo Ham wrote: S5PV210 CPUFREQ Support. This CPUFREQ may work without PMIC's DVS support. However, it is not as effective without DVS support as supposed. AVS is not supported in this version. Note that CLK_SRC of some clocks including

Re: [PATCH v2] regulator: MAX8998: set_voltage bugfix. ramp_up delay and min/max voltage

2010-07-22 Thread Liam Girdwood
On Tue, 2010-07-20 at 08:07 +0200, Marek Szyprowski wrote: From: MyungJoo Ham myungjoo@samsung.com Two issues are addressed for max8998_set_voltage function. 1. Min/Max Voltage. max8998_set_voltage had been using the voltage value of min ( voltage[i] = max_vol , i )

RE: [PATCH v4] Samsung: add new card detection methods in s3c-sdhci driver (platform part)

2010-07-22 Thread Kukjin Kim
can be merged as well. The patch has been prepared against linux-next kernel tree from 20100722. Changes since V3: - renamed patch to avoid confusion with the patch for the s3c-sdhci driver itself - added (platform part) in subject Changes since V2: - added support for HSMMC3 device

RE: [PATCH v4] Samsung: add new card detection methods in s3c-sdhci driver (platform part)

2010-07-22 Thread Marek Szyprowski
these changes to platform specific code gets merged soon, so the changes to the driver can be merged as well. The patch has been prepared against linux-next kernel tree from 20100722. Changes since V3: - renamed patch to avoid confusion with the patch for the s3c-sdhci driver itself - added