From: Chanwoo Choi <cw00.choi@samsung.com>
To: Marek Szyprowski <m.szyprowski@samsung.com>,
linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org
Cc: MyungJoo Ham <myungjoo.ham@samsung.com>,
Lee Jones <lee.jones@linaro.org>,
Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Subject: Re: [PATCH 1/2] extcon: max88743: Add OTG power control to the MUIC driver
Date: Wed, 18 Oct 2017 18:44:16 +0900 [thread overview]
Message-ID: <59E72270.4030300@samsung.com> (raw)
In-Reply-To: <20171018092802.25390-2-m.szyprowski@samsung.com>
Hi Marek,
Looks good to me. But, the patch subject is wrong as following:
- max88743 -> max77843
If you fix the subject, feel free to add my acked-tag.
Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
Regards,
Chanwoo Choi
On 2017년 10월 18일 18:28, Marek Szyprowski wrote:
> Enabling power on VBUS micro-usb pin is required only when passive OTG
> cable is connected. Initially OTG VBUS power control was planned to be
> done in charger driver. However such information is not really available
> from the extcon notifications, so VBUS power control has to be done
> directly in MUIC driver, which has all information about the attached
> accessory.
>
> For example SmartDock is externally powered accessory, provides OTG
> (USB HOST) functionality and use VBUS pin for charging a device battery,
> so the VBUS charging pump should be disabled in such case.
>
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> ---
> drivers/extcon/extcon-max77843.c | 16 ++++++++++++++++
> include/linux/mfd/max77843-private.h | 3 +++
> 2 files changed, 19 insertions(+)
>
> diff --git a/drivers/extcon/extcon-max77843.c b/drivers/extcon/extcon-max77843.c
> index 6e722d552cf1..217c743405f8 100644
> --- a/drivers/extcon/extcon-max77843.c
> +++ b/drivers/extcon/extcon-max77843.c
> @@ -240,6 +240,21 @@ static int max77843_muic_set_path(struct max77843_muic_info *info,
> return 0;
> }
>
> +static void max77843_charger_set_otg_vbus(struct max77843_muic_info *info,
> + bool on)
> +{
> + struct max77693_dev *max77843 = info->max77843;
> + unsigned int cnfg00;
> +
> + if (on)
> + cnfg00 = MAX77843_CHG_OTG_MASK | MAX77843_CHG_BOOST_MASK;
> + else
> + cnfg00 = MAX77843_CHG_ENABLE | MAX77843_CHG_BUCK_MASK;
> +
> + regmap_update_bits(max77843->regmap_chg, MAX77843_CHG_REG_CHG_CNFG_00,
> + MAX77843_CHG_MODE_MASK, cnfg00);
> +}
> +
> static int max77843_muic_get_cable_type(struct max77843_muic_info *info,
> enum max77843_muic_cable_group group, bool *attached)
> {
> @@ -355,6 +370,7 @@ static int max77843_muic_adc_gnd_handler(struct max77843_muic_info *info)
> return ret;
>
> extcon_set_state_sync(info->edev, EXTCON_USB_HOST, attached);
> + max77843_charger_set_otg_vbus(info, attached);
> break;
> case MAX77843_MUIC_GND_MHL_VB:
> case MAX77843_MUIC_GND_MHL:
> diff --git a/include/linux/mfd/max77843-private.h b/include/linux/mfd/max77843-private.h
> index c19303b0ccfd..0223cd5941c8 100644
> --- a/include/linux/mfd/max77843-private.h
> +++ b/include/linux/mfd/max77843-private.h
> @@ -245,10 +245,13 @@ enum max77843_irq_muic {
> #define MAX77843_CHG_OVER_CURRENT_BAT (0x06 << 4)
>
> /* MAX77843 CHG_CNFG_00 register */
> +#define MAX77843_CHG_MODE_MASK 0x0f
> #define MAX77843_CHG_DISABLE 0x00
> #define MAX77843_CHG_ENABLE 0x05
> #define MAX77843_CHG_MASK 0x01
> +#define MAX77843_CHG_OTG_MASK 0x02
> #define MAX77843_CHG_BUCK_MASK 0x04
> +#define MAX77843_CHG_BOOST_MASK 0x08
>
> /* MAX77843 CHG_CNFG_01 register */
> #define MAX77843_CHG_RESTART_THRESHOLD_100 0x00
>
next prev parent reply other threads:[~2017-10-18 9:44 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20171018092807eucas1p1a48ca03af94e7439c69ba5ffc43b5f31@eucas1p1.samsung.com>
2017-10-18 9:28 ` [PATCH 0/2] MAX88743-extcon: add proper OTG and Dock (OTG+MHL) support Marek Szyprowski
2017-10-18 9:28 ` [PATCH 1/2] extcon: max88743: Add OTG power control to the MUIC driver Marek Szyprowski
2017-10-18 9:44 ` Chanwoo Choi [this message]
2017-10-18 9:28 ` [PATCH 2/2] extcon: max88743: Add support for SmartDock accessory Marek Szyprowski
2017-10-18 9:45 ` Chanwoo Choi
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=59E72270.4030300@samsung.com \
--to=cw00.choi@samsung.com \
--cc=b.zolnierkie@samsung.com \
--cc=lee.jones@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=myungjoo.ham@samsung.com \
/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.