Commit 5575802d authored by Hans de Goede's avatar Hans de Goede Committed by Sebastian Reichel

power: supply: bq25890: Add bq25890_set_otg_cfg() helper

Add a bq25890_set_otg_cfg() helper function, this is a preparation
patch for adding regulator support.
Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
parent f481d5b8
...@@ -832,6 +832,17 @@ static int bq25890_power_supply_init(struct bq25890_device *bq) ...@@ -832,6 +832,17 @@ static int bq25890_power_supply_init(struct bq25890_device *bq)
return PTR_ERR_OR_ZERO(bq->charger); return PTR_ERR_OR_ZERO(bq->charger);
} }
static int bq25890_set_otg_cfg(struct bq25890_device *bq, u8 val)
{
int ret;
ret = bq25890_field_write(bq, F_OTG_CFG, val);
if (ret < 0)
dev_err(bq->dev, "Error switching to boost/charger mode: %d\n", ret);
return ret;
}
static void bq25890_usb_work(struct work_struct *data) static void bq25890_usb_work(struct work_struct *data)
{ {
int ret; int ret;
...@@ -841,25 +852,16 @@ static void bq25890_usb_work(struct work_struct *data) ...@@ -841,25 +852,16 @@ static void bq25890_usb_work(struct work_struct *data)
switch (bq->usb_event) { switch (bq->usb_event) {
case USB_EVENT_ID: case USB_EVENT_ID:
/* Enable boost mode */ /* Enable boost mode */
ret = bq25890_field_write(bq, F_OTG_CFG, 1); bq25890_set_otg_cfg(bq, 1);
if (ret < 0)
goto error;
break; break;
case USB_EVENT_NONE: case USB_EVENT_NONE:
/* Disable boost mode */ /* Disable boost mode */
ret = bq25890_field_write(bq, F_OTG_CFG, 0); ret = bq25890_set_otg_cfg(bq, 0);
if (ret < 0) if (ret == 0)
goto error;
power_supply_changed(bq->charger); power_supply_changed(bq->charger);
break; break;
} }
return;
error:
dev_err(bq->dev, "Error switching to boost/charger mode.\n");
} }
static int bq25890_usb_notifier(struct notifier_block *nb, unsigned long val, static int bq25890_usb_notifier(struct notifier_block *nb, unsigned long val,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment