WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] Re: [PATCH 10/13] Do not try to disable hpet if it hasn't be

To: Thomas Gleixner <tglx@xxxxxxxxxxxxx>, Ingo Molnar <mingo@xxxxxxx>, "H. Peter Anvin" <hpa@xxxxxxxxx>
Subject: [Xen-devel] Re: [PATCH 10/13] Do not try to disable hpet if it hasn't been initialized before
From: Venkatesh Pallipadi <venki@xxxxxxxxxx>
Date: Wed, 30 Jun 2010 14:24:21 -0700
Cc: jeremy@xxxxxxxx, xen-devel@xxxxxxxxxxxxxxxxxxx, Stefano.Stabellini@xxxxxxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx, ddutile@xxxxxxxxxx, stefano@xxxxxxxxxxxxxx, sheng@xxxxxxxxxxxxxxx
Delivery-date: Fri, 02 Jul 2010 03:41:00 -0700
Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=google.com; s=beta; t=1277933064; bh=rrHaO8BkkStP/nQFA3X/CXSRcsU=; h=MIME-Version:In-Reply-To:References:Date:Message-ID:Subject:From: To:Cc:Content-Type:Content-Transfer-Encoding; b=Rielo2+li1KBOU8r0Jr2v0tE3SAei83TvPjq6bTs1FFPWtBts02p6fs6Y3jka2olF zWeXyURsJS7njtt5ZSuVg==
Domainkey-signature: a=rsa-sha1; s=beta; d=google.com; c=nofws; q=dns; h=mime-version:in-reply-to:references:date:message-id:subject:from:to: cc:content-type:content-transfer-encoding:x-system-of-record; b=RnvZzCt/lzDt6o8GBJSWGzxDg7k6IhzetEEW+DW7g56x0RSaWm3R82U2eNkcPj+Te i6ONqYPQdMX6KEw9/G1Nw==
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <1277136847-13266-10-git-send-email-stefano@xxxxxxxxxxxxxx>
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
References: <alpine.DEB.2.00.1006211456360.18470@kaball-desktop> <1277136847-13266-10-git-send-email-stefano@xxxxxxxxxxxxxx>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Looks Good.
Acked-by: Venkatesh Pallipadi <venki@xxxxxxxxxx>

Copying Thomas/Ingo/Peter.

On Mon, Jun 21, 2010 at 9:14 AM,  <stefano@xxxxxxxxxxxxxx> wrote:
> From: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx>
>
> hpet_disable is called unconditionally on machine reboot if hpet support
> is compiled in the kernel.
> hpet_disable only checks if the machine is hpet capable but doesn't make
> sure that hpet has been initialized.
>
> Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx>
> ---
>  arch/x86/kernel/hpet.c |   18 ++++++++++--------
>  1 files changed, 10 insertions(+), 8 deletions(-)
>
> diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c
> index 23b4ecd..2b299da 100644
> --- a/arch/x86/kernel/hpet.c
> +++ b/arch/x86/kernel/hpet.c
> @@ -959,16 +959,18 @@ fs_initcall(hpet_late_init);
>
>  void hpet_disable(void)
>  {
> -       if (is_hpet_capable()) {
> -               unsigned int cfg = hpet_readl(HPET_CFG);
> +       unsigned int cfg;
>
> -               if (hpet_legacy_int_enabled) {
> -                       cfg &= ~HPET_CFG_LEGACY;
> -                       hpet_legacy_int_enabled = 0;
> -               }
> -               cfg &= ~HPET_CFG_ENABLE;
> -               hpet_writel(cfg, HPET_CFG);
> +       if (!is_hpet_capable() || !hpet_address || !hpet_virt_address)
> +               return;
> +
> +       cfg = hpet_readl(HPET_CFG);
> +       if (hpet_legacy_int_enabled) {
> +               cfg &= ~HPET_CFG_LEGACY;
> +               hpet_legacy_int_enabled = 0;
>        }
> +       cfg &= ~HPET_CFG_ENABLE;
> +       hpet_writel(cfg, HPET_CFG);
>  }
>
>  #ifdef CONFIG_HPET_EMULATE_RTC
> --
> 1.7.0.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] Re: [PATCH 10/13] Do not try to disable hpet if it hasn't been initialized before, Venkatesh Pallipadi <=