All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chris Lapa <chris@lapa.com.au>
To: pali.rohar@gmail.com, afd@ti.com, sre@kernel.org,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Chris Lapa <chris@lapa.com.au>
Subject: [PATCH v2 09/11] power: supplies: bq275xx: adds specific support for bq27520-g4 revision.
Date: Fri, 23 Dec 2016 11:05:05 +1100	[thread overview]
Message-ID: <1482451507-37676-10-git-send-email-chris@lapa.com.au> (raw)
In-Reply-To: <1482451507-37676-1-git-send-email-chris@lapa.com.au>

From: Chris Lapa <chris@lapa.com.au>

This commit adds the BQ27520G4 chip definition to specifically match the
bq27520-G4 functionality as described in the datasheet.

tested: no

Signed-off-by: Chris Lapa <chris@lapa.com.au>
---
 drivers/power/supply/bq27xxx_battery.c     | 40 +++++++++++++++++++++++++++++-
 drivers/power/supply/bq27xxx_battery_i2c.c |  2 ++
 include/linux/power/bq27xxx_battery.h      |  1 +
 3 files changed, 42 insertions(+), 1 deletion(-)

diff --git a/drivers/power/supply/bq27xxx_battery.c b/drivers/power/supply/bq27xxx_battery.c
index d36dc3a..c92c809 100644
--- a/drivers/power/supply/bq27xxx_battery.c
+++ b/drivers/power/supply/bq27xxx_battery.c
@@ -29,6 +29,7 @@
  * http://www.ti.com/product/bq27520-g1
  * http://www.ti.com/product/bq27520-g2
  * http://www.ti.com/product/bq27520-g3
+ * http://www.ti.com/product/bq27520-g4
  * http://www.ti.com/product/bq27530-g1
  * http://www.ti.com/product/bq27531-g1
  * http://www.ti.com/product/bq27541-g1
@@ -302,6 +303,25 @@ static u8 bq27xxx_regs[][BQ27XXX_REG_MAX] = {
 		[BQ27XXX_REG_DCAP] = 0x3c,
 		[BQ27XXX_REG_AP] = 0x24,
 	},
