mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
84481be716
Add support for NVIDIA System Cache Fabric (SCF) and Memory Control Fabric (MCF) PMU attributes for CoreSight PMU implementation in NVIDIA devices. Acked-by: Suzuki K Poulose <suzuki.poulose@arm.com> Signed-off-by: Besar Wicaksono <bwicaksono@nvidia.com> Link: https://lore.kernel.org/r/20221111222330.48602-3-bwicaksono@nvidia.com Signed-off-by: Will Deacon <will@kernel.org>
18 lines
365 B
C
18 lines
365 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
/* Support for NVIDIA specific attributes. */
|
|
|
|
#ifndef __NVIDIA_CSPMU_H__
|
|
#define __NVIDIA_CSPMU_H__
|
|
|
|
#include "arm_cspmu.h"
|
|
|
|
/* Allocate NVIDIA descriptor. */
|
|
int nv_cspmu_init_ops(struct arm_cspmu *cspmu);
|
|
|
|
#endif /* __NVIDIA_CSPMU_H__ */
|