blob: b0a0cd688bb332ec6ab4fbbd6afe29fdb1586449 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* OMAP3/OMAP4 DVFS Management Routines
*
* Author: Vishwanath BS <vishwanath.bs@ti.com>
*
* Copyright (C) 2011 Texas Instruments, Inc.
* Vishwanath BS <vishwanath.bs@ti.com>
*
* 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
|