Re: [GIT PULL] ARM: dts: Exynos improvements for 4.4-2

2015-10-07 Thread Kukjin Kim
On 10/06/15 10:54, Krzysztof Kozlowski wrote: > Dear Kukjin, > > This is an updated pull request with DTS related changes for 4.4. > > Description along with a tag. > You can find them also on the lists with my reviewed-by. > > Best regards, > Krzysztof > > > The following changes since

Re: [PATCH v3 4/4] ARM: dts: Enable EC vboot context support on Peach boards

2015-10-07 Thread Kukjin Kim
On 09/21/15 22:38, Emilio López wrote: > The Peach boards use the EC to store the vboot context information, > so add the corresponding properties on the EC node to indicate so. > > Reviewed-by: Krzysztof Kozlowski > Acked-by: Javier Martinez Canillas

Re: [PATCH 1/4] sysfs: Support is_visible() on binary attributes

2015-10-07 Thread Olof Johansson
On Sun, Oct 04, 2015 at 07:33:34PM +0100, Greg KH wrote: > On Mon, Sep 21, 2015 at 10:38:20AM -0300, Emilio L?pez wrote: > > According to the sysfs header file: > > > > "The returned value will replace static permissions defined in > > struct attribute or struct bin_attribute." > > > >

Re: [PATCH v3 3/4] platform/chrome: Support reading/writing the vboot context

2015-10-07 Thread Olof Johansson
On Mon, Sep 21, 2015 at 10:38:22AM -0300, Emilio L??pez wrote: > Some EC implementations include a small nvram space used to store > verified boot context data. This patch offers a way to expose this > data to userspace. > > Reviewed-by: Javier Martinez Canillas >

Re: [PATCH 0/5] ARM: dts: Use GPIO constants for flags cells in exynos boards

2015-10-07 Thread Kukjin Kim
On 10/07/15 22:14, Javier Martinez Canillas wrote: > Hello, > > This series contains trivial patches that use the GPIO constants > defined in include/dt-bindings/gpio/gpio.h to express GPIO polarity > instead of numeric values. > > There is no functional change and the compiled dtbs are

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-07 Thread Yakir Yang
Hi all, Friendly ping. :) Best regards, - Yakir On 09/22/2015 03:20 PM, Yakir Yang wrote: Hi all, The Samsung Exynos eDP controller and Rockchip RK3288 eDP controller share the same IP, so a lot of parts can be re-used. I split the common code into bridge directory, then rk3288

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-07 Thread Yakir Yang
Hi Javier, On 10/07/2015 04:46 PM, Javier Martinez Canillas wrote: Hello Yakir, On 10/07/2015 08:25 AM, Yakir Yang wrote: Hi all, Friendly ping. :) Best regards, - Yakir Do you have a tree that I can use to test these patches? Wow, thanks a lot, I do have a tree on github

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-07 Thread Javier Martinez Canillas
Hello Yakir, On 10/07/2015 08:25 AM, Yakir Yang wrote: > Hi all, > > Friendly ping. :) > > > Best regards, > - Yakir > > Do you have a tree that I can use to test these patches? Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe

Re: [PATCH] ARM: dts: exynos4412-odroid: unify voltage regulator style

2015-10-07 Thread Krzysztof Kozlowski
On 07.10.2015 08:26, Tobias Jakobi wrote: > Gentle ping! Both patches are now in Kukjin's tree. Best regards, Krzysztof > > - Tobias > > Tobias Jakobi wrote: >> Use 'ldoN_reg: LDON' syntax and drop the deprecated >> 'regulator-compatible' property. >> >> Signed-off-by: Tobias Jakobi

[PATCH 1/5] thermal: exynos: Fix unbalanced regulator disable on probe failure

2015-10-07 Thread Krzysztof Kozlowski
During probe if the regulator could not be enabled, the error exit path would still disable it. This could lead to unbalanced counter of regulator enable/disable. The patch moves code for getting and enabling the regulator from exynos_map_dt_data() to probe function because it is really not a

[PATCH 2/5] thermal: exynos: Fix first temperature read after registering sensor

2015-10-07 Thread Krzysztof Kozlowski
Thermal core could not read the temperature after registering the thermal sensor with thermal_zone_of_sensor_register() because the driver was not yet initialized. The call trace looked like: exynos_tmu_probe() thermal_zone_of_sensor_register() of_thermal_set_mode()

[PATCH 3/5] thermal: exynos: Use IS_ERR() because regulator cannot be NULL

2015-10-07 Thread Krzysztof Kozlowski
The NULL check in probe's error path is not needed because in that time the regulator cannot be NULL (regulator_get() returns valid pointer or ERR_PTR). Signed-off-by: Krzysztof Kozlowski --- drivers/thermal/samsung/exynos_tmu.c | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH 4/5] thermal: exynos: Remove unneeded semicolon

2015-10-07 Thread Krzysztof Kozlowski
Remove semicolons after switch statement. Signed-off-by: Krzysztof Kozlowski --- drivers/thermal/samsung/exynos_tmu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/thermal/samsung/exynos_tmu.c b/drivers/thermal/samsung/exynos_tmu.c

