Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934061Ab3CHMyx (ORCPT ); Fri, 8 Mar 2013 07:54:53 -0500 Received: from mail-la0-f46.google.com ([209.85.215.46]:48130 "EHLO mail-la0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932120Ab3CHMyF (ORCPT ); Fri, 8 Mar 2013 07:54:05 -0500 From: Johan Hovold To: Nicolas Ferre Cc: Jean-Christophe Plagniol-Villard , Andrew Victor , Alessandro Zummo , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, rtc-linux@googlegroups.com, Johan Hovold Subject: [PATCH 0/3] ARM: at91: fix hanged boot Date: Fri, 8 Mar 2013 13:51:40 +0100 Message-Id: <1362747103-21445-1-git-send-email-jhovold@gmail.com> X-Mailer: git-send-email 1.8.1.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3465 Lines: 75 These patches fix a few severe issues affecting most AT91 SOCs where boot can hang after a non-general reset, and where the only way to get the system booting again is to do a general reset -- something which could require physically removing any backup battery. The problems stem from the fact that the RTC and RTT-peripherals are powered by backup power (VDDBU) and are not reset on wake-up, user, watchdog or software reset. Consequently, RTC and RTT-alarms and their interrupts may be enabled at boot, leading to a system lock-up when an interrupt arrives on the shared system-interrupt line before the appropriate handler (e.g. RTC-driver) has been installed. The easiest way to trigger this is to simply wake up from an RTC-alarm on at91sam9g45. The RTC-driver currently does not disable interrupts at shutdown so even after a clean shut-down the system will always hang after waking up. The first patch fixes this very general case of RTC-wake up after a clean shutdown in the RTC-driver and is marked for stable as it is perfectly straight-forward. [ Note that the other, RTT-based, AT91 RTC-driver already disables its interrupts at shutdown. ] The more general problem can be triggered, for example, by doing a user-reset while updating the RTC-time or if an RTC or RTT-alarm goes off after a non-clean shutdown. To fix this I propose that arch-code should mask the relevant interrupts at early boot, and this is what the third patch does. To access the RTC-registers I choose to revert a recent patch that moved the register definitions to drivers/rtc. Arguably, the interrupts could also be disabled in bootloaders, but I strongly suggest fixing it in the kernel once and for all. By adding a new, mandatory AT91 SOC-initialiser (rather extending init) it will not be overlooked when adding new SOCs either. The patches have been tested on at91sam9263 and at91sam9g45, and compile-tested for the other SOCs. Johan Johan Hovold (3): ARM: at91/rtc: fix boot after RTC wake-up Revert "arm: at91: move at91rm9200 rtc header in drivers/rtc" ARM: at91: fix hanged boot arch/arm/mach-at91/at91rm9200.c | 9 ++++ arch/arm/mach-at91/at91sam9260.c | 6 +++ arch/arm/mach-at91/at91sam9261.c | 6 +++ arch/arm/mach-at91/at91sam9263.c | 7 +++ arch/arm/mach-at91/at91sam9g45.c | 7 +++ arch/arm/mach-at91/at91sam9n12.c | 6 +++ arch/arm/mach-at91/at91sam9rl.c | 7 +++ arch/arm/mach-at91/at91sam9x5.c | 6 +++ arch/arm/mach-at91/generic.h | 2 + arch/arm/mach-at91/include/mach/at91_rtc.h | 75 +++++++++++++++++++++++++++ arch/arm/mach-at91/include/mach/at91sam9n12.h | 5 ++ arch/arm/mach-at91/include/mach/at91sam9x5.h | 5 ++ arch/arm/mach-at91/setup.c | 31 +++++++++++ arch/arm/mach-at91/soc.h | 1 + drivers/rtc/rtc-at91rm9200.c | 11 +++- drivers/rtc/rtc-at91rm9200.h | 75 --------------------------- 16 files changed, 183 insertions(+), 76 deletions(-) create mode 100644 arch/arm/mach-at91/include/mach/at91_rtc.h delete mode 100644 drivers/rtc/rtc-at91rm9200.h -- 1.8.1.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/