linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: qcom: Add support for IPQ40xx
@ 2020-01-06 13:57 Robert Marko
  2020-01-25 18:47 ` Robert Marko
  2020-03-25 10:25 ` Robert Marko
  0 siblings, 2 replies; 7+ messages in thread
From: Robert Marko @ 2020-01-06 13:57 UTC (permalink / raw)
  To: agross, linux, arnd, linux-arm-kernel, linux-arm-msm
  Cc: Christian Lamparter, John Crispin, Robert Marko, Luka Perkov

From: Christian Lamparter <chunkeey@gmail.com>

Add support for the Qualcomm IPQ40xx SoC in Kconfig.
Also add its appropriate textofs.

Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Signed-off-by: John Crispin <john@phrozen.org>
Tested-by: Robert Marko <robert.marko@sartura.hr>
Cc: Luka Perkov <luka.perkov@sartura.hr>
---
 arch/arm/Makefile          | 1 +
 arch/arm/mach-qcom/Kconfig | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index db857d07114f..3db642722af0 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -152,6 +152,7 @@ textofs-$(CONFIG_PM_H1940)      := 0x00108000
 ifeq ($(CONFIG_ARCH_SA1100),y)
 textofs-$(CONFIG_SA1111) := 0x00208000
 endif
+textofs-$(CONFIG_ARCH_IPQ40XX) := 0x00208000
 textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000
 textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000
 textofs-$(CONFIG_ARCH_MESON) := 0x00208000
diff --git a/arch/arm/mach-qcom/Kconfig b/arch/arm/mach-qcom/Kconfig
index ecbf3c4eb878..1772eccb5caf 100644
--- a/arch/arm/mach-qcom/Kconfig
+++ b/arch/arm/mach-qcom/Kconfig
@@ -12,6 +12,11 @@ menuconfig ARCH_QCOM
 
 if ARCH_QCOM
 
+config ARCH_IPQ40XX
+	bool "Enable support for IPQ40XX"
+	select CLKSRC_QCOM
+	select HAVE_ARM_ARCH_TIMER
+
 config ARCH_MSM8X60
 	bool "Enable support for MSM8X60"
 	select CLKSRC_QCOM
-- 
2.24.1


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

* Re: [PATCH] ARM: qcom: Add support for IPQ40xx
  2020-01-06 13:57 [PATCH] ARM: qcom: Add support for IPQ40xx Robert Marko
@ 2020-01-25 18:47 ` Robert Marko
  2020-03-25 10:25 ` Robert Marko
  1 sibling, 0 replies; 7+ messages in thread
From: Robert Marko @ 2020-01-25 18:47 UTC (permalink / raw)
  To: agross, linux, arnd, linux-arm-kernel, linux-arm-msm
  Cc: Christian Lamparter, John Crispin, Luka Perkov

Any issues that are preventing merging of this patch?

Cheers

On Mon, Jan 6, 2020 at 2:57 PM Robert Marko <robert.marko@sartura.hr> wrote:
>
> From: Christian Lamparter <chunkeey@gmail.com>
>
> Add support for the Qualcomm IPQ40xx SoC in Kconfig.
> Also add its appropriate textofs.
>
> Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
> Signed-off-by: John Crispin <john@phrozen.org>
> Tested-by: Robert Marko <robert.marko@sartura.hr>
> Cc: Luka Perkov <luka.perkov@sartura.hr>
> ---
>  arch/arm/Makefile          | 1 +
>  arch/arm/mach-qcom/Kconfig | 5 +++++
>  2 files changed, 6 insertions(+)
>
> diff --git a/arch/arm/Makefile b/arch/arm/Makefile
> index db857d07114f..3db642722af0 100644
> --- a/arch/arm/Makefile
> +++ b/arch/arm/Makefile
> @@ -152,6 +152,7 @@ textofs-$(CONFIG_PM_H1940)      := 0x00108000
>  ifeq ($(CONFIG_ARCH_SA1100),y)
>  textofs-$(CONFIG_SA1111) := 0x00208000
>  endif
> +textofs-$(CONFIG_ARCH_IPQ40XX) := 0x00208000
>  textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000
>  textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000
>  textofs-$(CONFIG_ARCH_MESON) := 0x00208000
> diff --git a/arch/arm/mach-qcom/Kconfig b/arch/arm/mach-qcom/Kconfig
> index ecbf3c4eb878..1772eccb5caf 100644
> --- a/arch/arm/mach-qcom/Kconfig
> +++ b/arch/arm/mach-qcom/Kconfig
> @@ -12,6 +12,11 @@ menuconfig ARCH_QCOM
>
>  if ARCH_QCOM
>
> +config ARCH_IPQ40XX
> +       bool "Enable support for IPQ40XX"
> +       select CLKSRC_QCOM
> +       select HAVE_ARM_ARCH_TIMER
> +
>  config ARCH_MSM8X60
>         bool "Enable support for MSM8X60"
>         select CLKSRC_QCOM
> --
> 2.24.1
>

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

