linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [for 4.7] arm-ccn: Enable building as module
@ 2016-04-28 15:05 Suzuki K Poulose
  2016-05-04  9:37 ` Suzuki K Poulose
  0 siblings, 1 reply; 5+ messages in thread
From: Suzuki K Poulose @ 2016-04-28 15:05 UTC (permalink / raw)
  To: arm
  Cc: olof, arnd, khilman, linux-arm-kernel, linux-kernel,
	Suzuki K Poulose, Will Deacon, Mark Rutland, Paul Gortmaker

arm-ccn driver uses irq_set_affinity, which is not exported and
hence cannot be built as a module, eventhough we have all the
bits ready. This patch makes use of the exported helper
irq_set_affinity_hint() instead. Also, the __free_irq expects
the affinity_hint to be NULL when we free the irq. So set the
affinity_hint to NULL at clean up.

Now that we can build it as a module, update the Kconfig to
reflect the change.

Cc: Will Deacon <will.deacon@arm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Acked-by: Pawel Moll <pawel.moll@arm.com>
Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
---
 drivers/bus/Kconfig   |    2 +-
 drivers/bus/arm-ccn.c |    7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig
index d4a3a31..3efc996 100644
--- a/drivers/bus/Kconfig
+++ b/drivers/bus/Kconfig
@@ -48,7 +48,7 @@ config ARM_CCI5xx_PMU
 	  If unsure, say Y
 
 config ARM_CCN
-	bool "ARM CCN driver support"
+	tristate "ARM CCN driver support"
 	depends on ARM || ARM64
 	depends on PERF_EVENTS
 	help
diff --git a/drivers/bus/arm-ccn.c b/drivers/bus/arm-ccn.c
index 7082c72..acc3eb5 100644
--- a/drivers/bus/arm-ccn.c
+++ b/drivers/bus/arm-ccn.c
@@ -1189,7 +1189,7 @@ static int arm_ccn_pmu_cpu_notifier(struct notifier_block *nb,
 		perf_pmu_migrate_context(&dt->pmu, cpu, target);
 		cpumask_set_cpu(target, &dt->cpu);
 		if (ccn->irq)
-			WARN_ON(irq_set_affinity(ccn->irq, &dt->cpu) != 0);
+			WARN_ON(irq_set_affinity_hint(ccn->irq, &dt->cpu) != 0);
 	default:
 		break;
 	}
@@ -1278,7 +1278,7 @@ static int arm_ccn_pmu_init(struct arm_ccn *ccn)
 
 	/* Also make sure that the overflow interrupt is handled by this CPU */
 	if (ccn->irq) {
-		err = irq_set_affinity(ccn->irq, &ccn->dt.cpu);
+		err = irq_set_affinity_hint(ccn->irq, &ccn->dt.cpu);
 		if (err) {
 			dev_err(ccn->dev, "Failed to set interrupt affinity!\n");
 			goto error_set_affinity;
@@ -1306,7 +1306,8 @@ static void arm_ccn_pmu_cleanup(struct arm_ccn *ccn)
 {
 	int i;
 
-	irq_set_affinity(ccn->irq, cpu_possible_mask);
+	if (ccn->irq)
+		irq_set_affinity_hint(ccn->irq, NULL);
 	unregister_cpu_notifier(&ccn->dt.cpu_nb);
 	for (i = 0; i < ccn->num_xps; i++)
 		writel(0, ccn->xp[i].base + CCN_XP_DT_CONTROL);
-- 
1.7.9.5

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

* Re: [PATCH] [for 4.7] arm-ccn: Enable building as module
  2016-04-28 15:05 [PATCH] [for 4.7] arm-ccn: Enable building as module Suzuki K Poulose
@ 2016-05-04  9:37 ` Suzuki K Poulose
  2016-05-09 14:04   ` Suzuki K Poulose
  0 siblings, 1 reply; 5+ messages in thread
From: Suzuki K Poulose @ 2016-05-04  9:37 UTC (permalink / raw)
  To: olof, arnd, khilman
  Cc: arm, linux-arm-kernel, linux-kernel, Will Deacon, Mark Rutland,
	Paul Gortmaker

On 28/04/16 16:05, Suzuki K Poulose wrote:
> arm-ccn driver uses irq_set_affinity, which is not exported and
> hence cannot be built as a module, eventhough we have all the
> bits ready. This patch makes use of the exported helper
> irq_set_affinity_hint() instead. Also, the __free_irq expects
> the affinity_hint to be NULL when we free the irq. So set the
> affinity_hint to NULL at clean up.
>
> Now that we can build it as a module, update the Kconfig to
> reflect the change.
>
> Cc: Will Deacon <will.deacon@arm.com>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
> Acked-by: Pawel Moll <pawel.moll@arm.com>
> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>

Hi,

Could you please pull this for 4.7 ?

Thanks
Suzuki

> ---
>   drivers/bus/Kconfig   |    2 +-
>   drivers/bus/arm-ccn.c |    7 ++++---
>   2 files changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig
> index d4a3a31..3efc996 100644
> --- a/drivers/bus/Kconfig
> +++ b/drivers/bus/Kconfig
> @@ -48,7 +48,7 @@ config ARM_CCI5xx_PMU
>   	  If unsure, say Y
>
>   config ARM_CCN
> -	bool "ARM CCN driver support"
> +	tristate "ARM CCN driver support"
>   	depends on ARM || ARM64
>   	depends on PERF_EVENTS
>   	help
> diff --git a/drivers/bus/arm-ccn.c b/drivers/bus/arm-ccn.c
> index 7082c72..acc3eb5 100644
> --- a/drivers/bus/arm-ccn.c
> +++ b/drivers/bus/arm-ccn.c
> @@ -1189,7 +1189,7 @@ static int arm_ccn_pmu_cpu_notifier(struct notifier_block *nb,
>   		perf_pmu_migrate_context(&dt->pmu, cpu, target);
>   		cpumask_set_cpu(target, &dt->cpu);
>   		if (ccn->irq)
> -			WARN_ON(irq_set_affinity(ccn->irq, &dt->cpu) != 0);
> +			WARN_ON(irq_set_affinity_hint(ccn->irq, &dt->cpu) != 0);
>   	default:
>   		break;
>   	}
> @@ -1278,7 +1278,7 @@ static int arm_ccn_pmu_init(struct arm_ccn *ccn)
>
>   	/* Also make sure that the overflow interrupt is handled by this CPU */
>   	if (ccn->irq) {
> -		err = irq_set_affinity(ccn->irq, &ccn->dt.cpu);
> +		err = irq_set_affinity_hint(ccn->irq, &ccn->dt.cpu);
>   		if (err) {
>   			dev_err(ccn->dev, "Failed to set interrupt affinity!\n");
>   			goto error_set_affinity;
> @@ -1306,7 +1306,8 @@ static void arm_ccn_pmu_cleanup(struct arm_ccn *ccn)
>   {
>   	int i;
>
> -	irq_set_affinity(ccn->irq, cpu_possible_mask);
> +	if (ccn->irq)
> +		irq_set_affinity_hint(ccn->irq, NULL);
>   	unregister_cpu_notifier(&ccn->dt.cpu_nb);
>   	for (i = 0; i < ccn->num_xps; i++)
>   		writel(0, ccn->xp[i].base + CCN_XP_DT_CONTROL);
>

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

* Re: [PATCH] [for 4.7] arm-ccn: Enable building as module
  2016-05-04  9:37 ` Suzuki K Poulose
@ 2016-05-09 14:04   ` Suzuki K Poulose
  2016-05-09 14:36     ` Arnd Bergmann
  0 siblings, 1 reply; 5+ messages in thread
From: Suzuki K Poulose @ 2016-05-09 14:04 UTC (permalink / raw)
  To: olof, arnd, khilman
  Cc: arm, linux-arm-kernel, linux-kernel, Will Deacon, Mark Rutland,
	Paul Gortmaker

On 04/05/16 10:37, Suzuki K Poulose wrote:
> On 28/04/16 16:05, Suzuki K Poulose wrote:
>> arm-ccn driver uses irq_set_affinity, which is not exported and
>> hence cannot be built as a module, eventhough we have all the
>> bits ready. This patch makes use of the exported helper
>> irq_set_affinity_hint() instead. Also, the __free_irq expects
>> the affinity_hint to be NULL when we free the irq. So set the
>> affinity_hint to NULL at clean up.
>>
>> Now that we can build it as a module, update the Kconfig to
>> reflect the change.
>>
>> Cc: Will Deacon <will.deacon@arm.com>
>> Cc: Mark Rutland <mark.rutland@arm.com>
>> Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
>> Acked-by: Pawel Moll <pawel.moll@arm.com>
>> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
> 
> Hi,
> 
> Could you please pull this for 4.7 ?

Gentle ping...

Suzuki

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

* Re: [PATCH] [for 4.7] arm-ccn: Enable building as module
  2016-05-09 14:04   ` Suzuki K Poulose
@ 2016-05-09 14:36     ` Arnd Bergmann
  2016-05-09 14:40       ` Suzuki K Poulose
  0 siblings, 1 reply; 5+ messages in thread
From: Arnd Bergmann @ 2016-05-09 14:36 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Suzuki K Poulose, olof, khilman, Mark Rutland, Will Deacon,
	linux-kernel, Paul Gortmaker, arm

On Monday 09 May 2016 15:04:17 Suzuki K Poulose wrote:
> On 04/05/16 10:37, Suzuki K Poulose wrote:
> > On 28/04/16 16:05, Suzuki K Poulose wrote:
> >> arm-ccn driver uses irq_set_affinity, which is not exported and
> >> hence cannot be built as a module, eventhough we have all the
> >> bits ready. This patch makes use of the exported helper
> >> irq_set_affinity_hint() instead. Also, the __free_irq expects
> >> the affinity_hint to be NULL when we free the irq. So set the
> >> affinity_hint to NULL at clean up.
> >>
> >> Now that we can build it as a module, update the Kconfig to
> >> reflect the change.
> >>
> >> Cc: Will Deacon <will.deacon@arm.com>
> >> Cc: Mark Rutland <mark.rutland@arm.com>
> >> Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
> >> Acked-by: Pawel Moll <pawel.moll@arm.com>
> >> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com>
> > 
> > Hi,
> > 
> > Could you please pull this for 4.7 ?
> 
> Gentle ping...
> 

Applied now, sorry for the delay and thanks for the reminders.

It was in my todo list the whole time, I just didn't get around to
do any merges last week.

	Arnd

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

* Re: [PATCH] [for 4.7] arm-ccn: Enable building as module
  2016-05-09 14:36     ` Arnd Bergmann
@ 2016-05-09 14:40       ` Suzuki K Poulose
  0 siblings, 0 replies; 5+ messages in thread
From: Suzuki K Poulose @ 2016-05-09 14:40 UTC (permalink / raw)
  To: Arnd Bergmann, linux-arm-kernel
  Cc: olof, khilman, Mark Rutland, Will Deacon, linux-kernel,
	Paul Gortmaker, arm

On 09/05/16 15:36, Arnd Bergmann wrote:
>
> Applied now, sorry for the delay and thanks for the reminders.
>
> It was in my todo list the whole time, I just didn't get around to
> do any merges last week.

No problems, Thanks Arnd.

Suzuki

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

end of thread, other threads:[~2016-05-09 14:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-28 15:05 [PATCH] [for 4.7] arm-ccn: Enable building as module Suzuki K Poulose
2016-05-04  9:37 ` Suzuki K Poulose
2016-05-09 14:04   ` Suzuki K Poulose
2016-05-09 14:36     ` Arnd Bergmann
2016-05-09 14:40       ` Suzuki K Poulose

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