Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/drivers/accel/amdxdna/amdxdna_pm.h
38189 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* Copyright (C) 2025, Advanced Micro Devices, Inc.
4
*/
5
6
#ifndef _AMDXDNA_PM_H_
7
#define _AMDXDNA_PM_H_
8
9
#include "amdxdna_pci_drv.h"
10
11
int amdxdna_pm_suspend(struct device *dev);
12
int amdxdna_pm_resume(struct device *dev);
13
int amdxdna_pm_resume_get(struct amdxdna_dev *xdna);
14
void amdxdna_pm_suspend_put(struct amdxdna_dev *xdna);
15
void amdxdna_pm_init(struct amdxdna_dev *xdna);
16
void amdxdna_pm_fini(struct amdxdna_dev *xdna);
17
18
#endif /* _AMDXDNA_PM_H_ */
19
20