Re: [PATCH V2 3/6] mfd: tps6586x: cache register through regmap

2012-07-16 Thread Laxman Dewangan

On Tuesday 17 July 2012 01:33 AM, Mark Brown wrote:

* PGP Signed by an unknown key

On Mon, Jul 16, 2012 at 12:21:47PM +0530, Laxman Dewangan wrote:

To cache the interrupt mask register, use the regmap RB_TREE
cache-ing mechanism in place of implementing it locally.

Reviewed-by: Mark Brown

Can you use regmap-irq?

Sure, I will convert it to regmap_irq and will send new patch after this 
series in linux-next.

Thanks,
Laxman
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH V2 3/6] mfd: tps6586x: cache register through regmap

2012-07-16 Thread Mark Brown
On Mon, Jul 16, 2012 at 12:21:47PM +0530, Laxman Dewangan wrote:
> To cache the interrupt mask register, use the regmap RB_TREE
> cache-ing mechanism in place of implementing it locally.

Reviewed-by: Mark Brown 

Can you use regmap-irq?


signature.asc
Description: Digital signature


[PATCH V2 3/6] mfd: tps6586x: cache register through regmap

2012-07-16 Thread Laxman Dewangan
To cache the interrupt mask register, use the regmap RB_TREE
cache-ing mechanism in place of implementing it locally.

Signed-off-by: Laxman Dewangan 
---
Changes V1 -> V2:
No change, generated new patch for V2 series.

 drivers/mfd/tps6586x.c |   24 
 1 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/drivers/mfd/tps6586x.c b/drivers/mfd/tps6586x.c
index fb0c109..7210fa7 100644
--- a/drivers/mfd/tps6586x.c
+++ b/drivers/mfd/tps6586x.c
@@ -104,7 +104,6 @@ struct tps6586x {
struct mutexirq_lock;
int irq_base;
u32 irq_en;
-   u8  mask_cache[5];
u8  mask_reg[5];
 };
 
@@ -276,12 +275,11 @@ static void tps6586x_irq_sync_unlock(struct irq_data 
*data)
int i;
 
for (i = 0; i < ARRAY_SIZE(tps6586x->mask_reg); i++) {
-   if (tps6586x->mask_reg[i] != tps6586x->mask_cache[i]) {
-   if (!WARN_ON(tps6586x_write(tps6586x->dev,
-   TPS6586X_INT_MASK1 + i,
-   tps6586x->mask_reg[i])))
-   tps6586x->mask_cache[i] = tps6586x->mask_reg[i];
-   }
+   int ret;
+   ret = tps6586x_write(tps6586x->dev,
+   TPS6586X_INT_MASK1 + i,
+   tps6586x->mask_reg[i]);
+   WARN_ON(ret);
}
 
mutex_unlock(>irq_lock);
@@ -328,7 +326,6 @@ static int __devinit tps6586x_irq_init(struct tps6586x 
*tps6586x, int irq,
 
mutex_init(>irq_lock);
for (i = 0; i < 5; i++) {
-   tps6586x->mask_cache[i] = 0xff;
tps6586x->mask_reg[i] = 0xff;
tps6586x_write(tps6586x->dev, TPS6586X_INT_MASK1 + i, 0xff);
}
@@ -478,10 +475,21 @@ static struct tps6586x_platform_data 
*tps6586x_parse_dt(struct i2c_client *clien
 }
 #endif
 
+static bool is_volatile_reg(struct device *dev, unsigned int reg)
+{
+   /* Cache all interrupt mask register */
+   if ((reg >= TPS6586X_INT_MASK1) && (reg <= TPS6586X_INT_MASK5))
+   return false;
+
+   return true;
+}
+
 static const struct regmap_config tps6586x_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.max_register = TPS6586X_MAX_REGISTER - 1,
+   .volatile_reg = is_volatile_reg,
+   .cache_type = REGCACHE_RBTREE,
 };
 
 static int __devinit tps6586x_i2c_probe(struct i2c_client *client,
-- 
1.7.1.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH V2 3/6] mfd: tps6586x: cache register through regmap

