Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329952
b: refs/heads/master
c: 004c15a
h: refs/heads/master
v: v3
  • Loading branch information
Bill Huang authored and Samuel Ortiz committed Sep 14, 2012
1 parent 3276099 commit 2447a49
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 80633f05b0dbf5819ef28f626f2f0b7c885d1f88
refs/heads/master: 004c15a68076f5bdc343bed92efed81087cecbfb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Required properties:
- vinldo678-supply: The input supply for the LDO6, LDO7 and LDO8
- vinldo9-supply: The input supply for the LDO9

Optional properties:
- ti,system-power-controller: Telling whether or not this pmic is controlling
the system power.

Each regulator is defined using the standard binding for regulators.

Example:
Expand All @@ -30,6 +34,8 @@ Example:
#gpio-cells = <2>;
gpio-controller;

ti,system-power-controller;

sm0-supply = <&some_reg>;
sm1-supply = <&some_reg>;
sm2-supply = <&some_reg>;
Expand Down
19 changes: 19 additions & 0 deletions trunk/drivers/mfd/tps6586x.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
#include <linux/mfd/core.h>
#include <linux/mfd/tps6586x.h>

#define TPS6586X_SUPPLYENE 0x14
#define EXITSLREQ_BIT BIT(1)
#define SLEEP_MODE_BIT BIT(3)

/* interrupt control registers */
#define TPS6586X_INT_ACK1 0xb5
#define TPS6586X_INT_ACK2 0xb6
Expand Down Expand Up @@ -409,6 +413,7 @@ static struct tps6586x_platform_data *tps6586x_parse_dt(struct i2c_client *clien
pdata->subdevs = devs;
pdata->gpio_base = -1;
pdata->irq_base = -1;
pdata->pm_off = of_property_read_bool(np, "ti,system-power-controller");

return pdata;
}
Expand Down Expand Up @@ -441,6 +446,15 @@ static const struct regmap_config tps6586x_regmap_config = {
.cache_type = REGCACHE_RBTREE,
};

static struct device *tps6586x_dev;
static void tps6586x_power_off(void)
{
if (tps6586x_clr_bits(tps6586x_dev, TPS6586X_SUPPLYENE, EXITSLREQ_BIT))
return;

tps6586x_set_bits(tps6586x_dev, TPS6586X_SUPPLYENE, SLEEP_MODE_BIT);
}

static int __devinit tps6586x_i2c_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
Expand Down Expand Up @@ -506,6 +520,11 @@ static int __devinit tps6586x_i2c_probe(struct i2c_client *client,
goto err_add_devs;
}

if (pdata->pm_off && !pm_power_off) {
tps6586x_dev = &client->dev;
pm_power_off = tps6586x_power_off;
}

return 0;

err_add_devs:
Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/mfd/tps6586x.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ struct tps6586x_platform_data {

int gpio_base;
int irq_base;
bool pm_off;
};

/*
Expand Down

0 comments on commit 2447a49

Please sign in to comment.