[PATCH 5/5] thermal: exynos: Directly return 0 instead of using local ret variable

2015-10-07 Thread Krzysztof Kozlowski
The 'ret' variable in exynos5440_tmu_initialize() is initialized to 0 and returned as is. Replace it with direct return statement. This also fixes coccinelle warning: drivers/thermal/samsung/exynos_tmu.c:611:5-8: Unneeded variable: "ret". Return "0" on line 654 Signed-off-by: Krzysztof Kozlowski

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-07 Thread Yakir Yang
Hi Javier, On 10/07/2015 07:25 PM, Javier Martinez Canillas wrote: Hello Yakir, On 10/07/2015 01:05 PM, Yakir Yang wrote: Hi Javier, On 10/07/2015 05:26 PM, Javier Martinez Canillas wrote: Hello Yakir, On 10/07/2015 11:02 AM, Yakir Yang wrote: Hi Javier, On 10/07/2015 04:46 PM, Javier

Re: [PATCH 5/6] ARM: s3c64xx: hmt: Use PWM lookup table

2015-10-07 Thread Krzysztof Kozlowski
On 08.10.2015 00:37, Thierry Reding wrote: > On Wed, Oct 07, 2015 at 10:37:42AM +0900, Krzysztof Kozlowski wrote: >> On 05.10.2015 21:47, Thierry Reding wrote: >>> Use a PWM lookup table to provide the PWM to the pwm-backlight device. >>> The driver has a legacy code path that is required only

Re: [PATCH 3/6] ARM: s3c64xx: smdk6410: Use PWM lookup table

2015-10-07 Thread Krzysztof Kozlowski
On 05.10.2015 21:47, Thierry Reding wrote: > Use a PWM lookup table to provide the PWM to the pwm-backlight device. > The driver has a legacy code path that is required only because boards > still use the legacy method of requesting PWMs by global ID. Replacing > these usages allows that legacy

Re: [PATCH 2/6] ARM: s3c24xx: rx1950: Use PWM lookup table

2015-10-07 Thread Krzysztof Kozlowski
On 08.10.2015 00:31, Thierry Reding wrote: > On Wed, Oct 07, 2015 at 10:35:54AM +0900, Krzysztof Kozlowski wrote: >> On 05.10.2015 21:47, Thierry Reding wrote: >>> Use a PWM lookup table to provide the PWM to the pwm-backlight device. >>> The driver has a legacy code path that is required only

[PATCHv3 2/2] ARM: multi_v7_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4

2015-10-07 Thread Anand Moon
Odroid XU4 has a RTL8153-CG gigabit Ethernet adapter, connected over USB 3.0. Signed-off-by: Anand Moon Reviewed-by: Krzysztof Kozlowski --- Changes: Fixed the commit message thanks to Krzysztof Kozlowski Added reviewed by Krzysztof

[PATCHv3 1/2] ARM: exynos_defconfig: Enable rtl8152 ethernet driver for Odroid-XU4

2015-10-07 Thread Anand Moon
Odroid XU4 has a RTL8153-CG gigabit Ethernet adapter, connected over USB 3.0. Signed-off-by: Anand Moon Reviewed-by: Krzysztof Kozlowski --- Changes: Fixed the commit message thanks to Krzysztof Kozlowski Added reviewed by Krzysztof

Re: [PATCH 6/6] ARM: s3c64xx: smartq: Use PWM lookup table

2015-10-07 Thread Krzysztof Kozlowski
On 05.10.2015 21:47, Thierry Reding wrote: > Use a PWM lookup table to provide the PWM to the pwm-backlight device. > The driver has a legacy code path that is required only because boards > still use the legacy method of requesting PWMs by global ID. Replacing > these usages allows that legacy

[PATCH v3 2/2] s5p-mfc: use MFC_BUF_FLAG_EOS to identify last buffers in decoder capture queue

2015-10-07 Thread Andrzej Hajda
MFC driver never delivered EOS event to apps feeding constantly its capture buffer with fresh buffers. The patch fixes it by marking last buffers returned by MFC with MFC_BUF_FLAG_EOS flag and firing EOS event on de-queuing such buffers. Signed-off-by: Andrzej Hajda --- Hi

[PATCH v3 1/2] s5p-mfc: end-of-stream handling for newer encoders

2015-10-07 Thread Andrzej Hajda
MFC encoder supports end-of-stream handling for encoder in version 5 of hardware. This patch adds it also for newer version. It was successfully tested on MFC-v8. Signed-off-by: Andrzej Hajda --- Hi Kamil, Incorrect format fixed. Regards Andrzej ---

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-07 Thread Javier Martinez Canillas
Hello Yakir, On 10/07/2015 11:02 AM, Yakir Yang wrote: > Hi Javier, > > On 10/07/2015 04:46 PM, Javier Martinez Canillas wrote: >> Hello Yakir, >> >> On 10/07/2015 08:25 AM, Yakir Yang wrote: >>> Hi all, >>> >>> Friendly ping. :) >>> >>> >>> Best regards, >>> - Yakir >>> >>> >> Do you have

