Release 4.12 drivers/thermal/fair_share.c
  
  
  
/*
 *  fair_share.c - A simple weight based Thermal governor
 *
 *  Copyright (C) 2012 Intel Corp
 *  Copyright (C) 2012 Durgadoss R <durgadoss.r@intel.com>
 *
 *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 *  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; version 2 of the License.
 *
 *  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.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
#include <linux/thermal.h>
#include <trace/events/thermal.h>
#include "thermal_core.h"
/**
 * get_trip_level: - obtains the current trip level for a zone
 * @tz:         thermal zone device
 */
static int get_trip_level(struct thermal_zone_device *tz)
{
	int count = 0;
	int trip_temp;
	enum thermal_trip_type trip_type;
	if (tz->trips == 0 || !tz->ops->get_trip_temp)
		return 0;
	for (count = 0; count < tz->trips; count++) {
		tz->ops->get_trip_temp(tz, count, &trip_temp);
		if (tz->temperature < trip_temp)
			break;
	}
	/*
         * count > 0 only if temperature is greater than first trip
         * point, in which case, trip_point = count - 1
         */
	if (count > 0) {
		tz->ops->get_trip_type(tz, count - 1, &trip_type);
		trace_thermal_zone_trip(tz, count - 1, trip_type);
	}
	return count;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Durgadoss R | 79 | 65.83% | 1 | 33.33% | 
| Punit Agrawal | 40 | 33.33% | 1 | 33.33% | 
| Sascha Hauer | 1 | 0.83% | 1 | 33.33% | 
| Total | 120 | 100.00% | 3 | 100.00% | 
static long get_target_state(struct thermal_zone_device *tz,
		struct thermal_cooling_device *cdev, int percentage, int level)
{
	unsigned long max_state;
	cdev->ops->get_max_state(cdev, &max_state);
	return (long)(percentage * level * max_state) / (100 * tz->trips);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Durgadoss R | 56 | 96.55% | 1 | 50.00% | 
| Javi Merino | 2 | 3.45% | 1 | 50.00% | 
| Total | 58 | 100.00% | 2 | 100.00% | 
/**
 * fair_share_throttle - throttles devices associated with the given zone
 * @tz - thermal_zone_device
 *
 * Throttling Logic: This uses three parameters to calculate the new
 * throttle state of the cooling devices associated with the given zone.
 *
 * Parameters used for Throttling:
 * P1. max_state: Maximum throttle state exposed by the cooling device.
 * P2. percentage[i]/100:
 *      How 'effective' the 'i'th device is, in cooling the given zone.
 * P3. cur_trip_level/max_no_of_trips:
 *      This describes the extent to which the devices should be throttled.
 *      We do not want to throttle too much when we trip a lower temperature,
 *      whereas the throttling is at full swing if we trip critical levels.
 *      (Heavily assumes the trip points are in ascending order)
 * new_state of cooling device = P3 * P2 * P1
 */
static int fair_share_throttle(struct thermal_zone_device *tz, int trip)
{
	struct thermal_instance *instance;
	int total_weight = 0;
	int total_instance = 0;
	int cur_trip_level = get_trip_level(tz);
	list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
		if (instance->trip != trip)
			continue;
		total_weight += instance->weight;
		total_instance++;
	}
	list_for_each_entry(instance, &tz->thermal_instances, tz_node) {
		int percentage;
		struct thermal_cooling_device *cdev = instance->cdev;
		if (instance->trip != trip)
			continue;
		if (!total_weight)
			percentage = 100 / total_instance;
		else
			percentage = (instance->weight * 100) / total_weight;
		instance->target = get_target_state(tz, cdev, percentage,
						    cur_trip_level);
		mutex_lock(&instance->cdev->lock);
		instance->cdev->updated = false;
		mutex_unlock(&instance->cdev->lock);
		thermal_cdev_update(cdev);
	}
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Javi Merino | 84 | 49.12% | 2 | 40.00% | 
| Durgadoss R | 66 | 38.60% | 1 | 20.00% | 
| Michele Di Giorgio | 20 | 11.70% | 1 | 20.00% | 
| Sachin Kamat | 1 | 0.58% | 1 | 20.00% | 
| Total | 171 | 100.00% | 5 | 100.00% | 
static struct thermal_governor thermal_gov_fair_share = {
	.name		= "fair_share",
	.throttle	= fair_share_throttle,
};
int thermal_gov_fair_share_register(void)
{
	return thermal_register_governor(&thermal_gov_fair_share);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Durgadoss R | 13 | 92.86% | 1 | 50.00% | 
| Rui Zhang | 1 | 7.14% | 1 | 50.00% | 
| Total | 14 | 100.00% | 2 | 100.00% | 
void thermal_gov_fair_share_unregister(void)
{
	thermal_unregister_governor(&thermal_gov_fair_share);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Durgadoss R | 12 | 92.31% | 1 | 50.00% | 
| Rui Zhang | 1 | 7.69% | 1 | 50.00% | 
| Total | 13 | 100.00% | 2 | 100.00% | 
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Durgadoss R | 250 | 61.73% | 1 | 12.50% | 
| Javi Merino | 87 | 21.48% | 2 | 25.00% | 
| Punit Agrawal | 43 | 10.62% | 1 | 12.50% | 
| Michele Di Giorgio | 20 | 4.94% | 1 | 12.50% | 
| Sachin Kamat | 2 | 0.49% | 1 | 12.50% | 
| Rui Zhang | 2 | 0.49% | 1 | 12.50% | 
| Sascha Hauer | 1 | 0.25% | 1 | 12.50% | 
| Total | 405 | 100.00% | 8 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.