lkml.org 
[lkml]   [2022]   [Aug]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH] gpio: Allow user to customise maximum number of GPIOs
On Thu, Aug 18, 2022 at 8:00 AM Christophe Leroy
<christophe.leroy@csgroup.eu> wrote:
> Le 17/08/2022 à 19:46, Arnd Bergmann a écrit :
> > On Tue, Aug 9, 2022 at 12:40 PM Christophe Leroy <christophe.leroy@csgroup.eu> wrote:
> >> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> >> index 53e6a1da9af5..e55b6560fe4f 100644
> >> --- a/arch/arm/Kconfig
> >> +++ b/arch/arm/Kconfig
> >> @@ -14,6 +14,7 @@ config ARM
> >> select ARCH_HAS_KCOV
> >> select ARCH_HAS_MEMBARRIER_SYNC_CORE
> >> select ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
> >> + select ARCH_HAS_NR_GPIO
> >> select ARCH_HAS_PTE_SPECIAL if ARM_LPAE
> >> select ARCH_HAS_PHYS_TO_DMA
> >> select ARCH_HAS_SETUP_DMA_OPS
> >> @@ -1243,7 +1244,7 @@ config ARCH_NR_GPIO
> >> default 352 if ARCH_VT8500
> >> default 288 if ARCH_ROCKCHIP
> >> default 264 if MACH_H4700
> >> - default 0
> >> + default 512
> >
> > This list should be kept sorted, otherwise you still get e.g. the '264' default
> > value. If you have a GPIO extender that provides hardcoded GPIO
> > numbers on your machine, there should be a configuration option for
> > that driver.
>
> I don't want to change the behaviour for existing configurations. If the
> unconditional default goes before conditional ones, then all following
> defaults will be ignored and you'll get 512 instead of 264 if MAC_H4700
> is selected for instance.
>
> At the time being, you get 0 only when no other default was selected,
> then that 0 implies 512 in asm-generic/gpio.h by:
>
> #if defined(CONFIG_ARCH_NR_GPIO) && CONFIG_ARCH_NR_GPIO > 0
> #define ARCH_NR_GPIOS CONFIG_ARCH_NR_GPIO
> #else
> #define ARCH_NR_GPIOS 512
> #endif

Ok, I see what you are doing now. I'm not sure this is actually intentional
behavior of the current implementation though, my guess would be that
the 'default 0' was intended as a fallback for platforms that have no
GPIO providers at all.

This is of course not entirely appropriate any more as

> > Which driver is it that needs extra hardcoded GPIO numbers for you?
> > Have you tried converting it to use GPIO descriptors so you don't
> > need the number assignment?
>
> It is a max7301 (drivers/gpio/gpio-max730x.c) but I can't understand
> what you mean. GPIO descriptors are for consumers, aren't they ?

I meant the consumers, yes.

> During boot I get :
>
> [ 0.601942] gpiochip_find_base: found new base at 496
> [ 0.606337] gpiochip_find_base: found new base at 464
> [ 0.616408] gpiochip_find_base: found new base at 448
> [ 0.621826] gpiochip_find_base: found new base at 432
> [ 0.627228] gpiochip_find_base: found new base at 400
> [ 0.660984] gpiochip_find_base: found new base at 384
> [ 0.669631] gpiochip_find_base: found new base at 368
> [ 0.672713] gpiochip_find_base: found new base at 352
> [ 0.675805] gpiochip_find_base: found new base at 336
> [ 0.678885] gpiochip_find_base: found new base at 320
> [ 0.682178] gpiochip_find_base: found new base at 304
> [ 0.685275] gpiochip_find_base: found new base at 288
> [ 0.688366] gpiochip_find_base: found new base at 272
> [ 0.691678] gpiochip_find_base: found new base at 256
> [ 0.694762] gpiochip_find_base: found new base at 240
> [ 0.697847] gpiochip_find_base: found new base at 224
> [ 0.701441] gpiochip_find_base: found new base at 208
> [ 0.709427] gpiochip_find_base: found new base at 192
> [ 0.713859] gpiochip_find_base: found new base at 176
> [ 0.718002] gpiochip_find_base: found new base at 160
> [ 0.723316] gpiochip_find_base: found new base at 144
> [ 0.731105] gpiochip_find_base: found new base at 128
> [ 0.737403] gpiochip_find_base: found new base at 112
> [ 0.740614] gpiochip_find_base: found new base at 96
> [ 0.743701] gpiochip_find_base: found new base at 80
> [ 0.747246] gpiochip_find_base: found new base at 64
> [ 4.663677] gpiochip_find_base: found new base at 36
> [ 5.050792] gpiochip_find_base: found new base at 16
> [ 5.064892] gpiochip_find_base: cannot find free range
> [ 5.095527] gpiochip_find_base: cannot find free range
>
> gpiochip_find_base() is called for any GPIO driver, by gpiochip_add() /
> gpiochip_add_data_with_key(), and there is the following comment:
>
> /*
> * TODO: this allocates a Linux GPIO number base in the global
> * GPIO numberspace for this chip. In the long run we want to
> * get *rid* of this numberspace and use only descriptors, but
> * it may be a pipe dream. It will not happen before we get rid
> * of the sysfs interface anyways.
> */
>
> So, what did I miss ?

I missed the fact that the registration fails if it runs out of gpio numbers,
as I was assuming that you could still use the additional gpio chips
with the descriptor based API as long as all of the consumers on the
system use that and you don't use CONFIG_GPIO_SYSFS.

I see that this does not work today, but maybe it wouldn't be too hard to
change? I see that CONFIG_GPIO_SYSFS continued to move towards
deprecation after the comment was added in the code, and these days it
can only be enabled if CONFIG_EXPERT=y is set.

Arnd

\
 
 \ /
  Last update: 2022-08-18 10:26    [W:0.180 / U:0.400 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site