0001
0002
0003 #ifndef __PANFROST_PERFCNT_H__
0004 #define __PANFROST_PERFCNT_H__
0005
0006 #include "panfrost_device.h"
0007
0008 void panfrost_perfcnt_sample_done(struct panfrost_device *pfdev);
0009 void panfrost_perfcnt_clean_cache_done(struct panfrost_device *pfdev);
0010 int panfrost_perfcnt_init(struct panfrost_device *pfdev);
0011 void panfrost_perfcnt_fini(struct panfrost_device *pfdev);
0012 void panfrost_perfcnt_close(struct drm_file *file_priv);
0013 int panfrost_ioctl_perfcnt_enable(struct drm_device *dev, void *data,
0014 struct drm_file *file_priv);
0015 int panfrost_ioctl_perfcnt_dump(struct drm_device *dev, void *data,
0016 struct drm_file *file_priv);
0017
0018 #endif