blob: 498315b8c6558c28a2233ff824ae5bc2af8e5ce4 [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)
Junzhe Zou263a87d2017-06-08 16:06:25 -070033
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070034#define STR_BUFFER_MAX_LENGTH 1024
Junzhe Zou263a87d2017-06-08 16:06:25 -070035
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070036enum cam_debug_level {
37 CAM_LEVEL_INFO,
38 CAM_LEVEL_WARN,
39 CAM_LEVEL_ERR,
40 CAM_LEVEL_DBG,
41};
Junzhe Zou263a87d2017-06-08 16:06:25 -070042
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070043/*
44 * cam_debug_log()
45 *
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070046 * @brief : Get the Module name from module ID and print
47 * respective debug logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070048 *
49 * @module_id : Respective Module ID which is calling this function
50 * @dbg_level : Debug level from cam_module_debug_level enum entries
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070051 * @func : Function which is calling to print logs
52 * @line : Line number associated with the function which is calling
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070053 * to print log
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070054 * @fmt : Formatted string which needs to be print in the log
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070055 *
56 */
57void cam_debug_log(unsigned int module_id, enum cam_debug_level dbg_level,
58 const char *func, const int line, const char *fmt, ...);
Junzhe Zou263a87d2017-06-08 16:06:25 -070059
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070060/*
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070061 * cam_get_module_name()
62 *
63 * @brief : Get the module name from module ID
64 *
65 * @module_id : Module ID which is using this function
66 */
67const char *cam_get_module_name(unsigned int module_id);
68
69/*
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070070 * CAM_ERR
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070071 * @brief : This Macro will print error logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070072 *
73 * @__module : Respective module id which is been calling this Macro
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070074 * @fmt : Formatted string which needs to be print in log
75 * @args : Arguments which needs to be print in log
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070076 */
77#define CAM_ERR(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070078 cam_debug_log(__module, CAM_LEVEL_ERR, __func__, __LINE__, fmt, ##args)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070079
80/*
81 * CAM_WARN
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070082 * @brief : This Macro will print warning logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070083 *
84 * @__module : Respective module id which is been calling this Macro
85 * @fmt : Formatted string which needs to be print in log
86 * @args : Arguments which needs to be print in log
87 */
88#define CAM_WARN(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070089 cam_debug_log(__module, CAM_LEVEL_WARN, __func__, __LINE__, fmt, ##args)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070090
91/*
92 * CAM_INFO
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -070093 * @brief : This Macro will print Information logs
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -070094 *
95 * @__module : Respective module id which is been calling this Macro
96 * @fmt : Formatted string which needs to be print in log
97 * @args : Arguments which needs to be print in log
98 */
99#define CAM_INFO(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -0700100 cam_debug_log(__module, CAM_LEVEL_INFO, __func__, __LINE__, fmt, ##args)
Jigarkumar Zaladdcb9d32017-06-23 16:21:33 -0700101
102/*
103 * CAM_DBG
104 * @brief : This Macro will print debug logs when enabled using GROUP
105 *
106 * @__module : Respective module id which is been calling this Macro
107 * @fmt : Formatted string which needs to be print in log
108 * @args : Arguments which needs to be print in log
109 */
110#define CAM_DBG(__module, fmt, args...) \
Jigarkumar Zala0fbb1d92017-07-11 18:55:58 -0700111 cam_debug_log(__module, CAM_LEVEL_DBG, __func__, __LINE__, fmt, ##args)
112
113/*
114 * CAM_ERR_RATE_LIMIT
115 * @brief : This Macro will prevent error print logs with ratelimit
116 */
117#define CAM_ERR_RATE_LIMIT(__module, fmt, args...) \
118 pr_err_ratelimited("CAM_ERR: %s: %s: %d\n" fmt, \
119 cam_get_module_name(__module), __func__, __LINE__, ##args)
Junzhe Zou263a87d2017-06-08 16:06:25 -0700120
121#endif /* _CAM_DEBUG_UTIL_H_ */