From patchwork Wed Jun 5 11:19:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Grygorii Strashko X-Patchwork-Id: 2668821 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id DA5F83FD4F for ; Wed, 5 Jun 2013 11:23:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754085Ab3FELXj (ORCPT ); Wed, 5 Jun 2013 07:23:39 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:37289 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752664Ab3FELXi (ORCPT ); Wed, 5 Jun 2013 07:23:38 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id r55BN2ED003648; Wed, 5 Jun 2013 06:23:02 -0500 Received: from DLEE70.ent.ti.com (dlee70.ent.ti.com [157.170.170.113]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id r55BN2Th019169; Wed, 5 Jun 2013 06:23:02 -0500 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DLEE70.ent.ti.com (157.170.170.113) with Microsoft SMTP Server id 14.2.342.3; Wed, 5 Jun 2013 06:23:02 -0500 Received: from localhost (uglx0174654.ucm2.emeaucm.ext.ti.com [10.167.145.172]) by dlelxv22.itg.ti.com (8.13.8/8.13.8) with ESMTP id r55BN1Xf032464; Wed, 5 Jun 2013 06:23:01 -0500 From: Grygorii Strashko To: , Andrew Morton CC: , , Grygorii Strashko , Alessandro Zummo , Tony Lindgren Subject: [PATCH] rtc: rtc-twl: fix initialization sequence Date: Wed, 5 Jun 2013 14:19:22 +0300 Message-ID: <1370431162-24185-1-git-send-email-grygorii.strashko@ti.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org The twl-rtc has the following dependencies from other drivers during the boot: pinctrl |-i2c-omap |- twl-core |- twl-rtc The i2c-omap probe may be deferred because pinctrl iss not ready yet. As result, i2c-omap will be probed at late init time. Which, in turn, will delay twl-core initialization till late init time too. But, the twl-rtc driver is registered from finction twl_rtc_init() at module(device) init time and contains part of its initialization code within it. Unfortunatelly, this code depends on twl-core which may be not ready at that moment and, as result, wrong register map will be selected (on OMAP3 twl6030_rtc_reg_map will be selected instead of twl4030_rtc_reg_map). static int __init twl_rtc_init(void) { if (twl_class_is_4030()) <--- twl-core might be not ready here <--- and twl_class_is_4030() will return 0 rtc_reg_map = (u8 *) twl4030_rtc_reg_map; else rtc_reg_map = (u8 *) twl6030_rtc_reg_map; return platform_driver_register(&twl4030rtc_driver); } Hence, move register map selection code in twl_rtc_probe() to solve this issue. Cc: Alessandro Zummo Cc: Andrew Morton Cc: Tony Lindgren Signed-off-by: Grygorii Strashko --- drivers/rtc/rtc-twl.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/rtc/rtc-twl.c b/drivers/rtc/rtc-twl.c index bbda0fd..1698115 100644 --- a/drivers/rtc/rtc-twl.c +++ b/drivers/rtc/rtc-twl.c @@ -481,6 +481,11 @@ static int twl_rtc_probe(struct platform_device *pdev) if (irq <= 0) goto out1; + if (twl_class_is_4030()) + rtc_reg_map = (u8 *) twl4030_rtc_reg_map; + else + rtc_reg_map = (u8 *) twl6030_rtc_reg_map; + ret = twl_rtc_read_u8(&rd_reg, REG_RTC_STATUS_REG); if (ret < 0) goto out1; @@ -622,11 +627,6 @@ static struct platform_driver twl4030rtc_driver = { static int __init twl_rtc_init(void) { - if (twl_class_is_4030()) - rtc_reg_map = (u8 *) twl4030_rtc_reg_map; - else - rtc_reg_map = (u8 *) twl6030_rtc_reg_map; - return platform_driver_register(&twl4030rtc_driver); } module_init(twl_rtc_init);