2012-07-16 Thread Laxman Dewangan
To cache the interrupt mask register, use the regmap RB_TREE
cache-ing mechanism in place of implementing it locally.

Signed-off-by: Laxman Dewangan ldewan...@nvidia.com
---
Changes V1 - V2:
No change, generated new patch for V2 series.

 drivers/mfd/tps6586x.c |   24 
 1 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/drivers/mfd/tps6586x.c b/drivers/mfd/tps6586x.c
index fb0c109..7210fa7 100644
--- a/drivers/mfd/tps6586x.c
+++ b/drivers/mfd/tps6586x.c
@@ -104,7 +104,6 @@ struct tps6586x {
struct mutexirq_lock;
int irq_base;
u32 irq_en;
-   u8  mask_cache[5];
u8  mask_reg[5];
 };
 
@@ -276,12 +275,11 @@ static void tps6586x_irq_sync_unlock(struct irq_data 
*data)
int i;
 
for (i = 0; i  ARRAY_SIZE(tps6586x-mask_reg); i++) {
-   if (tps6586x-mask_reg[i] != tps6586x-mask_cache[i]) {
-   if (!WARN_ON(tps6586x_write(tps6586x-dev,
-   TPS6586X_INT_MASK1 + i,
-   tps6586x-mask_reg[i])))
-   tps6586x-mask_cache[i] = tps6586x-mask_reg[i];
-   }
+   int ret;
+   ret = tps6586x_write(tps6586x-dev,
+   TPS6586X_INT_MASK1 + i,
+   tps6586x-mask_reg[i]);
+   WARN_ON(ret);
}
 
mutex_unlock(tps6586x-irq_lock);
@@ -328,7 +326,6 @@ static int __devinit tps6586x_irq_init(struct tps6586x 
*tps6586x, int irq,
 
mutex_init(tps6586x-irq_lock);
for (i = 0; i  5; i++) {
-   tps6586x-mask_cache[i] = 0xff;
tps6586x-mask_reg[i] = 0xff;
tps6586x_write(tps6586x-dev, TPS6586X_INT_MASK1 + i, 0xff);
}
@@ -478,10 +475,21 @@ static struct tps6586x_platform_data 
*tps6586x_parse_dt(struct i2c_client *clien
 }
 #endif
 
+static bool is_volatile_reg(struct device *dev, unsigned int reg)
+{
+   /* Cache all interrupt mask register */
+   if ((reg = TPS6586X_INT_MASK1)  (reg = TPS6586X_INT_MASK5))
+   return false;
+
+   return true;
+}
+
 static const struct regmap_config tps6586x_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.max_register = TPS6586X_MAX_REGISTER - 1,
+   .volatile_reg = is_volatile_reg,
+   .cache_type = REGCACHE_RBTREE,
 };
 
 static int __devinit tps6586x_i2c_probe(struct i2c_client *client,
-- 
1.7.1.1

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH V2 3/6] mfd: tps6586x: cache register through regmap

2012-07-16 Thread Mark Brown
On Mon, Jul 16, 2012 at 12:21:47PM +0530, Laxman Dewangan wrote:
 To cache the interrupt mask register, use the regmap RB_TREE
 cache-ing mechanism in place of implementing it locally.

Reviewed-by: Mark Brown broo...@opensource.wolfsonmicro.com

Can you use regmap-irq?


signature.asc
Description: Digital signature


Re: [PATCH V2 3/6] mfd: tps6586x: cache register through regmap

2012-07-16 Thread Laxman Dewangan

On Tuesday 17 July 2012 01:33 AM, Mark Brown wrote:

* PGP Signed by an unknown key

On Mon, Jul 16, 2012 at 12:21:47PM +0530, Laxman Dewangan wrote:

To cache the interrupt mask register, use the regmap RB_TREE
cache-ing mechanism in place of implementing it locally.

Reviewed-by: Mark Brownbroo...@opensource.wolfsonmicro.com

Can you use regmap-irq?

Sure, I will convert it to regmap_irq and will send new patch after this 
series in linux-next.

Thanks,
Laxman
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/