blob: b542b67da745954c881ea13cfc35f684112856b3 [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
Junzhe Zou263a87d2017-06-08 16:06:25 -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)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070028#define CAM_FLASH (1 << 12)
Junzhe Zou263a87d2017-06-08 16:06:25 -070029
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070030#define STR_BUFFER_MAX_LENGTH 1024
Junzhe Zou263a87d2017-06-08 16:06:25 -070031
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070032enum cam_debug_level {
33 CAM_LEVEL_INFO,
34 CAM_LEVEL_WARN,
35 CAM_LEVEL_ERR,
36 CAM_LEVEL_DBG,
37};
Junzhe Zou263a87d2017-06-08 16:06:25 -070038
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070039/*
40 * cam_debug_log()
41 *
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070042 * @brief : Get the Module name from module ID and print
43 * respective debug logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070044 *
45 * @module_id : Respective Module ID which is calling this function
46 * @dbg_level : Debug level from cam_module_debug_level enum entries
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070047 * @func : Function which is calling to print logs
48 * @line : Line number associated with the function which is calling
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070049 * to print log
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070050 * @fmt : Formatted string which needs to be print in the log
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070051 *
52 */
53void cam_debug_log(unsigned int module_id, enum cam_debug_level dbg_level,
54 const char *func, const int line, const char *fmt, ...);
Junzhe Zou263a87d2017-06-08 16:06:25 -070055
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070056/*
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070057 * cam_get_module_name()
58 *
59 * @brief : Get the module name from module ID
60 *
61 * @module_id : Module ID which is using this function
62 */
63const char *cam_get_module_name(unsigned int module_id);
64
65/*
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070066 * CAM_ERR
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070067 * @brief : This Macro will print error logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070068 *
69 * @__module : Respective module id which is been calling this Macro
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070070 * @fmt : Formatted string which needs to be print in log
71 * @args : Arguments which needs to be print in log
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070072 */
73#define CAM_ERR(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070074 cam_debug_log(__module, CAM_LEVEL_ERR, __func__, __LINE__, fmt, ##args)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070075
76/*
77 * CAM_WARN
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070078 * @brief : This Macro will print warning logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070079 *
80 * @__module : Respective module id which is been calling this Macro
81 * @fmt : Formatted string which needs to be print in log
82 * @args : Arguments which needs to be print in log
83 */
84#define CAM_WARN(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070085 cam_debug_log(__module, CAM_LEVEL_WARN, __func__, __LINE__, fmt, ##args)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070086
87/*
88 * CAM_INFO
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070089 * @brief : This Macro will print Information logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070090 *
91 * @__module : Respective module id which is been calling this Macro
92 * @fmt : Formatted string which needs to be print in log
93 * @args : Arguments which needs to be print in log
94 */
95#define CAM_INFO(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070096 cam_debug_log(__module, CAM_LEVEL_INFO, __func__, __LINE__, fmt, ##args)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070097
98/*
99 * CAM_DBG
100 * @brief : This Macro will print debug logs when enabled using GROUP
101 *
102 * @__module : Respective module id which is been calling this Macro
103 * @fmt : Formatted string which needs to be print in log
104 * @args : Arguments which needs to be print in log
105 */
106#define CAM_DBG(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -0700107 cam_debug_log(__module, CAM_LEVEL_DBG, __func__, __LINE__, fmt, ##args)
108
109/*
110 * CAM_ERR_RATE_LIMIT
111 * @brief : This Macro will prevent error print logs with ratelimit
112 */
113#define CAM_ERR_RATE_LIMIT(__module, fmt, args...) \
114 pr_err_ratelimited("CAM_ERR: %s: %s: %d\n" fmt, \
115 cam_get_module_name(__module), __func__, __LINE__, ##args)
Junzhe Zou263a87d2017-06-08 16:06:25 -0700116
117#endif /* _CAM_DEBUG_UTIL_H_ */