Re: [PATCH v4 0/4] ARM: EXYNOS: cpuidle: add AFTR mode support for Exynos3250

2015-03-18 Thread Chanwoo Choi
Hi Bartlomiej, I tested this patch-set for AFTR mode. When CPU1 is offline state, I checked that CPU0 enter the AFTR mode. Tested-by: Chanwoo Choi Best Regards, Chanwoo Choi On 03/19/2015 01:00 AM, Bartlomiej Zolnierkiewicz wrote: > Hi, > > This patch series adds support for AFTR idle mode on

Re: [PATCH v4 1/4] ARM: EXYNOS: fix CPU1 hotplug on Exynos3250

2015-03-18 Thread Chanwoo Choi
Hi Bartlomiej, I tested this patch on Exynos3250-based Gear2 board. Thanks for your effor to solve this issue. Tested-by: Chanwoo Choi Best Regards, Chanwoo Choi On 03/19/2015 01:00 AM, Bartlomiej Zolnierkiewicz wrote: > CPU1 hotplug may hang when AFTR is used. Fix it by: > - setting AUTOWAKE

[PATCH] usb/misc/usb3503: Always read refclk frequency from DT

2015-03-18 Thread Ben Gamari
This is necessary to set REF_SEL appropriately in uses where refclk is always available. Signed-off-by: Ben Gamari Acked-by: Marek Szyprowski --- drivers/usb/misc/usb3503.c | 47 +++--- 1 file changed, 24 insertions(+), 23 deletions(-) diff --git a/drive

[PATCH v2] USB3503: Always respect refclk-frequency

2015-03-18 Thread Ben Gamari
My apologies for the double-post; the previous patch lacked an Acked-by and several important recipients. Keep me on the CC list as I'm not subscribed to the linux-usb list. The USB3503 driver exposes the refclk-frequency DT property to allow users to specify the rate of the clock provided on the

Re: [PATCH] ARM: EXYNOS: Handle of_find_device_by_node and kstrdup failures

2015-03-18 Thread Krzysztof Kozlowski
2015-02-24 16:42 GMT+01:00 Krzysztof Kozlowski : > On wto, 2015-02-03 at 18:28 +0100, Krzysztof Kozlowski wrote: >> Prevent possible NULL pointer dereference of pointer returned by >> of_find_device_by_node(). Handle this by skipping such power domain. >> >> Additionally fail the init on kstrdup()

Re: [PATCH v2 0/5] cpuidle: exynos: add coupled cpuidle support for Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
On Wednesday, March 18, 2015 02:09:52 PM Bartlomiej Zolnierkiewicz wrote: > Hi, > > The following patchset adds coupled cpuidle support for Exynos3250 > to an existing cpuidle-exynos driver. As a result it enables AFTR > mode to be used by default on Exynos3250 without the need to hot > unplug CP

[PATCH v4 2/4] ARM: EXYNOS: add code for setting/clearing boot flag

2015-03-18 Thread Bartlomiej Zolnierkiewicz
This code is needed for cpuidle (W-)AFTR mode support on Exynos3250. Cc: Daniel Lezcano Signed-off-by: Bartlomiej Zolnierkiewicz Acked-by: Kyungmin Park --- arch/arm/mach-exynos/common.h | 6 ++ arch/arm/mach-exynos/firmware.c | 25 + 2 files changed, 31 insertio

[PATCH v4 0/4] ARM: EXYNOS: cpuidle: add AFTR mode support for Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Hi, This patch series adds support for AFTR idle mode on boards with Exynos3250 SoC and allows EXYNOS cpuidle driver usage on these boards. It has been tested on Samsung Rinato board (Gear 2). Depends on: - for-next branch (commit: 77105c882ba6) of linux-samsung.git kernel tree Changes since

[PATCH v4 3/4] ARM: EXYNOS: cpuidle: add AFTR mode support for Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
AFTR mode support brings reduced energy consumption and is a prerequisite for more advanced W-AFTR/LPA power saving modes. AFTR mode has been already supported on other Exynos SoCs for few years and this patch adds its support for Exynos3250 SoC. The differences in Exynos3250 SoC AFTR mode suppor

