diff --git a/drivers/platform/tegra/tegra-hsierrrptinj.c b/drivers/platform/tegra/tegra-hsierrrptinj.c index eaeaa96a684c..c1db52f20adc 100644 --- a/drivers/platform/tegra/tegra-hsierrrptinj.c +++ b/drivers/platform/tegra/tegra-hsierrrptinj.c @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.*/ +/* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.*/ /** * @file tegra-hsierrrptinj.c @@ -74,8 +74,9 @@ struct hsm_error_report_frame { * TSEC - 1 * THERM - 1 * SMMU - 1 + * DLA - 2 */ -static unsigned int ip_instances[NUM_IPS] = {1, 1, 1, 4, 11, 1, 10, 2, 2, 1, 1, 1}; +static unsigned int ip_instances[NUM_IPS] = {1, 1, 1, 4, 11, 1, 10, 2, 2, 1, 1, 1, 2}; /* This directory entry will point to `/sys/kernel/debug/tegra_hsierrrptinj`. */ static struct dentry *hsierrrptinj_debugfs_root; diff --git a/include/linux/tegra-hsierrrptinj.h b/include/linux/tegra-hsierrrptinj.h index e8ba5503af2a..a31bb5abb48a 100644 --- a/include/linux/tegra-hsierrrptinj.h +++ b/include/linux/tegra-hsierrrptinj.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 -/* Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.*/ +/* Copyright (c) 2021-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.*/ /** * @file tegra-hsierrrptinj.h @@ -18,7 +18,7 @@ /* ==================[Type Definitions]===================================== */ /* Number of registered IPs */ -#define NUM_IPS 12U +#define NUM_IPS 13U /** * @brief IP IDs @@ -38,6 +38,7 @@ IP_SDMMC = 0x0008, IP_TSEC = 0x0009, IP_THERM = 0x000A, IP_SMMU = 0x000B, +IP_DLA = 0x000C, IP_EC = 0x00FC, IP_SC7 = 0x00FD,