You need to sign in or sign up before continuing.
提交 71c78976 编写于 作者: D Dafna Hirschfeld 提交者: Mauro Carvalho Chehab

media: mtk-vcodec: fix debugging defines

The mtk-vcodec uses some internal defined debug formats for
printing. This patch fixes some things in those defines:

1. use the 'pr_fmt' define to print function name and line.

2. remove 'if(DEBUG)' condition for the defines. This condition
prevents the debugs from being shown in case of dynamic debugs.
Instead replace 'pr_info' with 'pr_debug'

3. remove module parameters that enable/disable debug.
There is no reason for the driver to have those params. Having
those params require the user to explicitly set them when user
wants to see debug prints instead of using the global debugs
setting as expected by drivers to conform.

In addition to that, fix some warnings about debug formatting

[hverkuil: used %zu instead of %lu for sizeof() arguments]
Signed-off-by: NDafna Hirschfeld <dafna.hirschfeld@collabora.com>
Reported-by: Nkernel test robot <lkp@intel.com>
Signed-off-by: NHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: NMauro Carvalho Chehab <mchehab+huawei@kernel.org>
上级 9f89c881
...@@ -28,9 +28,6 @@ ...@@ -28,9 +28,6 @@
#define VDEC_IRQ_CLR 0x10 #define VDEC_IRQ_CLR 0x10
#define VDEC_IRQ_CFG_REG 0xa4 #define VDEC_IRQ_CFG_REG 0xa4
module_param(mtk_v4l2_dbg_level, int, 0644);
module_param(mtk_vcodec_dbg, bool, 0644);
/* Wake up context wait_queue */ /* Wake up context wait_queue */
static void wake_up_ctx(struct mtk_vcodec_ctx *ctx) static void wake_up_ctx(struct mtk_vcodec_ctx *ctx)
{ {
......
...@@ -23,9 +23,6 @@ ...@@ -23,9 +23,6 @@
#include "mtk_vcodec_util.h" #include "mtk_vcodec_util.h"
#include "mtk_vcodec_fw.h" #include "mtk_vcodec_fw.h"
module_param(mtk_v4l2_dbg_level, int, S_IRUGO | S_IWUSR);
module_param(mtk_vcodec_dbg, bool, S_IRUGO | S_IWUSR);
static const struct mtk_video_fmt mtk_video_formats_output[] = { static const struct mtk_video_fmt mtk_video_formats_output[] = {
{ {
.fourcc = V4L2_PIX_FMT_NV12M, .fourcc = V4L2_PIX_FMT_NV12M,
......
...@@ -10,16 +10,6 @@ ...@@ -10,16 +10,6 @@
#include "mtk_vcodec_drv.h" #include "mtk_vcodec_drv.h"
#include "mtk_vcodec_util.h" #include "mtk_vcodec_util.h"
/* For encoder, this will enable logs in venc/*/
bool mtk_vcodec_dbg;
EXPORT_SYMBOL(mtk_vcodec_dbg);
/* The log level of v4l2 encoder or decoder driver.
* That is, files under mtk-vcodec/.
*/
int mtk_v4l2_dbg_level;
EXPORT_SYMBOL(mtk_v4l2_dbg_level);
void __iomem *mtk_vcodec_get_reg_addr(struct mtk_vcodec_ctx *data, void __iomem *mtk_vcodec_get_reg_addr(struct mtk_vcodec_ctx *data,
unsigned int reg_idx) unsigned int reg_idx)
{ {
......
...@@ -25,54 +25,29 @@ struct mtk_vcodec_fb { ...@@ -25,54 +25,29 @@ struct mtk_vcodec_fb {
struct mtk_vcodec_ctx; struct mtk_vcodec_ctx;
struct mtk_vcodec_dev; struct mtk_vcodec_dev;
extern int mtk_v4l2_dbg_level; #undef pr_fmt
extern bool mtk_vcodec_dbg; #define pr_fmt(fmt) "%s(),%d: " fmt, __func__, __LINE__
#define mtk_v4l2_err(fmt, args...) \ #define mtk_v4l2_err(fmt, args...) \
pr_err("[MTK_V4L2][ERROR] %s:%d: " fmt "\n", __func__, __LINE__, \ pr_err("[MTK_V4L2][ERROR] " fmt "\n", ##args)
##args)
#define mtk_vcodec_err(h, fmt, args...) \
pr_err("[MTK_VCODEC][ERROR][%d]: %s() " fmt "\n", \
((struct mtk_vcodec_ctx *)h->ctx)->id, __func__, ##args)
#define mtk_vcodec_err(h, fmt, args...) \
pr_err("[MTK_VCODEC][ERROR][%d]: " fmt "\n", \
((struct mtk_vcodec_ctx *)(h)->ctx)->id, ##args)
#if defined(DEBUG)
#define mtk_v4l2_debug(level, fmt, args...) \ #define mtk_v4l2_debug(level, fmt, args...) pr_debug(fmt, ##args)
do { \
if (mtk_v4l2_dbg_level >= level) \
pr_info("[MTK_V4L2] level=%d %s(),%d: " fmt "\n",\
level, __func__, __LINE__, ##args); \
} while (0)
#define mtk_v4l2_debug_enter() mtk_v4l2_debug(3, "+") #define mtk_v4l2_debug_enter() mtk_v4l2_debug(3, "+")
#define mtk_v4l2_debug_leave() mtk_v4l2_debug(3, "-") #define mtk_v4l2_debug_leave() mtk_v4l2_debug(3, "-")
#define mtk_vcodec_debug(h, fmt, args...) \ #define mtk_vcodec_debug(h, fmt, args...) \
do { \ pr_debug("[MTK_VCODEC][%d]: " fmt "\n", \
if (mtk_vcodec_dbg) \ ((struct mtk_vcodec_ctx *)(h)->ctx)->id, ##args)
pr_info("[MTK_VCODEC][%d]: %s() " fmt "\n", \
((struct mtk_vcodec_ctx *)h->ctx)->id, \
__func__, ##args); \
} while (0)
#define mtk_vcodec_debug_enter(h) mtk_vcodec_debug(h, "+") #define mtk_vcodec_debug_enter(h) mtk_vcodec_debug(h, "+")
#define mtk_vcodec_debug_leave(h) mtk_vcodec_debug(h, "-") #define mtk_vcodec_debug_leave(h) mtk_vcodec_debug(h, "-")
#else
#define mtk_v4l2_debug(level, fmt, args...) {}
#define mtk_v4l2_debug_enter() {}
#define mtk_v4l2_debug_leave() {}
#define mtk_vcodec_debug(h, fmt, args...) {}
#define mtk_vcodec_debug_enter(h) {}
#define mtk_vcodec_debug_leave(h) {}
#endif
void __iomem *mtk_vcodec_get_reg_addr(struct mtk_vcodec_ctx *data, void __iomem *mtk_vcodec_get_reg_addr(struct mtk_vcodec_ctx *data,
unsigned int reg_idx); unsigned int reg_idx);
int mtk_vcodec_mem_alloc(struct mtk_vcodec_ctx *data, int mtk_vcodec_mem_alloc(struct mtk_vcodec_ctx *data,
......
...@@ -527,7 +527,7 @@ static int alloc_mv_buf(struct vdec_h264_slice_inst *inst, ...@@ -527,7 +527,7 @@ static int alloc_mv_buf(struct vdec_h264_slice_inst *inst,
struct mtk_vcodec_mem *mem = NULL; struct mtk_vcodec_mem *mem = NULL;
unsigned int buf_sz = get_mv_buf_size(pic->buf_w, pic->buf_h); unsigned int buf_sz = get_mv_buf_size(pic->buf_w, pic->buf_h);
mtk_v4l2_debug(3, "size = 0x%lx", buf_sz); mtk_v4l2_debug(3, "size = 0x%x", buf_sz);
for (i = 0; i < H264_MAX_MV_NUM; i++) { for (i = 0; i < H264_MAX_MV_NUM; i++) {
mem = &inst->mv_buf[i]; mem = &inst->mv_buf[i];
if (mem->va) if (mem->va)
...@@ -637,7 +637,7 @@ static int vdec_h264_slice_init(struct mtk_vcodec_ctx *ctx) ...@@ -637,7 +637,7 @@ static int vdec_h264_slice_init(struct mtk_vcodec_ctx *ctx)
if (err) if (err)
goto error_deinit; goto error_deinit;
mtk_vcodec_debug(inst, "struct size = %d,%d,%d,%d\n", mtk_vcodec_debug(inst, "struct size = %zu,%zu,%zu,%zu\n",
sizeof(struct mtk_h264_sps_param), sizeof(struct mtk_h264_sps_param),
sizeof(struct mtk_h264_pps_param), sizeof(struct mtk_h264_pps_param),
sizeof(struct mtk_h264_dec_slice_param), sizeof(struct mtk_h264_dec_slice_param),
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册