37 lines
822 B
C
37 lines
822 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
/*
|
||
|
* Samsung Exynos SoC series Pablo driver
|
||
|
*
|
||
|
* Copyright (c) 2020 Samsung Electronics Co., Ltd
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 as
|
||
|
* published by the Free Software Foundation.
|
||
|
*/
|
||
|
|
||
|
#include <soc/samsung/debug-snapshot.h>
|
||
|
|
||
|
#include "camerapp-debug.h"
|
||
|
|
||
|
void camerapp_debug_s2d(bool en_s2d, const char *fmt, ...)
|
||
|
{
|
||
|
static char buf[1024];
|
||
|
va_list args;
|
||
|
|
||
|
va_start(args, fmt);
|
||
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
||
|
va_end(args);
|
||
|
|
||
|
if (en_s2d) {
|
||
|
pr_err("[DBG] S2D!!!: %s", buf);
|
||
|
dump_stack();
|
||
|
|
||
|
if (dbg_snapshot_expire_watchdog() < 0)
|
||
|
panic("DSS doesn't support S2D", buf);
|
||
|
} else {
|
||
|
panic(buf);
|
||
|
}
|
||
|
}
|
||
|
EXPORT_SYMBOL_GPL(camerapp_debug_s2d);
|
||
|
MODULE_LICENSE("GPL");
|