1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (C) 2012-2018 ARM Limited or its affiliates. */
4 #include <linux/kernel.h>
5 #include <linux/interrupt.h>
6 #include <linux/pm_runtime.h>
8 #include "cc_buffer_mgr.h"
9 #include "cc_request_mgr.h"
10 #include "cc_sram_mgr.h"
16 #define POWER_DOWN_ENABLE 0x01
17 #define POWER_DOWN_DISABLE 0x00
19 const struct dev_pm_ops ccree_pm
= {
20 SET_RUNTIME_PM_OPS(cc_pm_suspend
, cc_pm_resume
, NULL
)
23 int cc_pm_suspend(struct device
*dev
)
25 struct cc_drvdata
*drvdata
= dev_get_drvdata(dev
);
27 dev_dbg(dev
, "set HOST_POWER_DOWN_EN\n");
28 fini_cc_regs(drvdata
);
29 cc_iowrite(drvdata
, CC_REG(HOST_POWER_DOWN_EN
), POWER_DOWN_ENABLE
);
34 int cc_pm_resume(struct device
*dev
)
37 struct cc_drvdata
*drvdata
= dev_get_drvdata(dev
);
39 dev_dbg(dev
, "unset HOST_POWER_DOWN_EN\n");
40 /* Enables the device source clk */
41 rc
= cc_clk_on(drvdata
);
43 dev_err(dev
, "failed getting clock back on. We're toast.\n");
47 cc_iowrite(drvdata
, CC_REG(HOST_POWER_DOWN_EN
), POWER_DOWN_DISABLE
);
48 rc
= init_cc_regs(drvdata
, false);
50 dev_err(dev
, "init_cc_regs (%x)\n", rc
);
53 /* check if tee fips error occurred during power down */
54 cc_tee_handle_fips_error(drvdata
);
56 cc_init_hash_sram(drvdata
);
58 cc_init_iv_sram(drvdata
);
62 int cc_pm_get(struct device
*dev
)
65 struct cc_drvdata
*drvdata
= dev_get_drvdata(dev
);
68 rc
= pm_runtime_get_sync(dev
);
70 return (rc
== 1 ? 0 : rc
);
73 int cc_pm_put_suspend(struct device
*dev
)
76 struct cc_drvdata
*drvdata
= dev_get_drvdata(dev
);
79 pm_runtime_mark_last_busy(dev
);
80 rc
= pm_runtime_put_autosuspend(dev
);
86 int cc_pm_init(struct cc_drvdata
*drvdata
)
88 struct device
*dev
= drvdata_to_dev(drvdata
);
90 /* must be before the enabling to avoid resdundent suspending */
91 pm_runtime_set_autosuspend_delay(dev
, CC_SUSPEND_TIMEOUT
);
92 pm_runtime_use_autosuspend(dev
);
93 /* set us as active - note we won't do PM ops until cc_pm_go()! */
94 return pm_runtime_set_active(dev
);
97 /* enable the PM module*/
98 void cc_pm_go(struct cc_drvdata
*drvdata
)
100 pm_runtime_enable(drvdata_to_dev(drvdata
));
101 drvdata
->pm_on
= true;
104 void cc_pm_fini(struct cc_drvdata
*drvdata
)
106 pm_runtime_disable(drvdata_to_dev(drvdata
));
107 drvdata
->pm_on
= false;