Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1209081 > unrolled thread
| Started by | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| First post | 2015-08-18 09:10 +0200 |
| Last post | 2015-08-18 10:10 +0200 |
| Articles | 5 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver Javier Martinez Canillas <javier@osg.samsung.com> - 2015-08-18 09:10 +0200
Re: [PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-08-18 10:00 +0200
Re: [PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-08-18 10:10 +0200
Re: [PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver Javier Martinez Canillas <javier@osg.samsung.com> - 2015-08-18 10:20 +0200
Re: [PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver Javier Martinez Canillas <javier@osg.samsung.com> - 2015-08-18 10:10 +0200
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2015-08-18 09:10 +0200 |
| Subject | [PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver |
| Message-ID | <pYJbY-7oT-27@gated-at.bofh.it> |
The ChromeOS mfd driver (MFD_CROS_EC) select the CROS_EC_PROTO config symbol because the driver uses some communication helper functions in drivers/platform/chrome/cros_ec_proto.c but other drivers depends on CROS_EC_PROTO instead. Mixing select and depends can lead to circular Kconfig dependencies so the MFD_CROS_EC select should be changed to a depends on CROS_EC_PROTO instead. But doing so will break git bisect-ability since MFD_CROS_EC will not be enabled anymore unless the default configs first explicitly enable the CROS_EC_PROTO dependency. Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> --- arch/arm/configs/exynos_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/exynos_defconfig b/arch/arm/configs/exynos_defconfig index 1ff2bfa2e183..537391ea37ac 100644 --- a/arch/arm/configs/exynos_defconfig +++ b/arch/arm/configs/exynos_defconfig @@ -177,6 +177,7 @@ CONFIG_DMADEVICES=y CONFIG_PL330_DMA=y CONFIG_CHROME_PLATFORMS=y CONFIG_CROS_EC_CHARDEV=y +CONFIG_CROS_EC_PROTO=y CONFIG_COMMON_CLK_MAX77686=y CONFIG_COMMON_CLK_MAX77802=y CONFIG_COMMON_CLK_S2MPS11=y -- 2.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| Date | 2015-08-18 10:00 +0200 |
| Subject | Re: [PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver |
| Message-ID | <pYJYl-8k5-1@gated-at.bofh.it> |
| In reply to | #1209081 |
On 18.08.2015 16:01, Javier Martinez Canillas wrote: > The ChromeOS mfd driver (MFD_CROS_EC) select the CROS_EC_PROTO config > symbol because the driver uses some communication helper functions in > drivers/platform/chrome/cros_ec_proto.c but other drivers depends on > CROS_EC_PROTO instead. Mixing select and depends can lead to circular > Kconfig dependencies so the MFD_CROS_EC select should be changed to a > depends on CROS_EC_PROTO instead. > > But doing so will break git bisect-ability since MFD_CROS_EC will not > be enabled anymore unless the default configs first explicitly enable > the CROS_EC_PROTO dependency. > > Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> > --- > arch/arm/configs/exynos_defconfig | 1 + > 1 file changed, 1 insertion(+) I saw the discussion about circular dependency but I wasn't following it. Currently the CROS_EC_PROTO is not user-selectable. How can you depend on it? How can be enabled on different configs (customized by user)? Maybe the questions are answered by code in different patches? Best regards, Krzysztof > > diff --git a/arch/arm/configs/exynos_defconfig b/arch/arm/configs/exynos_defconfig > index 1ff2bfa2e183..537391ea37ac 100644 > --- a/arch/arm/configs/exynos_defconfig > +++ b/arch/arm/configs/exynos_defconfig > @@ -177,6 +177,7 @@ CONFIG_DMADEVICES=y > CONFIG_PL330_DMA=y > CONFIG_CHROME_PLATFORMS=y > CONFIG_CROS_EC_CHARDEV=y > +CONFIG_CROS_EC_PROTO=y > CONFIG_COMMON_CLK_MAX77686=y > CONFIG_COMMON_CLK_MAX77802=y > CONFIG_COMMON_CLK_S2MPS11=y > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Krzysztof Kozlowski <k.kozlowski@samsung.com> |
|---|---|
| Date | 2015-08-18 10:10 +0200 |
| Subject | Re: [PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver |
| Message-ID | <pYK82-j8-3@gated-at.bofh.it> |
| In reply to | #1209101 |
On 18.08.2015 17:05, Javier Martinez Canillas wrote: > Hello Krzysztof, > > On 08/18/2015 09:57 AM, Krzysztof Kozlowski wrote: >> On 18.08.2015 16:01, Javier Martinez Canillas wrote: >>> The ChromeOS mfd driver (MFD_CROS_EC) select the CROS_EC_PROTO config >>> symbol because the driver uses some communication helper functions in >>> drivers/platform/chrome/cros_ec_proto.c but other drivers depends on >>> CROS_EC_PROTO instead. Mixing select and depends can lead to circular >>> Kconfig dependencies so the MFD_CROS_EC select should be changed to a >>> depends on CROS_EC_PROTO instead. >>> >>> But doing so will break git bisect-ability since MFD_CROS_EC will not >>> be enabled anymore unless the default configs first explicitly enable >>> the CROS_EC_PROTO dependency. >>> >>> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> >>> --- >>> arch/arm/configs/exynos_defconfig | 1 + >>> 1 file changed, 1 insertion(+) >> >> I saw the discussion about circular dependency but I wasn't following >> it. Currently the CROS_EC_PROTO is not user-selectable. How can you >> depend on it? How can be enabled on different configs (customized by user)? >> >> Maybe the questions are answered by code in different patches? > > Yes, that's why I posted "[PATCH] platform/chrome: Make CROS_EC_PROTO > a user selectable option" [0]. > > I posted as separate patches because there isn't a dependency between > them and once all the defconfig patches and the patch to make the > CROS_EC_PROTO symbol user selectable lands, I'll post the patch to > change select for depends on to avoid a regression. Makes sense now. Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > > Maybe I should had posted as a series (or at least cc all the people > in all the patches) to not left these questions unanswered... Yep, Cc-ing or a short cover letter would probably answer my question. :) Best regards, Krzysztof -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2015-08-18 10:20 +0200 |
| Subject | Re: [PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver |
| Message-ID | <pYKhI-uI-13@gated-at.bofh.it> |
| In reply to | #1209109 |
Hello Krzysztof, On 08/18/2015 10:09 AM, Krzysztof Kozlowski wrote: > On 18.08.2015 17:05, Javier Martinez Canillas wrote: >> Hello Krzysztof, >> >> On 08/18/2015 09:57 AM, Krzysztof Kozlowski wrote: >>> On 18.08.2015 16:01, Javier Martinez Canillas wrote: >>>> The ChromeOS mfd driver (MFD_CROS_EC) select the CROS_EC_PROTO config >>>> symbol because the driver uses some communication helper functions in >>>> drivers/platform/chrome/cros_ec_proto.c but other drivers depends on >>>> CROS_EC_PROTO instead. Mixing select and depends can lead to circular >>>> Kconfig dependencies so the MFD_CROS_EC select should be changed to a >>>> depends on CROS_EC_PROTO instead. >>>> >>>> But doing so will break git bisect-ability since MFD_CROS_EC will not >>>> be enabled anymore unless the default configs first explicitly enable >>>> the CROS_EC_PROTO dependency. >>>> >>>> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> >>>> --- >>>> arch/arm/configs/exynos_defconfig | 1 + >>>> 1 file changed, 1 insertion(+) >>> >>> I saw the discussion about circular dependency but I wasn't following >>> it. Currently the CROS_EC_PROTO is not user-selectable. How can you >>> depend on it? How can be enabled on different configs (customized by user)? >>> >>> Maybe the questions are answered by code in different patches? >> >> Yes, that's why I posted "[PATCH] platform/chrome: Make CROS_EC_PROTO >> a user selectable option" [0]. >> >> I posted as separate patches because there isn't a dependency between >> them and once all the defconfig patches and the patch to make the >> CROS_EC_PROTO symbol user selectable lands, I'll post the patch to >> change select for depends on to avoid a regression. > > Makes sense now. > > Reviewed-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > Thanks! >> >> Maybe I should had posted as a series (or at least cc all the people >> in all the patches) to not left these questions unanswered... > > Yep, Cc-ing or a short cover letter would probably answer my question. :) > Yes, sorry about that. > Best regards, > Krzysztof > > -- > To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Javier Martinez Canillas <javier@osg.samsung.com> |
|---|---|
| Date | 2015-08-18 10:10 +0200 |
| Subject | Re: [PATCH] ARM: exynos_defconfig: Enable CROS_EC_PROTO for ChromeOS EC mfd driver |
| Message-ID | <pYK82-j8-5@gated-at.bofh.it> |
| In reply to | #1209101 |
Hello Krzysztof, On 08/18/2015 09:57 AM, Krzysztof Kozlowski wrote: > On 18.08.2015 16:01, Javier Martinez Canillas wrote: >> The ChromeOS mfd driver (MFD_CROS_EC) select the CROS_EC_PROTO config >> symbol because the driver uses some communication helper functions in >> drivers/platform/chrome/cros_ec_proto.c but other drivers depends on >> CROS_EC_PROTO instead. Mixing select and depends can lead to circular >> Kconfig dependencies so the MFD_CROS_EC select should be changed to a >> depends on CROS_EC_PROTO instead. >> >> But doing so will break git bisect-ability since MFD_CROS_EC will not >> be enabled anymore unless the default configs first explicitly enable >> the CROS_EC_PROTO dependency. >> >> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com> >> --- >> arch/arm/configs/exynos_defconfig | 1 + >> 1 file changed, 1 insertion(+) > > I saw the discussion about circular dependency but I wasn't following > it. Currently the CROS_EC_PROTO is not user-selectable. How can you > depend on it? How can be enabled on different configs (customized by user)? > > Maybe the questions are answered by code in different patches? Yes, that's why I posted "[PATCH] platform/chrome: Make CROS_EC_PROTO a user selectable option" [0]. I posted as separate patches because there isn't a dependency between them and once all the defconfig patches and the patch to make the CROS_EC_PROTO symbol user selectable lands, I'll post the patch to change select for depends on to avoid a regression. Maybe I should had posted as a series (or at least cc all the people in all the patches) to not left these questions unanswered... > > Best regards, > Krzysztof > > [0]: https://lkml.org/lkml/2015/8/18/61 Best regards, -- Javier Martinez Canillas Open Source Group Samsung Research America -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web