[PATCH] clk: s3c64xx: Fix aliases for SPI devices

2013-08-30 Thread Mark Brown
From: Mark Brown The clock aliases for SPI devices do not reflect the actual usage in the driver causing the SPI controller to fail to probe when the clock driver is in use, fix this up. Signed-off-by: Mark Brown --- drivers/clk/samsung/clk-s3c64xx.c | 4 ++-- 1 file changed, 2 insertions(+),

Re: [PATCH V4] watchdog: s3c2410_wdt: remove the global variables

2013-08-30 Thread Wim Van Sebroeck
Hi Leela, > This patch removes the global variables in the driver file and > group them into a structure. > > Signed-off-by: Leela Krishna Amudala > Reviewed-by: Tomasz Figa > Acked-by: Kukjin Kim > --- > Note: This patch is rebased on kgene's for-next branch and tested on SMDK5420. > > Chan

Re: [PATCH v2 00/16] Exynos clock clean-up for 3.12

2013-08-30 Thread Tomasz Figa
Hi Mike, On Monday 26 of August 2013 19:08:55 Tomasz Figa wrote: > This series fixes various functional and non-functional (e.g. stylistic) > issues in Common Clock Framework drivers for Samsung Exynos SoCs. See > particular patches for more detailed descriptions. > > Changes since v1: > [http://

[PATCH] mmc: dw_mmc: update binding document exynos-dw-mshc.txt

2013-08-30 Thread Yuvaraj Kumar C D
This patch updates the exynos-dw-mshc.txt.Currently we are using "pinctrl" binding property to describe the CMD and DATA line's of Mobile Storage Host Controller(mshc) node. Compatibility string is added in the driver with the patch. [1] mmc: dw_mmc: exynos: configure SMU in exynos5420. DT nodes

[PATCH 2/2] ARM: EXYNOS: add cpuidle-exynos.max_states kernel parameter

2013-08-30 Thread Bartlomiej Zolnierkiewicz
Add "cpuidle-exynos.max_states=" parameter to allow user to specify the maximum of allowed CPU idle states for ARM EXYNOS cpuidle driver. This change is needed because C1 state (AFTR mode) is often not able to work properly due to incompatibility with some bootloader versions. Usage examples: "c

[PATCH 1/2] ARM: EXYNOS: convert cpuidle driver to be a platform driver

2013-08-30 Thread Bartlomiej Zolnierkiewicz
ARM EXYNOS cpuidle driver is currently not multiplatform support ready (as it uses device_initcall() for initialization and doesn't check on what platform it is running). Fix it by converting the driver to be a platform driver and registering exynos_cpuidle platform device from exynos[4,5]_dt_machi

Re: [PATCH 0/7] drm/exynos: move hdmiphy related code to hdmiphy driver

2013-08-30 Thread Rahul Sharma
Thanks Mr. Dae, I have some points for discussion. On 30 August 2013 14:03, Inki Dae wrote: > Hi Rahul. > > Thanks for your patch set. > > I had just quick review to all patch series. And I think we could fully hide > hdmiphy interfaces, > exynos_hdmiphy_enable/disable/check_mode/set_mode/conf_a

[RFC V4 3/4] mmc: dw_mmc: move the platform specific init call

2013-08-30 Thread Yuvaraj Kumar C D
Current platform specific private data initialisation call dw_mci_exynos_priv_init can be used to do platform specific initialisation of SMU and others in future.So the drv_data->init call has moved to dw_mci_probe. changes since V3: none changes since V2: none changes since V1: none Signed-off-b

[RFC V4 2/4] mmc: dw_mmc: socfpga: move socfpga private init

2013-08-30 Thread Yuvaraj Kumar C D
Currently platform specific private data initialisation is done by dw_mci_socfpga_priv_init and dw_mci_socfpga_parse_dt.As we already have separate platform specific device tree parser dw_mci_socfpga_parse_dt, move the dw_mci_socfpga_priv_init code to dw_mci_socfpga_parse_dt. We can use the dw_mci_

[RFC V4 0/4] dw_mmc platform specific private data and SMU init

2013-08-30 Thread Yuvaraj Kumar C D
changes from V3: changes only in the patch mmc: dw_mmc: exynos: configure SMU in exynos5420. 1.Added new compatible string "samsung,exynos5420-dw-mshc-smu" for the host with SMU. 2.Used compatible string "samsung,exynos5420-dw-mshc-smu" for controller in

[RFC V4 1/4] mmc: dw_mmc: exynos: move the exynos private init

2013-08-30 Thread Yuvaraj Kumar C D
Currently platform specific private data initialisation is done by dw_mci_exynos_priv_init and dw_mci_exynos_parse_dt.As we already have separate platform specific device tree parser dw_mci_exynos_parse_dt, move the dw_mci_exynos_priv_init code to dw_mci_exynos_parse_dt. We can use the dw_mci_exyno

[RFC V4 4/4] mmc: dw_mmc: exynos: configure SMU in exynos5420.

2013-08-30 Thread Yuvaraj Kumar C D
Exynos5420 Mobile Storage Host controller has Security Management Unit (SMU) for channel 0 and channel 1 (mainly for eMMC).This patch configures SMU for exynos5420. This patch is on top of the below patches [1]mmc: dw_mmc: Add exynos resume_noirq callback to clear WAKEUP_INT. [2]ARM: dts: Add dwm

[PATCH] ARM: dts: Add SPI nodes to the exynos5420 device tree file

2013-08-30 Thread Leela Krishna Amudala
Add SPI device tree nodes to Exynos5420 SoC Signed-off-by: Doug Anderson Signed-off-by: Leela Krishna Amudala Reviewed-by: Andrew Bresticker --- Note: This patch is rebased on Kgene's for-next branch and is dependent on [V3] ARM: dts: Add DMA controller node info on Exynos5420. https://patchwor

RE: [PATCH 0/7] drm/exynos: move hdmiphy related code to hdmiphy driver

2013-08-30 Thread Inki Dae
One more thing, you would need to check if other driver can be probed in probe context. With your patch, exynos_hdmiphy_driver_register() is called in hdmi_probe() via hdmi_get_phy_device(), and then platform_driver_reigster() is called via the exynos_hdmiphy_driver_register(). I remember that was

RE: [PATCH 0/7] drm/exynos: move hdmiphy related code to hdmiphy driver

2013-08-30 Thread Inki Dae
Hi Rahul. Thanks for your patch set. I had just quick review to all patch series. And I think we could fully hide hdmiphy interfaces, exynos_hdmiphy_enable/disable/check_mode/set_mode/conf_apply, from hdmi driver. That may be prototyped like below, at exynos_hdmi.h /* Define hdmiphy callbacks.

Re: [PATCH] mmc: sdhci-s3c: Check if clk_set_rate() succeeds

2013-08-30 Thread Jaehoon Chung
Looks good to me. Acked-by: Jaehoon Chung On 08/30/2013 01:15 AM, Mark Brown wrote: > From: Mark Brown > > It is possible that we may fail to set the clock rate, if we do so then > log the failure and don't bother reprogramming the IP. > > Signed-off-by: Mark Brown > --- > drivers/mmc/host/

Re: [PATCH] video: exynos: Ensure definitions match prototypes

2013-08-30 Thread Tomi Valkeinen
On 02/07/13 14:26, Mark Brown wrote: > From: Mark Brown > > Ensure that the definitions of functions match the prototypes used by > other modules by including the header with the prototypes in the files > with the definitions. > > Signed-off-by: Mark Brown Thanks, queued this for 3.12. Tomi

Re: [PATCH V5] ARM: dts: Add dwmmc DT nodes for exynos5420 SOC

2013-08-30 Thread Yuvaraj Kumar
On Wed, Aug 28, 2013 at 5:52 PM, Tomasz Figa wrote: > Hi Yuvaraj, > > On Wednesday 28 of August 2013 17:33:06 Yuvaraj Kumar C D wrote: >> This patch adds the device tree node entries for exynos5420 SOC. >> Exynos5420 has a different version of DWMMC controller,so a new >> compatible string is used