Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755202AbbLAHzm (ORCPT ); Tue, 1 Dec 2015 02:55:42 -0500 Received: from mailout2.w1.samsung.com ([210.118.77.12]:26056 "EHLO mailout2.w1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751989AbbLAHzk (ORCPT ); Tue, 1 Dec 2015 02:55:40 -0500 MIME-version: 1.0 Content-type: text/plain; charset=UTF-8; format=flowed X-AuditID: cbfec7f4-f79026d00000418a-18-565d52794401 Content-transfer-encoding: 8BIT Message-id: <565D5277.9080008@samsung.com> Date: Tue, 01 Dec 2015 08:55:35 +0100 From: Jacek Anaszewski User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130804 Thunderbird/17.0.8 To: Ingi Kim Cc: robh+dt@kernel.org, pawel.moll@arm.com, mark.rutland@arm.com, ijc+devicetree@hellion.org.uk, galak@codeaurora.org, sameo@linux.intel.com, lee.jones@linaro.org, rpurdie@rpsys.net, inki.dae@samsung.com, sw0312.kim@samsung.com, beomho.seo@samsung.com, andi.shyti@samsung.com, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-leds@vger.kernel.org Subject: Re: [PATCH v6 2/2] leds: rt5033: Add RT5033 Flash led device driver References: <1448446948-13729-1-git-send-email-ingi2.kim@samsung.com> <1448446948-13729-3-git-send-email-ingi2.kim@samsung.com> <5655D001.8090803@samsung.com> <5656BC88.2070603@samsung.com> <5656D43D.106@samsung.com> <565BB510.2040903@samsung.com> <565C2C1A.3080100@samsung.com> <565CFDCC.3090108@samsung.com> In-reply-to: <565CFDCC.3090108@samsung.com> X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFprBIsWRmVeSWpSXmKPExsVy+t/xy7qVQbFhBjcvSltsP/KM1eL0p23s FvOPnGO16H+zkNXi3KuVjBY7bn5hs5h0fwKLxf2vRxktLu+aw2ax9c06Roul1y8yWUyYvpbF onXvEXaL3bueAg3oZrWYMfklm4OAx5p5axg9Lvf1MnmsXP6FzWPTqk42jzvX9rB5zDsZ6LFn /g9Wj74tqxg9Pm+SC+CM4rJJSc3JLEst0rdL4Mp43FNYMF2x4lv7LeYGxt1SXYycHBICJhJt N/8wQthiEhfurWcDsYUEljJK/JnCCWLzCghK/Jh8j6WLkYODWUBe4silbJAws4CZxKOWdcxd jFxA5c8YJSZPWMIKUa8l0bcWJMHBwSKgKrF6SRpImE3AUOLni9dMILaoQITEn9P7wMpFBFQk 7jxtYQGZwyzwmUli/sz7LCAJYQEfiT+ff7NBLNjLJHF76Rqwbk4BbYml7y6yT2AUmIXkvlkI 981Cct8CRuZVjKKppckFxUnpuYZ6xYm5xaV56XrJ+bmbGCHx9WUH4+JjVocYBTgYlXh4JdfG hAmxJpYVV+YeYpTgYFYS4f0hFRsmxJuSWFmVWpQfX1Sak1p8iFGag0VJnHfurvchQgLpiSWp 2ampBalFMFkmDk6pBkbfmkVrPQ84n7lQIlvxzfXBwft17z0OuBVIfQtc6n1rk+8coaLvAozs Abs9915lf22Revg1r6NO+MmXO4QnPtgSv8lv9Xu9uye8XTc3Nl5b4pL+kmF1nNaa3KNRB+dP iy5fLcm0NHPXvW3ZHquuK29Vnn08uGRTV9n5WNZ1/QrcNdaTs2UWr5+sxFKckWioxVxUnAgA 6pPLIasCAAA= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4364 Lines: 133 On 12/01/2015 02:54 AM, Ingi Kim wrote: > Hi Jacek, > > On 2015년 11월 30일 19:59, Jacek Anaszewski wrote: >> Hi Ingi, >> >> On 11/30/2015 03:31 AM, Ingi Kim wrote: >>> Hi Jacek, >>> >>> On 2015년 11월 26일 18:43, Jacek Anaszewski wrote: >>>> Hi Ingi, >>>> >>>> On 11/26/2015 09:02 AM, Ingi Kim wrote: >>>> [...] >>>>>>> +torch_unlock: >>>>>>> + mutex_unlock(&led->lock); >>>>>>> + return ret; >>>>>>> +} >>>>>>> + >>>>>>> +static int rt5033_led_flash_brightness_set(struct led_classdev_flash *fled_cdev, >>>>>>> + u32 brightness) >>>>>>> +{ >>>>>>> + struct rt5033_sub_led *sub_led = flcdev_to_sub_led(fled_cdev); >>>>>>> + struct rt5033_led *led = sub_led_to_led(sub_led); >>>>>>> + >>>>>>> + mutex_lock(&led->lock); >>>>>>> + sub_led->flash_brightness = brightness; >>>>>>> + mutex_unlock(&led->lock); >>>>>> >>>>>> Mutex protection is redundant in this case. You would need it if device >>>>>> state was also changed here. >>>>> >>>>> Okay, I'll remove it. >>>>> >>>>>> >>>>>> BTW why flash brightness can't be written to the device here? >>>>>> >>>>> >>>>> Flash brightness is only affected when FLED flashed (strobing). >>>>> So, I think it is better to be written in rt5033_led_flash_strobe_set function. >>>> >>>> strobe_set op should strobe the flash ASAP, and delegating brightness >>>> setting there extends a delay between calling strobe_set op >>>> and actual flash strobe. If you set the brightness here, then you >>>> wouldn't have to do that in the strobe_set op, of course unless the >>>> the brightness is altered through the API of the other LED, in two >>>> separate LEDs case. >>>> >>> >>> The brightness may be able to change its brightness in two separate LEDs case as you see. >>> So, I think it would be better to write brightness setting in strobe_op. >> >> Could you motivate your statement, please? Why would it be better? >> >>> In consideration of delay, of course, the brightness is set just when it would be changed. >> >> I think that joint iout arrangement will be prevailing - this is the >> case for your board, isn't it? With the modification I am proposing >> the gain is clear. >> > > You're right, thanks. > Did you mean that flash attributes should be written > on their ops(flash brightness, flash timeout)? Both in those ops and conditionally in the strobe_set op, in order to handle two LEDs case, when the other LED has altered any of the shared settings. > let me update the driver on your suggestion. > >>>>>>> + >>>>>>> + return 0; >>>>>>> +} >>>>>>> + >>>>>>> +static int rt5033_led_flash_timeout_set(struct led_classdev_flash *fled_cdev, >>>>>>> + u32 timeout) >>>>>>> +{ >>>>>>> + struct rt5033_sub_led *sub_led = flcdev_to_sub_led(fled_cdev); >>>>>>> + struct rt5033_led *led = sub_led_to_led(sub_led); >>>>>>> + >>>>>>> + mutex_lock(&led->lock); >>>>>>> + sub_led->flash_timeout = timeout; >>>>>>> + mutex_unlock(&led->lock); >>>>>> >>>>>> Ditto. >>>>>> >>>> >>>> Timeout should be also written here. >>>> >>> >>> The timeout may be able to change its flash timeout in two separate LEDs case as you see. >>> So, I think it would be better to write timeout setting in strobe_op. >>> In consideration of delay, of course, the timeout is set just when it would be changed. >>> >>>> If you will add regmap_write in both ops, then mutex protection will >>>> have to be preserved, to assure consistency between registers state >>>> and sub_led->flash_brightness and sub_led->flash_timeout state. >>>> >>> >>> Thanks, but mutex protection is useless in this case. >>> so I try to remove it. >>> >>>>> >>>>>>> +#define RT5033_FLED_CTRL4_VTRREG_MAX 0x60 >>>>>> >>>>>> Rename DEF to MASK. >>>> >>>> Hmm, here it should be: Rename MAX to MASK. >>>> >>> >>> Oh >>> Okay, Thanks :) >>> >> >> > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > > -- Best Regards, Jacek Anaszewski -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/