mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 01:31:30 +03:00
Add tegra-epl driver. It is used to report software detected errors via HSP mailbox or MISC-EC registers to safety service module running on the Functional Safety Island (FSI) Bug 3583609 Change-Id: I5bd3e4bd261d00a353743b01c83ed8df6f00e90a Signed-off-by: Rahul Bedarkar <rabedarkar@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2710277 Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> GVS: Gerrit_Virtual_Submit
15 lines
333 B
C
15 lines
333 B
C
/* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note)
|
|
*
|
|
* Copyright (c) 2021-2022, NVIDIA CORPORATION, All rights reserved.
|
|
*/
|
|
|
|
#ifndef _UAPI_TEGRA_EPL_H_
|
|
#define _UAPI_TEGRA_EPL_H_
|
|
|
|
#include <linux/ioctl.h>
|
|
|
|
/* ioctl call macros */
|
|
#define EPL_REPORT_ERROR_CMD _IOWR('q', 1, uint8_t *)
|
|
|
|
#endif /* _UAPI_TEGRA_EPL_H_ */
|