[PATCH v4 4/4] ARM: EXYNOS: cpuidle: allow driver usage on Exynos3250 SoC

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Register cpuidle platform device on Exynos3250 SoC allowing EXYNOS cpuidle driver usage on this SoC. Cc: Daniel Lezcano Signed-off-by: Bartlomiej Zolnierkiewicz Reviewed-by: Krzysztof Kozlowski Acked-by: Kyungmin Park --- arch/arm/mach-exynos/exynos.c | 1 + 1 file changed, 1 insertion(+) di

[PATCH v4 1/4] ARM: EXYNOS: fix CPU1 hotplug on Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
CPU1 hotplug may hang when AFTR is used. Fix it by: - setting AUTOWAKEUP_EN bit in ARM_COREx_CONFIGURATION register in exynos_cpu_power_up() - not clearing reserved bits of ARM_COREx_CONFIGURATION register in exynos_cpu_power_down() - waiting while an undocumented register 0x0908 becomes non-z

[PATCH v3] ARM: l2c: Maintain CPU endianness for early resume function

2015-03-18 Thread Dmitry Osipenko
In big-endian CPU mode l2x0_saved_regs structure stores registers values in BE format. In order to maintain BE CPU mode, these values and immediate constants must be converted back to LE format before writing them to cache controller. Signed-off-by: Dmitry Osipenko Acked-by: Russell King --- Cha

Re: [PATCH v2 4/5] ARM: EXYNOS: add exynos_get_boot_addr() helper

2015-03-18 Thread Krzysztof Kozlowski
On śro, 2015-03-18 at 16:18 +0100, Bartlomiej Zolnierkiewicz wrote: > On Wednesday, March 18, 2015 02:43:49 PM Krzysztof Kozlowski wrote: > > 2015-03-18 14:09 GMT+01:00 Bartlomiej Zolnierkiewicz > > : > > > Add get_cpu_boot_addr() firmware operation and then > > > exynos_get_boot_addr() helper. >

Re: [PATCH v2 4/5] ARM: EXYNOS: add exynos_get_boot_addr() helper

2015-03-18 Thread Bartlomiej Zolnierkiewicz
On Wednesday, March 18, 2015 02:43:49 PM Krzysztof Kozlowski wrote: > 2015-03-18 14:09 GMT+01:00 Bartlomiej Zolnierkiewicz > : > > Add get_cpu_boot_addr() firmware operation and then > > exynos_get_boot_addr() helper. > > > > This is a preparation for adding coupled cpuidle support > > for Exynos3

Re: [PATCH v3 3/4] ARM: EXYNOS: cpuidle: add AFTR mode support for Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
On Wednesday, March 18, 2015 02:38:26 PM Krzysztof Kozlowski wrote: > 2015-03-18 13:51 GMT+01:00 Bartlomiej Zolnierkiewicz > : > > The patchset itself looks good... but it's missing commit message. > What benefits does the AFTR bring? AFTR support brings reduced energy consumption and is a prere

Re: [PATCH v3 2/4] ARM: EXYNOS: add code for setting/clearing boot flag

2015-03-18 Thread Bartlomiej Zolnierkiewicz
On Wednesday, March 18, 2015 02:33:54 PM Krzysztof Kozlowski wrote: > 2015-03-18 13:51 GMT+01:00 Bartlomiej Zolnierkiewicz > : > > This code is needed for cpuidle (W-)AFTR mode support on Exynos3250. > > > > Cc: Daniel Lezcano > > Signed-off-by: Bartlomiej Zolnierkiewicz > > Acked-by: Kyungmin P

Re: [PATCH v3 1/4] ARM: EXYNOS: fix CPU1 hotplug for AFTR mode on Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
On Wednesday, March 18, 2015 02:32:25 PM Krzysztof Kozlowski wrote: > On śro, 2015-03-18 at 14:23 +0100, Bartlomiej Zolnierkiewicz wrote: > > Hi, > > > > On Wednesday, March 18, 2015 02:10:31 PM Krzysztof Kozlowski wrote: > > > 2015-03-18 13:51 GMT+01:00 Bartlomiej Zolnierkiewicz > > > : > > > >

Re: [PATCH v2 3/5] ARM: EXYNOS: add exynos_set_boot_addr() helper

2015-03-18 Thread Krzysztof Kozlowski
2015-03-18 14:09 GMT+01:00 Bartlomiej Zolnierkiewicz : > Add exynos_set_boot_addr() helper and covert existing code > (exynos_boot_secondary() and exynos_smp_prepare_cpus()) to > use it. > > There should be no functional changes caused by this patch. > > Cc: Daniel Lezcano > Signed-off-by: Bartlom

