blob: b0a0cd688bb332ec6ab4fbbd6afe29fdb1586449 [file] [log] [blame] [edit]
/*
* OMAP3/OMAP4 DVFS Management Routines
*
* Author: Vishwanath BS <[email protected]>
*
* Copyright (C) 2011 Texas Instruments, Inc.
* Vishwanath BS <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __ARCH_ARM_MACH_OMAP2_DVFS_H
#define __ARCH_ARM_MACH_OMAP2_DVFS_H
#include <plat/omap_hwmod.h>
#include "voltage.h"
#ifdef CONFIG_PM
#include <linux/mutex.h>
extern struct mutex omap_dvfs_lock;
int omap_dvfs_register_device(struct device *dev, char *voltdm_name,
char *clk_name);
int omap_device_scale(struct device *req_dev, struct device *target_dev,
unsigned long rate);
static inline bool omap_dvfs_is_any_dev_scaling(void)
{
return mutex_is_locked(&omap_dvfs_lock);
}
#else
static inline int omap_dvfs_register_device(struct device *dev,
char *voltdm_name, char *clk_name)
{
return -EINVAL;
}
static inline int omap_device_scale(struct device *req_dev,
struct device *target_dev, unsigned long rate)
{
return -EINVAL;
}
static inline bool omap_dvfs_is_any_dev_scaling(void)
{
return false;
}
#endif
#endif