瀏覽代碼

ARM: OMAP2+: hwmod: Don't call _init_mpu_rt_base if no sysc

OMAP hwmod layer does the reset of the IPs in early code so that
we have SOC in sane state. To do the soft-reset, it needs to ioremap()
the IP address space to be able to write to sysconfig registers.

But there are few hwmod which doesn't have sysconfig registers and hence
no need to ioremap() them in early init code.

Prevent calling the _init_mpu_rt_base() conditional based on sysc
availability.

Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Benoit Cousson <benoit.cousson@linaro.org>
Santosh Shilimkar 12 年之前
父節點
當前提交
97597b9625
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      arch/arm/mach-omap2/omap_hwmod.c

+ 2 - 1
arch/arm/mach-omap2/omap_hwmod.c

@@ -2445,7 +2445,8 @@ static int __init _init(struct omap_hwmod *oh, void *data)
 	if (oh->_state != _HWMOD_STATE_REGISTERED)
 	if (oh->_state != _HWMOD_STATE_REGISTERED)
 		return 0;
 		return 0;
 
 
-	_init_mpu_rt_base(oh, NULL);
+	if (oh->class->sysc)
+		_init_mpu_rt_base(oh, NULL);
 
 
 	r = _init_clocks(oh, NULL);
 	r = _init_clocks(oh, NULL);
 	if (IS_ERR_VALUE(r)) {
 	if (IS_ERR_VALUE(r)) {