All of lore.kernel.org
 help / color / mirror / Atom feed
From: syin@broadcom.com (Sherman Yin)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/4] ARM: pinctrl: Add Broadcom Capri pinctrl driver
Date: Tue, 10 Dec 2013 16:05:30 -0800	[thread overview]
Message-ID: <52A7AC4A.8010504@broadcom.com> (raw)
In-Reply-To: <CAEPRUYq5DA982AqAmrUpsb3qc30VaFBawaXKTp2pcDvdbM-S1g@mail.gmail.com>

On 13-10-17 08:31 AM, Christian Daudt wrote:
> On Thu, Oct 17, 2013 at 7:54 AM, Stephen Warren <swarren@wwwdotorg.org> wrote:
>> On 10/17/2013 12:03 AM, Christian Daudt wrote:
>>> On Thu, Oct 3, 2013 at 5:23 PM, Sherman Yin <syin@broadcom.com> wrote:
>>>> Adds pinctrl driver for Broadcom Capri (BCM281xx) SoCs.
>>>>
>>>> Signed-off-by: Sherman Yin <syin@broadcom.com>
>>>> Reviewed-by: Christian Daudt <bcm@fixthebug.org>
>>>> Reviewed-by: Matt Porter <matt.porter@linaro.org>
>>>> ---
>>>>   arch/arm/mach-bcm/Kconfig       |    2 +
>>>>   drivers/pinctrl/Kconfig         |   10 +
>>>>   drivers/pinctrl/Makefile        |    1 +
>>>>   drivers/pinctrl/pinctrl-capri.c | 1727 +++++++++++++++++++++++++++++++++++++++
>>>>   4 files changed, 1740 insertions(+)
>>>>   create mode 100644 drivers/pinctrl/pinctrl-capri.c
>>>>
>>>> diff --git a/arch/arm/mach-bcm/Kconfig b/arch/arm/mach-bcm/Kconfig
>>>> index 69d67f7..2546365 100644
>>>> --- a/arch/arm/mach-bcm/Kconfig
>>>> +++ b/arch/arm/mach-bcm/Kconfig
>>>> @@ -10,6 +10,8 @@ config ARCH_BCM
>>>>          select GENERIC_CLOCKEVENTS
>>>>          select GENERIC_TIME
>>>>          select GPIO_BCM
>>>> +       select PINCTRL
>>>> +       select PINCTRL_CAPRI
>>>>          select SPARSE_IRQ
>>>>          select TICK_ONESHOT
>>>>          select CACHE_L2X0
>>>
>>> On your subsequent patchset pls move this from Kconfig to
>>> arm/configs/bcm_defconfig, and break that modification into a separate
>>> patch from the drivers/* modification.
>>
>> The other SoCs I'm familiar with all select this from their ARCH_xxx
>> config symbol.
>>
> I had a discussion on what is best left under ARCH and what is best
> left to defconfig with Kevin Hilman a while back and the conclusion
> was that any config not strictly required for bootup is best left to
> defconfig. This will allow multiplatform kernels to switch to using
> them as loadable modules later on, something not possible with configs
> put under ARCH_xxx.
>
>   Thanks,
>      csd
>

I was just trying to move "select PINCTRL" to a defconfig as Christian 
suggested.  However, CONFIG_PINCTRL is not selectable by a defconfig 
file (the option will be gone by the time .config is generated), even 
though PINCTRL has no dependency.  Also, this option is not visible in 
menuconfig.

I found that by adding a string after "bool" in the PINCTRL config 
definition (see diff below), CONFIG_PINCTRL will be selectable in a 
defconfig file and this option will also be visible in menuconfig.

Was this intentional or is this a bug?  To address Christian's comment, 
I'll need to add the following patch.

Regards,
Sherman

==================
diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig
index 6c70fc5..664c8e6 100644
--- a/drivers/pinctrl/Kconfig
+++ b/drivers/pinctrl/Kconfig
@@ -3,7 +3,7 @@
  #

  config PINCTRL
-       bool
+       bool "Enable the pinctrl framework"

  if PINCTRL
==================

WARNING: multiple messages have this Message-ID (diff)
From: Sherman Yin <syin@broadcom.com>
To: Christian Daudt <bcm@fixthebug.org>,
	Stephen Warren <swarren@wwwdotorg.org>,
	Kevin Hilman <khilman@linaro.org>,
	Linus Walleij <linus.walleij@linaro.org>
Cc: Rob Herring <rob.herring@calxeda.com>,
	Pawel Moll <pawel.moll@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Rob Landley <rob@landley.net>,
	Russell King <linux@arm.linux.org.uk>,
	Grant Likely <grant.likely@linaro.org>,
	Matt Porter <matt.porter@linaro.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	bcm-kernel-feedback-list <bcm-kernel-feedback-list@broadcom.com>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	Markus Mayer <mmayer@broadcom.com>
Subject: Re: [PATCH 3/4] ARM: pinctrl: Add Broadcom Capri pinctrl driver
Date: Tue, 10 Dec 2013 16:05:30 -0800	[thread overview]
Message-ID: <52A7AC4A.8010504@broadcom.com> (raw)
In-Reply-To: <CAEPRUYq5DA982AqAmrUpsb3qc30VaFBawaXKTp2pcDvdbM-S1g@mail.gmail.com>

On 13-10-17 08:31 AM, Christian Daudt wrote:
> On Thu, Oct 17, 2013 at 7:54 AM, Stephen Warren <swarren@wwwdotorg.org> wrote:
>> On 10/17/2013 12:03 AM, Christian Daudt wrote:
>>> On Thu, Oct 3, 2013 at 5:23 PM, Sherman Yin <syin@broadcom.com> wrote:
>>>> Adds pinctrl driver for Broadcom Capri (BCM281xx) SoCs.
>>>>
>>>> Signed-off-by: Sherman Yin <syin@broadcom.com>
>>>> Reviewed-by: Christian Daudt <bcm@fixthebug.org>
>>>> Reviewed-by: Matt Porter <matt.porter@linaro.org>
>>>> ---
>>>>   arch/arm/mach-bcm/Kconfig       |    2 +
>>>>   drivers/pinctrl/Kconfig         |   10 +
>>>>   drivers/pinctrl/Makefile        |    1 +
>>>>   drivers/pinctrl/pinctrl-capri.c | 1727 +++++++++++++++++++++++++++++++++++++++
>>>>   4 files changed, 1740 insertions(+)
>>>>   create mode 100644 drivers/pinctrl/pinctrl-capri.c
>>>>
>>>> diff --git a/arch/arm/mach-bcm/Kconfig b/arch/arm/mach-bcm/Kconfig
>>>> index 69d67f7..2546365 100644
>>>> --- a/arch/arm/mach-bcm/Kconfig
>>>> +++ b/arch/arm/mach-bcm/Kconfig
>>>> @@ -10,6 +10,8 @@ config ARCH_BCM
>>>>          select GENERIC_CLOCKEVENTS
>>>>          select GENERIC_TIME
>>>>          select GPIO_BCM
>>>> +       select PINCTRL
>>>> +       select PINCTRL_CAPRI
>>>>          select SPARSE_IRQ
>>>>          select TICK_ONESHOT
>>>>          select CACHE_L2X0
>>>
>>> On your subsequent patchset pls move this from Kconfig to
>>> arm/configs/bcm_defconfig, and break that modification into a separate
>>> patch from the drivers/* modification.
>>
>> The other SoCs I'm familiar with all select this from their ARCH_xxx
>> config symbol.
>>
> I had a discussion on what is best left under ARCH and what is best
> left to defconfig with Kevin Hilman a while back and the conclusion
> was that any config not strictly required for bootup is best left to
> defconfig. This will allow multiplatform kernels to switch to using
> them as loadable modules later on, something not possible with configs
> put under ARCH_xxx.
>
>   Thanks,
>      csd
>

I was just trying to move "select PINCTRL" to a defconfig as Christian 
suggested.  However, CONFIG_PINCTRL is not selectable by a defconfig 
file (the option will be gone by the time .config is generated), even 
though PINCTRL has no dependency.  Also, this option is not visible in 
menuconfig.

I found that by adding a string after "bool" in the PINCTRL config 
definition (see diff below), CONFIG_PINCTRL will be selectable in a 
defconfig file and this option will also be visible in menuconfig.

Was this intentional or is this a bug?  To address Christian's comment, 
I'll need to add the following patch.

Regards,
Sherman

==================
diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig
index 6c70fc5..664c8e6 100644
--- a/drivers/pinctrl/Kconfig
+++ b/drivers/pinctrl/Kconfig
@@ -3,7 +3,7 @@
  #

  config PINCTRL
-       bool
+       bool "Enable the pinctrl framework"

  if PINCTRL
==================


  reply	other threads:[~2013-12-11  0:05 UTC|newest]

Thread overview: 196+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-04  0:23 [PATCH 0/4] Add Broadcom Capri pinctrl driver Sherman Yin
2013-10-04  0:23 ` Sherman Yin
2013-10-04  0:23 ` Sherman Yin
2013-10-04  0:23 ` [PATCH 1/4] pinctrl: Add void * to pinctrl_pin_desc Sherman Yin
2013-10-04  0:23   ` Sherman Yin
2013-10-09  8:55   ` Linus Walleij
2013-10-09  8:55     ` Linus Walleij
2013-10-09  8:55     ` Linus Walleij
2013-10-09 22:57     ` Sherman Yin
2013-10-09 22:57       ` Sherman Yin
2013-10-04  0:23 ` [PATCH 2/4] pinctrl: Add pinctrl binding for Broadcom Capri SoCs Sherman Yin
2013-10-04  0:23   ` Sherman Yin
2013-10-04  0:23   ` Sherman Yin
2013-10-04 12:51   ` Matt Porter
2013-10-04 12:51     ` Matt Porter
2013-10-09  8:53   ` Linus Walleij
2013-10-09  8:53     ` Linus Walleij
2013-10-09  8:53     ` Linus Walleij
2013-10-10 17:57     ` Sherman Yin
2013-10-10 17:57       ` Sherman Yin
2013-10-04  0:23 ` [PATCH 3/4] ARM: pinctrl: Add Broadcom Capri pinctrl driver Sherman Yin
2013-10-04  0:23   ` Sherman Yin
2013-10-04  0:23   ` Sherman Yin
2013-10-09  9:10   ` Linus Walleij
2013-10-09  9:10     ` Linus Walleij
2013-10-10 23:48     ` Sherman Yin
2013-10-10 23:48       ` Sherman Yin
2013-10-11  8:14       ` Linus Walleij
2013-10-11  8:14         ` Linus Walleij
2013-10-11  8:14         ` Linus Walleij
2013-10-11 18:25         ` Sherman Yin
2013-10-11 18:25           ` Sherman Yin
2013-10-22 23:29           ` Sherman Yin
2013-10-22 23:29             ` Sherman Yin
2013-10-25 22:48             ` Sherman Yin
2013-10-25 22:48               ` Sherman Yin
2013-11-04 12:24               ` Linus Walleij
2013-11-04 12:24                 ` Linus Walleij
2013-11-04 23:26                 ` Heiko Stübner
2013-11-04 23:26                   ` Heiko Stübner
2013-11-05  0:04                   ` Stephen Warren
2013-11-05  0:04                     ` Stephen Warren
2013-11-06  2:02                     ` Sherman Yin
2013-11-06  2:02                       ` Sherman Yin
2013-11-06  9:40                       ` Linus Walleij
2013-11-06  9:40                         ` Linus Walleij
2013-11-08  0:29                         ` Sherman Yin
2013-11-08  0:29                           ` Sherman Yin
2013-11-11 10:01                           ` Linus Walleij
2013-11-11 10:01                             ` Linus Walleij
2013-11-13 23:43                             ` Sherman Yin
2013-11-13 23:43                               ` Sherman Yin
2013-11-13 23:43                               ` Sherman Yin
2013-11-19 20:39                               ` Linus Walleij
2013-11-19 20:39                                 ` Linus Walleij
2013-11-06 17:00                       ` Stephen Warren
2013-11-06 17:00                         ` Stephen Warren
2013-11-06 17:00                         ` Stephen Warren
2013-11-07 22:01                         ` Sherman Yin
2013-11-07 22:01                           ` Sherman Yin
2013-11-06  9:29                     ` Linus Walleij
2013-11-06  9:29                       ` Linus Walleij
2013-10-17  6:03   ` Christian Daudt
2013-10-17  6:03     ` Christian Daudt
2013-10-17 14:54     ` Stephen Warren
2013-10-17 14:54       ` Stephen Warren
2013-10-17 15:31       ` Christian Daudt
2013-10-17 15:31         ` Christian Daudt
2013-12-11  0:05         ` Sherman Yin [this message]
2013-12-11  0:05           ` Sherman Yin
2013-12-12 20:43           ` Linus Walleij
2013-12-12 20:43             ` Linus Walleij
2013-10-04  0:23 ` [PATCH 4/4] pinctrl: Enable pinctrl for Broadcom Capri SoCs Sherman Yin
2013-10-04  0:23   ` Sherman Yin
2013-10-09  9:11   ` Linus Walleij
2013-10-09  9:11     ` Linus Walleij
2013-10-07 19:28 ` [PATCH v2 0/4] Add Broadcom Capri pinctrl driver Sherman Yin
2013-10-07 19:28   ` Sherman Yin
2013-10-07 19:28   ` [PATCH v2 1/4] pinctrl: Add void * to pinctrl_pin_desc Sherman Yin
2013-10-07 19:28     ` Sherman Yin
2013-10-07 19:28   ` [PATCH v2 2/4] pinctrl: Add pinctrl binding for Broadcom Capri SoCs Sherman Yin
2013-10-07 19:28     ` Sherman Yin
2013-10-07 19:28   ` [PATCH v2 3/4] ARM: pinctrl: Add Broadcom Capri pinctrl driver Sherman Yin
2013-10-07 19:28     ` Sherman Yin
2013-10-07 19:28   ` [PATCH v2 4/4] pinctrl: Enable pinctrl for Broadcom Capri SoCs Sherman Yin
2013-10-07 19:28     ` Sherman Yin
2013-12-11 18:37   ` [PATCH v3 0/6] Add Broadcom Capri pinctrl driver Sherman Yin
2013-12-11 18:37     ` Sherman Yin
2013-12-11 18:37     ` Sherman Yin
2013-12-11 18:37     ` [PATCH v3 1/6] pinctrl: Add void * to pinctrl_pin_desc Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-11 18:37     ` [PATCH v3 2/6] pinctrl: Adds slew-rate, input-enable/disable Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-12 20:41       ` Linus Walleij
2013-12-12 20:41         ` Linus Walleij
2013-12-16  9:55       ` Linus Walleij
2013-12-16  9:55         ` Linus Walleij
2013-12-11 18:37     ` [PATCH v3 3/6] pinctrl: Make PINCTRL selectable by defconfig/menuconfig Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-12 20:39       ` Linus Walleij
2013-12-12 20:39         ` Linus Walleij
2013-12-12 21:35         ` Christian Daudt
2013-12-12 21:35           ` Christian Daudt
2013-12-16 10:01           ` Linus Walleij
2013-12-16 10:01             ` Linus Walleij
2013-12-17  0:18             ` Bjorn Andersson
2013-12-17  0:18               ` Bjorn Andersson
2013-12-17  0:18               ` Bjorn Andersson
2013-12-20  9:37               ` Linus Walleij
2013-12-20  9:37                 ` Linus Walleij
2013-12-20 20:58                 ` Arnd Bergmann
2013-12-20 20:58                   ` Arnd Bergmann
2013-12-20 20:58                   ` Arnd Bergmann
2013-12-21  2:15                   ` Sherman Yin
2013-12-21  2:15                     ` Sherman Yin
2013-12-11 18:37     ` [PATCH v3 4/6] pinctrl: Add pinctrl binding for Broadcom Capri SoCs Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-12 20:37       ` Linus Walleij
2013-12-12 20:37         ` Linus Walleij
2013-12-14  1:16         ` Sherman Yin
2013-12-14  1:16           ` Sherman Yin
2013-12-14  1:16           ` Sherman Yin
2013-12-16 13:17           ` Linus Walleij
2013-12-16 13:17             ` Linus Walleij
2013-12-18  2:02             ` Sherman Yin
2013-12-18  2:02               ` Sherman Yin
2013-12-18  2:02               ` Sherman Yin
2013-12-11 18:37     ` [PATCH v3 5/6] ARM: pinctrl: Add Broadcom Capri pinctrl driver Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-12 20:54       ` Linus Walleij
2013-12-12 20:54         ` Linus Walleij
2013-12-13 10:22         ` Mark Brown
2013-12-13 10:22           ` Mark Brown
2013-12-19  0:12           ` Sherman Yin
2013-12-19  0:12             ` Sherman Yin
2013-12-18 23:56         ` Sherman Yin
2013-12-18 23:56           ` Sherman Yin
2013-12-21  2:31           ` Sherman Yin
2013-12-21  2:31             ` Sherman Yin
2013-12-11 18:37     ` [PATCH v3 6/6] pinctrl: Enable pinctrl for Broadcom Capri SoCs Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-11 18:37       ` Sherman Yin
2013-12-21  2:13     ` [PATCH v4 0/6] Add Broadcom Capri pinctrl driver Sherman Yin
2013-12-21  2:13       ` Sherman Yin
2013-12-21  2:13       ` Sherman Yin
2013-12-21  2:13       ` [PATCH v4 1/4] pinctrl: Add void * to pinctrl_pin_desc Sherman Yin
2013-12-21  2:13         ` Sherman Yin
2013-12-21  2:13         ` Sherman Yin
2014-01-16 13:26         ` Linus Walleij
2014-01-16 13:26           ` Linus Walleij
2013-12-21  2:13       ` [PATCH v4 2/4] pinctrl: Add pinctrl binding for Broadcom Capri SoCs Sherman Yin
2013-12-21  2:13         ` Sherman Yin
2013-12-21  2:13         ` Sherman Yin
2014-01-07 17:15         ` Linus Walleij
2014-01-07 17:15           ` Linus Walleij
2014-01-07 20:45           ` Sherman Yin
2014-01-07 20:45             ` Sherman Yin
2014-01-14 10:16             ` Linus Walleij
2014-01-14 10:16               ` Linus Walleij
2014-01-14 19:00               ` Sherman Yin
2014-01-14 19:00                 ` Sherman Yin
2014-01-15  9:40                 ` Linus Walleij
2014-01-15  9:40                   ` Linus Walleij
2014-01-15 16:39                   ` Mark Rutland
2014-01-15 16:39                     ` Mark Rutland
2014-01-16 13:24         ` Linus Walleij
2014-01-16 13:24           ` Linus Walleij
2014-01-16 13:24           ` Linus Walleij
2013-12-21  2:13       ` [PATCH v4 3/4] ARM: pinctrl: Add Broadcom Capri pinctrl driver Sherman Yin
2013-12-21  2:13         ` Sherman Yin
2013-12-21  2:13         ` Sherman Yin
2014-01-16 13:19         ` Linus Walleij
2014-01-16 13:19           ` Linus Walleij
2014-01-17 19:59           ` Sherman Yin
2014-01-17 19:59             ` Sherman Yin
2014-01-18  2:56             ` Matt Porter
2014-01-18  2:56               ` Matt Porter
2014-01-18  2:56               ` Matt Porter
2014-01-20  8:16               ` Linus Walleij
2014-01-20  8:16                 ` Linus Walleij
2014-01-20 19:14                 ` Sherman Yin
2014-01-20 19:14                   ` Sherman Yin
2014-01-21 12:35                   ` Linus Walleij
2014-01-21 12:35                     ` Linus Walleij
2014-01-21 13:49                 ` Matt Porter
2014-01-21 13:49                   ` Matt Porter
2013-12-21  2:13       ` [PATCH v4 4/4] pinctrl: Enable pinctrl for Broadcom Capri SoCs Sherman Yin
2013-12-21  2:13         ` Sherman Yin
2013-12-21  2:13         ` Sherman Yin
2014-01-16 13:28         ` Linus Walleij
2014-01-16 13:28           ` Linus Walleij

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=52A7AC4A.8010504@broadcom.com \
    --to=syin@broadcom.com \
    --cc=linux-arm-kernel@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.