Gentoo Archives: gentoo-user

From: Andrea Conti <alyf@××××.net>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Gigabyte and controlling fans
Date: Sun, 12 Dec 2010 09:39:02
Message-Id: 4D0497D5.3060801@alyf.net
In Reply to: [gentoo-user] Gigabyte and controlling fans by Dale
1 > It's a Gigabyte 770T series mobo. It uses the it8720 chip.
2
3 You can try writing directly to the pwm control inputs under the
4 platform device node (i.e. /sys/devices/platform/it87.xxx/pwm*); these
5 usually take 8-bit (0-255) values.
6
7 E.g. to set pwm1 to a value of 127 you just do
8
9 echo 127 >/sys/devices/platform/it87.xxx/pwm1
10
11 You should take a look at the it87 driver source to find out what the
12 various parameters mean.
13
14 Note that I don't have a board with a modern it87 chip (i.e. one which
15 can do fan PWM control) at hand, so the device names might be different;
16 these were taken from a board using a Winbond w83627dhg chip.
17
18 Also, if you wish to control the fans manually you should probably turn
19 off any kind of automatic fan control in the BIOS.
20
21 andrea