Re: [PATCH v3 00/12] Add DSI display support for Exynos based boards

2014-04-02 Thread Andrzej Hajda
Hi Inki, I see you have took also ld9040 driver patch [1]. Could you take the 3rd version of this patch [2]. It fixes build dependencies. [1]: http://permalink.gmane.org/gmane.comp.video.dri.devel/102592 [2]: http://permalink.gmane.org/gmane.comp.video.dri.devel/102659 Thanks and Regards

[PATCH 01/10] ARM: EXYNOS: Cleanup mach-exynos/common.h file

2014-04-02 Thread Pankaj Dubey
Remove unused declarations from mach-exynos/common.h Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/mach-exynos/common.h |3 --- 1 file changed, 3 deletions(-) diff --git a/arch/arm/mach-exynos/common.h b/arch/arm/mach-exynos/common.h index 9ef3f83..277a83e 100644 ---

[PATCH 0/7] ARM: Exynos: PMU cleanup and refactoring for using DT

2014-04-02 Thread Pankaj Dubey
This patch series, does some minor cleanup and modifies Exynos PMU related code for mapping Exynos Power Management Unit (PMU) base address from device tree. Since PMU offsets are used across many files under mach-exynos, it introduces one helper function to get PMU base address in exynos.c. This

[PATCH 03/10] ARM: EXYNOS: Move SYSREG definition into sys-reg specific file

2014-04-02 Thread Pankaj Dubey
From: Young-Gun Jang yg1004.j...@samsung.com While making PMU (Power Mengement Unit) implementation device tree based, there are few offsets related with SYSREG present in regs-pmu.h, so let's make a new header file regs-sys.h to keep all such SYSREG related register definition and remove them

[PATCH 07/10] ARM: EXYNOS: Refactored code for PMU register mapping via DT

2014-04-02 Thread Pankaj Dubey
This patch removes PMU register mapping via iodesc table and updates users of PMU registers for using get_exynos_pmubase helper function to get PMU base address. CC: Tomasz Figa t.f...@samsung.com CC: Kyungmin Park kyungmin.p...@samsung.com CC: Thomas Abraham thomas.abra...@linaro.org

[PATCH 02/10] ARM: EXYNOS: Correct file path in comment message

2014-04-02 Thread Pankaj Dubey
This patch corrects file path mentioned in file comment message. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/mach-exynos/platsmp.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-exynos/platsmp.c b/arch/arm/mach-exynos/platsmp.c index

[PATCH 04/10] ARM: EXYNOS: Remove regs-pmu.h file dependency from pm_domain

2014-04-02 Thread Pankaj Dubey
From: Young-Gun Jang yg1004.j...@samsung.com Current pm_domain.c file uses S5P_INT_LOCAL_PWR_EN definition from regs-pmu.h and hence needs to include this header file. As there is no other user of S5P_INT_LOCAL_PWR_EN definition other than pm_domain, to remove regs-pmu.h header file dependency

[PATCH 05/10] ARM: EXYNOS: Move regs-pmu header inclusion in common.h

2014-04-02 Thread Pankaj Dubey
There are many machine files under mach-exynos including regs-pmu.h as well as common.h, so better we move this header inclusion in common.h. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/mach-exynos/common.h |1 + arch/arm/mach-exynos/cpuidle.c |1 -

[PATCH 3/3] Documentation: update samsung pmu binding information for Exynos4210/4212/4412

2014-04-02 Thread Pankaj Dubey
This patch updates samsung pmu (power management unit) binding information for Exynos4210, Exynos4212 and Exynos4412. CC: Leela Krishna Amudala l.kris...@samsung.com CC: Tomasz Figa t.f...@samsung.com CC: Guenter Roeck li...@roeck-us.net CC: Rob Landley r...@landley.net Signed-off-by: Pankaj

[PATCH 0/3] Add PMU node for Exynos4210, Exynos4412, Exynos4212

2014-04-02 Thread Pankaj Dubey
This patch updates Exynos4210, Exynos4412 and Exynos4212 dtsi files for adding PMU (Power Management Unit) reg node. Also updated binding document for the same. These patches required for using PMU base address via DT for these SoC. Patches for using PMU base address via DT are posted here-

[PATCH 1/3] ARM: dts: Add PMU reg node to exynos4210

2014-04-02 Thread Pankaj Dubey
This patch adds pmu regnode to exynos4210 dtsi to handle PMU register access via DT. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/boot/dts/exynos4210.dtsi |5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/boot/dts/exynos4210.dtsi

[PATCH 2/3] ARM: dts: Add PMU reg node to exynos4212 and exynos4412

2014-04-02 Thread Pankaj Dubey
This patch adds pmu regnode to exynos4212 and exynos4412 dtsi to handle PMU register access via DT. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/boot/dts/exynos4212.dtsi |5 + arch/arm/boot/dts/exynos4412.dtsi |5 + 2 files changed, 10 insertions(+) diff

[RFC PATCH 0/2] Add support for Exynos PMU driver

