Snapshot of the Qualcom Adreno GPU driver (KGSL) as of msm-3.18 commit commit e70ad0cd5efd ("Promotion of kernel.lnx.3.18-151201."). Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org>
13 lines
391 B
C
13 lines
391 B
C
#ifndef _MSM_KGSL_H
|
|
#define _MSM_KGSL_H
|
|
|
|
#include <uapi/linux/msm_kgsl.h>
|
|
|
|
/* Limits mitigations APIs */
|
|
void *kgsl_pwr_limits_add(enum kgsl_deviceid id);
|
|
void kgsl_pwr_limits_del(void *limit);
|
|
int kgsl_pwr_limits_set_freq(void *limit, unsigned int freq);
|
|
void kgsl_pwr_limits_set_default(void *limit);
|
|
unsigned int kgsl_pwr_limits_get_freq(enum kgsl_deviceid id);
|
|
|
|
#endif /* _MSM_KGSL_H */
|