Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 320618
b: refs/heads/master
c: 31415d0
h: refs/heads/master
v: v3
  • Loading branch information
Manjunath Hadli authored and Mauro Carvalho Chehab committed Jul 30, 2012
1 parent bb579ec commit 4534f31
Show file tree
Hide file tree
Showing 2 changed files with 42 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: 3d5946dcfd4d221126f3f190c5ca4ea41c20f138
refs/heads/master: 31415d0ef304f26edcba4d3ae106606b83f3c22e
41 changes: 41 additions & 0 deletions trunk/drivers/media/video/davinci/vpif.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
#include <linux/spinlock.h>
#include <linux/kernel.h>
#include <linux/io.h>
#include <linux/clk.h>
#include <linux/err.h>
#include <mach/hardware.h>

#include "vpif.h"
Expand All @@ -40,6 +42,7 @@ static struct resource *res;
spinlock_t vpif_lock;

void __iomem *vpif_base;
struct clk *vpif_clk;

/**
* ch_params: video standard configuration parameters for vpif
Expand Down Expand Up @@ -434,26 +437,64 @@ static int __init vpif_probe(struct platform_device *pdev)
goto fail;
}

vpif_clk = clk_get(&pdev->dev, "vpif");
if (IS_ERR(vpif_clk)) {
status = PTR_ERR(vpif_clk);
goto clk_fail;
}
clk_enable(vpif_clk);

spin_lock_init(&vpif_lock);
dev_info(&pdev->dev, "vpif probe success\n");
return 0;

clk_fail:
iounmap(vpif_base);
fail:
release_mem_region(res->start, res_len);
return status;
}

static int __devexit vpif_remove(struct platform_device *pdev)
{
if (vpif_clk) {
clk_disable(vpif_clk);
clk_put(vpif_clk);
}

iounmap(vpif_base);
release_mem_region(res->start, res_len);
return 0;
}

#ifdef CONFIG_PM
static int vpif_suspend(struct device *dev)
{
clk_disable(vpif_clk);
return 0;
}

static int vpif_resume(struct device *dev)
{
clk_enable(vpif_clk);
return 0;
}

static const struct dev_pm_ops vpif_pm = {
.suspend = vpif_suspend,
.resume = vpif_resume,
};

#define vpif_pm_ops (&vpif_pm)
#else
#define vpif_pm_ops NULL
#endif

static struct platform_driver vpif_driver = {
.driver = {
.name = "vpif",
.owner = THIS_MODULE,
.pm = vpif_pm_ops,
},
.remove = __devexit_p(vpif_remove),
.probe = vpif_probe,
Expand Down

0 comments on commit 4534f31

Please sign in to comment.