Re: [PATCH] Documentation: devicetree: mct: Fix counter bit of CPU local timers

2014-01-22 Thread Jingoo Han
On Tuesday, January 21, 2014 6:03 PM, Jingoo Han wrote: According to the datasheet of Exynos SoCs, the counter bit of CPU local timers is 31-bit, not 32-bit; thus, it should be fixed. Please, ignore this patch. There is a 31-bit counter in CPU local timers; however, FRC (free running

Re: [PATCH] Documentation: devicetree: mct: Fix counter bit of CPU local timers

2014-01-22 Thread Daniel Lezcano
On 01/22/2014 09:08 AM, Jingoo Han wrote: On Tuesday, January 21, 2014 6:03 PM, Jingoo Han wrote: According to the datasheet of Exynos SoCs, the counter bit of CPU local timers is 31-bit, not 32-bit; thus, it should be fixed. Please, ignore this patch. There is a 31-bit counter in CPU local

Re: [PATCH RFC 04/10] base: power: Add generic OF-based power domain look-up

2014-01-22 Thread Lorenzo Pieralisi
On Mon, Jan 20, 2014 at 05:32:53PM +, Tomasz Figa wrote: Hi Lorenzo, On 16.01.2014 17:34, Lorenzo Pieralisi wrote: Hi Tomasz, thank you for posting this series. I would like to use the DT bindings for power domains in the bindings for C-states on ARM:

[PATCH 1/1] ARM: EXYNOS: Consolidate CPU init code

2014-01-22 Thread Sachin Kamat
cpu_table was used to distinguish between different Exynos4 and 5 SoCs and assign the the initialization and io mapping pointers based on type. exynos_init is dummy and no longer needed as we do a DT based booting. By having a common io mapping function we can get rid of the whole table and avoid

[PATCH] ARM: EXYNOS: cpuidle: Fix build error of no type of module_init

2014-01-22 Thread Krzysztof Kozlowski
Add missing include to fix build error: arch/arm/mach-exynos/cpuidle.c:256:1: warning: data definition has no type or storage class [enabled by default] arch/arm/mach-exynos/cpuidle.c:256:1: error: type defaults to ‘int’ in declaration of ‘module_init’ [-Werror=implicit-int]

[PATCH] cpufreq: exynos: Fix build error of no type of module_init

2014-01-22 Thread y
From: Krzysztof Kozlowski k.kozlow...@samsung.com Add missing include to fix build error: drivers/cpufreq/exynos-cpufreq.c:292:1: warning: data definition has no type or storage class [enabled by default] drivers/cpufreq/exynos-cpufreq.c:292:1: error: type defaults to ‘int’ in declaration of

[PATCH RESEND] cpufreq: exynos: Fix build error of no type of module_init

2014-01-22 Thread Krzysztof Kozlowski
Add missing include to fix build error: drivers/cpufreq/exynos-cpufreq.c:292:1: warning: data definition has no type or storage class [enabled by default] drivers/cpufreq/exynos-cpufreq.c:292:1: error: type defaults to ‘int’ in declaration of ‘module_init’ [-Werror=implicit-int]

[RFC PATCH 4/9] drm/exynos: add DSIM driver

2014-01-22 Thread Andrzej Hajda
The patch adds driver for Exynos DSI master (DSIM). It is a platform driver which is registered as exynos_drm_display sub-driver of exynos_drm framework and implements DRM encoder/connector pair. It is also MIPI-DSI host driver and provides DSI bus for panels. It interacts with its panel(s) using

[RFC PATCH 3/9] exynos/dsim: add DT bindings

2014-01-22 Thread Andrzej Hajda
The patch adds DT bindings for Exynos DSI Master. DSIM follows rules for DSI bus host bindings [1]. Other properties describes its resources: memory, interrupt, clocks, phy, regulators. There is only one configuration property: pll-clock-frequency. [1]:

[RFC PATCH 9/9] ARM: dts: exynos4412-trats2: add panel node

2014-01-22 Thread Andrzej Hajda
The patch adds s6e8aa0 panel node for trats2. It adds also trats2 specific properties for DSI and regulator required by panel. Signed-off-by: Andrzej Hajda a.ha...@samsung.com --- arch/arm/boot/dts/exynos4412-trats2.dts | 45 + 1 file changed, 45 insertions(+)

[RFC PATCH 2/9] drm/exynos: delay fbdev initialization until an output is connected

2014-01-22 Thread Andrzej Hajda
In case fbdev is initialized before any output is connected, fb resolution defaults to 1024x768. After that any output with bigger resolution is ignored and fbdev is not displayed. The patch postpones fbdev initialization to avoid such situation. Signed-off-by: Andrzej Hajda a.ha...@samsung.com

[RFC PATCH 5/9] panel/s6e8aa0: add DT bindings

2014-01-22 Thread Andrzej Hajda
The patch adds bindings for s6e8aa0 panel. Bindings describes panel resources, boot delays, display timings, orientation and physical size. Signed-off-by: Andrzej Hajda a.ha...@samsung.com --- .../devicetree/bindings/panel/samsung-s6e8aa0.txt | 53 ++ 1 file changed, 53

[RFC PATCH 0/9] Exynos DSI master and S6E8AA0 panel drivers

2014-01-22 Thread Andrzej Hajda
Hi, This patch set adds bindings and drivers to Exynos MIPI-DSI host and S6E8AA0 panel. Both devices are present in Trats and Trats2 targets which are present in mainline kernel and currently have no display support. Patchset contains also patches adding corresponding DTS nodes to both devices.

[RFC PATCH 6/9] drm/panel: add s6e8aa0 driver

2014-01-22 Thread Andrzej Hajda
The patch adds MIPI-DSI based s6e8aa0 AMOLED LCD 5.3 inch panel driver. Driver uses mipi_dsi bus to communicate with panel and exposes drm_panel interface. Signed-off-by: Andrzej Hajda a.ha...@samsung.com --- drivers/gpu/drm/panel/Kconfig |7 + drivers/gpu/drm/panel/Makefile|

[RFC PATCH 7/9] ARM: dts: exynos4: add MIPI DSI Master node

2014-01-22 Thread Andrzej Hajda
This is a common part of DSI node for all Exynos4 boards. Signed-off-by: Andrzej Hajda a.ha...@samsung.com --- arch/arm/boot/dts/exynos4.dtsi | 14 ++ 1 file changed, 14 insertions(+) diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/boot/dts/exynos4.dtsi index a73eeb5..7102f29

[RFC PATCH 8/9] ARM: dts: exynos4210-trats: add panel node

2014-01-22 Thread Andrzej Hajda
The patch adds s6e8aa0 panel node for trats. It adds also trats specific properties for DSI. Signed-off-by: Andrzej Hajda a.ha...@samsung.com --- arch/arm/boot/dts/exynos4210-trats.dts | 36 ++ 1 file changed, 36 insertions(+) diff --git

[RFC PATCH 1/9] drm/exynos: correct timing porch conversion

2014-01-22 Thread Andrzej Hajda
Signed-off-by: Andrzej Hajda a.ha...@samsung.com --- drivers/gpu/drm/exynos/exynos_drm_fimd.c | 11 --- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c b/drivers/gpu/drm/exynos/exynos_drm_fimd.c index 8caaac2..b611f33 100644 ---

Re: [PATCH RESEND] cpufreq: exynos: Fix build error of no type of module_init

2014-01-22 Thread Viresh Kumar
On 22 January 2014 19:51, Krzysztof Kozlowski k.kozlow...@samsung.com wrote: Add missing include to fix build error: drivers/cpufreq/exynos-cpufreq.c:292:1: warning: data definition has no type or storage class [enabled by default] drivers/cpufreq/exynos-cpufreq.c:292:1: error: type defaults

Re: [PATCH RESEND] cpufreq: exynos: Fix build error of no type of module_init

2014-01-22 Thread Krzysztof Kozlowski
On Wed, 2014-01-22 at 20:12 +0530, Viresh Kumar wrote: On 22 January 2014 19:51, Krzysztof Kozlowski k.kozlow...@samsung.com wrote: Add missing include to fix build error: drivers/cpufreq/exynos-cpufreq.c:292:1: warning: data definition has no type or storage class [enabled by default]

Re: [RFC PATCH 1/9] drm/exynos: correct timing porch conversion

2014-01-22 Thread Andrzej Hajda
Hi, It seems I have not added description to this patch. In this patch porch is calculated in compatible way to drm_display_mode_from_videomode core function. The way it was seems to me incorrect and it did not work on my hw. Anyway this patch could be merged with Sean's patches, if he agrees.

Re: [PATCH RESEND] cpufreq: exynos: Fix build error of no type of module_init

2014-01-22 Thread Krzysztof Kozlowski
On Wed, 2014-01-22 at 20:12 +0530, Viresh Kumar wrote: On 22 January 2014 19:51, Krzysztof Kozlowski k.kozlow...@samsung.com wrote: Add missing include to fix build error: drivers/cpufreq/exynos-cpufreq.c:292:1: warning: data definition has no type or storage class [enabled by

[PATCH v2 1/2] regulator: s5m8767: Use GPIO for controlling Buck9/eMMC

2014-01-22 Thread Krzysztof Kozlowski
Add support for GPIO control (enable/disable) over Buck9. The Buck9 Converter is used as a supply for eMMC Host Controller. BUCK9EN GPIO of S5M8767 chip may be used by application processor to enable or disable the Buck9. This has two benefits: - It is faster than toggling it over I2C bus. - It

[PATCH v2 2/2] regulator: s5m8767: Document new bindings for Buck9 GPIO control

2014-01-22 Thread Krzysztof Kozlowski
Add documentation for new bindings for controlling (enable/disable) the Buck9 Converter by GPIO (BUCK9EN). Signed-off-by: Krzysztof Kozlowski k.kozlow...@samsung.com Cc: Kyungmin Park kyungmin.p...@samsung.com Cc: Marek Szyprowski m.szyprow...@samsung.com Cc: Bartlomiej Zolnierkiewicz

[PATCH v2 0/2] regulator: s5m8767: Use GPIO for controlling Buck9/eMMC

2014-01-22 Thread Krzysztof Kozlowski
. This patchset is based on next tree: next-20140122. Best regards, Krzysztof Krzysztof Kozlowski (2): regulator: s5m8767: Use GPIO for controlling Buck9/eMMC regulator: s5m8767: Document new bindings for Buck9 GPIO control .../bindings/regulator/s5m8767-regulator.txt | 16 +++- drivers

Re: [PATCH RFC 04/10] base: power: Add generic OF-based power domain look-up

2014-01-22 Thread Stephen Boyd
On 01/11, Tomasz Figa wrote: + +/** + * of_genpd_lock() - Lock access to of_genpd_providers list + */ +static void of_genpd_lock(void) +{ + mutex_lock(of_genpd_mutex); +} + +/** + * of_genpd_unlock() - Unlock access to of_genpd_providers list + */ +static void

Re: [PATCH RFC 04/10] base: power: Add generic OF-based power domain look-up

2014-01-22 Thread Tomasz Figa
Hi Stephen, On 23.01.2014 01:18, Stephen Boyd wrote: On 01/11, Tomasz Figa wrote: + +/** + * of_genpd_lock() - Lock access to of_genpd_providers list + */ +static void of_genpd_lock(void) +{ + mutex_lock(of_genpd_mutex); +} + +/** + * of_genpd_unlock() - Unlock access to

Re: [PATCH RFC 04/10] base: power: Add generic OF-based power domain look-up

2014-01-22 Thread Stephen Boyd
On 01/20, Tomasz Figa wrote: Hi Kevin, On 14.01.2014 16:42, Kevin Hilman wrote: Tomasz Figa tomasz.f...@gmail.com writes: This patch introduces generic code to perform power domain look-up using device tree and automatically bind devices to their power domains. Generic device tree

RE: [PATCH] ARM: exynos_defconfig: Update EHCI config entry

2014-01-22 Thread kgene
Jingoo Han wrote: On Thursday, January 16, 2014 5:34 PM, Tushar Behera wrote: Commit 29824c167bea (USB: host: Rename ehci-s5p to ehci-exynos) renamed the config entry of EHCI host driver. Similar change needs to be done in exynos_defconfig as well. Signed-off-by: Tushar Behera

RE: [PATCH 1/1] ARM: S3C24XX: Move rtc-core.h from plat to mach

2014-01-22 Thread kgene
Heiko Stübner wrote: Am Montag, 30. Dezember 2013, 16:10:08 schrieb Sachin Kamat: plat/rtc-core.h is only referenced from mach-s3c24xx. Hence move it there to de-populate the plat directory. While at it also do some cleanup of the header file. Signed-off-by: Sachin Kamat

Re: [RFC PATCH 1/9] drm/exynos: correct timing porch conversion

2014-01-22 Thread Daniel Kurtz
On Wed, Jan 22, 2014 at 11:09 PM, Andrzej Hajda a.ha...@samsung.com wrote: Hi, It seems I have not added description to this patch. In this patch porch is calculated in compatible way to drm_display_mode_from_videomode core function. The way it was seems to me incorrect and it did not work

Re: [PATCH] [media] s5p-mfc: Add Horizontal and Vertical search range for Video Macro Blocks

2014-01-22 Thread swaminathan
Hi All, Is there any review Comments for the patch [PATCH] [media] s5p-mfc: Add Horizontal and Vertical search range for Video Macro Blocks posted on 30-Dec-2013 ? Regards, Swaminathan -- From: Amit Grover amit.gro...@samsung.com Sent:

Re: [PATCH] [media] s5p-mfc: Add Horizontal and Vertical search range for Video Macro Blocks

2014-01-22 Thread Prabhakar Lad
Hi Swaminathan, On Thu, Jan 23, 2014 at 10:49 AM, swaminathan swaminat...@samsung.com wrote: Hi All, Is there any review Comments for the patch [PATCH] [media] s5p-mfc: Add Horizontal and Vertical search range for Video Macro Blocks posted on 30-Dec-2013 ? Just a side note, please don’t top

Re: Arndale Timer Interrupt Question

2014-01-22 Thread Mj Embd
On 1/10/14, Tomasz Figa t.f...@samsung.com wrote: Hi, On 09.01.2014 13:52, Bartlomiej Zolnierkiewicz wrote: added linux-samsung-soc to cc:, it is a better suited list for this question On Thursday, January 09, 2014 10:30:56 AM Mj Embd wrote: I am a bit confused on the interrupt number for

Re: [PATCH v2 2/2] regulator: s5m8767: Document new bindings for Buck9 GPIO control

2014-01-22 Thread Krzysztof Kozlowski
On Wed, 2014-01-22 at 19:49 +, Mark Brown wrote: On Wed, Jan 22, 2014 at 05:07:28PM +0100, Krzysztof Kozlowski wrote: Add documentation for new bindings for controlling (enable/disable) the Buck9 Converter by GPIO (BUCK9EN). Your CC list for this is *very* large... Hmmm... The