Re: [PATCH v2 4/5] ARM: EXYNOS: add exynos_get_boot_addr() helper

2015-03-18 Thread Krzysztof Kozlowski
2015-03-18 14:09 GMT+01:00 Bartlomiej Zolnierkiewicz : > Add get_cpu_boot_addr() firmware operation and then > exynos_get_boot_addr() helper. > > This is a preparation for adding coupled cpuidle support > for Exynos3250 SoC. > > There should be no functional changes caused by this patch. > > Cc: Da

Re: [PATCH v3 4/4] ARM: EXYNOS: cpuidle: allow driver usage on Exynos3250 SoC

2015-03-18 Thread Krzysztof Kozlowski
2015-03-18 13:51 GMT+01:00 Bartlomiej Zolnierkiewicz : > Register cpuidle platform device on Exynos3250 SoC allowing EXYNOS > cpuidle driver usage on this SoC. > > Cc: Daniel Lezcano > Signed-off-by: Bartlomiej Zolnierkiewicz > Acked-by: Kyungmin Park > --- > arch/arm/mach-exynos/exynos.c | 1 +

Re: [PATCH v3 3/4] ARM: EXYNOS: cpuidle: add AFTR mode support for Exynos3250

2015-03-18 Thread Krzysztof Kozlowski
2015-03-18 13:51 GMT+01:00 Bartlomiej Zolnierkiewicz : The patchset itself looks good... but it's missing commit message. What benefits does the AFTR bring? Best regards, Krzysztof -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majord..

Re: [rtc-s3c.c] add .needs_src_clk to s3c6410 RTC data / break exynos4

2015-03-18 Thread Javier Martinez Canillas
Hello Tobias, On 03/18/2015 02:00 PM, Tobias Jakobi wrote: > Hello Javier, > > I noticed that this recent commit breaks rtc-s3c on my Odroid-X2 > (Exynos4412). The exynos4 dtsi includes a rtc of type s3c6410. Hence all > board files based on exynos4, and using the rtc-s3c, are now required to

Re: [PATCH v3 2/4] ARM: EXYNOS: add code for setting/clearing boot flag

2015-03-18 Thread Krzysztof Kozlowski
2015-03-18 13:51 GMT+01:00 Bartlomiej Zolnierkiewicz : > This code is needed for cpuidle (W-)AFTR mode support on Exynos3250. > > Cc: Daniel Lezcano > Signed-off-by: Bartlomiej Zolnierkiewicz > Acked-by: Kyungmin Park > --- > arch/arm/mach-exynos/common.h | 6 ++ > arch/arm/mach-exynos/exy

Re: [PATCH v3 1/4] ARM: EXYNOS: fix CPU1 hotplug for AFTR mode on Exynos3250

