mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
Bug 4165184 Change-Id: Id5d570cc4e5c3364d696271b1333e47e02e17b9e Signed-off-by: Chris Dragan <kdragan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2976924 Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
23 lines
505 B
C
23 lines
505 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* SPDX-FileCopyrightText: Copyright (c) 2019-2023, NVIDIA CORPORATION. All rights reserved. */
|
|
|
|
#include "mods_internal.h"
|
|
|
|
void enable_cpu_core_reporting(u64 config);
|
|
|
|
/*Set the ERR_SEL register to choose the
|
|
*node for which to enable/disable errors for
|
|
*/
|
|
void set_err_sel(u64 sel_val);
|
|
|
|
/*Set the ERR_CTRL register selected
|
|
*by ERR_SEL
|
|
*/
|
|
void set_err_ctrl(u64 ctrl_val);
|
|
|
|
/*Get the ERR_CTRL register selected
|
|
*by ERR_SEL
|
|
*/
|
|
u64 get_err_ctrl(void);
|
|
|