From mboxrd@z Thu Jan 1 00:00:00 1970 From: daniel.lezcano@linaro.org (Daniel Lezcano) Date: Wed, 25 Sep 2013 17:10:18 +0200 Subject: [PATCH v2 1/4] clockchips: Add FEAT_PERCPU clockevent flag In-Reply-To: <1379530118-22813-2-git-send-email-soren.brinkmann@xilinx.com> References: <1379530118-22813-1-git-send-email-soren.brinkmann@xilinx.com> <1379530118-22813-2-git-send-email-soren.brinkmann@xilinx.com> Message-ID: <5242FCDA.5020100@linaro.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 09/18/2013 08:48 PM, Soren Brinkmann wrote: > Add the flag CLOCK_EVT_FEAT_PERCPU which is supposed to be set for per > cpu clockevent devices. > > Signed-off-by: Soren Brinkmann Acked-by: Daniel Lezcano > --- > include/linux/clockchips.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h > index 0857922..493aa02 100644 > --- a/include/linux/clockchips.h > +++ b/include/linux/clockchips.h > @@ -60,6 +60,7 @@ enum clock_event_mode { > * Core shall set the interrupt affinity dynamically in broadcast mode > */ > #define CLOCK_EVT_FEAT_DYNIRQ 0x000020 > +#define CLOCK_EVT_FEAT_PERCPU 0x000040 > > /** > * struct clock_event_device - clock event device descriptor > -- Linaro.org ? Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Lezcano Subject: Re: [PATCH v2 1/4] clockchips: Add FEAT_PERCPU clockevent flag Date: Wed, 25 Sep 2013 17:10:18 +0200 Message-ID: <5242FCDA.5020100@linaro.org> References: <1379530118-22813-1-git-send-email-soren.brinkmann@xilinx.com> <1379530118-22813-2-git-send-email-soren.brinkmann@xilinx.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: In-Reply-To: <1379530118-22813-2-git-send-email-soren.brinkmann-gjFFaj9aHVfQT0dZR+AlfA@public.gmane.org> Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Soren Brinkmann , Rob Herring , Pawel Moll , Mark Rutland , Stephen Warren , Ian Campbell , Russell King , Michal Simek , Thomas Gleixner , Stephen Boyd , Grant Likely , Preeti Murthy Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org List-Id: devicetree@vger.kernel.org On 09/18/2013 08:48 PM, Soren Brinkmann wrote: > Add the flag CLOCK_EVT_FEAT_PERCPU which is supposed to be set for pe= r > cpu clockevent devices. >=20 > Signed-off-by: Soren Brinkmann Acked-by: Daniel Lezcano > --- > include/linux/clockchips.h | 1 + > 1 file changed, 1 insertion(+) >=20 > diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h > index 0857922..493aa02 100644 > --- a/include/linux/clockchips.h > +++ b/include/linux/clockchips.h > @@ -60,6 +60,7 @@ enum clock_event_mode { > * Core shall set the interrupt affinity dynamically in broadcast mo= de > */ > #define CLOCK_EVT_FEAT_DYNIRQ 0x000020 > +#define CLOCK_EVT_FEAT_PERCPU 0x000040 > =20 > /** > * struct clock_event_device - clock event device descriptor >=20 --=20 Linaro.org =E2=94=82 Open source software for= ARM SoCs =46ollow Linaro: Facebook | Twitter | Blog -- To unsubscribe from this list: send the line "unsubscribe devicetree" i= n the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756022Ab3IYPKZ (ORCPT ); Wed, 25 Sep 2013 11:10:25 -0400 Received: from mail-we0-f169.google.com ([74.125.82.169]:39261 "EHLO mail-we0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755785Ab3IYPKX (ORCPT ); Wed, 25 Sep 2013 11:10:23 -0400 Message-ID: <5242FCDA.5020100@linaro.org> Date: Wed, 25 Sep 2013 17:10:18 +0200 From: Daniel Lezcano User-Agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: Soren Brinkmann , Rob Herring , Pawel Moll , Mark Rutland , Stephen Warren , Ian Campbell , Russell King , Michal Simek , Thomas Gleixner , Stephen Boyd , Grant Likely , Preeti Murthy CC: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH v2 1/4] clockchips: Add FEAT_PERCPU clockevent flag References: <1379530118-22813-1-git-send-email-soren.brinkmann@xilinx.com> <1379530118-22813-2-git-send-email-soren.brinkmann@xilinx.com> In-Reply-To: <1379530118-22813-2-git-send-email-soren.brinkmann@xilinx.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 09/18/2013 08:48 PM, Soren Brinkmann wrote: > Add the flag CLOCK_EVT_FEAT_PERCPU which is supposed to be set for per > cpu clockevent devices. > > Signed-off-by: Soren Brinkmann Acked-by: Daniel Lezcano > --- > include/linux/clockchips.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h > index 0857922..493aa02 100644 > --- a/include/linux/clockchips.h > +++ b/include/linux/clockchips.h > @@ -60,6 +60,7 @@ enum clock_event_mode { > * Core shall set the interrupt affinity dynamically in broadcast mode > */ > #define CLOCK_EVT_FEAT_DYNIRQ 0x000020 > +#define CLOCK_EVT_FEAT_PERCPU 0x000040 > > /** > * struct clock_event_device - clock event device descriptor > -- Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog