[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAHQ1cqECkn3242zVb55ifmgEHdq0se91=PpS1zDL4wj2WdZmbw@mail.gmail.com>
Date: Mon, 29 Apr 2019 12:10:27 -0700
From: Andrey Smirnov <andrew.smirnov@...il.com>
To: Lucas Stach <l.stach@...gutronix.de>
Cc: Linux PM list <linux-pm@...r.kernel.org>,
Enric Balletbo Serra <enric.balletbo@...labora.com>,
Chris Healy <cphealy@...il.com>,
Fabio Estevam <fabio.estevam@....com>,
Guenter Roeck <linux@...ck-us.net>,
Sebastian Reichel <sre@...nel.org>,
linux-kernel <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v2 2/3] power: supply: Add driver for Microchip UCS1002
On Mon, Apr 29, 2019 at 3:27 AM Lucas Stach <l.stach@...gutronix.de> wrote:
>
> Hi Andrey,
>
> Am Sonntag, den 28.04.2019, 22:47 -0700 schrieb Andrey Smirnov:
> > Add driver for Microchip UCS1002 Programmable USB Port Power
> > Controller with Charger Emulation. The driver exposed a power supply
> > device to control/monitor various parameter of the device as well as a
> > regulator to allow controlling VBUS line.
> >
> > > Signed-off-by: Enric Balletbo Serra <enric.balletbo@...labora.com>
> > > Signed-off-by: Andrey Smirnov <andrew.smirnov@...il.com>
> > > Cc: Chris Healy <cphealy@...il.com>
> > > Cc: Lucas Stach <l.stach@...gutronix.de>
> > > Cc: Fabio Estevam <fabio.estevam@....com>
> > > Cc: Guenter Roeck <linux@...ck-us.net>
> > > Cc: Sebastian Reichel <sre@...nel.org>
> > Cc: linux-kernel@...r.kernel.org
> > Cc: linux-pm@...r.kernel.org
> > ---
> [...]
> > + /* Enable charge rationing by default */
> > > + ret = regmap_update_bits(info->regmap, UCS1002_REG_GENERAL_CFG,
> > > + F_RATION_EN, F_RATION_EN);
> > > + if (ret) {
> > > + dev_err(dev, "Failed to read general config: %d\n", ret);
> > > + return ret;
> > > + }
> > +
> > > + /*
> > > + * Ignore the M1, M2, PWR_EN, and EM_EN pin states. Set active
> > > + * mode selection to BC1.2 CDP.
> > > + */
> > > + ret = regmap_update_bits(info->regmap, UCS1002_REG_SWITCH_CFG,
> > > + V_SET_ACTIVE_MODE_MASK,
> > + V_SET_ACTIVE_MODE_BC12_CDP);
>
> This doesn't work as the F_PIN_IGNORE bit isn't set, so the the
> external strap settings are applied. I had to apply the following diff
> to make the driver behave as expected again:
>
Ugh, I missed this since pins on my board are set properly. Thanks for
catching that and sorry about the bug. Will fix in v3.
Thanks,
Andrey Smirnov
Powered by blists - more mailing lists