Skip to content

Commit

Permalink
mtd: spi-nor: atmel-quadspi: add suspend/resume hooks
Browse files Browse the repository at this point in the history
Implement suspend/resume hooks.

Signed-off-by: Claudiu Beznea <[email protected]>
Reviewed-by: Tudor Ambarus <[email protected]>
Signed-off-by: Boris Brezillon <[email protected]>
  • Loading branch information
claudiubeznea authored and Boris Brezillon committed Aug 1, 2018
1 parent 38ebbe2 commit de217c1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions drivers/mtd/spi-nor/atmel-quadspi.c
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,26 @@ static int atmel_qspi_remove(struct platform_device *pdev)
return 0;
}

static int __maybe_unused atmel_qspi_suspend(struct device *dev)
{
struct atmel_qspi *aq = dev_get_drvdata(dev);

clk_disable_unprepare(aq->clk);

return 0;
}

static int __maybe_unused atmel_qspi_resume(struct device *dev)
{
struct atmel_qspi *aq = dev_get_drvdata(dev);

clk_prepare_enable(aq->clk);

return atmel_qspi_init(aq);
}

static SIMPLE_DEV_PM_OPS(atmel_qspi_pm_ops, atmel_qspi_suspend,
atmel_qspi_resume);

static const struct of_device_id atmel_qspi_dt_ids[] = {
{ .compatible = "atmel,sama5d2-qspi" },
Expand All @@ -749,6 +769,7 @@ static struct platform_driver atmel_qspi_driver = {
.driver = {
.name = "atmel_qspi",
.of_match_table = atmel_qspi_dt_ids,
.pm = &atmel_qspi_pm_ops,
},
.probe = atmel_qspi_probe,
.remove = atmel_qspi_remove,
Expand Down

0 comments on commit de217c1

Please sign in to comment.