2012-06-15 19:07:11 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2010 Allan McRae <allan@archlinux.org>
|
|
|
|
* Modifications (2012) by Daniel Graziotin <dgraziotin@task3.cc>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-08-23 20:32:49 +00:00
|
|
|
#ifndef _MBPFAN_H_
|
|
|
|
#define _MBPFAN_H_
|
|
|
|
|
2012-06-09 14:25:28 +00:00
|
|
|
/** Basic fan speed parameters
|
|
|
|
*/
|
2012-06-09 17:07:25 +00:00
|
|
|
extern int min_fan_speed;
|
|
|
|
extern int max_fan_speed;
|
2012-06-09 14:25:28 +00:00
|
|
|
|
|
|
|
/** Temperature Thresholds
|
|
|
|
* low_temp - temperature below which fan speed will be at minimum
|
|
|
|
* high_temp - fan will increase speed when higher than this temperature
|
|
|
|
* max_temp - fan will run at full speed above this temperature */
|
2012-06-09 17:07:25 +00:00
|
|
|
extern int low_temp;
|
|
|
|
extern int high_temp;
|
|
|
|
extern int max_temp;
|
2012-06-09 14:25:28 +00:00
|
|
|
|
|
|
|
/** Temperature polling interval
|
|
|
|
* Default value was 10 (seconds)
|
|
|
|
*/
|
2012-06-09 17:07:25 +00:00
|
|
|
extern int polling_interval;
|
2012-06-09 14:25:28 +00:00
|
|
|
|
|
|
|
/** Represents a Temperature sensor
|
|
|
|
*/
|
|
|
|
struct s_sensors;
|
|
|
|
typedef struct s_sensors t_sensors;
|
|
|
|
|
2012-10-24 09:13:25 +00:00
|
|
|
struct s_fans;
|
|
|
|
typedef struct s_fans t_fans;
|
|
|
|
|
2012-08-22 13:05:52 +00:00
|
|
|
/**
|
|
|
|
* Tries to use the settings located in
|
|
|
|
* /etc/mbpfan.conf
|
|
|
|
* If it fails, the default hardcoded settings are used
|
|
|
|
*/
|
|
|
|
void retrieve_settings();
|
|
|
|
|
2012-06-09 14:25:28 +00:00
|
|
|
/**
|
|
|
|
* Detect the sensors in /sys/devices/platform/coretemp.0/temp
|
|
|
|
* Return a linked list of t_sensors (first temperature detected)
|
|
|
|
*/
|
2012-06-11 19:43:53 +00:00
|
|
|
t_sensors *retrieve_sensors();
|
2012-06-09 14:25:28 +00:00
|
|
|
|
2012-06-09 17:07:25 +00:00
|
|
|
/**
|
|
|
|
* Given a linked list of t_sensors, refresh their detected
|
|
|
|
* temperature
|
|
|
|
*/
|
|
|
|
t_sensors *refresh_sensors(t_sensors *sensors);
|
|
|
|
|
2012-06-09 14:25:28 +00:00
|
|
|
/**
|
|
|
|
* Detect the fans in /sys/devices/platform/applesmc.768/
|
|
|
|
* Associate each fan to a sensor
|
|
|
|
*/
|
2012-10-24 09:13:25 +00:00
|
|
|
t_fans* retrieve_fans();
|
2012-06-09 14:25:28 +00:00
|
|
|
|
|
|
|
/**
|
2012-06-09 17:07:25 +00:00
|
|
|
* Given a list of sensors with associated fans
|
|
|
|
* Set them to manual control
|
2012-06-09 14:25:28 +00:00
|
|
|
*/
|
2012-10-24 09:13:25 +00:00
|
|
|
void set_fans_man(t_fans *fans);
|
2012-06-11 19:43:53 +00:00
|
|
|
|
2012-07-03 07:37:44 +00:00
|
|
|
/**
|
|
|
|
* Given a list of sensors with associated fans
|
|
|
|
* Change their speed
|
|
|
|
*/
|
2012-10-24 09:13:25 +00:00
|
|
|
void set_fan_speed(t_fans* fans, int speed);
|
2012-07-03 07:37:44 +00:00
|
|
|
|
2012-06-16 09:02:48 +00:00
|
|
|
/**
|
|
|
|
* Return average CPU temp in degrees (ceiling)
|
|
|
|
*/
|
|
|
|
unsigned short get_temp(t_sensors* sensors);
|
|
|
|
|
2012-06-11 19:43:53 +00:00
|
|
|
/**
|
|
|
|
* Main Program
|
|
|
|
*/
|
2012-08-23 20:32:49 +00:00
|
|
|
void mbpfan();
|
|
|
|
|
|
|
|
#endif
|