mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
Updating the fan speeds according to the manufacturer's specs. The fan vendor recommends that the minimum fan speed be a 20% duty cycle. Since the built-in fan controller has a tach-based feedback loop, I'm using the RPM value instead of the duty cycle (20% is 2286 RPM, according to the vendor). The vendor also wants a 30% duty cycle to start turning, but the built-in fan controller provides support for fast-start too. The controller's minimum fast-start duty cycle is 50%, but it also has a programmable number of revolutions that it will wait before backing off. Holding my ear down close to the fans while they start and stop, it seems that the minimum 2 revolution start period is sufficient and provides the least noise. Of course, since I've never had any problems starting the fans directly at 1000 RPM this noise is a little more noticeable than that. It's quite possible that the built-in controller is smart enough to make 1000 RPM work by bumping the duty cycle up until the fans turn even if the fans don't like it. BUG=chrome-os-partner:32892 BRANCH=ToT,samus TEST=manual Listen closely and run the EC console "faninfo" command to see the fans start and stop as the system boots and idles. Change-Id: I47c9e7cef3f9f4bd815a13032fe10234decd62ed Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/224830 Reviewed-by: Randall Spangler <rspangler@chromium.org>
92 lines
2.6 KiB
C
92 lines
2.6 KiB
C
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* Fan control module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_FAN_H
|
|
#define __CROS_EC_FAN_H
|
|
|
|
/* Characteristic of each physical fan */
|
|
struct fan_t {
|
|
unsigned int flags;
|
|
int rpm_min;
|
|
int rpm_max;
|
|
/* Hardware channel number (the meaning is chip-specific) */
|
|
int ch;
|
|
/* Active-high power_good input GPIO, or -1 if none */
|
|
int pgood_gpio;
|
|
/* Active-high power_enable output GPIO, or -1 if none */
|
|
int enable_gpio;
|
|
};
|
|
|
|
/* Values for .flags field */
|
|
/* Enable automatic RPM control using tach input */
|
|
#define FAN_USE_RPM_MODE (1 << 0)
|
|
/* Require a higher duty cycle to start up than to keep running */
|
|
#define FAN_USE_FAST_START (1 << 1)
|
|
|
|
/* The list of fans is instantiated in board.c. */
|
|
extern const struct fan_t fans[];
|
|
|
|
|
|
/**
|
|
* Set the amount of active cooling needed. The thermal control task will call
|
|
* this frequently, and the fan control logic will attempt to provide it.
|
|
*
|
|
* @param fan Fan number (index into fans[])
|
|
* @param pct Percentage of cooling effort needed (0 - 100)
|
|
*/
|
|
void fan_set_percent_needed(int fan, int pct);
|
|
|
|
/**
|
|
* This function translates the percentage of cooling needed into a target RPM.
|
|
* The default implementation should be sufficient for most needs, but
|
|
* individual boards may provide a custom version if needed (see config.h).
|
|
*
|
|
* @param fan Fan number (index into fans[])
|
|
* @param pct Percentage of cooling effort needed (always in [0,100])
|
|
* Return Target RPM for fan
|
|
*/
|
|
int fan_percent_to_rpm(int fan, int pct);
|
|
|
|
|
|
/**
|
|
* These functions require chip-specific implementations.
|
|
*/
|
|
|
|
/* Enable/Disable the fan controller */
|
|
void fan_set_enabled(int ch, int enabled);
|
|
int fan_get_enabled(int ch);
|
|
|
|
/* Fixed pwm duty cycle (0-100%) */
|
|
void fan_set_duty(int ch, int percent);
|
|
int fan_get_duty(int ch);
|
|
|
|
/* Enable/Disable automatic RPM control using tach feedback */
|
|
void fan_set_rpm_mode(int ch, int rpm_mode);
|
|
int fan_get_rpm_mode(int ch);
|
|
|
|
/* Set the target for the automatic RPM control */
|
|
void fan_set_rpm_target(int ch, int rpm);
|
|
int fan_get_rpm_actual(int ch);
|
|
int fan_get_rpm_target(int ch);
|
|
|
|
/* Is the fan stalled when it shouldn't be? */
|
|
int fan_is_stalled(int ch);
|
|
|
|
/* How is the automatic RPM control doing? */
|
|
enum fan_status {
|
|
FAN_STATUS_STOPPED = 0,
|
|
FAN_STATUS_CHANGING = 1,
|
|
FAN_STATUS_LOCKED = 2,
|
|
FAN_STATUS_FRUSTRATED = 3
|
|
};
|
|
enum fan_status fan_get_status(int ch);
|
|
|
|
/* Initialize the HW according to the desired flags */
|
|
void fan_channel_setup(int ch, unsigned int flags);
|
|
|
|
#endif /* __CROS_EC_FAN_H */
|