Re: [PATCH v8 00/16] To use DMA generic APIs for Samsung DMA

2011-09-13 Thread Jassi Brar
On Wed, Sep 14, 2011 at 11:31 AM, Vinod Koul wrote: > On Fri, 2011-09-02 at 09:44 +0900, Boojin Kim wrote: >> This patchset adds support DMA generic APIs for samsung DMA. >> >> The changes from V7 is following: >> - Divides patch file. >>   : The 03 patch on V7 patchset is divided into the 03 and

Re: [PATCH v8 00/16] To use DMA generic APIs for Samsung DMA

2011-09-13 Thread Vinod Koul
On Fri, 2011-09-02 at 09:44 +0900, Boojin Kim wrote: > This patchset adds support DMA generic APIs for samsung DMA. > > The changes from V7 is following: > - Divides patch file. > : The 03 patch on V7 patchset is divided into the 03 and 04 patch on V8 > patchset. > The O3 patch is only for

Re: [PATCH 2/2] ARM: Exynos4: use s5p-timer for UniversalC210 board

2011-09-13 Thread Kyungmin Park
Hi, It's required for boot universal c210 w/ EVT0 chip. Can you include it at 3.1 fixed branch? Thank you, Kyungmin Park On Tue, Jul 26, 2011 at 2:50 PM, Marek Szyprowski wrote: > Commit 069d4e743 removed support for local timers and forced to use MCT as > event source. However MCT is not opera

RE: [PATCH] mmc: core: Fix the incorrect calculation for erase unit size.

2011-09-13 Thread Seungwon Jeon
Chris Ball wrote: > > Hi, > > On Tue, Sep 13 2011, Seungwon Jeon wrote: > >> On Thu, Sep 08 2011, Seungwon Jeon wrote: > >> > Erase unit size of high capacity is multiple of 512KiB not 1024KiB. > >> > >> Could we have some more info, please? What are the visible symptoms > >> of the erase unit s

Re: [PATCH] mmc: core: Fix the incorrect calculation for erase unit size.

2011-09-13 Thread Chris Ball
Hi, On Tue, Sep 13 2011, Seungwon Jeon wrote: >> On Thu, Sep 08 2011, Seungwon Jeon wrote: >> > Erase unit size of high capacity is multiple of 512KiB not 1024KiB. >> >> Could we have some more info, please? What are the visible symptoms >> of the erase unit size being incorrect, how did you rea

RE: [PATCH] mmc: core: Fix the incorrect calculation for erase unit size.

2011-09-13 Thread Seungwon Jeon
Chris Ball wrote: > > Hi, > > On Thu, Sep 08 2011, Seungwon Jeon wrote: > > Erase unit size of high capacity is multiple of 512KiB not 1024KiB. > > Could we have some more info, please? What are the visible symptoms > of the erase unit size being incorrect, how did you realize this was > a prob

[PATCH V5 2/2] mmc: core: Add Poweroff Notify handling eMMC 4.5

2011-09-13 Thread Girish K S
This patch adds the power off notification handling during suspend and system poweroff. For suspend mode short timeout is used, whereas for the normal poweroff long timeout is used. Signed-off-by: Girish K S --- drivers/mmc/core/core.c | 34 ++ drivers/mmc/core

[PATCH V5 1/2] mmc: core: Add power off notify feature(eMMC 4.5)

2011-09-13 Thread Girish K S
This patch adds the support for power off notify feature available in eMMC 4.5 devices. If the the host has support for this feature, then the mmc core will notify it to the device by setting the POWER_OFF_NOTIFICATION byte in the extended csd register with a value 1(POWER_ON). This

[PATCH V5 0/2] Poweroff Notify eMMC 4.5

2011-09-13 Thread Girish K S
This patch version fixes the problem with power off notify function, when called for the first time and card is not yet initialised. Earlier version will generate a core dump, so a check for NULL is required in the power off function. Girish K S (2): mmc: core: Add power off notify feature(eMM

[PATCH] mmc: core: eMMC 4.5 Power Class Selection Feature

2011-09-13 Thread Girish K S
This patch adds the power class selection feature available for mmc versions 4.0 and above. During the enumeration stage before switching to the lower data bus, check if the power class is supported for the current bus width. If the power class is available then switch to the power class and use th

[PATCH 2/2] input: samsung-keypad: Add device tree support

2011-09-13 Thread Thomas Abraham
Add device tree based discovery support for Samsung's keypad controller. Cc: Joonyoung Shim Cc: Donghwa Lee Signed-off-by: Thomas Abraham --- .../devicetree/bindings/input/samsung-keypad.txt | 88 ++ drivers/input/keyboard/samsung-keypad.c| 177 ++-- 2

[PATCH 1/2] input: samsung-keypad: Add HAVE_SAMSUNG_KEYPAD config option

2011-09-13 Thread Thomas Abraham
For platforms using device tree, the static keypad device instances are not required and SAMSUNG_DEV_KEYPAD is not selected. Since, samsung keypad driver has dependency on SAMSUNG_DEV_KEYPAD config option, the driver is left out of the compilation for dt enabled platforms. An additional config opt

[PATCH v2 0/2] Add device tree support for Samsung's keypad controller driver

2011-09-13 Thread Thomas Abraham
Changes since v1: - Addressed comments from Dmitry Torokhov. - Type of controller is cached in driver's private data and the function that determines the type of the controller for each keypad scan is removed. - pdata allocated during probe is explicitly freed after probe completes

Re: [PATCH v3 1/2] i2c: s3c2410: Keep a copy of platform data and use it

2011-09-13 Thread Stephen Boyd
On 9/12/2011 9:16 PM, Thomas Abraham wrote: > @@ -809,6 +810,15 @@ static int s3c24xx_i2c_probe(struct platform_device > *pdev) > return -ENOMEM; > } > > + i2c->pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); > + if (!i2c->pdata) { > + ret =