linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options
@ 2017-10-31 12:58 Alex Elder
  2017-10-31 12:58 ` [PATCH v2 1/3] arm64: defconfig: remove CONFIG_USB_EHCI_MSM Alex Elder
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Alex Elder @ 2017-10-31 12:58 UTC (permalink / raw)
  To: andy.gross, catalin.marinas, will.deacon, arnd
  Cc: linux-arm-msm, linux-arm-kernel, linux-kernel

This series deletes three config options related to USB on Qualcomm
SoCs from the arm64 "defconfig".  The code enabled by the options is
no longer needed by any Qualcomm hardware.  The driver code that
corresponds to these config options is removed in a separate series.

					-Alex

v2:  Added Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>

Alex Elder (3):
  arm64: defconfig: remove CONFIG_USB_EHCI_MSM
  arm64: defconfig: remove CONFIG_USB_MSM_OTG
  arm64: defconfig: remove CONFIG_USB_QCOM_8X16_PHY

 arch/arm64/configs/defconfig | 3 ---
 1 file changed, 3 deletions(-)

-- 
2.11.0

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH v2 1/3] arm64: defconfig: remove CONFIG_USB_EHCI_MSM
  2017-10-31 12:58 [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options Alex Elder
@ 2017-10-31 12:58 ` Alex Elder
  2017-10-31 12:58 ` [PATCH v2 2/3] arm64: defconfig: remove CONFIG_USB_MSM_OTG Alex Elder
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Alex Elder @ 2017-10-31 12:58 UTC (permalink / raw)
  To: andy.gross, catalin.marinas, will.deacon, arnd
  Cc: linux-arm-msm, linux-arm-kernel, linux-kernel

No Qualcomm SoC requires the "ehci-msm.c" code any more.  So remove
the code, and remove the config option from the arm64 defconfig.

Suggested-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Alex Elder <elder@linaro.org>
Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>
Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Acked-by: Andy Gross <andy.gross@linaro.org>
---
 arch/arm64/configs/defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 34480e9af2e7..4d0b96bb340a 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -410,7 +410,6 @@ CONFIG_USB_OTG=y
 CONFIG_USB_XHCI_HCD=y
 CONFIG_USB_XHCI_TEGRA=y
 CONFIG_USB_EHCI_HCD=y
-CONFIG_USB_EHCI_MSM=y
 CONFIG_USB_EHCI_EXYNOS=y
 CONFIG_USB_EHCI_HCD_PLATFORM=y
 CONFIG_USB_OHCI_HCD=y
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v2 2/3] arm64: defconfig: remove CONFIG_USB_MSM_OTG
  2017-10-31 12:58 [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options Alex Elder
  2017-10-31 12:58 ` [PATCH v2 1/3] arm64: defconfig: remove CONFIG_USB_EHCI_MSM Alex Elder
