All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bryan Huntsman <bryanh@codeaurora.org>
To: Sheetal Sahasrabudhe <sheetals@codeaurora.org>
Cc: linux-arm-kernel@lists.infradead.org, will.deacon@arm.com,
	jamie.iles@picochip.com, jean.pihet@newoldbits.com,
	linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 2/3] [ARM] perfevents: Add support for Scorpion performance monitors
Date: Mon, 14 Mar 2011 18:35:48 -0700	[thread overview]
Message-ID: <4D7EC274.4020407@codeaurora.org> (raw)
In-Reply-To: <1299691007-13470-1-git-send-email-sheetals@codeaurora.org>

On 03/09/2011 09:16 AM, Sheetal Sahasrabudhe wrote:
> This commit adds support for performance monitors provided by
> Qualcomm Scorpion and ScorpionMP processor to perfevents.
> 
> Signed-off-by: Sheetal Sahasrabudhe <sheetals@codeaurora.org>
> Reviewed-by: Jean Pihet <j-pihet@ti.com>
> Reviewed-by: Will Deacon <will.deacon@arm.com>
> ---
>  arch/arm/include/asm/perf_event.h |    2 +
>  arch/arm/kernel/perf_event.c      |   11 +
>  arch/arm/kernel/perf_event_msm.c  |  679 +++++++++++++++++++++++++++++++++++++
>  3 files changed, 692 insertions(+), 0 deletions(-)
>  create mode 100644 arch/arm/kernel/perf_event_msm.c
> 

...

> diff --git a/arch/arm/kernel/perf_event_msm.c b/arch/arm/kernel/perf_event_msm.c
> new file mode 100644
> index 0000000..4e42f27
> --- /dev/null
> +++ b/arch/arm/kernel/perf_event_msm.c
> @@ -0,0 +1,679 @@
> +/*
> + * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 and
> + * only version 2 as published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + */
> +
> +#include <asm/vfp.h>
> +#include <asm/system.h>
> +#include "../vfp/vfpinstr.h"

Sorry I didn't see this earlier.  Is there another way to get the info
you need that wouldn't use a relative include path?  If the info from
vfpinstr.h is now needed outside of the vfp directory, can it be moved
to a common header instead?  Thanks.

- Bryan


-- 
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.

WARNING: multiple messages have this Message-ID (diff)
From: bryanh@codeaurora.org (Bryan Huntsman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 2/3] [ARM] perfevents: Add support for Scorpion performance monitors
Date: Mon, 14 Mar 2011 18:35:48 -0700	[thread overview]
Message-ID: <4D7EC274.4020407@codeaurora.org> (raw)
In-Reply-To: <1299691007-13470-1-git-send-email-sheetals@codeaurora.org>

On 03/09/2011 09:16 AM, Sheetal Sahasrabudhe wrote:
> This commit adds support for performance monitors provided by
> Qualcomm Scorpion and ScorpionMP processor to perfevents.
> 
> Signed-off-by: Sheetal Sahasrabudhe <sheetals@codeaurora.org>
> Reviewed-by: Jean Pihet <j-pihet@ti.com>
> Reviewed-by: Will Deacon <will.deacon@arm.com>
> ---
>  arch/arm/include/asm/perf_event.h |    2 +
>  arch/arm/kernel/perf_event.c      |   11 +
>  arch/arm/kernel/perf_event_msm.c  |  679 +++++++++++++++++++++++++++++++++++++
>  3 files changed, 692 insertions(+), 0 deletions(-)
>  create mode 100644 arch/arm/kernel/perf_event_msm.c
> 

...

> diff --git a/arch/arm/kernel/perf_event_msm.c b/arch/arm/kernel/perf_event_msm.c
> new file mode 100644
> index 0000000..4e42f27
> --- /dev/null
> +++ b/arch/arm/kernel/perf_event_msm.c
> @@ -0,0 +1,679 @@
> +/*
> + * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 and
> + * only version 2 as published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + */
> +
> +#include <asm/vfp.h>
> +#include <asm/system.h>
> +#include "../vfp/vfpinstr.h"

Sorry I didn't see this earlier.  Is there another way to get the info
you need that wouldn't use a relative include path?  If the info from
vfpinstr.h is now needed outside of the vfp directory, can it be moved
to a common header instead?  Thanks.

- Bryan


-- 
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.

  reply	other threads:[~2011-03-15  1:35 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-08 18:25 [PATCH v3 2/3] [ARM] perfevents: Add support for Scorpion performance monitors Sheetal Sahasrabudhe
2011-03-08 18:25 ` Sheetal Sahasrabudhe
2011-03-09  8:44 ` Jean Pihet
2011-03-09  8:44   ` Jean Pihet
2011-03-09  8:44   ` Jean Pihet
2011-03-09 15:46   ` Sheetal Sahasrabudhe
2011-03-09 15:46     ` Sheetal Sahasrabudhe
2011-03-09 15:46     ` Sheetal Sahasrabudhe
2011-03-09 16:03     ` Jean Pihet
2011-03-09 16:03       ` Jean Pihet
2011-03-09 17:16 ` [PATCH v4 " Sheetal Sahasrabudhe
2011-03-09 17:16   ` Sheetal Sahasrabudhe
2011-03-15  1:35   ` Bryan Huntsman [this message]
2011-03-15  1:35     ` Bryan Huntsman
2011-03-15 15:58     ` Sheetal Sahasrabudhe
2011-03-15 15:58       ` Sheetal Sahasrabudhe
2011-03-15 15:58       ` Sheetal Sahasrabudhe
2011-03-16  9:13       ` Jean Pihet
2011-03-16  9:13         ` Jean Pihet
2011-03-16  9:13         ` Jean Pihet
2011-03-25 18:21         ` Neil Leeder
2011-03-25 18:21           ` Neil Leeder

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=4D7EC274.4020407@codeaurora.org \
    --to=bryanh@codeaurora.org \
    --cc=jamie.iles@picochip.com \
    --cc=jean.pihet@newoldbits.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sheetals@codeaurora.org \
    --cc=will.deacon@arm.com \
    /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.