* Re: [PATCH] ARM: qcom: Add support for IPQ40xx
  2020-01-06 13:57 [PATCH] ARM: qcom: Add support for IPQ40xx Robert Marko
  2020-01-25 18:47 ` Robert Marko
@ 2020-03-25 10:25 ` Robert Marko
  2020-03-27 22:05   ` Bjorn Andersson
  1 sibling, 1 reply; 7+ messages in thread
From: Robert Marko @ 2020-03-25 10:25 UTC (permalink / raw)
  To: agross, linux, arnd, linux-arm-kernel, linux-arm-msm
  Cc: Christian Lamparter, John Crispin, Luka Perkov

On Mon, Jan 6, 2020 at 2:57 PM Robert Marko <robert.marko@sartura.hr> wrote:
>
> From: Christian Lamparter <chunkeey@gmail.com>
>
> Add support for the Qualcomm IPQ40xx SoC in Kconfig.
> Also add its appropriate textofs.
Any blockers on this patch?

Thanks
>
> Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
> Signed-off-by: John Crispin <john@phrozen.org>
> Tested-by: Robert Marko <robert.marko@sartura.hr>
> Cc: Luka Perkov <luka.perkov@sartura.hr>
> ---
>  arch/arm/Makefile          | 1 +
>  arch/arm/mach-qcom/Kconfig | 5 +++++
>  2 files changed, 6 insertions(+)
>
> diff --git a/arch/arm/Makefile b/arch/arm/Makefile
> index db857d07114f..3db642722af0 100644
> --- a/arch/arm/Makefile
> +++ b/arch/arm/Makefile
> @@ -152,6 +152,7 @@ textofs-$(CONFIG_PM_H1940)      := 0x00108000
>  ifeq ($(CONFIG_ARCH_SA1100),y)
>  textofs-$(CONFIG_SA1111) := 0x00208000
>  endif
> +textofs-$(CONFIG_ARCH_IPQ40XX) := 0x00208000
>  textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000
>  textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000
>  textofs-$(CONFIG_ARCH_MESON) := 0x00208000
> diff --git a/arch/arm/mach-qcom/Kconfig b/arch/arm/mach-qcom/Kconfig
> index ecbf3c4eb878..1772eccb5caf 100644
> --- a/arch/arm/mach-qcom/Kconfig
> +++ b/arch/arm/mach-qcom/Kconfig
> @@ -12,6 +12,11 @@ menuconfig ARCH_QCOM
>
>  if ARCH_QCOM
>
> +config ARCH_IPQ40XX
> +       bool "Enable support for IPQ40XX"
> +       select CLKSRC_QCOM
> +       select HAVE_ARM_ARCH_TIMER
> +
>  config ARCH_MSM8X60
>         bool "Enable support for MSM8X60"
>         select CLKSRC_QCOM
> --
> 2.24.1
>

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

* Re: [PATCH] ARM: qcom: Add support for IPQ40xx
  2020-03-25 10:25 ` Robert Marko
@ 2020-03-27 22:05   ` Bjorn Andersson
  2020-03-28  9:15     ` Arnd Bergmann
  0 siblings, 1 reply; 7+ messages in thread
From: Bjorn Andersson @ 2020-03-27 22:05 UTC (permalink / raw)
  To: Robert Marko
  Cc: agross, linux, arnd, linux-arm-kernel, linux-arm-msm,
	Christian Lamparter, John Crispin, Luka Perkov

On Wed 25 Mar 03:25 PDT 2020, Robert Marko wrote:

