mfd: twl4030-power: Fix hang on reboot if sleep configuration was loaded earlier
authorTony Lindgren <tony@atomide.com>
Wed, 14 May 2014 01:34:04 +0000 (18:34 -0700)
committerLee Jones <lee.jones@linaro.org>
Wed, 28 May 2014 07:04:58 +0000 (08:04 +0100)
Looks like we can still hit the issue of wrong load order of
twl4030 configuration. If we have a sleep configuration loaded,
and do a warm reset, the device can hang while initializing the
wakeup12 sequence. We do have a warning message about wrong order
of twl4030 configuration, but in this case it does not help as
the sleep configuration was loaded during the previous boot and
the state of twl4030 is maintained throughout the warm reset.

Fix the issue by clearing any existing sleep configuration
before we load the warm reset configuration.

Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/twl4030-power.c

index 96162b62f3c0897df3f923ee0d4befcebfcb9048..1b30d8adc27088a632757501442a047347be51d1 100644 (file)
@@ -421,6 +421,12 @@ static int load_twl4030_script(struct twl4030_script *tscript,
                        goto out;
        }
        if (tscript->flags & TWL4030_WAKEUP12_SCRIPT) {
+               /* Reset any existing sleep script to avoid hangs on reboot */
+               err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, END_OF_SCRIPT,
+                                      R_SEQ_ADD_A2S);
+               if (err)
+                       goto out;
+
                err = twl4030_config_wakeup12_sequence(address);
                if (err)
                        goto out;