Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 336768
b: refs/heads/master
c: 206c30c
h: refs/heads/master
v: v3
  • Loading branch information
Rajagopal Venkat authored and Rafael J. Wysocki committed Nov 14, 2012
1 parent 2bedc83 commit 1afa59d
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7e6fdd4bad033fa2d73716377b184fa975b0d985
refs/heads/master: 206c30cfeb7c05dfb9fdfd81b1deb933627e43c1
28 changes: 28 additions & 0 deletions trunk/drivers/devfreq/devfreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,34 @@ int devfreq_remove_device(struct devfreq *devfreq)
}
EXPORT_SYMBOL(devfreq_remove_device);

/**
* devfreq_suspend_device() - Suspend devfreq of a device.
* @devfreq: the devfreq instance to be suspended
*/
int devfreq_suspend_device(struct devfreq *devfreq)
{
if (!devfreq)
return -EINVAL;

return devfreq->governor->event_handler(devfreq,
DEVFREQ_GOV_SUSPEND, NULL);
}
EXPORT_SYMBOL(devfreq_suspend_device);

/**
* devfreq_resume_device() - Resume devfreq of a device.
* @devfreq: the devfreq instance to be resumed
*/
int devfreq_resume_device(struct devfreq *devfreq)
{
if (!devfreq)
return -EINVAL;

return devfreq->governor->event_handler(devfreq,
DEVFREQ_GOV_RESUME, NULL);
}
EXPORT_SYMBOL(devfreq_resume_device);

static ssize_t show_governor(struct device *dev,
struct device_attribute *attr, char *buf)
{
Expand Down
2 changes: 2 additions & 0 deletions trunk/drivers/devfreq/governor.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#define DEVFREQ_GOV_START 0x1
#define DEVFREQ_GOV_STOP 0x2
#define DEVFREQ_GOV_INTERVAL 0x3
#define DEVFREQ_GOV_SUSPEND 0x4
#define DEVFREQ_GOV_RESUME 0x5

/* Caution: devfreq->lock must be locked before calling update_devfreq */
extern int update_devfreq(struct devfreq *devfreq);
Expand Down
9 changes: 9 additions & 0 deletions trunk/drivers/devfreq/governor_simpleondemand.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,15 @@ static int devfreq_simple_ondemand_handler(struct devfreq *devfreq,
case DEVFREQ_GOV_INTERVAL:
devfreq_interval_update(devfreq, (unsigned int *)data);
break;

case DEVFREQ_GOV_SUSPEND:
devfreq_monitor_suspend(devfreq);
break;

case DEVFREQ_GOV_RESUME:
devfreq_monitor_resume(devfreq);
break;

default:
break;
}
Expand Down
12 changes: 12 additions & 0 deletions trunk/include/linux/devfreq.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ extern struct devfreq *devfreq_add_device(struct device *dev,
const struct devfreq_governor *governor,
void *data);
extern int devfreq_remove_device(struct devfreq *devfreq);
extern int devfreq_suspend_device(struct devfreq *devfreq);
extern int devfreq_resume_device(struct devfreq *devfreq);

/* Helper functions for devfreq user device driver with OPP. */
extern struct opp *devfreq_recommended_opp(struct device *dev,
Expand Down Expand Up @@ -211,6 +213,16 @@ static int devfreq_remove_device(struct devfreq *devfreq)
return 0;
}

static int devfreq_suspend_device(struct devfreq *devfreq)
{
return 0;
}

static int devfreq_resume_device(struct devfreq *devfreq)
{
return 0;
}

static struct opp *devfreq_recommended_opp(struct device *dev,
unsigned long *freq, u32 flags)
{
Expand Down

0 comments on commit 1afa59d

Please sign in to comment.