2015-03-18 Thread Krzysztof Kozlowski
On śro, 2015-03-18 at 14:23 +0100, Bartlomiej Zolnierkiewicz wrote: > Hi, > > On Wednesday, March 18, 2015 02:10:31 PM Krzysztof Kozlowski wrote: > > 2015-03-18 13:51 GMT+01:00 Bartlomiej Zolnierkiewicz > > : > > > > > > + while (!pmu_raw_readl(S5P_PMU_SPARE2)) > > > + udelay(

Re: [PATCH v3 1/4] ARM: EXYNOS: fix CPU1 hotplug for AFTR mode on Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Hi, On Wednesday, March 18, 2015 02:10:31 PM Krzysztof Kozlowski wrote: > 2015-03-18 13:51 GMT+01:00 Bartlomiej Zolnierkiewicz > : > > CPU1 hotplug may hang when AFTR is used. Fix it by: > > - setting AUTOWAKEUP_EN bit in ARM_COREx_CONFIGURATION register in > > exynos_cpu_power_up() > > - not

[PATCH v2 0/5] cpuidle: exynos: add coupled cpuidle support for Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Hi, The following patchset adds coupled cpuidle support for Exynos3250 to an existing cpuidle-exynos driver. As a result it enables AFTR mode to be used by default on Exynos3250 without the need to hot unplug CPU1 first. The patchset depends on: - for-next branch (commit: 77105c882ba6) of linux-

[PATCH v2 2/5] ARM: EXYNOS: make exynos_core_restart() less verbose

2015-03-18 Thread Bartlomiej Zolnierkiewicz
There is a kernel message about secondary CPU bootup when exynos_core_restart() is called through CPU hotplug code-path (the only exynos_core_restart() user currently) so there is no need for an extra info on Exynos3250 SoC about software reset. This also prepares exynos_core_restart() to be re-use

[PATCH v2 4/5] ARM: EXYNOS: add exynos_get_boot_addr() helper

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Add get_cpu_boot_addr() firmware operation and then exynos_get_boot_addr() helper. This is a preparation for adding coupled cpuidle support for Exynos3250 SoC. There should be no functional changes caused by this patch. Cc: Daniel Lezcano Cc: Russell King Signed-off-by: Bartlomiej Zolnierkiewi

[PATCH v2 5/5] cpuidle: exynos: add coupled cpuidle support for Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
The following patch adds coupled cpuidle support for Exynos3250 to an existing cpuidle-exynos driver. As a result it enables AFTR mode to be used by default on Exynos3250 without the need to hot unplug CPU1 first. The detailed changelog: - use exynos_[get,set]_boot_addr() in cpuidle-exynos.c and

[PATCH v2 3/5] ARM: EXYNOS: add exynos_set_boot_addr() helper

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Add exynos_set_boot_addr() helper and covert existing code (exynos_boot_secondary() and exynos_smp_prepare_cpus()) to use it. There should be no functional changes caused by this patch. Cc: Daniel Lezcano Signed-off-by: Bartlomiej Zolnierkiewicz --- arch/arm/mach-exynos/platsmp.c | 53

[PATCH v2 1/5] ARM: EXYNOS: fix exynos_boot_secondary() return value on timeout

2015-03-18 Thread Bartlomiej Zolnierkiewicz
exynos_boot_secondary() can erroneously return 0 or -ENOSYS even when waiting on pen_release being set to -1 timeouts. Fix it by adjusting ret variable value to -ETIMEDOUT when necessary. Cc: Daniel Lezcano Signed-off-by: Bartlomiej Zolnierkiewicz --- arch/arm/mach-exynos/platsmp.c | 3 +++ 1

Re: [PATCH v3 1/4] ARM: EXYNOS: fix CPU1 hotplug for AFTR mode on Exynos3250

2015-03-18 Thread Krzysztof Kozlowski
2015-03-18 13:51 GMT+01:00 Bartlomiej Zolnierkiewicz : > CPU1 hotplug may hang when AFTR is used. Fix it by: > - setting AUTOWAKEUP_EN bit in ARM_COREx_CONFIGURATION register in > exynos_cpu_power_up() > - not clearing reserved bits of ARM_COREx_CONFIGURATION register in > exynos_cpu_power_dow

[rtc-s3c.c] add .needs_src_clk to s3c6410 RTC data / break exynos4

2015-03-18 Thread Tobias Jakobi
Hello Javier, I noticed that this recent commit breaks rtc-s3c on my Odroid-X2 (Exynos4412). The exynos4 dtsi includes a rtc of type s3c6410. Hence all board files based on exynos4, and using the rtc-s3c, are now required to specific the rtc_src clock. I don't think that this is correct, since

[PATCH v3 0/4] ARM: EXYNOS: cpuidle: add AFTR mode support for Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Hi, This patch series adds support for AFTR idle mode on boards with Exynos3250 SoC and allows EXYNOS cpuidle driver usage on these boards. It has been tested on Samsung Rinato board (Gear 2). Depends on: - for-next branch (commit: 77105c882ba6) of linux-samsung.git kernel tree Changes since

[PATCH v3 2/4] ARM: EXYNOS: add code for setting/clearing boot flag

2015-03-18 Thread Bartlomiej Zolnierkiewicz
This code is needed for cpuidle (W-)AFTR mode support on Exynos3250. Cc: Daniel Lezcano Signed-off-by: Bartlomiej Zolnierkiewicz Acked-by: Kyungmin Park --- arch/arm/mach-exynos/common.h | 6 ++ arch/arm/mach-exynos/exynos.c | 25 + 2 files changed, 31 insertions(+

[PATCH v3 4/4] ARM: EXYNOS: cpuidle: allow driver usage on Exynos3250 SoC

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Register cpuidle platform device on Exynos3250 SoC allowing EXYNOS cpuidle driver usage on this SoC. Cc: Daniel Lezcano Signed-off-by: Bartlomiej Zolnierkiewicz Acked-by: Kyungmin Park --- arch/arm/mach-exynos/exynos.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-exynos/ex

[PATCH v3 1/4] ARM: EXYNOS: fix CPU1 hotplug for AFTR mode on Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
CPU1 hotplug may hang when AFTR is used. Fix it by: - setting AUTOWAKEUP_EN bit in ARM_COREx_CONFIGURATION register in exynos_cpu_power_up() - not clearing reserved bits of ARM_COREx_CONFIGURATION register in exynos_cpu_power_down() - waiting while an undocumented register 0x0908 becomes non-z

[PATCH v3 3/4] ARM: EXYNOS: cpuidle: add AFTR mode support for Exynos3250

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Cc: Daniel Lezcano Signed-off-by: Bartlomiej Zolnierkiewicz Acked-by: Kyungmin Park --- arch/arm/mach-exynos/firmware.c | 8 +++- arch/arm/mach-exynos/pm.c | 12 +++- arch/arm/mach-exynos/regs-pmu.h | 1 + arch/arm/mach-exynos/smc.h | 9 + 4 files changed, 28 i

Re: [PATCH] ASoC: samsung: Enable SND_SIMPLE_CARD for Odroid X2/U3

2015-03-18 Thread Mark Brown
On Wed, Mar 18, 2015 at 11:52:19AM +0100, Sylwester Nawrocki wrote: > Odroid X2/U3 sound support can now be specified in device tree using > the simple card binding, make SND_SOC_ODROIDX2 select SND_SIMPLE_CARD > to ensure there are always required drivers in place. No, this isn't an actual depend

[PATCH v7] ARM: dts: Add HS400 support for exynos5420 and exynos5800

2015-03-18 Thread Alim Akhtar
From: Seungwon Jeon HS400 timing values are added for SMDK5420, exynos5420-peach-pit and exynos5800-peach-pi boards. This also adds RCLK GPIO line, this gpio should be in pull-down state. This also enables HS400 on peach-pi and this updates the clock frequency to 800MHz to be set as input clock t

[PATCH] ASoC: samsung: Enable SND_SIMPLE_CARD for Odroid X2/U3

2015-03-18 Thread Sylwester Nawrocki
Odroid X2/U3 sound support can now be specified in device tree using the simple card binding, make SND_SOC_ODROIDX2 select SND_SIMPLE_CARD to ensure there are always required drivers in place. Reported-by: Tobias Jakobi Signed-off-by: Sylwester Nawrocki --- sound/soc/samsung/Kconfig |1 + 1

Re: [PATCH v2] ARM: EXYNOS: Fix failed second suspend on Exynos4

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Hi, On Wednesday, March 18, 2015 10:47:44 AM Krzysztof Kozlowski wrote: > On śro, 2015-03-18 at 09:57 +0100, Krzysztof Kozlowski wrote: > > On śro, 2015-03-18 at 03:05 +0900, Kukjin Kim wrote: > > > On 03/11/15 19:29, Krzysztof Kozlowski wrote: > > > > On śro, 2015-03-11 at 11:20 +0100, Krzysztof

Re: [PATCH v6] ARM: dts: Add HS400 support for exynos5420 and exynos5800

2015-03-18 Thread Javier Martinez Canillas
Hello Alim, On Wed, Mar 18, 2015 at 4:08 AM, Alim Akhtar wrote: > From: Seungwon Jeon > > HS400 timing values are added for SMDK5420, exynos5420-peach-pit > and exynos5800-peach-pi boards. > This also adds RCLK GPIO line, this gpio should be in pull-down > state. > This also enables HS400 on pea

Re: exynos5800-peach-pi: suspend/resume (still) broken

2015-03-18 Thread Javier Martinez Canillas
+people involved in Exynos5420 S2R support (Abhilash, Vikas and Pankaj) Hello Kevin, On 03/17/2015 06:35 PM, Kevin Hilman wrote: > I've tried suspend/resume on peach-pi using v4.0-rc4, next/master and > samsung/for-next, and it doesn't seem to work on any of them. > > The first problem was the e

Re: [PATCH v2] ARM: EXYNOS: Fix failed second suspend on Exynos4

2015-03-18 Thread Bartlomiej Zolnierkiewicz
Hi, On Wednesday, March 18, 2015 09:57:27 AM Krzysztof Kozlowski wrote: > On śro, 2015-03-18 at 03:05 +0900, Kukjin Kim wrote: > > On 03/11/15 19:29, Krzysztof Kozlowski wrote: > > > On śro, 2015-03-11 at 11:20 +0100, Krzysztof Kozlowski wrote: > > >> On Exynos4412 boards (Trats2, Odroid U3) afte

Re: [PATCH v2] ARM: EXYNOS: Fix failed second suspend on Exynos4

2015-03-18 Thread Krzysztof Kozlowski
On śro, 2015-03-18 at 09:57 +0100, Krzysztof Kozlowski wrote: > On śro, 2015-03-18 at 03:05 +0900, Kukjin Kim wrote: > > On 03/11/15 19:29, Krzysztof Kozlowski wrote: > > > On śro, 2015-03-11 at 11:20 +0100, Krzysztof Kozlowski wrote: > > >> On Exynos4412 boards (Trats2, Odroid U3) after enabling L

Re: [PATCH v12 0/6] cpufreq: use generic cpufreq drivers for exynos platforms

2015-03-18 Thread Javier Martinez Canillas
Hello Thomas, On Tue, Feb 17, 2015 at 9:25 PM, Tobias Jakobi wrote: > Hello! > > Lukasz Majewski wrote: >> Hi Krzysztof, Thomas, >> >>> 2015-01-08 22:17 GMT+01:00 Kevin Hilman : >>> Hi Thomas, >>> >>> Do you plan to continue with this work? It would be very helpful. >> >> +1 from me. >> >>> >>> I

Re: [PATCH v2] ARM: EXYNOS: Fix failed second suspend on Exynos4

2015-03-18 Thread Krzysztof Kozlowski
On śro, 2015-03-18 at 03:05 +0900, Kukjin Kim wrote: > On 03/11/15 19:29, Krzysztof Kozlowski wrote: > > On śro, 2015-03-11 at 11:20 +0100, Krzysztof Kozlowski wrote: > >> On Exynos4412 boards (Trats2, Odroid U3) after enabling L2 cache in > >> 56b60b8bce4a ("ARM: 8265/1: dts: exynos4: Add nodes fo

Re: [PATCH v2 Resend] pwm: samsung: Fix output race on disabling

2015-03-18 Thread Sjoerd Simons
On Wed, 2015-03-18 at 09:08 +0100, Lukasz Majewski wrote: > Hi Sjoerd, > > > Hey Jingoo, Kukjijn, Lukasz, > > > > Pinging on this one again, could you please review this patch so it > > can be merged through the PWM tree? > > As fair as I remember, I've already acked the patch :-) I don't thin

Re: [PATCH v2 Resend] pwm: samsung: Fix output race on disabling

2015-03-18 Thread Lukasz Majewski
Hi Sjoerd, > Hey Jingoo, Kukjijn, Lukasz, > > Pinging on this one again, could you please review this patch so it > can be merged through the PWM tree? As fair as I remember, I've already acked the patch :-) > > On Thu, 2015-03-05 at 09:14 +0100, Sjoerd Simons wrote: > > When disabling the s

Re: [PATCH v2 Resend] pwm: samsung: Fix output race on disabling

2015-03-18 Thread Sjoerd Simons
Hey Jingoo, Kukjijn, Lukasz, Pinging on this one again, could you please review this patch so it can be merged through the PWM tree? On Thu, 2015-03-05 at 09:14 +0100, Sjoerd Simons wrote: > When disabling the samsung PWM the output state remains at the level it > was in the end of a pwm cycle.

Re: [PATCH v2] thermal: exynos: Add the support for Exynos5433 TMU

2015-03-18 Thread Lukasz Majewski
Hi Chanwoo, > Hi Lukasz, > > Genlty Ping. I've got your patches at the back of my head :-) I will try to review them today or tomorrow. > > Best Regards, > Chanwoo Choi > > On 03/10/2015 11:23 AM, Chanwoo Choi wrote: > > This patch adds the support for Exynos5433's TMU (Thermal > > Managemen