1 /*******************************************************************************
2     Copyright (c) 2017-2024 NVIDIA Corporation
3 
4     Permission is hereby granted, free of charge, to any person obtaining a copy
5     of this software and associated documentation files (the "Software"), to
6     deal in the Software without restriction, including without limitation the
7     rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8     sell copies of the Software, and to permit persons to whom the Software is
9     furnished to do so, subject to the following conditions:
10 
11         The above copyright notice and this permission notice shall be
12         included in all copies or substantial portions of the Software.
13 
14     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17     THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20     DEALINGS IN THE SOFTWARE.
21 *******************************************************************************/
22 
23 #ifndef __UVM_GPU_ACCESS_COUNTERS_H__
24 #define __UVM_GPU_ACCESS_COUNTERS_H__
25 
26 #include "uvm_common.h"
27 #include "uvm_forward_decl.h"
28 #include "uvm_test_ioctl.h"
29 
30 NV_STATUS uvm_parent_gpu_init_access_counters(uvm_parent_gpu_t *parent_gpu);
31 void uvm_parent_gpu_deinit_access_counters(uvm_parent_gpu_t *parent_gpu);
32 bool uvm_parent_gpu_access_counters_pending(uvm_parent_gpu_t *parent_gpu);
33 
34 void uvm_gpu_service_access_counters(uvm_gpu_t *gpu);
35 
36 void uvm_parent_gpu_access_counter_buffer_flush(uvm_parent_gpu_t *parent_gpu);
37 
38 // Ignore or unignore access counters notifications. Ignoring means that the
39 // bottom half is a no-op which just leaves notifications in the HW buffer
40 // without being serviced and without inspecting any SW state.
41 //
42 // To avoid interrupt storms, access counter interrupts will be disabled while
43 // ignored. Access counter bottom halves may still be scheduled in the top half
44 // when other interrupts arrive and the top half sees that there are also
45 // pending access counter notifications.
46 //
47 // When uningoring, the interrupt conditions will be re-evaluated to trigger
48 // processing of buffered notifications, if any exist.
49 void uvm_parent_gpu_access_counters_set_ignore(uvm_parent_gpu_t *parent_gpu, bool do_ignore);
50 
51 // Return whether the VA space has access counter migrations enabled. The
52 // caller must ensure that the VA space cannot go away.
53 bool uvm_va_space_has_access_counter_migrations(uvm_va_space_t *va_space);
54 
55 // Global perf initialization/cleanup functions
56 NV_STATUS uvm_perf_access_counters_init(void);
57 void uvm_perf_access_counters_exit(void);
58 
59 // VA space Initialization/cleanup functions. See comments in
60 // uvm_perf_heuristics.h
61 NV_STATUS uvm_perf_access_counters_load(uvm_va_space_t *va_space);
62 void uvm_perf_access_counters_unload(uvm_va_space_t *va_space);
63 
64 // Check whether access counters should be enabled when the given GPU is
65 // registered on any VA space.
66 bool uvm_parent_gpu_access_counters_required(const uvm_parent_gpu_t *parent_gpu);
67 
68 // Functions used to enable/disable access counters on a GPU in the given VA
69 // space.
70 //
71 // A per-GPU reference counter tracks the number of VA spaces in which access
72 // counters are currently enabled. The hardware notifications and interrupts on
73 // the GPU are enabled the first time any VA space invokes
74 // uvm_gpu_access_counters_enable, and disabled when the last VA space invokes
75 // uvm_parent_gpu_access_counters_disable().
76 //
77 // Locking: the VA space lock must not be held by the caller since these
78 // functions may take the access counters ISR lock.
79 NV_STATUS uvm_gpu_access_counters_enable(uvm_gpu_t *gpu, uvm_va_space_t *va_space);
80 void uvm_parent_gpu_access_counters_disable(uvm_parent_gpu_t *parent_gpu, uvm_va_space_t *va_space);
81 
82 NV_STATUS uvm_test_access_counters_enabled_by_default(UVM_TEST_ACCESS_COUNTERS_ENABLED_BY_DEFAULT_PARAMS *params,
83                                                       struct file *filp);
84 NV_STATUS uvm_test_reconfigure_access_counters(UVM_TEST_RECONFIGURE_ACCESS_COUNTERS_PARAMS *params, struct file *filp);
85 NV_STATUS uvm_test_reset_access_counters(UVM_TEST_RESET_ACCESS_COUNTERS_PARAMS *params, struct file *filp);
86 NV_STATUS uvm_test_set_ignore_access_counters(UVM_TEST_SET_IGNORE_ACCESS_COUNTERS_PARAMS *params, struct file *filp);
87 
88 #endif // __UVM_GPU_ACCESS_COUNTERS_H__
89