2014-04-02 Thread Pankaj Dubey
This patch series tries to remove machine specific implementation of Power Management Unit from mach-exynos to driver form. In case of ARM32 we had machine folder such as mach-exynos but moving forward with ARM64 SoC support we can not have any more such machine folders, keeping that in mind we

[RFC PATCH 1/2] drivers: mfd: Add support of exynos-pmu driver

2014-04-02 Thread Pankaj Dubey
From: Younggun Jang yg1004.j...@samsung.com This driver is mainly used for setting misc bits of register from PMU IP of Exynos SoC which will be required to configure before Suspend/Resume. Currently all these settings are done in arch/arm/mach-exynos/pmu.c but moving ahead for ARM64 based SoC

[RFC PATCH 2/2] ARM: EXYNOS: remove arch specific PMU implementation

2014-04-02 Thread Pankaj Dubey
Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/mach-exynos/Kconfig |2 + arch/arm/mach-exynos/Makefile |2 - arch/arm/mach-exynos/pmu.c| 426 - 3 files changed, 2 insertions(+), 428 deletions(-) delete mode 100644

[PATCH 1/1] ARM: EXYNOS: Consolidate Kconfig entries

2014-04-02 Thread Sachin Kamat
Instead of repeating the Kconfig entries for every SoC, move them under ARCH_EXYNOS4 and 5 and move the entries common to both 4 and 5 under ARCH_EXYNOS. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- Changes since previous version: Kept the individual machines selectable as suggested by

Re: [PATCH 03/10] ARM: EXYNOS: Move SYSREG definition into sys-reg specific file

2014-04-02 Thread Sylwester Nawrocki
Hi, On 02/04/14 09:50, Pankaj Dubey wrote: From: Young-Gun Jang yg1004.j...@samsung.com While making PMU (Power Mengement Unit) implementation device tree based, there are few offsets related with SYSREG present in regs-pmu.h, so let's make a new header file regs-sys.h to keep all such

Re: [PATCH 06/10] ARM: EXYNOS: Add support for mapping PMU base address via DT

2014-04-02 Thread Sylwester Nawrocki
On 02/04/14 09:50, Pankaj Dubey wrote: From: Young-Gun Jang yg1004.j...@samsung.com Add support for mapping Exynos Power Management Unit (PMU) base address from device tree. Code will use existing samsung pmu binding information. This patch also adds get_exynos_pmubase a helper function to

Re: [PATCH 02/10] ARM: EXYNOS: Correct file path in comment message

2014-04-02 Thread Michal Simek
On 04/02/2014 09:50 AM, Pankaj Dubey wrote: This patch corrects file path mentioned in file comment message. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/mach-exynos/platsmp.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [PATCH 06/10] ARM: EXYNOS: Add support for mapping PMU base address via DT

2014-04-02 Thread Michal Simek
On 04/02/2014 01:48 PM, Sylwester Nawrocki wrote: On 02/04/14 09:50, Pankaj Dubey wrote: From: Young-Gun Jang yg1004.j...@samsung.com Add support for mapping Exynos Power Management Unit (PMU) base address from device tree. Code will use existing samsung pmu binding information. This patch

RE: [PATCH 1/8] ARM: imx6q-clk: parent lvds_gate from lvds_sel

2014-04-02 Thread hong-xing....@freescale.com
Hi Lucas: Thanks for your re-structure the management of the output on CLK1/2 pads. -Original Message- From: linux-pci-ow...@vger.kernel.org [mailto:linux-pci-ow...@vger.kernel.org] On Behalf Of Lucas Stach Sent: Saturday, March 29, 2014 12:53 AM To: linux-...@vger.kernel.org Cc:

Re: [RESEND: RFC PATCH 3/3] pcie: keystone: add pcie driver based on designware core driver

2014-04-02 Thread Andrew Murray
On 2 April 2014 16:43, Murali Karicheri m-kariche...@ti.com wrote: Keystone pcie driver is developed based on other dw based pcie drivers such as pci-exynos that uses subsys_initcall(). I am new to this list, probably Jingoo (copied) has some history on why we can't use module. For now I

[PATCH 3/5] drm/exynos: remove unnecessary read for phy configuration values

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma rahul.sha...@samsung.com Cleaning up unnecessary i2c read call after hdmiphy configuration. This check is redundant since check for hdmiphy pll lock status confirms the correct settings for phy. Signed-off-by: Rahul Sharma rahul.sha...@samsung.com Signed-off-by: Daniel Kurtz

[PATCH 4/5] drm/exynos: add support for apb mapped phys in hdmi driver

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma rahul.sha...@samsung.com Previous SoCs have hdmi phys which are accessible through dedicated i2c lines. Newer SoCs have Apb mapped hdmi phys. Hdmi driver is modified to support apb mapped phys. Signed-off-by: Rahul Sharma rahul.sha...@samsung.com ---

