From: Andy Shevchenko Date: Thu, 26 Aug 2021 15:03:17 +0000 (+0300) Subject: x86/platform: Increase maximum GPIO number for X86_64 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d7109fe3a0991a0f7b4ac099b78c908e3b619787;p=linux.git x86/platform: Increase maximum GPIO number for X86_64 By default the 512 GPIOs is the maximum on any x86 platform. With, for example, Intel Tiger Lake-H the SoC based controller occupies up to 480 pins. This leaves only 32 available for GPIO expanders or other drivers, like PMIC. Hence, bump the maximum GPIO number to 1024 for X86_64 and leave 512 for X86_32. Signed-off-by: Andy Shevchenko Signed-off-by: Thomas Gleixner Reviewed-by: Linus Walleij Reviewed-by: Rafael J. Wysocki Link: https://lore.kernel.org/r/20210826150317.29435-1-andriy.shevchenko@linux.intel.com --- diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 421fa9e38c605..10163887c5ebe 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -340,6 +340,11 @@ config NEED_PER_CPU_PAGE_FIRST_CHUNK config ARCH_HIBERNATION_POSSIBLE def_bool y +config ARCH_NR_GPIO + int + default 1024 if X86_64 + default 512 + config ARCH_SUSPEND_POSSIBLE def_bool y