Linux GPIO subsystem development
 help / color / mirror / Atom feed
From: Song Chen <chensong_2000@189.cn>
To: Krzysztof Kozlowski <krzk@kernel.org>,
	lgirdwood@gmail.com, broonie@kernel.org, lee@kernel.org,
	linus.walleij@linaro.org, brgl@bgdev.pl
Cc: linux-kernel@vger.kernel.org, linux-gpio@vger.kernel.org,
	linux-samsung-soc@vger.kernel.org
Subject: Re: [PATCH] regulator:s5m8767 Fully convert to GPIO descriptors
Date: Mon, 6 Jan 2025 17:23:55 +0800	[thread overview]
Message-ID: <4fc82b83-d312-4878-96ea-4c6ce7e19631@189.cn> (raw)
In-Reply-To: <a06935f7-8d9a-478b-a3a0-25df3f404b44@189.cn>

Hi Krzysztof,

Bart and I are talking about using gpiod array in s5m8767 by adding a 
new variant in gpio core, what do you think about that?

what's more, i also have another question about 
s5m8767_set_high/s5m8767_set_low, see detail below, i would appreciate 
it if you could give any comments about that.

Best regards,

Song


在 2024/12/13 18:30, Song Chen 写道:
> Hi Krzysztof,
> 
> I noticed that in s5m8767_set_high and s5m8767_set_low, the code looks 
> identical to each other, only order is different. Is there any problem 
> here or this way is on purpose correctly.
> 
> static inline int s5m8767_set_high(struct s5m8767_info *s5m8767)
> {
>      int temp_index = s5m8767->buck_gpioindex;
> 
>      gpio_set_value(s5m8767->buck_gpios[0], (temp_index >> 2) & 0x1);
>      gpio_set_value(s5m8767->buck_gpios[1], (temp_index >> 1) & 0x1);
>      gpio_set_value(s5m8767->buck_gpios[2], temp_index & 0x1);
> 
>      return 0;
> }
> 
> static inline int s5m8767_set_low(struct s5m8767_info *s5m8767)
> {
>      int temp_index = s5m8767->buck_gpioindex;
> 
>      gpio_set_value(s5m8767->buck_gpios[2], temp_index & 0x1);
>      gpio_set_value(s5m8767->buck_gpios[1], (temp_index >> 1) & 0x1);
>      gpio_set_value(s5m8767->buck_gpios[0], (temp_index >> 2) & 0x1);
> 
>      return 0;
> }
> 
> Song
> 
> 
> 
>> On 07/12/2024 07:16, Song Chen wrote:
>>>>>            }
>>>>> -        pdata->buck_gpios[i] = gpio;
>>>>> +
>>>>> +        /* SET GPIO*/
>>>>
>>>> What is a SET GPIO?
>>>>
>>>>> +        snprintf(label, sizeof(label), "%s%d", "S5M8767 SET", i + 1);
>>>>
>>>> Why using "SET" as name, not the actual name it is used for? Buck DVS?
>>>
>>> from below snippets:
>>> s5m8767_pmic_probe of drivers/regulator/s5m8767.c
>>>           ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[0],
>>>                       "S5M8767 SET1");
>>>           if (ret)
>>>               return ret;
>>>
>>>           ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[1],
>>>                       "S5M8767 SET2");
>>>           if (ret)
>>>               return ret;
>>>
>>>           ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[2],
>>>                       "S5M8767 SET3");
>>
>>
>> Yeah, your code is fine.
>>
>>>
>>> and arch/arm/boot/dts/samsung/exynos5250-spring.dts
>>>
>>>           s5m8767,pmic-buck-dvs-gpios = <&gpd1 0 GPIO_ACTIVE_LOW>, /* 
>>> DVS1 */
>>>                             <&gpd1 1 GPIO_ACTIVE_LOW>, /* DVS2 */
>>>                             <&gpd1 2 GPIO_ACTIVE_LOW>; /* DVS3 */
>>>
>>>           s5m8767,pmic-buck-ds-gpios = <&gpx2 3 GPIO_ACTIVE_LOW>, /* 
>>> SET1 */
>>>                            <&gpx2 4 GPIO_ACTIVE_LOW>, /* SET2 */
>>>                            <&gpx2 5 GPIO_ACTIVE_LOW>; /* SET3 */
>>>
>>>>
>>>>> +        gpiod_set_consumer_name(pdata->buck_gpios[i], label);
>>>>> +        gpiod_direction_output(pdata->buck_gpios[i],
>>>>> +                    (pdata->buck_default_idx >> (2 - i)) & 0x1);
>>>>
>>>> This is not an equivalent code. You set values for GPIOs 0-1 even if
>>>> requesting GPIO 2 fails.
>>>>
>>>> On which board did you test it?
>>>
>>> You are right ,it's not equivalent with original code, i will fix it.
>>> but i have a question here:
>>>
>>>           ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[0],
>>>                       "S5M8767 SET1");
>>>           if (ret)
>>>               return ret;
>>>
>>>           ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[1],
>>>                       "S5M8767 SET2");
>>>           if (ret)
>>>               return ret;
>>>
>>>           ret = devm_gpio_request(&pdev->dev, pdata->buck_gpios[2],
>>>                       "S5M8767 SET3");
>>>           if (ret)
>>>               return ret;
>>>
>>> if it fails to request buck_gpios[2] after successfully requests
>>> buck_gpios[0] and buck_gpios[1], the probe fails as well, should it call
>>> gpiod_put to return gpio resource?
>>
>>
>> Aren't you using devm interface? Please read the API. You do not need to
>> put anything, unless you use some other interface and I missed the point
>> of the question.
>>
>> Best regards,
>> Krzysztof
>>
>>

      reply	other threads:[~2025-01-06  9:29 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-06  5:13 [PATCH] regulator:s5m8767 Fully convert to GPIO descriptors Song Chen
2024-12-06  8:33 ` Krzysztof Kozlowski
2024-12-07  6:16   ` Song Chen
2024-12-09 19:50     ` Krzysztof Kozlowski
2024-12-10  6:51       ` Song Chen
2024-12-13 10:30       ` Song Chen
2025-01-06  9:23         ` Song Chen [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4fc82b83-d312-4878-96ea-4c6ce7e19631@189.cn \
    --to=chensong_2000@189.cn \
    --cc=brgl@bgdev.pl \
    --cc=broonie@kernel.org \
    --cc=krzk@kernel.org \
    --cc=lee@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox