* [PATCH] ARM: fix mistaken dependency for CPU_HAS_PMU @ 2011-05-18 2:34 tom.leiming at gmail.com 2011-05-18 8:47 ` Will Deacon [not found] ` <4785097973995347565@unknownmsgid> 0 siblings, 2 replies; 4+ messages in thread From: tom.leiming at gmail.com @ 2011-05-18 2:34 UTC (permalink / raw) To: linux-arm-kernel From: Ming Lei <tom.leiming@gmail.com> Obviously it is mistake for CPU_HAS_PMU to depend on (!ARCH_OMAP3 || OMAP3_EMU). No mattery it is omap3 or not, we can build pmu.o into kernel safely. In fact, arm-v7 of omap3 has pmu inside also. So fix it that we can build pmu into kernel to support perf for some valid config(such as enable both omap4 and omap3, but OMAP3_EMU). Cc: Will Deacon <will.deacon@arm.com> Cc: linux-omap at vger.kernel.org Signed-off-by: Ming Lei <tom.leiming@gmail.com> --- arch/arm/Kconfig | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 377a7a5..ba314d5 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1061,8 +1061,7 @@ config XSCALE_PMU default y config CPU_HAS_PMU - depends on (CPU_V6 || CPU_V6K || CPU_V7 || XSCALE_PMU) && \ - (!ARCH_OMAP3 || OMAP3_EMU) + depends on CPU_V6 || CPU_V6K || CPU_V7 || XSCALE_PMU default y bool -- 1.7.4.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] ARM: fix mistaken dependency for CPU_HAS_PMU 2011-05-18 2:34 [PATCH] ARM: fix mistaken dependency for CPU_HAS_PMU tom.leiming at gmail.com @ 2011-05-18 8:47 ` Will Deacon [not found] ` <4785097973995347565@unknownmsgid> 1 sibling, 0 replies; 4+ messages in thread From: Will Deacon @ 2011-05-18 8:47 UTC (permalink / raw) To: linux-arm-kernel Hi, > From: Ming Lei <tom.leiming@gmail.com> > > Obviously it is mistake for CPU_HAS_PMU to depend on > (!ARCH_OMAP3 || OMAP3_EMU). It's not that obvious! > No mattery it is omap3 or not, we can build pmu.o into > kernel safely. In fact, arm-v7 of omap3 has pmu inside > also. Yes, but the PMU on Omap3 doesn't work unless you enable the emu clk, which is done in kernel/etm.c. Rather than duplicate that code (which only seems to be needed for Omap anyway) I decided to add a dependency on OMAP3_EMU so the clock gets enabled in etb_probe. > So fix it that we can build pmu into kernel to support perf > for some valid config(such as enable both omap4 and omap3, > but OMAP3_EMU). No, I don't like this. The reason I don't like it is because it will lead to lots of bug reports that perf doesn't work on Omap3 because they haven't got the emu clock ticking. It was this scenario that led to the dependency being introduced in the first place: 8954bb0d ("OMAP3: pmu: make CPU_HAS_PMU dependent on OMAP3_EMU") Is there a problem building the etm support for Omap4? Will ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <4785097973995347565@unknownmsgid>]
* [PATCH] ARM: fix mistaken dependency for CPU_HAS_PMU [not found] ` <4785097973995347565@unknownmsgid> @ 2011-05-18 9:31 ` Ming Lei 2011-05-18 9:53 ` Will Deacon 0 siblings, 1 reply; 4+ messages in thread From: Ming Lei @ 2011-05-18 9:31 UTC (permalink / raw) To: linux-arm-kernel Hi, 2011/5/18 Will Deacon <will.deacon@arm.com>: > Hi, > >> From: Ming Lei <tom.leiming@gmail.com> >> >> Obviously it is mistake for CPU_HAS_PMU to depend on >> (!ARCH_OMAP3 || OMAP3_EMU). > > It's not that obvious! No, on ubuntu 11.04, default config options enables ARCH_OMAP3 and ARCH_OMAP4, and disable OMAP3_EMU, so cause pmu.o can't be built in kernel. pmu.o is just a platform driver for pmu device, so we should always allow it to be built into kernel no matter there are pmu devices or not, so we can support multiple boards with one same image. > >> No mattery it is omap3 or not, we can build pmu.o into >> kernel safely. In fact, arm-v7 of omap3 has pmu inside >> also. > > Yes, but the PMU on Omap3 doesn't work unless you enable the emu clk, which > is done in kernel/etm.c. Rather than duplicate that code (which only seems > to be needed for Omap anyway) I decided to add a dependency on OMAP3_EMU so > the clock gets enabled in etb_probe. > >> So fix it that we can build pmu into kernel to support perf >> for some valid config(such as enable both omap4 and omap3, >> but OMAP3_EMU). > > No, I don't like this. The reason I don't like it is because it will lead to > lots of bug reports that perf doesn't work on Omap3 because they haven't got > the emu clock ticking. It was this scenario that led to the dependency being > introduced in the first place: > > 8954bb0d ("OMAP3: pmu: make CPU_HAS_PMU dependent on OMAP3_EMU") I don't think it is good fix. In fact, we should keep arch/arm/Kconfig or arch/arm/kernel/pmu.c more generic, and avoid to make arm core code depend on machines options as far as possible. For the pmu issue on omap3, below fix should be better than what 8954bb0d did, shouldn't it? diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 7b85585..c20a3a3 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -410,9 +410,12 @@ static void omap_init_pmu(void) { if (cpu_is_omap24xx()) omap_pmu_device.resource = &omap2_pmu_resource; - else if (cpu_is_omap34xx()) + else if (cpu_is_omap34xx()) { omap_pmu_device.resource = &omap3_pmu_resource; - else +#ifndef CONFIG_OMAP3_EMU + return; +#endif + } else return; platform_device_register(&omap_pmu_device); > Is there a problem building the etm support for Omap4? Of course, there is the problem I described above. thanks, -- Ming Lei ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] ARM: fix mistaken dependency for CPU_HAS_PMU 2011-05-18 9:31 ` Ming Lei @ 2011-05-18 9:53 ` Will Deacon 0 siblings, 0 replies; 4+ messages in thread From: Will Deacon @ 2011-05-18 9:53 UTC (permalink / raw) To: linux-arm-kernel > >> From: Ming Lei <tom.leiming@gmail.com> > >> > >> Obviously it is mistake for CPU_HAS_PMU to depend on > >> (!ARCH_OMAP3 || OMAP3_EMU). > > > > It's not that obvious! > > No, on ubuntu 11.04, default config options enables ARCH_OMAP3 > and ARCH_OMAP4, and disable OMAP3_EMU, so cause pmu.o > can't be built in kernel. > > pmu.o is just a platform driver for pmu device, so we should always > allow it to be built into kernel no matter there are pmu devices or > not, so we can support multiple boards with one same image. CPU_HAS_PMU is also used as a condition for enabling HW_PERF_EVENTS. I don't think we should set that for configurations where the platform doesn't provide working hardware counters. On top of that, pmu.o provides a reservation mechanism for the PMU which is used by tools such as perf and LTTng. If CPU_HAS_PMU is not set then you will get back -ENODEV, which I think is better than providing access to a PMU that's not working. > In fact, we should keep arch/arm/Kconfig or arch/arm/kernel/pmu.c more generic, > and avoid to make arm core code depend on machines options as far as possible. > > For the pmu issue on omap3, below fix should be better than what > 8954bb0d did, shouldn't it? > > diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c > index 7b85585..c20a3a3 100644 > --- a/arch/arm/mach-omap2/devices.c > +++ b/arch/arm/mach-omap2/devices.c > @@ -410,9 +410,12 @@ static void omap_init_pmu(void) > { > if (cpu_is_omap24xx()) > omap_pmu_device.resource = &omap2_pmu_resource; > - else if (cpu_is_omap34xx()) > + else if (cpu_is_omap34xx()) { > omap_pmu_device.resource = &omap3_pmu_resource; > - else > +#ifndef CONFIG_OMAP3_EMU > + return; > +#endif > + } else > return; > > platform_device_register(&omap_pmu_device); The problem with this is that it still allows users to build kernels where perf is enabled but doesn't work. Since we know this is the case at build time, we have chance to stop them doing it then (or at least not let them select HW_PERF_EVENTS). > > Is there a problem building the etm support for Omap4? > > Of course, there is the problem I described above. What I mean is, why can't you just select OMAP3_EMU in your Omap3/4 combined kernel config? Then everything should work. Will ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-05-18 9:53 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-05-18 2:34 [PATCH] ARM: fix mistaken dependency for CPU_HAS_PMU tom.leiming at gmail.com 2011-05-18 8:47 ` Will Deacon [not found] ` <4785097973995347565@unknownmsgid> 2011-05-18 9:31 ` Ming Lei 2011-05-18 9:53 ` Will Deacon
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).