summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjames_chao <james_chao@asus.com>2015-01-15 17:03:09 +0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-03-24 18:26:25 +0000
commit0db4de8d689ee2a12b0f215910cb4b4f62e174a1 (patch)
tree5624ee982276fe4357a7dded7171a3757991e62a
parenta0158dd136b63b2daffd666d51d84a67481cb609 (diff)
downloadchrome-ec-0db4de8d689ee2a12b0f215910cb4b4f62e174a1.tar.gz
charger: Add support for bq24770
Add support for bq24770 (smbus) in the bq24773 (i2c) driver. BUG=None TEST=Use the UART command "charger" and check the charger information. BRANCH=None Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Change-Id: Ie5f5af60e93aa73d9ef68115af36a8d28f6d6c2b Reviewed-on: https://chromium-review.googlesource.com/259870 Reviewed-by: BoChao Jhan <james_chao@asus.com> Reviewed-by: Divya Jyothi <divya.jyothi@intel.com> Commit-Queue: Divya Jyothi <divya.jyothi@intel.com> Tested-by: Divya Jyothi <divya.jyothi@intel.com>
-rw-r--r--driver/build.mk1
-rw-r--r--driver/charger/bq24773.c64
-rw-r--r--driver/charger/bq24773.h70
-rw-r--r--include/config.h1
4 files changed, 109 insertions, 27 deletions
diff --git a/driver/build.mk b/driver/build.mk
index 98394eda3f..0ad76ed902 100644
--- a/driver/build.mk
+++ b/driver/build.mk
@@ -29,6 +29,7 @@ driver-$(CONFIG_CHARGER_BQ24715)+=charger/bq24715.o
driver-$(CONFIG_CHARGER_BQ24725)+=charger/bq24725.o
driver-$(CONFIG_CHARGER_BQ24735)+=charger/bq24735.o
driver-$(CONFIG_CHARGER_BQ24738)+=charger/bq24738.o
+driver-$(CONFIG_CHARGER_BQ24770)+=charger/bq24773.o
driver-$(CONFIG_CHARGER_BQ24773)+=charger/bq24773.o
# I/O expander
diff --git a/driver/charger/bq24773.c b/driver/charger/bq24773.c
index becef6d378..ed6218dc5f 100644
--- a/driver/charger/bq24773.c
+++ b/driver/charger/bq24773.c
@@ -10,7 +10,6 @@
#include "charger.h"
#include "console.h"
#include "common.h"
-#include "i2c.h"
#include "util.h"
/*
@@ -30,8 +29,8 @@
#define CURRENT_TO_REG8(CUR, RS) ((CUR) * (RS) / DEFAULT_SENSE_RESISTOR / R8)
/* Charger parameters */
-static const struct charger_info bq24773_charger_info = {
- .name = "bq24773",
+static const struct charger_info bq2477x_charger_info = {
+ .name = CHARGER_NAME,
.voltage_max = CHARGE_V_MAX,
.voltage_min = CHARGE_V_MIN,
.voltage_step = CHARGE_V_STEP,
@@ -43,13 +42,17 @@ static const struct charger_info bq24773_charger_info = {
.input_current_step = REG_TO_CURRENT(INPUT_I_STEP, R_AC),
};
-/* bq24773 specific interfaces */
+/* chip specific interfaces */
int charger_set_input_current(int input_current)
{
- return i2c_write8(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_INPUT_CURRENT,
+#ifdef CONFIG_CHARGER_BQ24770
+ return raw_write16(REG_INPUT_CURRENT,
+ CURRENT_TO_REG(input_current, R_AC));
+#elif defined(CONFIG_CHARGER_BQ24773)
+ return raw_write8(REG_INPUT_CURRENT,
CURRENT_TO_REG8(input_current, R_AC));
+#endif
}
int charger_get_input_current(int *input_current)
@@ -57,45 +60,56 @@ int charger_get_input_current(int *input_current)
int rv;
int reg;
- rv = i2c_read8(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_INPUT_CURRENT, &reg);
+#ifdef CONFIG_CHARGER_BQ24770
+ rv = raw_read16(REG_INPUT_CURRENT, &reg);
+#elif defined(CONFIG_CHARGER_BQ24773)
+ rv = raw_read8(REG_INPUT_CURRENT, &reg);
+#endif
if (rv)
return rv;
+#ifdef CONFIG_CHARGER_BQ24770
*input_current = REG8_TO_CURRENT(reg, R_AC);
-
+#elif defined(CONFIG_CHARGER_BQ24773)
+ *input_current = REG_TO_CURRENT(reg, R_AC);
+#endif
return EC_SUCCESS;
}
int charger_manufacturer_id(int *id)
{
+#ifdef CONFIG_CHARGER_BQ24770
+ return raw_read16(REG_MANUFACTURE_ID, id);
+#elif defined(CONFIG_CHARGER_BQ24773)
*id = 0x40; /* TI */
return EC_SUCCESS;
+#endif
}
int charger_device_id(int *id)
{
- return i2c_read8(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_DEVICE_ADDRESS, id);
+#ifdef CONFIG_CHARGER_BQ24770
+ return raw_read16(REG_DEVICE_ADDRESS, id);
+#elif defined(CONFIG_CHARGER_BQ24773)
+ return raw_read8(REG_DEVICE_ADDRESS, id);
+#endif
}
int charger_get_option(int *option)
{
- return i2c_read16(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_CHARGE_OPTION0, option);
+ return raw_read16(REG_CHARGE_OPTION0, option);
}
int charger_set_option(int option)
{
- return i2c_write16(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_CHARGE_OPTION0, option);
+ return raw_write16(REG_CHARGE_OPTION0, option);
}
/* Charger interfaces */
const struct charger_info *charger_get_info(void)
{
- return &bq24773_charger_info;
+ return &bq2477x_charger_info;
}
int charger_get_status(int *status)
@@ -137,8 +151,8 @@ int charger_get_current(int *current)
int rv;
int reg;
- rv = i2c_read16(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_CHARGE_CURRENT, &reg);
+ rv = raw_read16(REG_CHARGE_CURRENT, &reg);
+
if (rv)
return rv;
@@ -149,21 +163,18 @@ int charger_get_current(int *current)
int charger_set_current(int current)
{
current = charger_closest_current(current);
-
- return i2c_write16(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_CHARGE_CURRENT, CURRENT_TO_REG(current, R_SNS));
+ return raw_write16(REG_CHARGE_CURRENT, CURRENT_TO_REG(current, R_SNS));
}
int charger_get_voltage(int *voltage)
{
- return i2c_read16(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_MAX_CHARGE_VOLTAGE, voltage);
+ return raw_read16(REG_MAX_CHARGE_VOLTAGE, voltage);
}
int charger_set_voltage(int voltage)
{
- return i2c_write16(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_MAX_CHARGE_VOLTAGE, voltage);
+ voltage = charger_closest_voltage(voltage);
+ return raw_write16(REG_MAX_CHARGE_VOLTAGE, voltage);
}
/* Charging power state initialization */
@@ -211,8 +222,7 @@ int charger_post_init(void)
/* Set ILIM pin disabled if it is currently enabled. */
if (option2 & OPTION2_EN_EXTILIM) {
option2 &= ~OPTION2_EN_EXTILIM;
- rv = i2c_write16(I2C_PORT_CHARGER, BQ24773_ADDR,
- BQ24773_CHARGE_OPTION2, option2);
+ rv = raw_write16(REG_CHARGE_OPTION2, option2);
}
return rv;
#else
diff --git a/driver/charger/bq24773.h b/driver/charger/bq24773.h
index d4e167ca7a..4e1e68a6b9 100644
--- a/driver/charger/bq24773.h
+++ b/driver/charger/bq24773.h
@@ -8,10 +8,26 @@
#ifndef __CROS_EC_CHARGER_BQ24773_H
#define __CROS_EC_CHARGER_BQ24773_H
+/* for i2c_read and i2c_write functions. */
+#include "i2c.h"
+
/* I2C address */
+#define BQ24770_ADDR (0x12)
#define BQ24773_ADDR (0x6a << 1)
/* Chip specific commands */
+#define BQ24770_CHARGE_OPTION0 0x12
+#define BQ24770_CHARGE_OPTION1 0x3B
+#define BQ24770_CHARGE_OPTION2 0x38
+#define BQ24770_PROTECT_OPTION0 0x3C
+#define BQ24770_PROTECT_OPTION1 0x3D
+#define BQ24770_CHARGE_CURRENT 0x14
+#define BQ24770_MAX_CHARGE_VOLTAGE 0x15
+#define BQ24770_MIN_SYSTEM_VOLTAGE 0x3E
+#define BQ24770_INPUT_CURRENT 0x3F
+#define BQ24770_MANUFACTURE_ID 0xFE
+#define BQ24770_DEVICE_ADDRESS 0xFF
+
#define BQ24773_CHARGE_OPTION0 0x00
#define BQ24773_CHARGE_OPTION1 0x02
#define BQ24773_PROCHOT_OPTION0 0x04
@@ -46,4 +62,58 @@
#define INPUT_I_MAX 8128
#define INPUT_I_STEP 64
+#ifdef CONFIG_CHARGER_BQ24770
+ #define CHARGER_NAME "bq24770"
+ #define I2C_ADDR_CHARGER BQ24770_ADDR
+
+ #define REG_CHARGE_OPTION0 BQ24770_CHARGE_OPTION0
+ #define REG_CHARGE_OPTION1 BQ24770_CHARGE_OPTION1
+ #define REG_CHARGE_OPTION2 BQ24770_CHARGE_OPTION2
+ #define REG_PROTECT_OPTION0 BQ24770_PROTECT_OPTION0
+ #define REG_PROTECT_OPTION1 BQ24770_PROTECT_OPTION1
+ #define REG_CHARGE_CURRENT BQ24770_CHARGE_CURRENT
+ #define REG_MAX_CHARGE_VOLTAGE BQ24770_MAX_CHARGE_VOLTAGE
+ #define REG_MIN_SYSTEM_VOLTAGE BQ24770_MIN_SYSTEM_VOLTAGE
+ #define REG_INPUT_CURRENT BQ24770_INPUT_CURRENT
+ #define REG_MANUFACTURE_ID BQ24770_MANUFACTURE_ID
+ #define REG_DEVICE_ADDRESS BQ24770_DEVICE_ADDRESS
+
+#elif defined(CONFIG_CHARGER_BQ24773)
+ #define CHARGER_NAME "bq24773"
+ #define I2C_ADDR_CHARGER BQ24773_ADDR
+
+ #define REG_CHARGE_OPTION0 BQ24773_CHARGE_OPTION0
+ #define REG_CHARGE_OPTION1 BQ24773_CHARGE_OPTION1
+ #define REG_CHARGE_OPTION2 BQ24773_CHARGE_OPTION2
+ #define REG_PROTECT_OPTION0 BQ24773_PROTECT_OPTION0
+ #define REG_PROTECT_OPTION1 BQ24773_PROTECT_OPTION1
+ #define REG_CHARGE_CURRENT BQ24773_CHARGE_CURRENT
+ #define REG_MAX_CHARGE_VOLTAGE BQ24773_MAX_CHARGE_VOLTAGE
+ #define REG_MIN_SYSTEM_VOLTAGE BQ24773_MIN_SYSTEM_VOLTAGE
+ #define REG_INPUT_CURRENT BQ24773_INPUT_CURRENT
+ #define REG_DEVICE_ADDRESS BQ24773_DEVICE_ADDRESS
+#endif
+
+#ifdef CONFIG_CHARGER_BQ24773
+static inline int raw_read8(int offset, int *value)
+{
+ return i2c_read8(I2C_PORT_CHARGER, I2C_ADDR_CHARGER, offset, value);
+}
+
+static inline int raw_write8(int offset, int value)
+{
+ return i2c_write8(I2C_PORT_CHARGER, I2C_ADDR_CHARGER, offset, value);
+}
+#endif
+
+static inline int raw_read16(int offset, int *value)
+{
+ return i2c_read16(I2C_PORT_CHARGER, I2C_ADDR_CHARGER, offset, value);
+}
+
+static inline int raw_write16(int offset, int value)
+{
+ return i2c_write16(I2C_PORT_CHARGER, I2C_ADDR_CHARGER, offset, value);
+}
+
#endif /* __CROS_EC_CHARGER_BQ24773_H */
diff --git a/include/config.h b/include/config.h
index c83258b215..ad1dba54df 100644
--- a/include/config.h
+++ b/include/config.h
@@ -238,6 +238,7 @@
#undef CONFIG_CHARGER_BQ24715
#undef CONFIG_CHARGER_BQ24725
#undef CONFIG_CHARGER_BQ24738
+#undef CONFIG_CHARGER_BQ24770
#undef CONFIG_CHARGER_BQ24773
#undef CONFIG_CHARGER_TPS65090 /* Note: does not use CONFIG_CHARGER */