[PATCH v3 01/12] ARM: EXYNOS: remove system mmu initialization from exynos tree

2012-11-21 Thread KyongHo Cho
On Thu, Nov 22, 2012 at 12:46 AM, Kukjin Kim wrote: > On 11/21/12 14:02, Cho KyongHo wrote: >> >> This removes System MMU initialization from arch/arm/mach-exynos/ > > > Basically, looks OK to me, but I think, this removing change should be done > after 03/12 patch :-) > Thank you. I agree. It wil

[PATCH v3 02/12] ARM: EXYNOS: Add clk_ops for gating clocks of System MMU

2012-11-21 Thread KyongHo Cho
On Thu, Nov 22, 2012 at 12:50 AM, Kukjin Kim wrote: > On 11/21/12 14:03, Cho KyongHo wrote: >> >> Touching some System MMU needs its master devices' clock to be enabled >> before. This commit adds clk_ops.set_parent of gating clocks of System >> MMU to ensure gating clocks of System MMU's mater de

Re: [PATCH v5 4/5] iommu/omap: adapt to runtime pm

2012-11-21 Thread Felipe Contreras
On Tue, Nov 20, 2012 at 2:05 AM, Omar Ramirez Luna wrote: > @@ -1022,7 +1019,8 @@ static int __devexit omap_iommu_remove(struct > platform_device *pdev) > release_mem_region(res->start, resource_size(res)); > iounmap(obj->regbase); > > - clk_put(obj->clk); > + pm_runt

Re: [PATCH v5 5/5] ARM: OMAP4: hwmod data: ipu and dsp to use parent clocks instead of leaf clocks

2012-11-21 Thread Tony Lindgren
* Omar Ramirez Luna [121119 17:08]: > This prevents hwmod _enable_clocks...omap2_dflt_clk_enable path > from enabling modulemode inside CLKCTRL using its clk->enable_reg > field. Instead is left to _omap4_enable_module though soc_ops, as > the one in charge of this setting. > > According to comme

Re: [PATCH v5 4/5] iommu/omap: adapt to runtime pm

2012-11-21 Thread Tony Lindgren
* Omar Ramirez Luna [121119 17:08]: > Use runtime PM functionality interfaced with hwmod enable/idle > functions, to replace direct clock operations and sysconfig > handling. > > Due to reset sequence, pm_runtime_[get|put]_sync must be used, to > avoid possible operations with the module under re

Re: [PATCH v3 02/12] ARM: EXYNOS: Add clk_ops for gating clocks of System MMU

2012-11-21 Thread Kukjin Kim
On 11/21/12 14:03, Cho KyongHo wrote: Touching some System MMU needs its master devices' clock to be enabled before. This commit adds clk_ops.set_parent of gating clocks of System MMU to ensure gating clocks of System MMU's mater devices are enabled when enabling gating clocks of System MMU. Cha

Re: [PATCH v3 01/12] ARM: EXYNOS: remove system mmu initialization from exynos tree

2012-11-21 Thread Kukjin Kim
On 11/21/12 14:02, Cho KyongHo wrote: This removes System MMU initialization from arch/arm/mach-exynos/ Basically, looks OK to me, but I think, this removing change should be done after 03/12 patch :-) to move them to DT and the exynos-iommu driver except gating clock definitions. Change-I