1 1.1 kiyohara /* $NetBSD: g760areg.h,v 1.1 2010/10/02 06:07:37 kiyohara Exp $ */ 2 1.1 kiyohara 3 1.1 kiyohara /*- 4 1.1 kiyohara * Copyright (C) 2008 A.Leo. 5 1.1 kiyohara * 6 1.1 kiyohara * Redistribution and use in source and binary forms, with or without 7 1.1 kiyohara * modification, are permitted provided that the following conditions 8 1.1 kiyohara * are met: 9 1.1 kiyohara * 1. Redistributions of source code must retain the above copyright 10 1.1 kiyohara * notice, this list of conditions and the following disclaimer. 11 1.1 kiyohara * 2. Redistributions in binary form must reproduce the above copyright 12 1.1 kiyohara * notice, this list of conditions and the following disclaimer in the 13 1.1 kiyohara * documentation and/or other materials provided with the distribution. 14 1.1 kiyohara * 3. The name of the author may not be used to endorse or promote products 15 1.1 kiyohara * derived from this software without specific prior written permission. 16 1.1 kiyohara * 17 1.1 kiyohara * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 1.1 kiyohara * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 1.1 kiyohara * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 1.1 kiyohara * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 1.1 kiyohara * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 1.1 kiyohara * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 1.1 kiyohara * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 1.1 kiyohara * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 1.1 kiyohara * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 1.1 kiyohara * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 1.1 kiyohara */ 28 1.1 kiyohara 29 1.1 kiyohara 30 1.1 kiyohara #ifndef _DEV_I2C_G760aREG_H_ 31 1.1 kiyohara #define _DEV_I2C_G760aREG_H_ 32 1.1 kiyohara 33 1.1 kiyohara #define G760A_ADDR 0x3e 34 1.1 kiyohara 35 1.1 kiyohara #define G760A_REG_SET_CNT 0x00 /* RW, Programmed fan speed 36 1.1 kiyohara register, it contains the 37 1.1 kiyohara count number of the 38 1.1 kiyohara desired fan speed. */ 39 1.1 kiyohara 40 1.1 kiyohara #define G760A_REG_ACT_CNT 0x01 /* RO, Actual fan speed. */ 41 1.1 kiyohara #define G760A_REG_FAN_STA 0x02 /* RO, Fan status. */ 42 1.1 kiyohara #define G760A_REG_FAN_STA_MASK 0x03u /* 2 lower bits */ 43 1.1 kiyohara 44 1.1 kiyohara #define G760A_CLK 32768 45 1.1 kiyohara #define G760A_P 2 46 1.1 kiyohara 47 1.1 kiyohara 48 1.1 kiyohara 49 1.1 kiyohara #define G760A_N2RPM(a) (G760A_CLK*30/G760A_P/(a)) 50 1.1 kiyohara #define G760A_RPM2N(a) (G760A_CLK*30/G760A_P/(a)) /* wow */ 51 1.1 kiyohara 52 1.1 kiyohara 53 1.1 kiyohara #endif /* !_DEV_I2C_G760AREG_H_ */ 54