Re: [PATCH v4 1/3] mfd/axp20x: extend axp20x to support axp288 pmic

From: Jacob Pan
Date: Wed Sep 24 2014 - 09:46:32 EST


On Wed, 24 Sep 2014 12:02:12 +0100
Lee Jones <lee.jones@xxxxxxxxxx> wrote:

> On Thu, 18 Sep 2014, Jacob Pan wrote:
> > Lee Jones <lee.jones@xxxxxxxxxx> wrote:
> > > On Tue, 16 Sep 2014, Jacob Pan wrote:
> > >
> > > > X-Powers AXP288 is a customized PMIC for Intel Baytrail-CR
> > > > platforms. Similar to AXP202/209, AXP288 comes with USB charger,
> > > > more LDO and BUCK channels, and AD converters. It also provides
> > > > extended status and interrupt reporting capabilities than the
> > > > devices currently supported in axp20x.c.
> > > >
> > > > In addition to feature extension, this patch also adds ACPI
> > > > binding for enumeration.
> > > >
> > > > This consolidated driver should support more X-Powers' PMICs in
> > > > both device tree and ACPI enumerated platforms.
> > > >
> > > > Signed-off-by: Jacob Pan <jacob.jun.pan@xxxxxxxxxxxxxxx>
> > > > ---
> > > > drivers/mfd/Kconfig | 3 +-
> > > > drivers/mfd/axp20x.c | 353
> > > > +++++++++++++++++++++++++++++++++++++--------
> > > > include/linux/mfd/axp20x.h | 58 ++++++++ 3 files changed, 354
> > > > insertions(+), 60 deletions(-)
>
> [...]
>
> > > > -static const struct regmap_irq_chip axp20x_regmap_irq_chip = {
> > > > +static struct acpi_device_id axp20x_acpi_match[] = {
> > > > + {
> > > > + .id = "INT33F4",
> > > > + .driver_data = (kernel_ulong_t)AXP288_ID,
> > >
> > > Why do you need to cast this?
> > >
> > to make sure match driver_data which is different in acpi_device_id
> > than of_device_id.
>
> You don't need the cast.
yes, agree in this case. my thinking is since AXP288_ID is a macro, so
extra careful. I can remove that.
>
> [...]
>
> > > > +static int axp20x_match_device(struct axp20x_dev *axp20x,
> > > > struct device *dev) +{
> > > > + const struct acpi_device_id *acpi_id;
> > > > + const struct of_device_id *of_id;
> > > > +
> > > > + of_id = of_match_device(axp20x_of_match, dev);
> > > > + if (of_id)
> > > > + axp20x->variant = (long) of_id->data;
> > > > + else {
> > > > + acpi_id =
> > > > acpi_match_device(dev->driver->acpi_match_table, dev);
> > > > + if (!acpi_id || !acpi_id->driver_data) {
> > > > + dev_err(dev, "Unable to determine
> > > > ID\n");
> > > > + return -ENODEV;
> > > > + }
> > > > + axp20x->variant = (long) acpi_id->driver_data;
> > > > + }
> > >
> > > We can do better error handling here and give the user a better
> > > sense of what happened if anything were to go wrong. Do:
> > >
> > > if (dev->of_node)
> > > of_id = of_match_device()
> > > if (!of_id)
> > > error()
> > this will give false error on ACPI based platforms, right? in
> > reality
>
> Why would it? dev->of_node should be NULL if running ACPI?
>
right, i missed that. I thought of_match_device() is already checking
of_node. Anyway. I can change the code to the flow you suggested, it is
more explicit. My point is that in both flows, the error() can be the
same and implied by the platform (ACPI/OF).

> [...]
>
> > > > + switch (axp20x->variant) {
> > > > + case AXP202_ID:
> > > > + case AXP209_ID:
> > > > + axp20x->nr_cells = ARRAY_SIZE(axp20x_cells);
> > > > + axp20x->cells = axp20x_cells;
> > > > + axp20x->regmap_cfg = &axp20x_regmap_config;
> > > > + axp20x_regmap_irq_chip.num_regs = 5;
> > > > + axp20x_regmap_irq_chip.irqs =
> > > > axp20x_regmap_irqs;
> > > > + axp20x_regmap_irq_chip.num_irqs =
> > > > + ARRAY_SIZE(axp20x_regmap_irqs);
> > > > + break;
> > > > + case AXP288_ID:
> > > > + axp20x->cells = axp288_cells;
> > > > + axp20x->nr_cells = ARRAY_SIZE(axp288_cells);
> > > > + axp20x->regmap_cfg = &axp288_regmap_config;
> > > > + axp20x_regmap_irq_chip.irqs =
> > > > axp288_regmap_irqs;
> > > > + axp20x_regmap_irq_chip.num_irqs =
> > > > + ARRAY_SIZE(axp288_regmap_irqs);
> > > > + axp20x_regmap_irq_chip.num_regs = 6;
> > > > + break;
> > > > + default:
> > > > + dev_err(dev, "unsupported AXP20X ID %lu\n",
> > > > axp20x->variant);
> > > > + return -ENODEV;
> > >
> > > -EINVAL might be better here.
> > I was considering the return value gets propagated to probe function
> > which is used to query the existence of a device per driver model.
> > But I have no strong preference.
>
> I think -EINVAL would be better as the argument passed in
> axp20x->variant is invalid.
>
> define EINVAL 22 /* Invalid argument */
>
agreed, changed in v5 just sent.
> > > > + }
> > > > + dev_info(dev, "AXP20x variant %s found\n",
> > > > + axp20x_model_names[axp20x->variant]);
> > > > +
> > > > + return 0;
> > > > +}
> > > > +
> > > > static int axp20x_i2c_probe(struct i2c_client *i2c,
> > > > - const struct i2c_device_id *id)
> > > > + const struct i2c_device_id *id)
> > >
> > > Sneaky. ;)
> > I should not fix the extra white spaces here, unrelated to this
> > patch. will remove.
>
> It's okay. I don't mind little things like this occasionally. I find
> them more amusing than harmful.
>
fixed in v5 also.
> [...]
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/