RE: [PATCH v2] regulator: ad5398: Fix min/max current limit boundary checking

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]



>-----Original Message-----
>From: Lars-Peter Clausen [mailto:lars@xxxxxxxxxx]
>Sent: Tuesday, July 03, 2012 4:24 PM
>To: Zhang, Sonic
>Cc: Axel Lin; Mark Brown; linux-kernel@xxxxxxxxxxxxxxx; Liam Girdwood
>Subject: Re: [PATCH v2] regulator: ad5398: Fix min/max current limit boundary
>checking
>
>On 07/03/2012 10:13 AM, Zhang, Sonic wrote:
>>
>>
>>> -----Original Message-----
>>> From: Lars-Peter Clausen [mailto:lars@xxxxxxxxxx]
>>> Sent: Tuesday, July 03, 2012 4:06 PM
>>> To: Zhang, Sonic
>>> Cc: Axel Lin; Mark Brown; linux-kernel@xxxxxxxxxxxxxxx; Liam Girdwood
>>> Subject: Re: [PATCH v2] regulator: ad5398: Fix min/max current limit boundary
>>> checking
>>>
>>> On 07/03/2012 09:54 AM, Zhang, Sonic wrote:
>>>>
>>>>
>>>>> -----Original Message-----
>>>>> From: Axel Lin [mailto:axel.lin@xxxxxxxxx]
>>>>> Sent: Tuesday, July 03, 2012 3:43 PM
>>>>> To: Mark Brown
>>>>> Cc: linux-kernel@xxxxxxxxxxxxxxx; Zhang, Sonic; Lars-Peter Clausen; Liam
>>>>> Girdwood
>>>>> Subject: [PATCH v2] regulator: ad5398: Fix min/max current limit boundary
>>>>> checking
>>>>>
>>>>> It is ok to request current limit with min_uA < chip->min_uA and
>>>>> max_uA > chip->max_uA.
>>>>>
>>>>> We need to set min_uA = chip->min_uA if (min_uA < chip->min_uA),
>>>>> this ensures the equation to calcuate selator does not return negative
>number.
>>>>>
>>>>
>>>> You should not do it in driver. Set a correct min_uA value in your application.
>>>
>>> I think the patch makes sense. If a application request a current range
>>> which overlaps with the range support by the chip, but either the requested
>>> min is smaller than the supported min or the requested max is larger than
>>> the supported max the driver will fail with an error. E.g.
>>>
>>> req-min     req-max
>>>   |-----------|
>>>        |------------|
>>>     chip-min  chip-max
>>>
>>> or even
>>>
>>> req-min                req-max
>>>   |----------------------|
>>>        |------------|
>>>     chip-min  chip-max
>>>
>>>
>>> While it is obviously possible for the chip to fulfill this request.
>>> Axel's patch takes care of this situation and ensures that the request is
>>> satisfied and the output current is set to a current within the requested
>>> range and the supported range.
>>
>> If the requested minimum current is smaller than the capability of the hardware,
>does a bigger min value fulfill this request?
>
>As long as it is smaller than the maximum requested current, yes. You
>request a current range with the regulator API and any value within this
>range is fine as the actual output current.
>

If so, please also set the max_uA as well.

Sonic

