#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h>
#include <linux/cpufreq.h>
#include <linux/pm_opp.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/regulator/consumer.h>
#include <asm/smp_plat.h>
static struct cpufreq_frequency_table *freq_table;
static atomic_t freq_table_users = ATOMIC_INIT(0);
static struct device *mpu_dev;
static struct regulator *mpu_reg;
static int omap_target(struct cpufreq_policy *policy, unsigned int index)
unsigned long freq, volt = 0, volt_old = 0, tol = 0;
unsigned int old_freq, new_freq;
new_freq = freq_table[index].frequency;
ret = clk_round_rate(policy->clk, freq);
"CPUfreq: Cannot find matching frequency for %lu\n",
opp = dev_pm_opp_find_freq_ceil(mpu_dev, &freq);
dev_err(mpu_dev, "%s: unable to find MPU OPP for %d\n",
volt = dev_pm_opp_get_voltage(opp);
tol = volt * OPP_TOLERANCE / 100;
volt_old = regulator_get_voltage(mpu_reg);
dev_dbg(mpu_dev, "cpufreq-omap: %u MHz, %ld mV --> %u MHz, %ld mV\n",
old_freq / 1000, volt_old ? volt_old / 1000 : -1,
new_freq / 1000, volt ? volt / 1000 : -1);
if (mpu_reg && (new_freq > old_freq)) {
r = regulator_set_voltage(mpu_reg, volt - tol, volt + tol);
dev_warn(mpu_dev, "%s: unable to scale voltage up.\n",
ret = clk_set_rate(policy->clk, new_freq * 1000);