+	[BQ27520G4] = {
+		[BQ27XXX_REG_CTRL] = 0x00,
+		[BQ27XXX_REG_TEMP] = 0x06,
+		[BQ27XXX_REG_INT_TEMP] = 0x28,
+		[BQ27XXX_REG_VOLT] = 0x08,
+		[BQ27XXX_REG_AI] = 0x14,
+		[BQ27XXX_REG_FLAGS] = 0x0a,
+		[BQ27XXX_REG_TTE] = 0x16,
+		[BQ27XXX_REG_TTF] = INVALID_REG_ADDR,
+		[BQ27XXX_REG_TTES] = 0x1c,
+		[BQ27XXX_REG_TTECP] = INVALID_REG_ADDR,
+		[BQ27XXX_REG_NAC] = 0x0c,
+		[BQ27XXX_REG_FCC] = 0x12,
+		[BQ27XXX_REG_CYCT] = 0x1e,
+		[BQ27XXX_REG_AE] = INVALID_REG_ADDR,
+		[BQ27XXX_REG_SOC] = 0x20,
+		[BQ27XXX_REG_DCAP] = INVALID_REG_ADDR,
+		[BQ27XXX_REG_AP] = INVALID_REG_ADDR,
+	},
 	[BQ27530] = {
 		[BQ27XXX_REG_CTRL] = 0x00,
 		[BQ27XXX_REG_TEMP] = 0x06,
@@ -582,6 +602,23 @@ static enum power_supply_property bq27520g3_battery_props[] = {
 	POWER_SUPPLY_PROP_MANUFACTURER,
 };
 
+static enum power_supply_property bq27520g4_battery_props[] = {
+	POWER_SUPPLY_PROP_STATUS,
+	POWER_SUPPLY_PROP_PRESENT,
+	POWER_SUPPLY_PROP_VOLTAGE_NOW,
+	POWER_SUPPLY_PROP_CURRENT_NOW,
+	POWER_SUPPLY_PROP_CAPACITY,
+	POWER_SUPPLY_PROP_CAPACITY_LEVEL,
+	POWER_SUPPLY_PROP_TEMP,
+	POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,
+	POWER_SUPPLY_PROP_TECHNOLOGY,
+	POWER_SUPPLY_PROP_CHARGE_FULL,
+	POWER_SUPPLY_PROP_CHARGE_NOW,
+	POWER_SUPPLY_PROP_CYCLE_COUNT,
+	POWER_SUPPLY_PROP_HEALTH,
+	POWER_SUPPLY_PROP_MANUFACTURER,
+};
+
 static enum power_supply_property bq27530_battery_props[] = {
 	POWER_SUPPLY_PROP_STATUS,
 	POWER_SUPPLY_PROP_PRESENT,
@@ -672,6 +709,7 @@ static struct {
 	BQ27XXX_PROP(BQ27520G1, bq27520g1_battery_props),
 	BQ27XXX_PROP(BQ27520G2, bq27520g2_battery_props),
 	BQ27XXX_PROP(BQ27520G3, bq27520g3_battery_props),
+	BQ27XXX_PROP(BQ27520G4, bq27520g4_battery_props),
 	BQ27XXX_PROP(BQ27530, bq27530_battery_props),
 	BQ27XXX_PROP(BQ27541, bq27541_battery_props),
 	BQ27XXX_PROP(BQ27545, bq27545_battery_props),
@@ -925,7 +963,7 @@ static bool bq27xxx_battery_overtemp(struct bq27xxx_device_info *di, u16 flags)
 	if (di->chip == BQ275XX || di->chip == BQ27500 || di->chip == BQ27510G1
 			|| di->chip == BQ27510G2 || di->chip == BQ27510G3 || di->chip == BQ27541
 			|| di->chip == BQ27520G1 || di->chip == BQ27520G2 || di->chip == BQ27520G3
-			|| di->chip == BQ27545)
+			|| di->chip == BQ27520G4 || di->chip == BQ27545)
 		return flags & (BQ27XXX_FLAG_OTC | BQ27XXX_FLAG_OTD);
 	if (di->chip == BQ27530 || di->chip == BQ27421)
 		return flags & BQ27XXX_FLAG_OT;
diff --git a/drivers/power/supply/bq27xxx_battery_i2c.c b/drivers/power/supply/bq27xxx_battery_i2c.c
index 899a846..3878da4 100644
--- a/drivers/power/supply/bq27xxx_battery_i2c.c
+++ b/drivers/power/supply/bq27xxx_battery_i2c.c
@@ -158,6 +158,7 @@ static const struct i2c_device_id bq27xxx_i2c_id_table[] = {
 	{ "bq27520g1", BQ27520G1 },
 	{ "bq27520g2", BQ27520G2 },
 	{ "bq27520g3", BQ27520G3 },
+	{ "bq27520g4", BQ27520G4 },
 	{ "bq27530", BQ27530 },
 	{ "bq27531", BQ27530 },
 	{ "bq27541", BQ27541 },
@@ -187,6 +188,7 @@ static const struct of_device_id bq27xxx_battery_i2c_of_match_table[] = {
 	{ .compatible = "ti,bq27520g1" },
 	{ .compatible = "ti,bq27520g2" },
 	{ .compatible = "ti,bq27520g3" },
+	{ .compatible = "ti,bq27520g4" },
 	{ .compatible = "ti,bq27530" },
 	{ .compatible = "ti,bq27531" },
 	{ .compatible = "ti,bq27541" },
diff --git a/include/linux/power/bq27xxx_battery.h b/include/linux/power/bq27xxx_battery.h
index e61f4fa..09af70d 100644
--- a/include/linux/power/bq27xxx_battery.h
+++ b/include/linux/power/bq27xxx_battery.h
@@ -12,6 +12,7 @@ enum bq27xxx_chip {
 	BQ27520G1, /* bq27520G1 */
 	BQ27520G2, /* bq27520G2 */
 	BQ27520G3, /* bq27520G3 */
+	BQ27520G4, /* bq27520G4 */
 	BQ27530, /* bq27530, bq27531 */
 	BQ27541, /* bq27541, bq27542, bq27546, bq27742 */
 	BQ27545, /* bq27545 */
-- 
2.1.4

  parent reply	other threads:[~2016-12-23  0:07 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-22  1:22 [PATCH 00/10] power: supply: bq275xx: implement individual chip revision support Chris Lapa
2016-12-22  1:22 ` [PATCH 01/10] power: supplies: bq275xx: rename BQ27500 allow for deprecation in future Chris Lapa
2016-12-22  1:22 ` [PATCH 02/10] power: supplies: bq275xx: adds specific support for bq27500/1 revision Chris Lapa
2016-12-22  1:22 ` [PATCH 03/10] power: supplies: bq275xx: adds specific support for bq27510-g1 revision Chris Lapa
2016-12-22  1:22 ` [PATCH 04/10] power: supplies: bq275xx: adds specific support for bq27510-g2 revision Chris Lapa
2016-12-22  1:22 ` [PATCH 05/10] power: supplies: bq275xx: adds specific support for bq27510-g3 revision Chris Lapa
2016-12-22  1:22 ` [PATCH 06/10] power: supplies: bq275xx: adds specific support for bq27520-g1 revision Chris Lapa
2016-12-22  1:22 ` [PATCH 07/10] power: supplies: bq275xx: adds specific support for bq27520-g2 revision Chris Lapa
2016-12-22  1:22 ` [PATCH 08/10] power: supplies: bq275xx: adds specific support for bq27520-g3 revision Chris Lapa
2016-12-22  1:22 ` [PATCH 09/10] power: supplies: bq275xx: adds specific support for bq27520-g4 revision Chris Lapa
2016-12-22  8:57   ` Pali Rohár
2016-12-23  0:04 ` [PATCH v2 00/11] power: supply: bq275xx: implement individual chip revision support Chris Lapa
2016-12-23  0:04   ` [PATCH v2 01/11] power: supplies: bq275xx: rename BQ27500 allow for deprecation in future Chris Lapa
2017-01-05 23:59     ` Sebastian Reichel
2017-01-06  0:29       ` Chris Lapa
2017-01-06 17:36         ` Sebastian Reichel
2016-12-23  0:04   ` [PATCH v2 02/11] power: supplies: bq275xx: adds specific support for bq27500/1 revision Chris Lapa
2016-12-23  0:04   ` [PATCH v2 03/11] power: supplies: bq275xx: adds specific support for bq27510-g1 revision Chris Lapa
2016-12-23  0:05   ` [PATCH v2 04/11] power: supplies: bq275xx: adds specific support for bq27510-g2 revision Chris Lapa
2016-12-23  0:05   ` [PATCH v2 05/11] power: supplies: bq275xx: adds specific support for bq27510-g3 revision Chris Lapa
2016-12-23  0:05   ` [PATCH v2 06/11] power: supplies: bq275xx: adds specific support for bq27520-g1 revision Chris Lapa
2016-12-23  0:05   ` [PATCH v2 07/11] power: supplies: bq275xx: adds specific support for bq27520-g2 revision Chris Lapa
2016-12-23  0:05   ` [PATCH v2 08/11] power: supplies: bq275xx: adds specific support for bq27520-g3 revision Chris Lapa
2016-12-23  0:05   ` Chris Lapa [this message]
2016-12-23  0:05   ` [PATCH v2 10/11] power: supply: bq275xx: cleanup over temperature flag check Chris Lapa
2016-12-23  0:05   ` [PATCH v2 11/11] power: supplies: bq275xx: adds device tree binding documentation Chris Lapa
2017-01-06  0:06     ` Sebastian Reichel
2017-01-06  0:32       ` Chris Lapa
2017-01-09  0:47 ` [PATCH v3 00/11] power: supply: bq275xx: implement individual chip revision support Chris Lapa
2017-01-09  0:47   ` [PATCH v3 01/11] power: supplies: bq275xx: move overtemp tests to a switch statement Chris Lapa
2017-01-09 15:35     ` Andrew F. Davis
2017-01-09 15:35       ` Andrew F. Davis
2017-01-09  0:47   ` [PATCH v3 02/11] power: supplies: bq275xx: rename BQ27500 allow for deprecation in future Chris Lapa
2017-01-09  0:47   ` [PATCH v3 03/11] power: supplies: bq275xx: adds specific support for bq27500/1 revision Chris Lapa
2017-01-09  0:47   ` [PATCH v3 04/11] power: supplies: bq275xx: adds specific support for bq27510-g1 revision Chris Lapa
2017-01-09  0:47   ` [PATCH v3 05/11] power: supplies: bq275xx: adds specific support for bq27510-g2 revision Chris Lapa
2017-01-09  0:47   ` [PATCH v3 06/11] power: supplies: bq275xx: adds specific support for bq27510-g3 revision Chris Lapa
2017-01-09  0:47   ` [PATCH v3 07/11] power: supplies: bq275xx: adds specific support for bq27520-g1 revision Chris Lapa
2017-01-09  0:47   ` [PATCH v3 08/11] power: supplies: bq275xx: adds specific support for bq27520-g2 revision Chris Lapa
2017-01-09  0:47   ` [PATCH v3 09/11] power: supplies: bq275xx: adds specific support for bq27520-g3 revision Chris Lapa
2017-01-09  0:47   ` [PATCH v3 10/11] power: supplies: bq275xx: adds specific support for bq27520-g4 revision Chris Lapa
2017-01-09  0:47   ` [PATCH v3 11/11] power: supplies: bq27xxx: adds device tree binding documentation Chris Lapa
2017-01-09  8:23   ` [PATCH v3 00/11] power: supply: bq275xx: implement individual chip revision support Pali Rohár
2017-01-10  2:49   ` Sebastian Reichel
2017-01-10  5:25 ` [PATCH v4 00/10] power: supply: bq27xxx: " Chris Lapa
2017-01-10  5:25   ` [PATCH v4 01/10] power: supplies: bq27xxx: rename BQ27500 allow for deprecation in future Chris Lapa
2017-01-10  8:58     ` Pali Rohár
2017-01-10 22:25       ` Chris Lapa
2017-01-10 23:29         ` Sebastian Reichel
2017-01-10  5:25   ` [PATCH v4 02/10] power: supplies: bq27xxx: adds specific support for bq27500/1 revision Chris Lapa
2017-01-10  5:25   ` [PATCH v4 03/10] power: supplies: bq27xxx: adds specific support for bq27510-g1 revision Chris Lapa
2017-01-10  5:25   ` [PATCH v4 04/10] power: supplies: bq27xxx: adds specific support for bq27510-g2 revision Chris Lapa
2017-01-10  5:25   ` [PATCH v4 05/10] power: supplies: bq27xxx: adds specific support for bq27510-g3 revision Chris Lapa
2017-01-10  5:25   ` [PATCH v4 06/10] power: supplies: bq27xxx: adds specific support for bq27520-g1 revision Chris Lapa
2017-01-10  5:25   ` [PATCH v4 07/10] power: supplies: bq27xxx: adds specific support for bq27520-g2 revision Chris Lapa
2017-01-10  5:25   ` [PATCH v4 08/10] power: supplies: bq27xxx: adds specific support for bq27520-g3 revision Chris Lapa
2017-01-10  5:25   ` [PATCH v4 09/10] power: supplies: bq27xxx: adds specific support for bq27520-g4 revision Chris Lapa
2017-01-10  5:25   ` [PATCH v4 10/10] power: supplies: bq27xxx: adds device tree binding documentation Chris Lapa
2017-01-11  1:44 ` [PATCH v5 00/11] power: supply: bq27xxx: implement individual chip revision support Chris Lapa
2017-01-11  1:44   ` [PATCH v5 01/11] power: supply: bq27xxx: rename BQ27500 allow for deprecation in future Chris Lapa
2017-01-11  1:44   ` [PATCH v5 02/11] power: supply: bq27xxx: rename BQ27510 " Chris Lapa
2017-01-11  1:44   ` [PATCH v5 03/11] power: supply: bq27xxx: adds specific support for bq27500/1 revision Chris Lapa
2017-01-11  1:44   ` [PATCH v5 04/11] power: supply: bq27xxx: adds specific support for bq27510-g1 revision Chris Lapa
2017-01-11  1:44   ` [PATCH v5 05/11] power: supply: bq27xxx: adds specific support for bq27510-g2 revision Chris Lapa
2017-01-11  1:44   ` [PATCH v5 06/11] power: supply: bq27xxx: adds specific support for bq27510-g3 revision Chris Lapa
2017-01-11  1:44   ` [PATCH v5 07/11] power: supply: bq27xxx: adds specific support for bq27520-g1 revision Chris Lapa
2017-01-11  1:44   ` [PATCH v5 08/11] power: supply: bq27xxx: adds specific support for bq27520-g2 revision Chris Lapa
2017-01-11  1:44   ` [PATCH v5 09/11] power: supply: bq27xxx: adds specific support for bq27520-g3 revision Chris Lapa
2017-01-11  1:44   ` [PATCH v5 10/11] power: supply: bq27xxx: adds specific support for bq27520-g4 revision Chris Lapa
2017-01-11  1:44   ` [PATCH v5 11/11] power: supply: bq27xxx: adds device tree binding documentation Chris Lapa
2017-01-12  2:54   ` [PATCH v5 00/11] power: supply: bq27xxx: implement individual chip revision support Sebastian Reichel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1482451507-37676-10-git-send-email-chris@lapa.com.au \
    --to=chris@lapa.com.au \
    --cc=afd@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=pali.rohar@gmail.com \
    --cc=sre@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.