>>
>> If this logic is correct, I am fine to ACK.
>>
>>
>> Regards,
>>
>> Sonic
>>
>>
>>>
>>> - Lars
>>>
>>>>
>>>> Regards,
>>>>
>>>> Sonic
>>>>
>>>>> Signed-off-by: Axel Lin <axel.lin@xxxxxxxxx>
>>>>> ~
>>>>> ---
>>>>> drivers/regulator/ad5398.c |    7 ++++---
>>>>> 1 file changed, 4 insertions(+), 3 deletions(-)
>>>>>
>>>>> diff --git a/drivers/regulator/ad5398.c b/drivers/regulator/ad5398.c
>>>>> index 46d05f3..84fdcda 100644
>>>>> --- a/drivers/regulator/ad5398.c
>>>>> +++ b/drivers/regulator/ad5398.c
>>>>> @@ -89,9 +89,10 @@ static int ad5398_set_current_limit(struct
>regulator_dev
>>>>> *rdev, int min_uA, int
>>>>>       unsigned short data;
>>>>>       int ret;
>>>>>
>>>>> -      if (min_uA > chip->max_uA || min_uA < chip->min_uA)
>>>>> -              return -EINVAL;
>>>>> -      if (max_uA > chip->max_uA || max_uA < chip->min_uA)
>>>>> +      if (min_uA < chip->min_uA)
>>>>> +              min_uA = chip->min_uA;
>>>>> +
>>>>> +      if (min_uA > chip->max_uA || max_uA < chip->min_uA)
>>>>>               return -EINVAL;
>>>>>
>>>>>       selector = DIV_ROUND_UP((min_uA - chip->min_uA) * chip-
>>current_level,
>>>>> --
>>>>> 1.7.9.5
>>>>>
>>>>>
>>>>>
>>>>
>>>
>>
>

��.n��������+%������w��{.n�����{��G���{ay�ʇڙ���f���h������_�(�階�ݢj"��������G����?���&���iO����v��m��������?�I�



[Other Archives]     [Linux Kernel Newbies]     [Linux Driver Development]     [Linux Kbuild]     [Fedora Kernel]     [Linux Kernel Testers]     [Linux SH]     [Linux Omap]     [Linux Tape]     [Linux Input]     [Linux Kernel Janitors]     [Linux Kernel Packagers]     [Linux Doc]     [Linux Man Pages]     [Linux API]     [Linux Memory Management]     [Linux Modules]     [Linux Standards]     [Kernel Announce]     [Netdev]     [Git]     [Linux PCI]     Linux CAN Development     [Linux I2C]     [Linux RDMA]     [Linux NUMA]     [Netfilter]     [Netfilter Devel]     [SELinux]     [Bugtraq]     [FIO]     [Linux Perf Users]     [Linux Serial]     [Linux PPP]     [Linux ISDN]     [Linux Next]     [Kernel Stable Commits]     [Linux Tip Commits]     [Kernel MM Commits]     [Linux Security Module]     [AutoFS]     [Filesystem Development]     [Ext3 Filesystem]     [Linux bcache]     [Ext4 Filesystem]     [Linux BTRFS]     [Linux CEPH Filesystem]     [Linux XFS]     [XFS]     [Linux NFS]     [Linux CIFS]     [Ecryptfs]     [Linux NILFS]     [Linux Cachefs]     [Reiser FS]     [Initramfs]     [Linux FB Devel]     [Linux OpenGL]     [DRI Devel]     [Fastboot]     [Linux RT Users]     [Linux RT Stable]     [eCos]     [Corosync]     [Linux Clusters]     [LVS Devel]     [Hot Plug]     [Linux Virtualization]     [KVM]     [KVM PPC]     [KVM ia64]     [Linux Containers]     [Linux Hexagon]     [Linux Cgroups]     [Util Linux]     [Wireless]     [Linux Bluetooth]     [Bluez Devel]     [Ethernet Bridging]     [Embedded Linux]     [Barebox]     [Linux MMC]     [Linux IIO]     [Sparse]     [Smatch]     [Linux Arch]     [x86 Platform Driver]     [Linux ACPI]     [Linux IBM ACPI]     [LM Sensors]     [CPU Freq]     [Linux Power Management]     [Linmodems]     [Linux DCCP]     [Linux SCTP]     [ALSA Devel]     [Linux USB]     [Linux PA RISC]     [Linux Samsung SOC]     [MIPS Linux]     [IBM S/390 Linux]     [ARM Linux]     [ARM Kernel]     [ARM MSM]     [Tegra Devel]     [Sparc Linux]     [Linux Security]     [Linux Sound]     [Linux Media]     [Video 4 Linux]     [Linux IRDA Users]     [Linux for the blind]     [Linux RAID]     [Linux ATA RAID]     [Device Mapper]     [Linux SCSI]     [SCSI Target Devel]     [Linux SCSI Target Infrastructure]     [Linux IDE]     [Linux SMP]     [Linux AXP]     [Linux Alpha]     [Linux M68K]     [Linux ia64]     [Linux 8086]     [Linux x86_64]     [Linux Config]     [Linux Apps]     [Linux MSDOS]     [Linux X.25]     [Linux Crypto]     [DM Crypt]     [Linux Trace Users]     [Linux Btrace]     [Linux Watchdog]     [Utrace Devel]     [Linux C Programming]     [Linux Assembly]     [Dash]     [DWARVES]     [Hail Devel]     [Linux Kernel Debugger]     [Linux gcc]     [Gcc Help]     [X.Org]     [Wine]

Add to Google Powered by Linux

[Older Kernel Discussion]     [Yosemite National Park Forum]     [Large Format Photos]     [Gimp]     [Yosemite Photos]     [Stuff]