mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 17:25:35 +03:00
- This patch includes AON-KMD module as part of OOT kernel. Bug 3583580 Change-Id: I531731136189d76ebb4d3f2880e8f46913f390f4 Signed-off-by: Akhilesh Khumbum <akhumbum@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2870990 Reviewed-by: Robert Collins <rcollins@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
21 lines
549 B
C
21 lines
549 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2020-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*/
|
|
|
|
#ifndef INCLUDE_AON_HSP_COMBO_H
|
|
#define INCLUDE_AON_HSP_COMBO_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct tegra_aon;
|
|
|
|
int tegra_aon_hsp_sm_tx_write(struct tegra_aon *aon, u32 value);
|
|
int tegra_aon_hsp_sm_pair_request(struct tegra_aon *aon,
|
|
void (*full_notify)(void *data, u32 value),
|
|
void *pdata);
|
|
void tegra_aon_hsp_sm_pair_free(struct tegra_aon *aon);
|
|
bool tegra_aon_hsp_sm_tx_is_empty(struct tegra_aon *aon);
|
|
|
|
#endif
|