@ 2017-10-31 12:58 ` Alex Elder
  2017-10-31 12:58 ` [PATCH v2 3/3] arm64: defconfig: remove CONFIG_USB_QCOM_8X16_PHY Alex Elder
  2017-11-02  9:15 ` [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options Arnd Bergmann
  3 siblings, 0 replies; 7+ messages in thread
From: Alex Elder @ 2017-10-31 12:58 UTC (permalink / raw)
  To: andy.gross, catalin.marinas, will.deacon, arnd
  Cc: linux-arm-msm, linux-arm-kernel, linux-kernel

No Qualcomm SoC requires the "phy-msm-usb.c" USB phy driver support
any more.  Remove the code, and remove the config option from the
arm64 defconfig.

Suggested-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Alex Elder <elder@linaro.org>
Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>
Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Acked-by: Andy Gross <andy.gross@linaro.org>
---
 arch/arm64/configs/defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 4d0b96bb340a..85ca53f59c3e 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -425,7 +425,6 @@ CONFIG_USB_CHIPIDEA_HOST=y
 CONFIG_USB_ISP1760=y
 CONFIG_USB_HSIC_USB3503=y
 CONFIG_NOP_USB_XCEIV=y
-CONFIG_USB_MSM_OTG=y
 CONFIG_USB_QCOM_8X16_PHY=y
 CONFIG_USB_ULPI=y
 CONFIG_USB_GADGET=y
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH v2 3/3] arm64: defconfig: remove CONFIG_USB_QCOM_8X16_PHY
  2017-10-31 12:58 [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options Alex Elder
  2017-10-31 12:58 ` [PATCH v2 1/3] arm64: defconfig: remove CONFIG_USB_EHCI_MSM Alex Elder
  2017-10-31 12:58 ` [PATCH v2 2/3] arm64: defconfig: remove CONFIG_USB_MSM_OTG Alex Elder
@ 2017-10-31 12:58 ` Alex Elder
  2017-11-02  9:15 ` [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options Arnd Bergmann
  3 siblings, 0 replies; 7+ messages in thread
From: Alex Elder @ 2017-10-31 12:58 UTC (permalink / raw)
  To: andy.gross, catalin.marinas, will.deacon, arnd
  Cc: linux-arm-msm, linux-arm-kernel, linux-kernel

No Qualcomm SoC requires the "phy-qcom-8x16-usb.c" USB phy driver
support any more.  Remove the code, and remove the config option
from the arm64 defconfig.

Suggested-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Alex Elder <elder@linaro.org>
Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>
Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Acked-by: Andy Gross <andy.gross@linaro.org>
---
 arch/arm64/configs/defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 85ca53f59c3e..22ca89e58d9d 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -425,7 +425,6 @@ CONFIG_USB_CHIPIDEA_HOST=y
 CONFIG_USB_ISP1760=y
 CONFIG_USB_HSIC_USB3503=y
 CONFIG_NOP_USB_XCEIV=y
-CONFIG_USB_QCOM_8X16_PHY=y
 CONFIG_USB_ULPI=y
 CONFIG_USB_GADGET=y
 CONFIG_USB_RENESAS_USBHS_UDC=m
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options
  2017-10-31 12:58 [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options Alex Elder
                   ` (2 preceding siblings ...)
  2017-10-31 12:58 ` [PATCH v2 3/3] arm64: defconfig: remove CONFIG_USB_QCOM_8X16_PHY Alex Elder
@ 2017-11-02  9:15 ` Arnd Bergmann
  2017-11-02 12:47   ` Alex Elder
  3 siblings, 1 reply; 7+ messages in thread
From: Arnd Bergmann @ 2017-11-02  9:15 UTC (permalink / raw)
  To: Alex Elder
  Cc: Andy Gross, Catalin Marinas, Will Deacon, linux-arm-msm,
	Linux ARM, Linux Kernel Mailing List

On Tue, Oct 31, 2017 at 1:58 PM, Alex Elder <elder@linaro.org> wrote:
> This series deletes three config options related to USB on Qualcomm
> SoCs from the arm64 "defconfig".  The code enabled by the options is
> no longer needed by any Qualcomm hardware.  The driver code that
> corresponds to these config options is removed in a separate series.
>
>                                         -Alex
>
> v2:  Added Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>

The patches look good. Should we apply them directly to arm-soc, or is
Andy going to forward them? Normally I'd wait for him to apply them,
but I see he has already given an Ack, so I don't know what to do here.

         Arnd

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options
  2017-11-02  9:15 ` [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options Arnd Bergmann
@ 2017-11-02 12:47   ` Alex Elder
  2018-01-01  6:23     ` Andy Gross
  0 siblings, 1 reply; 7+ messages in thread
From: Alex Elder @ 2017-11-02 12:47 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Andy Gross, Catalin Marinas, Will Deacon, linux-arm-msm,
	Linux ARM, Linux Kernel Mailing List

On 11/02/2017 04:15 AM, Arnd Bergmann wrote:
> On Tue, Oct 31, 2017 at 1:58 PM, Alex Elder <elder@linaro.org> wrote:
>> This series deletes three config options related to USB on Qualcomm
>> SoCs from the arm64 "defconfig".  The code enabled by the options is
>> no longer needed by any Qualcomm hardware.  The driver code that
>> corresponds to these config options is removed in a separate series.
>>
>>                                         -Alex
>>
>> v2:  Added Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>
> 
> The patches look good. Should we apply them directly to arm-soc, or is
> Andy going to forward them? Normally I'd wait for him to apply them,
> but I see he has already given an Ack, so I don't know what to do here.

Andy should answer, but my preference would be for you to apply them
directly.  As long as they have your attention right now you might as
well.  I suppose you could just do that and win the race with Andy...

					-Alex

>          Arnd
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options
  2017-11-02 12:47   ` Alex Elder
@ 2018-01-01  6:23     ` Andy Gross
  0 siblings, 0 replies; 7+ messages in thread
From: Andy Gross @ 2018-01-01  6:23 UTC (permalink / raw)
  To: Alex Elder
  Cc: Arnd Bergmann, Catalin Marinas, Will Deacon, linux-arm-msm,
	Linux ARM, Linux Kernel Mailing List

On Thu, Nov 02, 2017 at 07:47:54AM -0500, Alex Elder wrote:
> On 11/02/2017 04:15 AM, Arnd Bergmann wrote:
> > On Tue, Oct 31, 2017 at 1:58 PM, Alex Elder <elder@linaro.org> wrote:
> >> This series deletes three config options related to USB on Qualcomm
> >> SoCs from the arm64 "defconfig".  The code enabled by the options is
> >> no longer needed by any Qualcomm hardware.  The driver code that
> >> corresponds to these config options is removed in a separate series.
> >>
> >>                                         -Alex
> >>
> >> v2:  Added Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>
> > 
> > The patches look good. Should we apply them directly to arm-soc, or is
> > Andy going to forward them? Normally I'd wait for him to apply them,
> > but I see he has already given an Ack, so I don't know what to do here.
> 
> Andy should answer, but my preference would be for you to apply them
> directly.  As long as they have your attention right now you might as
> well.  I suppose you could just do that and win the race with Andy...

I'll queue them up.  I've been late in getting to these.  Apologies for that.


Andy

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-01-01  6:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-31 12:58 [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options Alex Elder
2017-10-31 12:58 ` [PATCH v2 1/3] arm64: defconfig: remove CONFIG_USB_EHCI_MSM Alex Elder
2017-10-31 12:58 ` [PATCH v2 2/3] arm64: defconfig: remove CONFIG_USB_MSM_OTG Alex Elder
2017-10-31 12:58 ` [PATCH v2 3/3] arm64: defconfig: remove CONFIG_USB_QCOM_8X16_PHY Alex Elder
2017-11-02  9:15 ` [PATCH v2 0/3] arm64: defconfig: remove some Qualcomm USB options Arnd Bergmann
2017-11-02 12:47   ` Alex Elder
2018-01-01  6:23     ` Andy Gross

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).