mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
6273413c6d
PD#SWPL-104071 Problem: The interface that actively triggers HardLockup is at an illegal address. Solution: The interface is 'params', and in /sys/kernel/debug/aml_debug/,you can echo sysrq=x to this parameter to panic. Verify: SC2 Change-Id: I7b8f784f0f0fc2a5674e3c7386e81f13d8ec6d6b Signed-off-by: qiankun.wang <qiankun.wang@amlogic.com>
61 lines
1.0 KiB
C
61 lines
1.0 KiB
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __DEBUG_MAIN_H_
|
|
#define __DEBUG_MAIN_H_
|
|
|
|
int aml_debug_init(void);
|
|
int debug_lockup_init(void);
|
|
int cpu_mhz_init(void);
|
|
int aml_sched_init(void);
|
|
|
|
#if IS_ENABLED(CONFIG_AMLOGIC_DEBUG_ATRACE)
|
|
int meson_atrace_init(void);
|
|
#else
|
|
static inline int meson_atrace_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#if IS_ENABLED(CONFIG_AMLOGIC_DEBUG_FILE)
|
|
int debug_file_init(void);
|
|
void debug_file_exit(void);
|
|
#else
|
|
static inline int debug_file_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void debug_file_exit(void)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#if defined(CONFIG_AMLOGIC_GKI_CONFIG) && defined(MODULE)
|
|
int gki_config_init(void);
|
|
#else
|
|
static inline int gki_config_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#if IS_ENABLED(CONFIG_AMLOGIC_DEBUG_HLD)
|
|
int aml_hld_init(void);
|
|
#else
|
|
static inline int aml_hld_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#if IS_MODULE(CONFIG_AMLOGIC_DEBUG_PRINTK)
|
|
int printk_vendor_hook_init(void);
|
|
void printk_vendor_hook_exit(void);
|
|
#endif
|
|
|
|
#endif /*_DEBUG_MAIN_H__*/
|