From owner-svn-src-head@FreeBSD.ORG Mon Jul 2 17:30:49 2012 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E629106566B; Mon, 2 Jul 2012 17:30:49 +0000 (UTC) (envelope-from seanbru@yahoo-inc.com) Received: from mrout1-b.corp.bf1.yahoo.com (mrout1-b.corp.bf1.yahoo.com [98.139.253.104]) by mx1.freebsd.org (Postfix) with ESMTP id 3E8198FC0C; Mon, 2 Jul 2012 17:30:49 +0000 (UTC) Received: from [IPv6:::1] (rideseveral.corp.yahoo.com [10.73.160.231]) by mrout1-b.corp.bf1.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id q62HUR2I065092; Mon, 2 Jul 2012 10:30:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yahoo-inc.com; s=cobra; t=1341250228; bh=tZqyBLP6aSNfwzwYJi6cDTc6dUZPtWPkMIT4nYDQ/+Y=; h=Subject:From:To:Cc:In-Reply-To:References:Content-Type:Date: Message-ID:Mime-Version:Content-Transfer-Encoding; b=UJXIXur2F7mGnCx+LJlnaEjritJOtql2BJULb/KJrnjB87GSdmPvU3TVPtj33LatB RbHCkNado4sRT2ZkbfCnkUtduca2Q+7i3MYXyLwyTUIMgnn0eNwSooX5I8FdYWSL2I 9iFqLNIv35kJO72MrV98f/irBLWnMj3Ltg3C5yto= From: Sean Bruno To: Alexander Motin In-Reply-To: <4FF1D62C.2090705@FreeBSD.org> References: <201207021657.q62GvD7j082717@svn.freebsd.org> <4FF1D62C.2090705@FreeBSD.org> Content-Type: text/plain; charset="UTF-8" Date: Mon, 02 Jul 2012 10:30:26 -0700 Message-ID: <1341250226.3342.6.camel@powernoodle.corp.yahoo.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Milter-Version: master.31+4-gbc07cd5+ X-CLX-ID: 250227009 Cc: "svn-src-head@FreeBSD.org" , Sean Bruno , "src-committers@FreeBSD.org" , "svn-src-all@FreeBSD.org" Subject: Re: svn commit: r238004 - in head: etc/rc.d sys/dev/acpica X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2012 17:30:49 -0000 On Mon, 2012-07-02 at 10:11 -0700, Alexander Motin wrote: > > This didn't break anything but led to a display of: > > * dev.cpu.0.cx_supported: C1/1 C2/96 > > > > Instead of > > * dev.cpu.0.cx_supported: C1/1 C3/96 > > > > MFC after: 2 weeks > > If I remember correctly, ACPI spec directly specifies that there can > be > several C-states with the same type but with different enter method > and > exit latency. I have never seen any system with more then 3 C-states > yet, but technically I think that is possible. Type field defines > enter/exit semantics, respecting cache coherency and other things, so > I > think there can be more then one state with, for example, C3 > semantics. > Latest CPUs support states C1, C3 and C5, while ACPI AFAIK defines > only > three types and it may happen that both C3 and C5 have type-3 > semantics. > > >From my read of the current ACPI specs, there isn't anything past C3. However, Intel has definied Mwate Cstates that use the same nomenclature and confuse what people think Cstates are. Is this what you mean by "C5" sean