Add power-off support for the TWL4030 companion
authorBernhard Wörndl-Aichriedler <bwa@xdevelop.at>
Sat, 15 May 2010 14:34:05 +0000 (16:34 +0200)
committerGrazvydas Ignotas <notasas@gmail.com>
Fri, 3 Jun 2011 20:56:34 +0000 (23:56 +0300)
This patch adds support for the power-off on shutdown feature of the TWL4030

drivers/mfd/Kconfig
drivers/mfd/twl-core.c

index 3ed3ff0..fe2370a 100644 (file)
@@ -210,6 +210,12 @@ config TWL4030_CODEC
        select MFD_CORE
        default n
 
+config TWL4030_POWEROFF
+       bool "TWL4030 Allow power-off on shutdown"
+       depends on TWL4030_CORE
+       help
+         Enables the CPU to power-off the system on shutdown
+
 config TWL6030_PWM
        tristate "TWL6030 PWM (Pulse Width Modulator) Support"
        depends on TWL4030_CORE
index e6e99db..d9435e4 100644 (file)
 #define twl_has_bci()  false
 #endif
 
+#if defined (CONFIG_TWL4030_POWEROFF)
+#define twl_has_poweroff()     true
+#else
+#define twl_has_poweroff()     false
+#endif
+
 /* Triton Core internal information (BEGIN) */
 
 /* Last - for index max*/
 #define TWL5031                        BIT(2)  /* twl5031 has different registers */
 #define TWL6030_CLASS          BIT(3)  /* TWL6030 class */
 
+/* for pm_power_off */
+#define PWR_P1_SW_EVENTS       0x10
+#define PWR_DEVOFF             (1 << 0)
+
 /*----------------------------------------------------------------------*/
 
 /* is driver active, bound to a chip? */
@@ -1021,6 +1031,30 @@ static int twl_remove(struct i2c_client *client)
        return 0;
 }
 
+static void twl_poweroff(void)
+{
+       int err;
+       u8 val;
+
+       err = twl_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &val,
+                                 PWR_P1_SW_EVENTS);
+       if (err) {
+               pr_err("%s: i2c error %d while reading TWL4030"
+                       "PM_MASTER P1_SW_EVENTS\n",
+                       DRIVER_NAME, err);
+               return;
+       }
+
+       val |= PWR_DEVOFF;
+
+       err = twl_i2c_write_u8(TWL4030_MODULE_PM_MASTER, val,
+                                  PWR_P1_SW_EVENTS);
+       if (err)
+               pr_err("%s: i2c error %d while writing TWL4030"
+                       "PM_MASTER P1_SW_EVENTS\n",
+                       DRIVER_NAME, err);
+}
+
 /* NOTE:  this driver only handles a single twl4030/tps659x0 chip */
 static int __devinit
 twl_probe(struct i2c_client *client, const struct i2c_device_id *id)
@@ -1108,6 +1142,12 @@ twl_probe(struct i2c_client *client, const struct i2c_device_id *id)
                twl_i2c_write_u8(TWL4030_MODULE_INTBR, temp, REG_GPPUPDCTR1);
        }
 
+       if(twl_has_poweroff())
+       {
+               /* initialize pm_power_off routine */
+               pm_power_off = twl_poweroff;
+       }
+
        status = add_children(pdata, id->driver_data);
 fail:
        if (status < 0)