summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/css_gr_gk20a.c
diff options
context:
space:
mode:
authorAntony Clince Alex <aalex@nvidia.com>2018-05-28 06:35:58 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-06-15 00:41:22 -0400
commitd27d9ff7a89ab1a590a9cc8367af7f3a3ea698a8 (patch)
treeae4220f4ab040c702b39c6e9f1559342e3d569fa /drivers/gpu/nvgpu/gk20a/css_gr_gk20a.c
parent4d94b32d01e66cb0ba2799775ce2d79c5ff0f2ec (diff)
gpu: nvgpu: removed linux includes from CSS HAL
- removed inclusion of linux includes. - replaced with nvgpu/*.h's - reformated the function signature of "css_hw_get_pending_snapshot" and "css_hw_get_overflow_status" be global instead of static. - added get_pending_snapshot and get_overflow_status to ops->css. JIRA: VQRM-3699 Change-Id: I177904c263e143b414924c2c28ad6fd3cfd00132 Signed-off-by: Antony Clince Alex <aalex@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1732783 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/css_gr_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/css_gr_gk20a.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/css_gr_gk20a.c b/drivers/gpu/nvgpu/gk20a/css_gr_gk20a.c
index 0fc39bf4..764ffe1a 100644
--- a/drivers/gpu/nvgpu/gk20a/css_gr_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/css_gr_gk20a.c
@@ -22,9 +22,6 @@
22 * DEALINGS IN THE SOFTWARE. 22 * DEALINGS IN THE SOFTWARE.
23 */ 23 */
24 24
25#include <linux/dma-mapping.h>
26#include <linux/dma-buf.h>
27
28#include <nvgpu/bitops.h> 25#include <nvgpu/bitops.h>
29#include <nvgpu/kmem.h> 26#include <nvgpu/kmem.h>
30#include <nvgpu/lock.h> 27#include <nvgpu/lock.h>
@@ -61,14 +58,14 @@
61#define CSS_MAX_PERFMON_IDS 256 58#define CSS_MAX_PERFMON_IDS 256
62 59
63/* reports whether the hw queue overflowed */ 60/* reports whether the hw queue overflowed */
64static inline bool css_hw_get_overflow_status(struct gk20a *g) 61bool css_hw_get_overflow_status(struct gk20a *g)
65{ 62{
66 const u32 st = perf_pmasys_control_membuf_status_overflowed_f(); 63 const u32 st = perf_pmasys_control_membuf_status_overflowed_f();
67 return st == (gk20a_readl(g, perf_pmasys_control_r()) & st); 64 return st == (gk20a_readl(g, perf_pmasys_control_r()) & st);
68} 65}
69 66
70/* returns how many pending snapshot entries are pending */ 67/* returns how many pending snapshot entries are pending */
71static inline u32 css_hw_get_pending_snapshots(struct gk20a *g) 68u32 css_hw_get_pending_snapshots(struct gk20a *g)
72{ 69{
73 return gk20a_readl(g, perf_pmasys_mem_bytes_r()) / 70 return gk20a_readl(g, perf_pmasys_mem_bytes_r()) /
74 sizeof(struct gk20a_cs_snapshot_fifo_entry); 71 sizeof(struct gk20a_cs_snapshot_fifo_entry);
@@ -245,7 +242,7 @@ static void css_gr_free_shared_data(struct gr_gk20a *gr)
245} 242}
246 243
247 244
248static struct gk20a_cs_snapshot_client* 245struct gk20a_cs_snapshot_client*
249css_gr_search_client(struct nvgpu_list_node *clients, u32 perfmon) 246css_gr_search_client(struct nvgpu_list_node *clients, u32 perfmon)
250{ 247{
251 struct gk20a_cs_snapshot_client *client; 248 struct gk20a_cs_snapshot_client *client;