> On Mon, Jan 6, 2020 at 2:57 PM Robert Marko <robert.marko@sartura.hr> wrote:
> >
> > From: Christian Lamparter <chunkeey@gmail.com>
> >
> > Add support for the Qualcomm IPQ40xx SoC in Kconfig.
> > Also add its appropriate textofs.
> Any blockers on this patch?
> 

No, I must have missed it in the past. I've picked it up for 5.8.

Thanks for the reminder,
Bjorn

> Thanks
> >
> > Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
> > Signed-off-by: John Crispin <john@phrozen.org>
> > Tested-by: Robert Marko <robert.marko@sartura.hr>
> > Cc: Luka Perkov <luka.perkov@sartura.hr>
> > ---
> >  arch/arm/Makefile          | 1 +
> >  arch/arm/mach-qcom/Kconfig | 5 +++++
> >  2 files changed, 6 insertions(+)
> >
> > diff --git a/arch/arm/Makefile b/arch/arm/Makefile
> > index db857d07114f..3db642722af0 100644
> > --- a/arch/arm/Makefile
> > +++ b/arch/arm/Makefile
> > @@ -152,6 +152,7 @@ textofs-$(CONFIG_PM_H1940)      := 0x00108000
> >  ifeq ($(CONFIG_ARCH_SA1100),y)
> >  textofs-$(CONFIG_SA1111) := 0x00208000
> >  endif
> > +textofs-$(CONFIG_ARCH_IPQ40XX) := 0x00208000
> >  textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000
> >  textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000
> >  textofs-$(CONFIG_ARCH_MESON) := 0x00208000
> > diff --git a/arch/arm/mach-qcom/Kconfig b/arch/arm/mach-qcom/Kconfig
> > index ecbf3c4eb878..1772eccb5caf 100644
> > --- a/arch/arm/mach-qcom/Kconfig
> > +++ b/arch/arm/mach-qcom/Kconfig
> > @@ -12,6 +12,11 @@ menuconfig ARCH_QCOM
> >
> >  if ARCH_QCOM
> >
> > +config ARCH_IPQ40XX
> > +       bool "Enable support for IPQ40XX"
> > +       select CLKSRC_QCOM
> > +       select HAVE_ARM_ARCH_TIMER
> > +
> >  config ARCH_MSM8X60
> >         bool "Enable support for MSM8X60"
> >         select CLKSRC_QCOM
> > --
> > 2.24.1
> >

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

* Re: [PATCH] ARM: qcom: Add support for IPQ40xx
  2020-03-27 22:05   ` Bjorn Andersson
@ 2020-03-28  9:15     ` Arnd Bergmann
  2020-03-29 21:17       ` Luka Perkov
  2020-03-30 22:10       ` Bjorn Andersson
  0 siblings, 2 replies; 7+ messages in thread
From: Arnd Bergmann @ 2020-03-28  9:15 UTC (permalink / raw)
  To: Bjorn Andersson
  Cc: Robert Marko, Andy Gross, Russell King - ARM Linux, Linux ARM,
	linux-arm-msm, Christian Lamparter, John Crispin, Luka Perkov

On Fri, Mar 27, 2020 at 11:05 PM Bjorn Andersson
<bjorn.andersson@linaro.org> wrote:
>
> On Wed 25 Mar 03:25 PDT 2020, Robert Marko wrote:
>
> > On Mon, Jan 6, 2020 at 2:57 PM Robert Marko <robert.marko@sartura.hr> wrote:
> > >
> > > From: Christian Lamparter <chunkeey@gmail.com>
> > >
> > > Add support for the Qualcomm IPQ40xx SoC in Kconfig.
> > > Also add its appropriate textofs.
> > Any blockers on this patch?
> >
>
> No, I must have missed it in the past. I've picked it up for 5.8.
>

If we only need these few lines, I can still squeeze it in for v5.7 last minute,
just forward that patch to soc@kernel.org. If other things are still needed,
let's wait until v5.8.

      Arnd

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

