From: Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
To: Thierry Reding
<thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Russell King <linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>
Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH] ARM: tegra: Move AHB Kconfig to drivers/amba
Date: Tue, 29 Jul 2014 10:21:02 -0600 [thread overview]
Message-ID: <53D7C9EE.60503@wwwdotorg.org> (raw)
In-Reply-To: <1406643934-16301-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
On 07/29/2014 08:25 AM, Thierry Reding wrote:
> From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
>
> This will allow the Kconfig option to be shared among 32-bit and 64-bit
> ARM.
This seems fine to me. I'd expect to apply it for 3.18, provided I get
an ack from Russell as drivers/amba maintainer (hence CCing him without
trimming the quote).
> Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
> ---
> arch/arm/mach-tegra/Kconfig | 8 --------
> drivers/amba/Kconfig | 11 +++++++++++
> 2 files changed, 11 insertions(+), 8 deletions(-)
> create mode 100644 drivers/amba/Kconfig
>
> diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
> index 052fba07a3cb..fae2eb2f52ea 100644
> --- a/arch/arm/mach-tegra/Kconfig
> +++ b/arch/arm/mach-tegra/Kconfig
> @@ -64,12 +64,4 @@ config ARCH_TEGRA_124_SOC
> Support for NVIDIA Tegra T124 processor family, based on the
> ARM CortexA15MP CPU
>
> -config TEGRA_AHB
> - bool "Enable AHB driver for NVIDIA Tegra SoCs"
> - default y
> - help
> - Adds AHB configuration functionality for NVIDIA Tegra SoCs,
> - which controls AHB bus master arbitration and some
> - performance parameters(priority, prefech size).
> -
> endif
> diff --git a/drivers/amba/Kconfig b/drivers/amba/Kconfig
> new file mode 100644
> index 000000000000..3f7350a03708
> --- /dev/null
> +++ b/drivers/amba/Kconfig
> @@ -0,0 +1,11 @@
> +if ARM_AMBA
> +
> +config TEGRA_AHB
> + bool "Enable AHB driver for NVIDIA Tegra SoCs"
> + default y if ARCH_TEGRA
> + help
> + Adds AHB configuration functionality for NVIDIA Tegra SoCs,
> + which controls AHB bus master arbitration and some performance
> + parameters (priority, prefetch size).
> +
> +endif
>
WARNING: multiple messages have this Message-ID (diff)
From: swarren@wwwdotorg.org (Stephen Warren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: tegra: Move AHB Kconfig to drivers/amba
Date: Tue, 29 Jul 2014 10:21:02 -0600 [thread overview]
Message-ID: <53D7C9EE.60503@wwwdotorg.org> (raw)
In-Reply-To: <1406643934-16301-1-git-send-email-thierry.reding@gmail.com>
On 07/29/2014 08:25 AM, Thierry Reding wrote:
> From: Thierry Reding <treding@nvidia.com>
>
> This will allow the Kconfig option to be shared among 32-bit and 64-bit
> ARM.
This seems fine to me. I'd expect to apply it for 3.18, provided I get
an ack from Russell as drivers/amba maintainer (hence CCing him without
trimming the quote).
> Signed-off-by: Thierry Reding <treding@nvidia.com>
> ---
> arch/arm/mach-tegra/Kconfig | 8 --------
> drivers/amba/Kconfig | 11 +++++++++++
> 2 files changed, 11 insertions(+), 8 deletions(-)
> create mode 100644 drivers/amba/Kconfig
>
> diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
> index 052fba07a3cb..fae2eb2f52ea 100644
> --- a/arch/arm/mach-tegra/Kconfig
> +++ b/arch/arm/mach-tegra/Kconfig
> @@ -64,12 +64,4 @@ config ARCH_TEGRA_124_SOC
> Support for NVIDIA Tegra T124 processor family, based on the
> ARM CortexA15MP CPU
>
> -config TEGRA_AHB
> - bool "Enable AHB driver for NVIDIA Tegra SoCs"
> - default y
> - help
> - Adds AHB configuration functionality for NVIDIA Tegra SoCs,
> - which controls AHB bus master arbitration and some
> - performance parameters(priority, prefech size).
> -
> endif
> diff --git a/drivers/amba/Kconfig b/drivers/amba/Kconfig
> new file mode 100644
> index 000000000000..3f7350a03708
> --- /dev/null
> +++ b/drivers/amba/Kconfig
> @@ -0,0 +1,11 @@
> +if ARM_AMBA
> +
> +config TEGRA_AHB
> + bool "Enable AHB driver for NVIDIA Tegra SoCs"
> + default y if ARCH_TEGRA
> + help
> + Adds AHB configuration functionality for NVIDIA Tegra SoCs,
> + which controls AHB bus master arbitration and some performance
> + parameters (priority, prefetch size).
> +
> +endif
>
WARNING: multiple messages have this Message-ID (diff)
From: Stephen Warren <swarren@wwwdotorg.org>
To: Thierry Reding <thierry.reding@gmail.com>,
Russell King <linux@arm.linux.org.uk>
Cc: linux-tegra@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] ARM: tegra: Move AHB Kconfig to drivers/amba
Date: Tue, 29 Jul 2014 10:21:02 -0600 [thread overview]
Message-ID: <53D7C9EE.60503@wwwdotorg.org> (raw)
In-Reply-To: <1406643934-16301-1-git-send-email-thierry.reding@gmail.com>
On 07/29/2014 08:25 AM, Thierry Reding wrote:
> From: Thierry Reding <treding@nvidia.com>
>
> This will allow the Kconfig option to be shared among 32-bit and 64-bit
> ARM.
This seems fine to me. I'd expect to apply it for 3.18, provided I get
an ack from Russell as drivers/amba maintainer (hence CCing him without
trimming the quote).
> Signed-off-by: Thierry Reding <treding@nvidia.com>
> ---
> arch/arm/mach-tegra/Kconfig | 8 --------
> drivers/amba/Kconfig | 11 +++++++++++
> 2 files changed, 11 insertions(+), 8 deletions(-)
> create mode 100644 drivers/amba/Kconfig
>
> diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
> index 052fba07a3cb..fae2eb2f52ea 100644
> --- a/arch/arm/mach-tegra/Kconfig
> +++ b/arch/arm/mach-tegra/Kconfig
> @@ -64,12 +64,4 @@ config ARCH_TEGRA_124_SOC
> Support for NVIDIA Tegra T124 processor family, based on the
> ARM CortexA15MP CPU
>
> -config TEGRA_AHB
> - bool "Enable AHB driver for NVIDIA Tegra SoCs"
> - default y
> - help
> - Adds AHB configuration functionality for NVIDIA Tegra SoCs,
> - which controls AHB bus master arbitration and some
> - performance parameters(priority, prefech size).
> -
> endif
> diff --git a/drivers/amba/Kconfig b/drivers/amba/Kconfig
> new file mode 100644
> index 000000000000..3f7350a03708
> --- /dev/null
> +++ b/drivers/amba/Kconfig
> @@ -0,0 +1,11 @@
> +if ARM_AMBA
> +
> +config TEGRA_AHB
> + bool "Enable AHB driver for NVIDIA Tegra SoCs"
> + default y if ARCH_TEGRA
> + help
> + Adds AHB configuration functionality for NVIDIA Tegra SoCs,
> + which controls AHB bus master arbitration and some performance
> + parameters (priority, prefetch size).
> +
> +endif
>
next prev parent reply other threads:[~2014-07-29 16:21 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-29 14:25 [PATCH] ARM: tegra: Move AHB Kconfig to drivers/amba Thierry Reding
2014-07-29 14:25 ` Thierry Reding
2014-07-29 14:25 ` Thierry Reding
[not found] ` <1406643934-16301-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-07-29 16:21 ` Stephen Warren [this message]
2014-07-29 16:21 ` Stephen Warren
2014-07-29 16:21 ` Stephen Warren
[not found] ` <53D7C9EE.60503-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2014-08-25 17:29 ` Stephen Warren
2014-08-25 17:29 ` Stephen Warren
2014-08-25 17:29 ` Stephen Warren
2014-09-04 19:37 ` Stephen Warren
2014-09-04 19:37 ` Stephen Warren
[not found] ` <5408BF77.1020007-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2014-10-02 10:51 ` Thierry Reding
2014-10-02 10:51 ` Thierry Reding
2014-10-02 10:51 ` Thierry Reding
2014-10-02 11:08 ` Russell King - ARM Linux
2014-10-02 11:08 ` Russell King - ARM Linux
2014-10-02 11:08 ` Russell King - ARM Linux
[not found] ` <20141002110805.GT5182-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2014-10-02 12:54 ` Thierry Reding
2014-10-02 12:54 ` Thierry Reding
2014-10-02 12:54 ` Thierry Reding
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=53D7C9EE.60503@wwwdotorg.org \
--to=swarren-3lzwwm7+weoh9zmkesr00q@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
--cc=linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.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.