blob: 85eed037ccb6bb5aa3f97247beb9f0c5a89d00fa [file] [log] [blame]
Junzhe Zou26abf772017-07-05 10:36:43 -07001/* Copyright (c) 2017, The Linux Foundation. All rights reserved.
Junzhe Zou263a87d2017-06-08 16:06:25 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#ifndef _CAM_DEBUG_UTIL_H_
14#define _CAM_DEBUG_UTIL_H_
15
Jigarkumar Zalacbb5a382017-07-17 19:06:42 -070016#define CAM_CDM (1 << 0)
17#define CAM_CORE (1 << 1)
18#define CAM_CPAS (1 << 2)
19#define CAM_ISP (1 << 3)
20#define CAM_CRM (1 << 4)
21#define CAM_SENSOR (1 << 5)
22#define CAM_SMMU (1 << 6)
23#define CAM_SYNC (1 << 7)
24#define CAM_ICP (1 << 8)
25#define CAM_JPEG (1 << 9)
26#define CAM_FD (1 << 10)
27#define CAM_LRME (1 << 11)
28#define CAM_FLASH (1 << 12)
29#define CAM_ACTUATOR (1 << 13)
30#define CAM_CCI (1 << 14)
31#define CAM_CSIPHY (1 << 15)
32#define CAM_EEPROM (1 << 16)
Pavan Kumar Chilamkurthieb8833c2017-07-15 19:44:13 -070033#define CAM_UTIL (1 << 17)
Junzhe Zou263a87d2017-06-08 16:06:25 -070034
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070035#define STR_BUFFER_MAX_LENGTH 1024
Junzhe Zou263a87d2017-06-08 16:06:25 -070036
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070037enum cam_debug_level {
38 CAM_LEVEL_INFO,
39 CAM_LEVEL_WARN,
40 CAM_LEVEL_ERR,
41 CAM_LEVEL_DBG,
42};
Junzhe Zou263a87d2017-06-08 16:06:25 -070043
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070044/*
45 * cam_debug_log()
46 *
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070047 * @brief : Get the Module name from module ID and print
48 * respective debug logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070049 *
50 * @module_id : Respective Module ID which is calling this function
51 * @dbg_level : Debug level from cam_module_debug_level enum entries
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070052 * @func : Function which is calling to print logs
53 * @line : Line number associated with the function which is calling
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070054 * to print log
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070055 * @fmt : Formatted string which needs to be print in the log
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070056 *
57 */
58void cam_debug_log(unsigned int module_id, enum cam_debug_level dbg_level,
59 const char *func, const int line, const char *fmt, ...);
Junzhe Zou263a87d2017-06-08 16:06:25 -070060
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070061/*
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070062 * cam_get_module_name()
63 *
64 * @brief : Get the module name from module ID
65 *
66 * @module_id : Module ID which is using this function
67 */
68const char *cam_get_module_name(unsigned int module_id);
69
70/*
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070071 * CAM_ERR
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070072 * @brief : This Macro will print error logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070073 *
74 * @__module : Respective module id which is been calling this Macro
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070075 * @fmt : Formatted string which needs to be print in log
76 * @args : Arguments which needs to be print in log
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070077 */
78#define CAM_ERR(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070079 cam_debug_log(__module, CAM_LEVEL_ERR, __func__, __LINE__, fmt, ##args)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070080
81/*
82 * CAM_WARN
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070083 * @brief : This Macro will print warning logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070084 *
85 * @__module : Respective module id which is been calling this Macro
86 * @fmt : Formatted string which needs to be print in log
87 * @args : Arguments which needs to be print in log
88 */
89#define CAM_WARN(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070090 cam_debug_log(__module, CAM_LEVEL_WARN, __func__, __LINE__, fmt, ##args)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070091
92/*
93 * CAM_INFO
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070094 * @brief : This Macro will print Information logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070095 *
96 * @__module : Respective module id which is been calling this Macro
97 * @fmt : Formatted string which needs to be print in log
98 * @args : Arguments which needs to be print in log
99 */
100#define CAM_INFO(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -0700101 cam_debug_log(__module, CAM_LEVEL_INFO, __func__, __LINE__, fmt, ##args)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -0700102
103/*
104 * CAM_DBG
105 * @brief : This Macro will print debug logs when enabled using GROUP
106 *
107 * @__module : Respective module id which is been calling this Macro
108 * @fmt : Formatted string which needs to be print in log
109 * @args : Arguments which needs to be print in log
110 */
111#define CAM_DBG(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -0700112 cam_debug_log(__module, CAM_LEVEL_DBG, __func__, __LINE__, fmt, ##args)
113
114/*
115 * CAM_ERR_RATE_LIMIT
116 * @brief : This Macro will prevent error print logs with ratelimit
117 */
118#define CAM_ERR_RATE_LIMIT(__module, fmt, args...) \
119 pr_err_ratelimited("CAM_ERR: %s: %s: %d\n" fmt, \
120 cam_get_module_name(__module), __func__, __LINE__, ##args)
Junzhe Zou263a87d2017-06-08 16:06:25 -0700121
122#endif /* _CAM_DEBUG_UTIL_H_ */