mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
Using this patch we are adding support for tegra hv pm_ctrl driver in oot kernel. JIRA ESLC-6885 Signed-off-by: Manish Bhardwaj <mbhardwaj@nvidia.com> Change-Id: I33ee6d72e6f66edfdb5cd1eab9fc564e184f280f Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2763830 Reviewed-by: Suresh Venkatachalam <skathirampat@nvidia.com> Reviewed-by: Bitan Biswas <bbiswas@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
16 lines
413 B
C
16 lines
413 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _TEGRA_HV_PM_CTL_H
|
|
#define _TEGRA_HV_PM_CTL_H
|
|
|
|
extern int (*tegra_hv_pm_ctl_prepare_shutdown)(void);
|
|
|
|
int tegra_hv_pm_ctl_trigger_sys_suspend(void);
|
|
int tegra_hv_pm_ctl_trigger_sys_shutdown(void);
|
|
int tegra_hv_pm_ctl_trigger_sys_reboot(void);
|
|
|
|
#endif /* _TEGRA_HV_PM_CTL_H */
|