Re: [PATCH 2.6.29-rc1-git4] mfd: da9030 usb charge pump support withinmfd driver.

From: Jonathan Cameron
Date: Thu Jan 15 2009 - 06:11:47 EST


Mike Rapoport wrote:
> Jonathan,
> Below are my two cents :)
>
Thanks,
> Jonathan Cameron wrote:
>
>> From: Jonathan Cameron <jic23@xxxxxxxxx>
>>
>> Add support for changing the mode of the da9030 usb charge pump
>>
>> Signed-off-by: Jonathan Cameron <jic23@xxxxxxxxx>
>>
>> ---
>>
>> Minor changes from previous version to reflect changes in the
>> driver being patched. Addtional cc's as per Mark's suggestion.
>>
>> This version simply adds the functionality to the da903x mfd driver
>> core. If anyone can suggest a way round simply maintaining a
>> global pointer to the device it would be good.
>>
>
> I don't think the global pointer here is real problem. It should be *really*
> weird design with two da903x.
>
>
>> To be able to call this from a board config file the driver must be
>> built in rather than a module but enforcing that is down to the
>> board Kconfig entry.
>>
>
> Most probably the board with da9030 will anyway have it built-in...
>
>
>> diff --git a/drivers/mfd/da903x.c b/drivers/mfd/da903x.c
>> index 99f8dcf..70ec3b0 100644
>> --- a/drivers/mfd/da903x.c
>> +++ b/drivers/mfd/da903x.c
>> @@ -30,6 +30,7 @@
>> #define DA9030_SYS_CTRL_A 0x08
>> #define DA9030_SYS_CTRL_B 0x09
>> #define DA9030_FAULT_LOG 0x0a
>> +#define DA9030_USBPUMP_REG 0x19
>>
>> #define DA9034_CHIP_ID 0x00
>> #define DA9034_EVENT_A 0x01
>> @@ -484,6 +485,32 @@ failed:
>> return ret;
>> }
>>
>> +/* Single device assumption */
>> +struct device *da9030_mfd_dev;
>> +
>> +int da9030_set_usb_charge_pump_mode(int mode)
>> +{
>> + uint8_t val = 0;
>> +
>> + if (da9030_mfd_dev == NULL)
>> + return -EINVAL;
>> +
>> + switch (mode) {
>> + case DA9030_USBPUMP_AUTO:
>> + val = 0;
>> + break;
>> + case DA9030_USBPUMP_CHARGE_PUMP:
>> + val = 0x40;
>> + break;
>> + case DA9030_USBPUMP_CURRENT_SOURCE:
>> + val = 0x80;
>> + break;
>> + }
>> +
>> + return da903x_write(da9030_mfd_dev, DA9030_USBPUMP_REG, val);
>> +}
>> +EXPORT_SYMBOL_GPL(da9030_set_usb_charge_pump_mode);
>> +
>>
>
> Maybe we want to have 'da9030_set_usb_charge_pump_mode' as well?
>
(get?)
Possibly though not sure under what circumstances it would be needed
other than debugging?

--
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/