* Re: [PATCH] ARM: qcom: Add support for IPQ40xx
  2020-03-28  9:15     ` Arnd Bergmann
@ 2020-03-29 21:17       ` Luka Perkov
  2020-03-30 22:10       ` Bjorn Andersson
  1 sibling, 0 replies; 7+ messages in thread
From: Luka Perkov @ 2020-03-29 21:17 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Bjorn Andersson, Robert Marko, Andy Gross,
	Russell King - ARM Linux, Linux ARM, linux-arm-msm,
	Christian Lamparter, John Crispin

Hello Arnd,

On Sat, Mar 28, 2020 at 10:15 AM Arnd Bergmann <arnd@arndb.de> wrote:
>
> On Fri, Mar 27, 2020 at 11:05 PM Bjorn Andersson
> <bjorn.andersson@linaro.org> wrote:
> >
> > On Wed 25 Mar 03:25 PDT 2020, Robert Marko wrote:
> >
> > > On Mon, Jan 6, 2020 at 2:57 PM Robert Marko <robert.marko@sartura.hr> wrote:
> > > >
> > > > From: Christian Lamparter <chunkeey@gmail.com>
> > > >
> > > > Add support for the Qualcomm IPQ40xx SoC in Kconfig.
> > > > Also add its appropriate textofs.
> > > Any blockers on this patch?
> > >
> >
> > No, I must have missed it in the past. I've picked it up for 5.8.
> >
>
> If we only need these few lines, I can still squeeze it in for v5.7 last minute,
> just forward that patch to soc@kernel.org. If other things are still needed,
> let's wait until v5.8.

These few lines is all that is needed. I'd appreciate if we could land
this in v5.7 rather then wait for v5.8.

Thanks,
Luka

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

* [PATCH] ARM: qcom: Add support for IPQ40xx
  2020-03-28  9:15     ` Arnd Bergmann
  2020-03-29 21:17       ` Luka Perkov
@ 2020-03-30 22:10       ` Bjorn Andersson
  1 sibling, 0 replies; 7+ messages in thread
From: Bjorn Andersson @ 2020-03-30 22:10 UTC (permalink / raw)
  To: soc
  Cc: agross, linux, arnd, linux-arm-kernel, linux-arm-msm,
	Christian Lamparter, John Crispin, Robert Marko, Luka Perkov

From: Christian Lamparter <chunkeey@gmail.com>

Add support for the Qualcomm IPQ40xx SoC in Kconfig.
Also add its appropriate textofs.

Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Signed-off-by: John Crispin <john@phrozen.org>
Tested-by: Robert Marko <robert.marko@sartura.hr>
Cc: Luka Perkov <luka.perkov@sartura.hr>
Link: https://lore.kernel.org/r/20200106135715.1159420-1-robert.marko@sartura.hr
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
---

soc, please pick this up for 5.7, per the replied to mail.

 arch/arm/Makefile          | 1 +
 arch/arm/mach-qcom/Kconfig | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index db857d07114f..3db642722af0 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -152,6 +152,7 @@ textofs-$(CONFIG_PM_H1940)      := 0x00108000
 ifeq ($(CONFIG_ARCH_SA1100),y)
 textofs-$(CONFIG_SA1111) := 0x00208000
 endif
+textofs-$(CONFIG_ARCH_IPQ40XX) := 0x00208000
 textofs-$(CONFIG_ARCH_MSM8X60) := 0x00208000
 textofs-$(CONFIG_ARCH_MSM8960) := 0x00208000
 textofs-$(CONFIG_ARCH_MESON) := 0x00208000
diff --git a/arch/arm/mach-qcom/Kconfig b/arch/arm/mach-qcom/Kconfig
index ecbf3c4eb878..1772eccb5caf 100644
--- a/arch/arm/mach-qcom/Kconfig
+++ b/arch/arm/mach-qcom/Kconfig
@@ -12,6 +12,11 @@ menuconfig ARCH_QCOM
 
 if ARCH_QCOM
 
+config ARCH_IPQ40XX
+	bool "Enable support for IPQ40XX"
+	select CLKSRC_QCOM
+	select HAVE_ARM_ARCH_TIMER
+
 config ARCH_MSM8X60
 	bool "Enable support for MSM8X60"
 	select CLKSRC_QCOM
-- 
2.23.0


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

end of thread, other threads:[~2020-03-30 22:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-06 13:57 [PATCH] ARM: qcom: Add support for IPQ40xx Robert Marko
2020-01-25 18:47 ` Robert Marko
2020-03-25 10:25 ` Robert Marko
2020-03-27 22:05   ` Bjorn Andersson
2020-03-28  9:15     ` Arnd Bergmann
2020-03-29 21:17       ` Luka Perkov
2020-03-30 22:10       ` Bjorn Andersson

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).