From owner-cvs-src-old@FreeBSD.ORG Fri Oct 15 20:08:45 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E89C1106566B for ; Fri, 15 Oct 2010 20:08:45 +0000 (UTC) (envelope-from andreast@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D437C8FC1C for ; Fri, 15 Oct 2010 20:08:45 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9FK8j2L009731 for ; Fri, 15 Oct 2010 20:08:45 GMT (envelope-from andreast@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9FK8jxA009730 for cvs-src-old@freebsd.org; Fri, 15 Oct 2010 20:08:45 GMT (envelope-from andreast@repoman.freebsd.org) Message-Id: <201010152008.o9FK8jxA009730@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to andreast@repoman.freebsd.org using -f From: Andreas Tobler Date: Fri, 15 Oct 2010 20:08:16 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files.powerpc src/sys/dev/iicbus ds1775.c max6690.c src/sys/powerpc/conf GENERIC GENERIC64 NOTES src/sys/powerpc/powermac fcu.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Oct 2010 20:08:46 -0000 andreast 2010-10-15 20:08:16 UTC FreeBSD src repository Modified files: sys/conf files.powerpc sys/powerpc/conf GENERIC GENERIC64 NOTES Added files: sys/dev/iicbus ds1775.c max6690.c sys/powerpc/powermac fcu.c Log: SVN rev 213904 on 2010-10-15 20:08:16Z by andreast Add three new drivers for fan control and temperature reading on the PowerMac7,2. - The fcu driver lets us read and write the fan RPMs for all fans in the PowerMac7,2. This driver is PowerMac specific. - The ds1775 is a driver to read the temperature for the drive bay sensor. - The max6690 is another driver to read temperatures. Here it is used to read the inlet, the backside and the U3 heatsink temperature. An additional driver, the ad7417, will follow later. Thanks to nwhitehorn for guiding me through this driver development. Approved by: nwhitehorn (mentor) Revision Changes Path 1.119 +3 -0 src/sys/conf/files.powerpc 1.1 +255 -0 src/sys/dev/iicbus/ds1775.c (new) 1.1 +335 -0 src/sys/dev/iicbus/max6690.c (new) 1.109 +3 -0 src/sys/powerpc/conf/GENERIC 1.6 +3 -0 src/sys/powerpc/conf/GENERIC64 1.28 +3 -0 src/sys/powerpc/conf/NOTES 1.1 +506 -0 src/sys/powerpc/powermac/fcu.c (new)