1 /* 2 * 3 * (C) COPYRIGHT 2014-2016 ARM Limited. All rights reserved. 4 * 5 * This program is free software and is provided to you under the terms of the 6 * GNU General Public License version 2 as published by the Free Software 7 * Foundation, and any use by you of this program is subject to the terms 8 * of such GNU licence. 9 * 10 * A copy of the licence is included with the program, and can also be obtained 11 * from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 12 * Boston, MA 02110-1301, USA. 13 * 14 */ 15 16 17 18 /** 19 * @file mali_kbase_jd_debugfs.h 20 * Header file for job dispatcher-related entries in debugfs 21 */ 22 23 #ifndef _KBASE_JD_DEBUGFS_H 24 #define _KBASE_JD_DEBUGFS_H 25 26 #include <linux/debugfs.h> 27 28 #include <mali_kbase.h> 29 30 #define MALI_JD_DEBUGFS_VERSION 2 31 32 /** 33 * kbasep_jd_debugfs_ctx_init() - Add debugfs entries for JD system 34 * 35 * @kctx Pointer to kbase_context 36 */ 37 void kbasep_jd_debugfs_ctx_init(struct kbase_context *kctx); 38 39 #endif /*_KBASE_JD_DEBUGFS_H*/ 40