added print for dt parsing and removed a couple of empty braces. removed static from platform_driver struct definition. Change-Id: Ic3c6c514f501281fd981f232b4125e702570f8c7 Signed-off-by: Darshana Patil <darshana@codeaurora.org>
102 lines
3.0 KiB
C
102 lines
3.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2020, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __MSM_VIDC_DEBUG__
|
|
#define __MSM_VIDC_DEBUG__
|
|
|
|
#include <linux/debugfs.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/types.h>
|
|
#include <linux/time.h>
|
|
|
|
#ifndef VIDC_DBG_LABEL
|
|
#define VIDC_DBG_LABEL "msm_vidc"
|
|
#endif
|
|
|
|
#define VIDC_DBG_TAG VIDC_DBG_LABEL ": %6s: %08x: %5s: "
|
|
#define FW_DBG_TAG VIDC_DBG_LABEL ": %6s: "
|
|
#define DEFAULT_SID ((u32)-1)
|
|
|
|
extern int msm_vidc_debug;
|
|
extern bool msm_vidc_lossless_encode;
|
|
extern bool msm_vidc_syscache_disable;
|
|
|
|
/* To enable messages OR these values and
|
|
* echo the result to debugfs file.
|
|
*
|
|
* To enable all messages set debug_level = 0x101F
|
|
*/
|
|
|
|
enum vidc_msg_prio {
|
|
VIDC_ERR = 0x00000001,
|
|
VIDC_INFO = 0x00000001,
|
|
VIDC_HIGH = 0x00000002,
|
|
VIDC_LOW = 0x00000004,
|
|
VIDC_PERF = 0x00000008,
|
|
VIDC_PKT = 0x00000010,
|
|
VIDC_BUS = 0x00000020,
|
|
VIDC_ENCODER = 0x00000100,
|
|
VIDC_DECODER = 0x00000200,
|
|
VIDC_PRINTK = 0x00001000,
|
|
VIDC_FTRACE = 0x00002000,
|
|
FW_LOW = 0x00010000,
|
|
FW_MED = 0x00020000,
|
|
FW_HIGH = 0x00040000,
|
|
FW_ERROR = 0x00080000,
|
|
FW_FATAL = 0x00100000,
|
|
FW_PERF = 0x00200000,
|
|
FW_PRINTK = 0x10000000,
|
|
FW_FTRACE = 0x20000000,
|
|
};
|
|
#define FW_LOGSHIFT 16
|
|
#define FW_LOGMASK 0x0FFF0000
|
|
|
|
#define dprintk(__level, sid, __fmt, ...) \
|
|
do { \
|
|
pr_err(VIDC_DBG_TAG __fmt, \
|
|
"level", \
|
|
sid, \
|
|
"codec", \
|
|
##__VA_ARGS__); \
|
|
} while (0)
|
|
|
|
#define s_vpr_e(sid, __fmt, ...) dprintk(VIDC_ERR, sid, __fmt, ##__VA_ARGS__)
|
|
#define s_vpr_i(sid, __fmt, ...) dprintk(VIDC_INFO, sid, __fmt, ##__VA_ARGS__)
|
|
#define s_vpr_h(sid, __fmt, ...) dprintk(VIDC_HIGH, sid, __fmt, ##__VA_ARGS__)
|
|
#define s_vpr_l(sid, __fmt, ...) dprintk(VIDC_LOW, sid, __fmt, ##__VA_ARGS__)
|
|
#define s_vpr_p(sid, __fmt, ...) dprintk(VIDC_PERF, sid, __fmt, ##__VA_ARGS__)
|
|
#define s_vpr_t(sid, __fmt, ...) dprintk(VIDC_PKT, sid, __fmt, ##__VA_ARGS__)
|
|
#define s_vpr_b(sid, __fmt, ...) dprintk(VIDC_BUS, sid, __fmt, ##__VA_ARGS__)
|
|
#define s_vpr_hp(sid, __fmt, ...) \
|
|
dprintk(VIDC_HIGH|VIDC_PERF, sid, __fmt, ##__VA_ARGS__)
|
|
|
|
#define d_vpr_e(__fmt, ...) \
|
|
dprintk(VIDC_ERR, DEFAULT_SID, __fmt, ##__VA_ARGS__)
|
|
#define d_vpr_i(__fmt, ...) \
|
|
dprintk(VIDC_INFO, DEFAULT_SID, __fmt, ##__VA_ARGS__)
|
|
#define d_vpr_h(__fmt, ...) \
|
|
dprintk(VIDC_HIGH, DEFAULT_SID, __fmt, ##__VA_ARGS__)
|
|
#define d_vpr_l(__fmt, ...) \
|
|
dprintk(VIDC_LOW, DEFAULT_SID, __fmt, ##__VA_ARGS__)
|
|
#define d_vpr_p(__fmt, ...) \
|
|
dprintk(VIDC_PERF, DEFAULT_SID, __fmt, ##__VA_ARGS__)
|
|
#define d_vpr_t(__fmt, ...) \
|
|
dprintk(VIDC_PKT, DEFAULT_SID, __fmt, ##__VA_ARGS__)
|
|
#define d_vpr_b(__fmt, ...) \
|
|
dprintk(VIDC_BUS, DEFAULT_SID, __fmt, ##__VA_ARGS__)
|
|
|
|
#define dprintk_firmware(__level, __fmt, ...) \
|
|
do { \
|
|
pr_err(FW_DBG_TAG __fmt, \
|
|
"fw", \
|
|
##__VA_ARGS__); \
|
|
} while (0)
|
|
|
|
#define MSM_VIDC_ERROR(value) \
|
|
do { if (value) \
|
|
d_vpr_e("BugOn"); \
|
|
} while (0)
|
|
#endif
|