123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573 |
- #include <linux/devfreq.h>
- #include <linux/devfreq_cooling.h>
- #include <linux/export.h>
- #include <linux/slab.h>
- #include <linux/pm_opp.h>
- #include <linux/thermal.h>
- #include <trace/events/thermal.h>
- static DEFINE_MUTEX(devfreq_lock);
- static DEFINE_IDR(devfreq_idr);
- struct devfreq_cooling_device {
- int id;
- struct thermal_cooling_device *cdev;
- struct devfreq *devfreq;
- unsigned long cooling_state;
- u32 *power_table;
- u32 *freq_table;
- size_t freq_table_size;
- struct devfreq_cooling_power *power_ops;
- };
- static int get_idr(struct idr *idr, int *id)
- {
- int ret;
- mutex_lock(&devfreq_lock);
- ret = idr_alloc(idr, NULL, 0, 0, GFP_KERNEL);
- mutex_unlock(&devfreq_lock);
- if (unlikely(ret < 0))
- return ret;
- *id = ret;
- return 0;
- }
- static void release_idr(struct idr *idr, int id)
- {
- mutex_lock(&devfreq_lock);
- idr_remove(idr, id);
- mutex_unlock(&devfreq_lock);
- }
- static int partition_enable_opps(struct devfreq_cooling_device *dfc,
- unsigned long cdev_state)
- {
- int i;
- struct device *dev = dfc->devfreq->dev.parent;
- for (i = 0; i < dfc->freq_table_size; i++) {
- struct dev_pm_opp *opp;
- int ret = 0;
- unsigned int freq = dfc->freq_table[i];
- bool want_enable = i >= cdev_state ? true : false;
- rcu_read_lock();
- opp = dev_pm_opp_find_freq_exact(dev, freq, !want_enable);
- rcu_read_unlock();
- if (PTR_ERR(opp) == -ERANGE)
- continue;
- else if (IS_ERR(opp))
- return PTR_ERR(opp);
- if (want_enable)
- ret = dev_pm_opp_enable(dev, freq);
- else
- ret = dev_pm_opp_disable(dev, freq);
- if (ret)
- return ret;
- }
- return 0;
- }
- static int devfreq_cooling_get_max_state(struct thermal_cooling_device *cdev,
- unsigned long *state)
- {
- struct devfreq_cooling_device *dfc = cdev->devdata;
- *state = dfc->freq_table_size - 1;
- return 0;
- }
- static int devfreq_cooling_get_cur_state(struct thermal_cooling_device *cdev,
- unsigned long *state)
- {
- struct devfreq_cooling_device *dfc = cdev->devdata;
- *state = dfc->cooling_state;
- return 0;
- }
- static int devfreq_cooling_set_cur_state(struct thermal_cooling_device *cdev,
- unsigned long state)
- {
- struct devfreq_cooling_device *dfc = cdev->devdata;
- struct devfreq *df = dfc->devfreq;
- struct device *dev = df->dev.parent;
- int ret;
- if (state == dfc->cooling_state)
- return 0;
- dev_dbg(dev, "Setting cooling state %lu\n", state);
- if (state >= dfc->freq_table_size)
- return -EINVAL;
- ret = partition_enable_opps(dfc, state);
- if (ret)
- return ret;
- dfc->cooling_state = state;
- return 0;
- }
- static unsigned long
- freq_get_state(struct devfreq_cooling_device *dfc, unsigned long freq)
- {
- int i;
- for (i = 0; i < dfc->freq_table_size; i++) {
- if (dfc->freq_table[i] == freq)
- return i;
- }
- return THERMAL_CSTATE_INVALID;
- }
- static unsigned long
- get_static_power(struct devfreq_cooling_device *dfc, unsigned long freq)
- {
- struct devfreq *df = dfc->devfreq;
- struct device *dev = df->dev.parent;
- unsigned long voltage;
- struct dev_pm_opp *opp;
- if (!dfc->power_ops->get_static_power)
- return 0;
- rcu_read_lock();
- opp = dev_pm_opp_find_freq_exact(dev, freq, true);
- if (IS_ERR(opp) && (PTR_ERR(opp) == -ERANGE))
- opp = dev_pm_opp_find_freq_exact(dev, freq, false);
- voltage = dev_pm_opp_get_voltage(opp) / 1000;
- rcu_read_unlock();
- if (voltage == 0) {
- dev_warn_ratelimited(dev,
- "Failed to get voltage for frequency %lu: %ld\n",
- freq, IS_ERR(opp) ? PTR_ERR(opp) : 0);
- return 0;
- }
- return dfc->power_ops->get_static_power(voltage);
- }
- static unsigned long
- get_dynamic_power(struct devfreq_cooling_device *dfc, unsigned long freq,
- unsigned long voltage)
- {
- u64 power;
- u32 freq_mhz;
- struct devfreq_cooling_power *dfc_power = dfc->power_ops;
- if (dfc_power->get_dynamic_power)
- return dfc_power->get_dynamic_power(freq, voltage);
- freq_mhz = freq / 1000000;
- power = (u64)dfc_power->dyn_power_coeff * freq_mhz * voltage * voltage;
- do_div(power, 1000000000);
- return power;
- }
- static int devfreq_cooling_get_requested_power(struct thermal_cooling_device *cdev,
- struct thermal_zone_device *tz,
- u32 *power)
- {
- struct devfreq_cooling_device *dfc = cdev->devdata;
- struct devfreq *df = dfc->devfreq;
- struct devfreq_dev_status *status = &df->last_status;
- unsigned long state;
- unsigned long freq = status->current_frequency;
- u32 dyn_power, static_power;
-
- state = freq_get_state(dfc, freq);
- if (state == THERMAL_CSTATE_INVALID)
- return -EAGAIN;
- dyn_power = dfc->power_table[state];
-
- dyn_power = (dyn_power * status->busy_time) / status->total_time;
-
- static_power = get_static_power(dfc, freq);
- trace_thermal_power_devfreq_get_power(cdev, status, freq, dyn_power,
- static_power);
- *power = dyn_power + static_power;
- return 0;
- }
- static int devfreq_cooling_state2power(struct thermal_cooling_device *cdev,
- struct thermal_zone_device *tz,
- unsigned long state,
- u32 *power)
- {
- struct devfreq_cooling_device *dfc = cdev->devdata;
- unsigned long freq;
- u32 static_power;
- if (state >= dfc->freq_table_size)
- return -EINVAL;
- freq = dfc->freq_table[state];
- static_power = get_static_power(dfc, freq);
- *power = dfc->power_table[state] + static_power;
- return 0;
- }
- static int devfreq_cooling_power2state(struct thermal_cooling_device *cdev,
- struct thermal_zone_device *tz,
- u32 power, unsigned long *state)
- {
- struct devfreq_cooling_device *dfc = cdev->devdata;
- struct devfreq *df = dfc->devfreq;
- struct devfreq_dev_status *status = &df->last_status;
- unsigned long freq = status->current_frequency;
- unsigned long busy_time;
- s32 dyn_power;
- u32 static_power;
- int i;
- static_power = get_static_power(dfc, freq);
- dyn_power = power - static_power;
- dyn_power = dyn_power > 0 ? dyn_power : 0;
-
- busy_time = status->busy_time ?: 1;
- dyn_power = (dyn_power * status->total_time) / busy_time;
-
- for (i = 0; i < dfc->freq_table_size - 1; i++)
- if (dyn_power >= dfc->power_table[i])
- break;
- *state = i;
- trace_thermal_power_devfreq_limit(cdev, freq, *state, power);
- return 0;
- }
- static struct thermal_cooling_device_ops devfreq_cooling_ops = {
- .get_max_state = devfreq_cooling_get_max_state,
- .get_cur_state = devfreq_cooling_get_cur_state,
- .set_cur_state = devfreq_cooling_set_cur_state,
- };
- static int devfreq_cooling_gen_tables(struct devfreq_cooling_device *dfc)
- {
- struct devfreq *df = dfc->devfreq;
- struct device *dev = df->dev.parent;
- int ret, num_opps;
- unsigned long freq;
- u32 *power_table = NULL;
- u32 *freq_table;
- int i;
- num_opps = dev_pm_opp_get_opp_count(dev);
- if (dfc->power_ops) {
- power_table = kcalloc(num_opps, sizeof(*power_table),
- GFP_KERNEL);
- if (!power_table)
- return -ENOMEM;
- }
- freq_table = kcalloc(num_opps, sizeof(*freq_table),
- GFP_KERNEL);
- if (!freq_table) {
- ret = -ENOMEM;
- goto free_power_table;
- }
- for (i = 0, freq = ULONG_MAX; i < num_opps; i++, freq--) {
- unsigned long power_dyn, voltage;
- struct dev_pm_opp *opp;
- rcu_read_lock();
- opp = dev_pm_opp_find_freq_floor(dev, &freq);
- if (IS_ERR(opp)) {
- rcu_read_unlock();
- ret = PTR_ERR(opp);
- goto free_tables;
- }
- voltage = dev_pm_opp_get_voltage(opp) / 1000;
- rcu_read_unlock();
- if (dfc->power_ops) {
- power_dyn = get_dynamic_power(dfc, freq, voltage);
- dev_dbg(dev, "Dynamic power table: %lu MHz @ %lu mV: %lu = %lu mW\n",
- freq / 1000000, voltage, power_dyn, power_dyn);
- power_table[i] = power_dyn;
- }
- freq_table[i] = freq;
- }
- if (dfc->power_ops)
- dfc->power_table = power_table;
- dfc->freq_table = freq_table;
- dfc->freq_table_size = num_opps;
- return 0;
- free_tables:
- kfree(freq_table);
- free_power_table:
- kfree(power_table);
- return ret;
- }
- struct thermal_cooling_device *
- of_devfreq_cooling_register_power(struct device_node *np, struct devfreq *df,
- struct devfreq_cooling_power *dfc_power)
- {
- struct thermal_cooling_device *cdev;
- struct devfreq_cooling_device *dfc;
- char dev_name[THERMAL_NAME_LENGTH];
- int err;
- dfc = kzalloc(sizeof(*dfc), GFP_KERNEL);
- if (!dfc)
- return ERR_PTR(-ENOMEM);
- dfc->devfreq = df;
- if (dfc_power) {
- dfc->power_ops = dfc_power;
- devfreq_cooling_ops.get_requested_power =
- devfreq_cooling_get_requested_power;
- devfreq_cooling_ops.state2power = devfreq_cooling_state2power;
- devfreq_cooling_ops.power2state = devfreq_cooling_power2state;
- }
- err = devfreq_cooling_gen_tables(dfc);
- if (err)
- goto free_dfc;
- err = get_idr(&devfreq_idr, &dfc->id);
- if (err)
- goto free_tables;
- snprintf(dev_name, sizeof(dev_name), "thermal-devfreq-%d", dfc->id);
- cdev = thermal_of_cooling_device_register(np, dev_name, dfc,
- &devfreq_cooling_ops);
- if (IS_ERR(cdev)) {
- err = PTR_ERR(cdev);
- dev_err(df->dev.parent,
- "Failed to register devfreq cooling device (%d)\n",
- err);
- goto release_idr;
- }
- dfc->cdev = cdev;
- return cdev;
- release_idr:
- release_idr(&devfreq_idr, dfc->id);
- free_tables:
- kfree(dfc->power_table);
- kfree(dfc->freq_table);
- free_dfc:
- kfree(dfc);
- return ERR_PTR(err);
- }
- EXPORT_SYMBOL_GPL(of_devfreq_cooling_register_power);
- struct thermal_cooling_device *
- of_devfreq_cooling_register(struct device_node *np, struct devfreq *df)
- {
- return of_devfreq_cooling_register_power(np, df, NULL);
- }
- EXPORT_SYMBOL_GPL(of_devfreq_cooling_register);
- struct thermal_cooling_device *devfreq_cooling_register(struct devfreq *df)
- {
- return of_devfreq_cooling_register(NULL, df);
- }
- EXPORT_SYMBOL_GPL(devfreq_cooling_register);
- void devfreq_cooling_unregister(struct thermal_cooling_device *cdev)
- {
- struct devfreq_cooling_device *dfc;
- if (!cdev)
- return;
- dfc = cdev->devdata;
- thermal_cooling_device_unregister(dfc->cdev);
- release_idr(&devfreq_idr, dfc->id);
- kfree(dfc->power_table);
- kfree(dfc->freq_table);
- kfree(dfc);
- }
- EXPORT_SYMBOL_GPL(devfreq_cooling_unregister);
|