From owner-freebsd-current@FreeBSD.ORG Mon Aug 25 18:54:05 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F5141065673 for ; Mon, 25 Aug 2008 18:54:05 +0000 (UTC) (envelope-from rpaulo@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.186]) by mx1.freebsd.org (Postfix) with ESMTP id 86DD88FC15 for ; Mon, 25 Aug 2008 18:54:04 +0000 (UTC) (envelope-from rpaulo@gmail.com) Received: by fk-out-0910.google.com with SMTP id k31so1461545fkk.11 for ; Mon, 25 Aug 2008 11:54:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:cc :subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to:user-agent:sender; bh=6aQ656Y5VezEOGFK2uFJSolYKdDKXE1tehGGv7BB2ds=; b=wFsmsfcyqbzU6sTFtHzVOyZHHVtJUSdS25ya8LvzFHVcIq4C2pyJc1K3khg+AFjXpq WAQIO5wW5au9wMx9mVjtt/lO3a6ndXCsf2lzCKnjgVVADu8Rh1Y8ESRR/fhkFeMY9AZg Eal+KKVL+JUh3hlqLtlI5uc+DNGgTpYlU/aMw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent:sender; b=Cat3LRpGkgjA5o3d2WdnmAyzV4SURBQsOKuWA/Wt8nFk5r6WOKnOOjlP8wI6fsxyAe iLyapgmLY/lMLz6VekHhbAlq5fV0sqBY4PEScX/RvJiuKL7OgimMNYE6M4+miVgRMvja nNGW3pfioyyxHEzoSOshMKK1xR0SQbo75Ic0c= Received: by 10.181.22.1 with SMTP id z1mr2373479bki.30.1219690443060; Mon, 25 Aug 2008 11:54:03 -0700 (PDT) Received: from alpha.local ( [83.144.140.92]) by mx.google.com with ESMTPS id 21sm4022024fkx.13.2008.08.25.11.54.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 25 Aug 2008 11:54:02 -0700 (PDT) Received: by alpha.local (Postfix, from userid 1001) id D52BBF921; Mon, 25 Aug 2008 19:52:48 +0100 (WEST) Date: Mon, 25 Aug 2008 19:52:48 +0100 From: Rui Paulo To: Norikatsu Shigemura Message-ID: <20080825185248.GA67304@alpha.local> References: <20080826005920.8aca164b.nork@FreeBSD.org> <20080825170324.GA65714@alpha.local> <20080826032207.67383c15.nork@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080826032207.67383c15.nork@FreeBSD.org> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: Rui Paulo Cc: freebsd-current@FreeBSD.org Subject: Re: How about AMD Puma platform support? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Aug 2008 18:54:05 -0000 On Tue, Aug 26, 2008 at 03:22:07AM +0900, Norikatsu Shigemura wrote: > On Mon, 25 Aug 2008 18:03:24 +0100 > Rui Paulo wrote: > > > OK: AMD AthlonX2 Dual-Core QL-60(1.9GHz) > > > But k8temp(4) doesn't work. > > Can you show me the output of pciconf -lv ? > > Yes. and I already attached devinfo -rv at my previous mail, too. > Please see also. Sorry, I missed it. Can you test this patch against k8temp, please? Index: k8temp.c =================================================================== --- k8temp.c (revision 181967) +++ k8temp.c (working copy) @@ -59,12 +59,14 @@ #define VENDORID_AMD 0x1022 #define DEVICEID_AMD_MISC 0x1103 +#define DEVICEID_AMD_MISC11H 0x1303 static struct k8temp_product { uint16_t k8temp_vendorid; uint16_t k8temp_deviceid; } k8temp_products[] = { { VENDORID_AMD, DEVICEID_AMD_MISC }, + { VENDORID_AMD, DEVICEID_AMD_MISC11H }, { 0, 0 } }; -- Rui Paulo