From: Eric Nelson <eric@nelint.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 7/7] gpio: tegra: remove flags parsing in xlate routine
Date: Sun, 10 Apr 2016 08:55:06 -0700 [thread overview]
Message-ID: <570A775A.6050104@nelint.com> (raw)
In-Reply-To: <570A66F5.8000902@nelint.com>
On 04/10/2016 07:45 AM, Eric Nelson wrote:
> On 04/09/2016 11:34 AM, Simon Glass wrote:
>> On 5 April 2016 at 16:09, Stephen Warren <swarren@wwwdotorg.org> wrote:
>>> On 04/01/2016 09:47 AM, Eric Nelson wrote:
>>>>
>>>> With the addition of GPIO_ACTIVE_LOW parsing in gpio-uclass, it is
>>>> no longer necessary for the tegra-specific xlate function to do this.
>>>
>>>> diff --git a/drivers/gpio/tegra_gpio.c b/drivers/gpio/tegra_gpio.c
>>>
>>>> @@ -246,7 +246,6 @@ static int tegra_gpio_xlate(struct udevice *dev,
>>>> struct gpio_desc *desc,
>>>> if (ret)
>>>> return ret;
>>>> desc->offset = gpio % TEGRA_GPIOS_PER_PORT;
>>>> - desc->flags = args->args[1] & GPIO_ACTIVE_LOW ? GPIOD_ACTIVE_LOW :
>>>> 0;
>>>
>>>
>>> I expect that after that, you can also remove the following at the top of
>>> the file:
>>>
>>> #include <dt-bindings/gpio/gpio.h>
>>>
>>> I expect that's true of other GPIO drivers too.
>>
>> But I don't think we want this patch for Tegra since we need to keep
>> the xlate() method, and with your suggested approach earlier, we won't
>> call the default xlate() method in the uclass for Tegra.
>>
>
> Based on your comments and Stephens, I can re-work this to have a
> __maybe_unused xlate function for the common case of handling
> offset+active low, but I think the handling of offset inside of
> gpio_find_and_xlate() should be removed at the same time.
>
> It seems weird to have processing for one argument in the common code
> when it may not be used (as is the case with tegra).
>
While reviewing this, I think I found that the sunxi gpio driver
is broken.
The device trees have #gpio-cells=<3>, and gpio declaration like this:
<&pio 1 8 GPIO_ACTIVE_HIGH>
but there's no custom xlate routine, the offset is currently going to
have what I presume is the bank number.
Hans, can you confirm this?
Please advise,
Eric
next prev parent reply other threads:[~2016-04-10 15:55 UTC|newest]
Thread overview: 67+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-25 20:12 [U-Boot] [PATCH] dm: gpio: handle GPIO_ACTIVE_LOW flag in DT Eric Nelson
2016-03-29 4:57 ` Peng Fan
2016-03-31 20:41 ` Eric Nelson
2016-04-01 15:47 ` [U-Boot] [PATCH 0/7] Handle GPIO_ACTIVE_LOW in gpio-uclass Eric Nelson
2016-04-01 15:47 ` [U-Boot] [PATCH 1/7] dm: gpio: handle GPIO_ACTIVE_LOW flag in DT Eric Nelson
2016-04-01 15:47 ` [U-Boot] [PATCH 2/7] gpio: intel_broadwell: remove gpio_xlate routine Eric Nelson
2016-04-09 18:33 ` Simon Glass
2016-04-01 15:47 ` [U-Boot] [PATCH 3/7] gpio: omap: " Eric Nelson
2016-04-09 18:33 ` Simon Glass
2016-04-01 15:47 ` [U-Boot] [PATCH 4/7] gpio: pic32: " Eric Nelson
2016-04-09 18:33 ` Simon Glass
2016-04-01 15:47 ` [U-Boot] [PATCH 5/7] gpio: rk: " Eric Nelson
2016-04-09 18:33 ` Simon Glass
2016-04-01 15:47 ` [U-Boot] [PATCH 6/7] gpio: exynos(s5p): " Eric Nelson
2016-04-09 18:34 ` Simon Glass
2016-04-01 15:47 ` [U-Boot] [PATCH 7/7] gpio: tegra: remove flags parsing in xlate routine Eric Nelson
2016-04-05 22:09 ` Stephen Warren
2016-04-09 18:34 ` Simon Glass
2016-04-10 14:45 ` Eric Nelson
2016-04-10 15:55 ` Eric Nelson [this message]
2016-04-11 17:00 ` [U-Boot] [PATCH V2 0/6] Handle GPIO_ACTIVE_LOW in gpio-uclass Eric Nelson
2016-04-11 17:00 ` [U-Boot] [PATCH V2 1/6] dm: gpio: add a default gpio xlate routine Eric Nelson
2016-04-11 17:16 ` Stephen Warren
2016-04-11 17:18 ` Eric Nelson
2016-04-11 17:31 ` [U-Boot] [PATCH V3 " Eric Nelson
2016-04-12 3:49 ` Purna Chandra Mandal
2016-04-11 17:00 ` [U-Boot] [PATCH V2 2/6] gpio: intel_broadwell: remove gpio_xlate routine Eric Nelson
2016-04-11 17:00 ` [U-Boot] [PATCH V2 3/6] gpio: omap: " Eric Nelson
2016-04-11 17:00 ` [U-Boot] [PATCH V2 4/6] gpio: pic32: " Eric Nelson
2016-04-12 3:49 ` Purna Chandra Mandal
2016-04-11 17:00 ` [U-Boot] [PATCH V2 5/6] gpio: rk: " Eric Nelson
2016-04-11 17:00 ` [U-Boot] [PATCH V2 6/6] gpio: exynos(s5p): " Eric Nelson
2016-04-12 3:56 ` Minkyu Kang
2016-04-02 5:46 ` [U-Boot] [PATCH] dm: gpio: handle GPIO_ACTIVE_LOW flag in DT Peng Fan
2016-04-02 15:13 ` Eric Nelson
2016-04-03 3:37 ` Stephen Warren
2016-04-03 14:07 ` Eric Nelson
2016-04-04 17:50 ` Stephen Warren
2016-04-09 18:33 ` Simon Glass
2016-04-10 14:48 ` Eric Nelson
2016-04-11 14:47 ` Simon Glass
2016-04-11 14:55 ` Eric Nelson
2016-04-11 14:59 ` Simon Glass
2016-04-11 15:10 ` Eric Nelson
2016-04-11 15:12 ` Simon Glass
2016-04-11 16:10 ` Stephen Warren
2016-04-11 16:53 ` Simon Glass
2016-04-11 17:17 ` Eric Nelson
2016-04-20 14:40 ` Simon Glass
2016-04-20 15:23 ` Eric Nelson
2016-04-20 15:37 ` [U-Boot] [RESEND PATCH 0/6] Handle GPIO_ACTIVE_LOW in gpio-uclass Eric Nelson
2016-04-20 15:37 ` [U-Boot] [RESEND PATCH V3 1/6] dm: gpio: add a default gpio xlate routine Eric Nelson
2016-04-21 17:03 ` Stephen Warren
2016-04-24 23:32 ` Eric Nelson
2016-04-24 23:32 ` [U-Boot] [PATCH V4, " Eric Nelson
2016-04-27 15:12 ` Simon Glass
2016-05-07 19:03 ` Simon Glass
2016-04-20 15:37 ` [U-Boot] [RESEND PATCH V2 2/6] gpio: intel_broadwell: remove gpio_xlate routine Eric Nelson
2016-05-07 19:03 ` Simon Glass
2016-04-20 15:37 ` [U-Boot] [RESEND PATCH V2 3/6] gpio: omap: " Eric Nelson
2016-05-07 19:03 ` Simon Glass
2016-04-20 15:37 ` [U-Boot] [RESEND PATCH V2 4/6] gpio: pic32: " Eric Nelson
2016-05-07 19:03 ` Simon Glass
2016-04-20 15:37 ` [U-Boot] [RESEND PATCH V2 5/6] gpio: rk: " Eric Nelson
2016-05-07 19:03 ` Simon Glass
2016-04-20 15:37 ` [U-Boot] [RESEND PATCH V2 6/6] gpio: exynos(s5p): " Eric Nelson
2016-05-07 19:03 ` Simon Glass
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=570A775A.6050104@nelint.com \
--to=eric@nelint.com \
--cc=u-boot@lists.denx.de \
/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