46 lines
1.6 KiB
C
46 lines
1.6 KiB
C
/*
|
|
*
|
|
* (C) COPYRIGHT 2011-2015 ARM Limited. All rights reserved.
|
|
*
|
|
* This program is free software and is provided to you under the terms of the
|
|
* GNU General Public License version 2 as published by the Free Software
|
|
* Foundation, and any use by you of this program is subject to the terms
|
|
* of such GNU licence.
|
|
*
|
|
* A copy of the licence is included with the program, and can also be obtained
|
|
* from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
/* NB taken from gator */
|
|
/*
|
|
* List of possible actions to be controlled by DS-5 Streamline.
|
|
* The following numbers are used by gator to control the frame buffer dumping
|
|
* and s/w counter reporting. We cannot use the enums in mali_uk_types.h because
|
|
* they are unknown inside gator.
|
|
*/
|
|
#ifndef _KBASE_GATOR_H_
|
|
#define _KBASE_GATOR_H_
|
|
|
|
#ifdef CONFIG_MALI_GATOR_SUPPORT
|
|
#define GATOR_MAKE_EVENT(type, number) (((type) << 24) | ((number) << 16))
|
|
#define GATOR_JOB_SLOT_START 1
|
|
#define GATOR_JOB_SLOT_STOP 2
|
|
#define GATOR_JOB_SLOT_SOFT_STOPPED 3
|
|
|
|
void kbase_trace_mali_job_slots_event(u32 event, const struct kbase_context *kctx, u8 atom_id);
|
|
void kbase_trace_mali_pm_status(u32 event, u64 value);
|
|
void kbase_trace_mali_pm_power_off(u32 event, u64 value);
|
|
void kbase_trace_mali_pm_power_on(u32 event, u64 value);
|
|
void kbase_trace_mali_page_fault_insert_pages(int event, u32 value);
|
|
void kbase_trace_mali_mmu_as_in_use(int event);
|
|
void kbase_trace_mali_mmu_as_released(int event);
|
|
void kbase_trace_mali_total_alloc_pages_change(long long int event);
|
|
|
|
#endif /* CONFIG_MALI_GATOR_SUPPORT */
|
|
|
|
#endif /* _KBASE_GATOR_H_ */
|