[PATCH 2/5] drm/exynos: use regmap interface to set hdmiphy control bit in pmu

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma rahul.sha...@samsung.com Hdmiphy control bit needs to be set before setting the resolution to hdmi hardware. This was handled using dummy hdmiphy clock which is removed now. PMU is already defined as system controller for exynos SoC. Registers of PMU are accessed using regmap

[PATCH 0/5] drm/exynos: enable support for exynos5420 hdmi

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma rahul.sha...@samsung.com Adds apb mapped phy support for exynos5420 hdmi. Replace dummy hdmiphy clock with regmap calls. Based on Inki Dae's exynos-drm-next branch. Rahul Sharma (5): drm/exynos: remove dummy hdmiphy clock from hdmi driver drm/exynos: use regmap interface

Re: [RESEND: RFC PATCH 3/3] pcie: keystone: add pcie driver based on designware core driver

2014-04-02 Thread Murali Karicheri
Arnd, Thanks for reviewing the RFC patch. Please see below my response. On 3/25/2014 3:44 AM, Arnd Bergmann wrote: On Monday 24 March 2014 20:35:26 Murali Karicheri wrote: + +int k2_pcie_platform_setup(struct platform_device *pdev) +{ + struct resource *phy_base_r, *devstat_r; +

Re: [RESEND: RFC PATCH 3/3] pcie: keystone: add pcie driver based on designware core driver

2014-04-02 Thread Murali Karicheri
On 4/2/2014 12:47 PM, Andrew Murray wrote: On 2 April 2014 16:43, Murali Karicheri m-kariche...@ti.com wrote: Keystone pcie driver is developed based on other dw based pcie drivers such as pci-exynos that uses subsys_initcall(). I am new to this list, probably Jingoo (copied) has some

Re: [PATCH v7 0/3] Exynos 5410 support

2014-04-02 Thread Kevin Hilman
Tarek Dakhran t.dakh...@samsung.com writes: The series of patches represent support of Exynos 5410 SoC The Exynos 5410 is the first Samsung SoC based on bigLITTLE architecture Patches add new platform description, support of clock controller and device tree for Exynos 5410. Has been

Re: [PATCH 02/10] ARM: EXYNOS: Correct file path in comment message

2014-04-02 Thread Pankaj Dubey
Hi Michal, On 04/02/2014 09:01 PM, Michal Simek wrote: On 04/02/2014 09:50 AM, Pankaj Dubey wrote: This patch corrects file path mentioned in file comment message. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/mach-exynos/platsmp.c |2 +- 1 file changed, 1

RE: [PATCH 02/10] ARM: EXYNOS: Correct file path in comment message

2014-04-02 Thread Kukjin Kim
Pankaj Dubey wrote: Hi Michal, On 04/02/2014 09:01 PM, Michal Simek wrote: On 04/02/2014 09:50 AM, Pankaj Dubey wrote: This patch corrects file path mentioned in file comment message. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/mach-exynos/platsmp.c |2

Re: [PATCH v7 2/3] clk: exynos5410: register clocks using common clock framework

2014-04-02 Thread Mike Turquette
Quoting Tarek Dakhran (2014-02-23 19:43:54) +External clock: + +There is clock that is generated outside the SoC. It is expected +that it is defined using standard clock bindings with following +clock-output-name: + - fin_pll - PLL input clock - required. snip +Example 2: Required

[PATCH v6 0/3] exynos: arch: add support for exynos5260 SoC

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma rahul.sha...@samsung.com V6: 1) Renamed mmc nodes. 2) Removed PHY clocks from DT and put them inside clock driver. 3) Added clock-cells property for all fixed clocks. 4) Removed spdif_ext_clk fixed rate clock. V5: 1) Removed SYSRAM related code. 2) Fixed mct

[PATCH v6 1/3] ARM: EXYNOS: initial board support for exynos5260 SoC

2014-04-02 Thread Rahul Sharma
From: Pankaj Dubey pankaj.du...@samsung.com This patch add basic arch side support for exynos5260 SoC. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com Signed-off-by: Rahul Sharma rahul.sha...@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com --- arch/arm/mach-exynos/Kconfig

[PATCH v6 2/3] ARM: dts: add dts files for exynos5260 SoC

2014-04-02 Thread Rahul Sharma
The patch adds the dts files for exynos5260. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com Signed-off-by: Rahul Sharma rahul.sha...@samsung.com Signed-off-by: Arun Kumar K arun...@samsung.com Reviewed-by: Tomasz Figa t.f...@samsung.com --- arch/arm/boot/dts/exynos5260-pinctrl.dtsi | 574

[PATCH v6 3/3] ARM: dts: add dts files for xyref5260 board

2014-04-02 Thread Rahul Sharma
The patch adds the dts files for xyref5260 board which is based on Exynos5260 Evt0 sample. Signed-off-by: Rahul Sharma rahul.sha...@samsung.com --- arch/arm/boot/dts/Makefile |1 + arch/arm/boot/dts/exynos5260-xyref5260-evt0.dts | 103 +++ 2 files