Re: [PATCH v5 0/17] Add Analogix Core Display Port Driver

2015-10-07 Thread Javier Martinez Canillas
Hello Yakir, On 10/07/2015 01:05 PM, Yakir Yang wrote: > Hi Javier, > > On 10/07/2015 05:26 PM, Javier Martinez Canillas wrote: >> Hello Yakir, >> >> On 10/07/2015 11:02 AM, Yakir Yang wrote: >>> Hi Javier, >>> >>> On 10/07/2015 04:46 PM, Javier Martinez Canillas wrote: Hello Yakir,

[PATCH 2/5] ARM: dts: Use GPIO constants for flags cells in exynos4120 boards

2015-10-07 Thread Javier Martinez Canillas
The board DTS are using numeric values instead of the defined GPIO constanst to express polarity, use them to make the DTS more clear. Signed-off-by: Javier Martinez Canillas --- arch/arm/boot/dts/exynos4210-origen.dts | 15 -

[PATCH 1/5] ARM: dts: Use GPIO constants for flags cells in exynos3250 boards

2015-10-07 Thread Javier Martinez Canillas
The board DTS are using numeric values instead of the defined GPIO constanst to express polarity, use them to make the DTS more clear. Signed-off-by: Javier Martinez Canillas --- arch/arm/boot/dts/exynos3250-monk.dts | 8

[PATCH 4/5] ARM: dts: Use GPIO constants for flags cells in exynos5420/5422/5800 boards

2015-10-07 Thread Javier Martinez Canillas
The board DTS are using numeric values instead of the defined GPIO constanst to express polarity, use them to make the DTS more clear. Signed-off-by: Javier Martinez Canillas --- arch/arm/boot/dts/exynos5420-arndale-octa.dts | 3 ++-

[PATCH 3/5] ARM: dts: Use GPIO constants for flags cells in exynos4412 boards

2015-10-07 Thread Javier Martinez Canillas
The board DTS are using numeric values instead of the defined GPIO constanst to express polarity, use them to make the DTS more clear. Signed-off-by: Javier Martinez Canillas --- arch/arm/boot/dts/exynos4412-odroid-common.dtsi | 15 ++-

[PATCH 0/5] ARM: dts: Use GPIO constants for flags cells in exynos boards

2015-10-07 Thread Javier Martinez Canillas
Hello, This series contains trivial patches that use the GPIO constants defined in include/dt-bindings/gpio/gpio.h to express GPIO polarity instead of numeric values. There is no functional change and the compiled dtbs are unchanged but is a good practice to use the defined macros instead of

[PATCH 5/5] ARM: dts: Use GPIO constants for flags cells in exynos5440 boards

2015-10-07 Thread Javier Martinez Canillas
The board DTS are using numeric values instead of the defined GPIO constanst to express polarity, use them to make the DTS more clear. Signed-off-by: Javier Martinez Canillas --- arch/arm/boot/dts/exynos5440-ssdk5440.dts | 5 +++-- 1 file changed, 3 insertions(+), 2

Re: [RFT 0/3] usb: usb3503: Fix probing on Arndale board (missing phy)

2015-10-07 Thread Marek Szyprowski
Hello, On 2015-10-07 02:30, Krzysztof Kozlowski wrote: Introduction This patchset tries to fix probing of usb3503 on Arndale board if the Samsung PHY driver is probed later (or built as a module). *The patchset was not tested on Arndale board.* I don't have that board. Please test

Re: [PATCH 2/6] ARM: s3c24xx: rx1950: Use PWM lookup table

2015-10-07 Thread Thierry Reding
On Wed, Oct 07, 2015 at 10:35:54AM +0900, Krzysztof Kozlowski wrote: > On 05.10.2015 21:47, Thierry Reding wrote: > > Use a PWM lookup table to provide the PWM to the pwm-backlight device. > > The driver has a legacy code path that is required only because boards > > still use the legacy method of

Re: [PATCH 5/6] ARM: s3c64xx: hmt: Use PWM lookup table

2015-10-07 Thread Thierry Reding
On Wed, Oct 07, 2015 at 10:37:42AM +0900, Krzysztof Kozlowski wrote: > On 05.10.2015 21:47, Thierry Reding wrote: > > Use a PWM lookup table to provide the PWM to the pwm-backlight device. > > The driver has a legacy code path that is required only because boards > > still use the legacy method of

Re: [PATCH 00/13] drm/exynos: async G2D and g2d_move()

2015-10-07 Thread Tobias Jakobi
Gentle ping! :-) - Tobias Tobias Jakobi wrote: > Hello, > > this series mostly touches G2D code. It introduces the following: > > (1) drmHandleEvent2() is added to enable processing of vendor-specific > events. This will be used to expose asynchronous operation of the > G2D. The