| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544 |
- #include <linux/module.h>
- #include <linux/slab.h>
- #include <mt-plat/aee.h>
- #include <linux/utsname.h>
- #include <linux/sched.h>
- #include <linux/list.h>
- #include <linux/init.h>
- #include <linux/smp.h>
- #ifdef CONFIG_MT_SCHED_MONITOR
- #include "mt_sched_mon.h"
- #endif
- #include <linux/io.h>
- #include <linux/delay.h>
- #include <linux/hardirq.h>
- #include <linux/mm.h>
- #include <linux/types.h>
- #include <mrdump.h>
- #include <linux/uaccess.h>
- #include <linux/stacktrace.h>
- #include <asm/stacktrace.h>
- #include <asm/memory.h>
- #include <asm/traps.h>
- #include <linux/compiler.h>
- /* #include <mach/fiq_smp_call.h> */
- #include <mach/wd_api.h>
- #include <smp.h>
- #ifndef CONFIG_ARM64
- #include <mach/irqs.h>
- #endif
- #include "aee-common.h"
- #include <mach/mt_secure_api.h>
- #define THREAD_INFO(sp) ((struct thread_info *) \
- ((unsigned long)(sp) & ~(THREAD_SIZE - 1)))
- #define WDT_PERCPU_LOG_SIZE 2048
- #define WDT_LOG_DEFAULT_SIZE 4096
- #define WDT_SAVE_STACK_SIZE 256
- #define MAX_EXCEPTION_FRAME 16
- #define PRINTK_BUFFER_SIZE 512
- /* NR_CPUS may not eaqual to real cpu numbers, alloc buffer at initialization */
- static char *wdt_percpu_log_buf[NR_CPUS];
- static int wdt_percpu_log_length[NR_CPUS];
- static char wdt_log_buf[WDT_LOG_DEFAULT_SIZE];
- static int wdt_percpu_preempt_cnt[NR_CPUS];
- static unsigned long wdt_percpu_stackframe[NR_CPUS][MAX_EXCEPTION_FRAME];
- static int wdt_log_length;
- static atomic_t wdt_enter_fiq;
- static char printk_buf[PRINTK_BUFFER_SIZE];
- static char str_buf[NR_CPUS][PRINTK_BUFFER_SIZE];
- #define ATF_AEE_DEBUG_BUF_LENGTH 0x4000
- static void *atf_aee_debug_virt_addr;
- struct atf_aee_regs {
- __u64 regs[31];
- __u64 sp;
- __u64 pc;
- __u64 pstate;
- };
- struct stacks_buffer {
- char bin_buf[WDT_SAVE_STACK_SIZE];
- int real_len;
- unsigned long top;
- unsigned long bottom;
- };
- static struct stacks_buffer stacks_buffer_bin[NR_CPUS];
- struct regs_buffer {
- struct pt_regs regs;
- int real_len;
- };
- static struct regs_buffer regs_buffer_bin[NR_CPUS];
- int in_fiq_handler(void)
- {
- return atomic_read(&wdt_enter_fiq);
- }
- void aee_wdt_dump_info(void)
- {
- struct task_struct *task;
- int cpu, i;
- char *log_buf_ptr;
- task = &init_task;
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_KE_WDT_INFO);
- if (wdt_log_length == 0) {
- LOGE("\n No log for WDT\n");
- #ifdef CONFIG_MT_SCHED_MONITOR
- mt_dump_sched_traces();
- #endif
- return;
- }
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_KE_WDT_PERCPU);
- LOGE("==========================================\n");
- for (cpu = 0; cpu < NR_CPUS; cpu++) {
- if ((wdt_percpu_log_buf[cpu]) && (wdt_percpu_log_length[cpu])) {
- log_buf_ptr = wdt_percpu_log_buf[cpu];
- while (wdt_percpu_log_length[cpu] > 0) {
- /* LOGE( "==> wdt_percpu_log_buf[%d], length=%d ", cpu, wdt_percpu_log_length[cpu]); */
- if (wdt_percpu_log_length[cpu] > (PRINTK_BUFFER_SIZE - 1)) {
- i = PRINTK_BUFFER_SIZE - 1;
- printk_buf[PRINTK_BUFFER_SIZE - 1] = 0;
- } else {
- i = wdt_percpu_log_length[cpu];
- printk_buf[i] = 0;
- }
- memcpy(printk_buf, log_buf_ptr, i);
- LOGE("%s", printk_buf);
- log_buf_ptr += i;
- wdt_percpu_log_length[cpu] -= i;
- }
- LOGE("Backtrace : ");
- for (i = 0; i < MAX_EXCEPTION_FRAME; i++) {
- if (wdt_percpu_stackframe[cpu][i] == 0)
- break;
- #ifdef CONFIG_ARM64
- LOGE("%016lx, ", wdt_percpu_stackframe[cpu][i]);
- #else
- LOGE("%08lx, ", wdt_percpu_stackframe[cpu][i]);
- #endif
- }
- LOGE("\n==========================================\n");
- }
- }
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_KE_WDT_LOG);
- /* LOGE( "==> wdt_log_length=%d ", wdt_log_length); */
- /* printk temporary buffer only 1024, */
- log_buf_ptr = wdt_log_buf;
- while (wdt_log_length > 0) {
- if (wdt_log_length > (PRINTK_BUFFER_SIZE - 1)) {
- i = PRINTK_BUFFER_SIZE - 1;
- printk_buf[PRINTK_BUFFER_SIZE - 1] = 0;
- } else {
- i = wdt_log_length;
- printk_buf[i] = 0;
- }
- memcpy(printk_buf, log_buf_ptr, i);
- LOGE("%s", printk_buf);
- log_buf_ptr += i;
- wdt_log_length -= i;
- }
- #ifdef CONFIG_SCHED_DEBUG
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_KE_SCHED_DEBUG);
- /*sysrq_sched_debug_show_at_KE();*/
- #endif
- for_each_process(task) {
- if (task->state == 0) {
- LOGE("PID: %d, name: %s\n", task->pid, task->comm);
- show_stack(task, NULL);
- LOGE("\n");
- }
- }
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_KE_WDT_DONE);
- }
- void aee_wdt_percpu_printf(int cpu, const char *fmt, ...)
- {
- va_list args;
- if (wdt_percpu_log_buf[cpu] == NULL)
- return;
- va_start(args, fmt);
- wdt_percpu_log_length[cpu] +=
- vsnprintf((wdt_percpu_log_buf[cpu] + wdt_percpu_log_length[cpu]),
- (WDT_PERCPU_LOG_SIZE - wdt_percpu_log_length[cpu]), fmt, args);
- va_end(args);
- }
- void aee_wdt_printf(const char *fmt, ...)
- {
- va_list args;
- va_start(args, fmt);
- wdt_log_length += vsnprintf((wdt_log_buf + wdt_log_length),
- (sizeof(wdt_log_buf) - wdt_log_length), fmt, args);
- va_end(args);
- }
- /* save registers in bin buffer, may comes from various cpu */
- static void aee_dump_cpu_reg_bin(int cpu, struct pt_regs *regs)
- {
- #ifdef CONFIG_ARM64
- int i;
- aee_wdt_percpu_printf(cpu, "pc : %016llx, lr : %016llx, pstate : %016llx\n",
- regs->pc, regs->regs[30], regs->pstate);
- aee_wdt_percpu_printf(cpu, "sp : %016llx\n", regs->sp);
- for (i = 29; i >= 0; i--) {
- aee_wdt_percpu_printf(cpu, "x%-2d: %016llx ", i, regs->regs[i]);
- if (i % 2 == 0)
- aee_wdt_percpu_printf(cpu, "\n");
- }
- aee_wdt_percpu_printf(cpu, "\n");
- #else
- aee_wdt_percpu_printf(cpu, "pc : %08lx, lr : %08lx, cpsr : %08lx\n",
- regs->ARM_pc, regs->ARM_lr, regs->ARM_cpsr);
- aee_wdt_percpu_printf(cpu, "sp : %08lx, ip : %08lx, fp : %08lx\n",
- regs->ARM_sp, regs->ARM_ip, regs->ARM_fp);
- aee_wdt_percpu_printf(cpu, "r10 : %08lx, r9 : %08lx, r8 : %08lx\n",
- regs->ARM_r10, regs->ARM_r9, regs->ARM_r8);
- aee_wdt_percpu_printf(cpu, "r7 : %08lx, r6 : %08lx, r5 : %08lx\n",
- regs->ARM_r7, regs->ARM_r6, regs->ARM_r5);
- aee_wdt_percpu_printf(cpu, "r4 : %08lx, r3 : %08lx, r2 : %08lx\n",
- regs->ARM_r4, regs->ARM_r3, regs->ARM_r2);
- aee_wdt_percpu_printf(cpu, "r1 : %08lx, r0 : %08lx\n", regs->ARM_r1, regs->ARM_r0);
- #endif
- memcpy(&(regs_buffer_bin[cpu].regs), regs, sizeof(struct pt_regs));
- regs_buffer_bin[cpu].real_len = sizeof(struct pt_regs);
- }
- /* dump the stack into per CPU buffer */
- static void aee_wdt_dump_stack_bin(unsigned int cpu, unsigned long bottom, unsigned long top)
- {
- int i;
- unsigned long p;
- unsigned long first;
- unsigned int val;
- char str[sizeof(" 12345678") * 8 + 1];
- stacks_buffer_bin[cpu].real_len =
- aee_dump_stack_top_binary(stacks_buffer_bin[cpu].bin_buf,
- sizeof(stacks_buffer_bin[cpu].bin_buf), bottom, top);
- stacks_buffer_bin[cpu].top = top;
- stacks_buffer_bin[cpu].bottom = bottom;
- /* should check stack address in kernel range */
- if (bottom & 3) {
- aee_wdt_percpu_printf(cpu, "%s bottom unaligned %08lx\n", __func__, bottom);
- return;
- }
- if (!((bottom >= (PAGE_OFFSET + THREAD_SIZE)) && virt_addr_valid(bottom))) {
- aee_wdt_percpu_printf(cpu, "%s bottom out of kernel addr space %08lx\n", __func__,
- bottom);
- return;
- }
- if (!((top >= (PAGE_OFFSET + THREAD_SIZE)) && virt_addr_valid(bottom))) {
- aee_wdt_percpu_printf(cpu, "%s top out of kernel addr space %08lx\n", __func__,
- top);
- return;
- }
- #ifdef CONFIG_ARM64
- aee_wdt_percpu_printf(cpu, "stack (0x%016lx to 0x%016lx)\n", bottom, top);
- #else
- aee_wdt_percpu_printf(cpu, "stack (0x%08lx to 0x%08lx)\n", bottom, top);
- #endif
- for (first = bottom & ~31; first < top; first += 32) {
- memset_io(str, ' ', sizeof(str));
- str[sizeof(str) - 1] = '\0';
- for (p = first, i = 0; i < 8 && p < top; i++, p += 4) {
- if (p >= bottom && p < top) {
- if (__get_user(val, (unsigned int *)p) == 0)
- sprintf(str + i * 9, " %08x", val);
- else
- sprintf(str + i * 9, " ????????");
- }
- }
- aee_wdt_percpu_printf(cpu, "%04lx:%s\n", first & 0xffff, str);
- }
- }
- /* dump the backtrace into per CPU buffer */
- static void aee_wdt_dump_backtrace(unsigned int cpu, struct pt_regs *regs)
- {
- int i;
- unsigned long high, bottom, fp;
- struct stackframe cur_frame;
- struct pt_regs *excp_regs;
- bottom = regs->reg_sp;
- if (!virt_addr_valid(bottom)) {
- aee_wdt_percpu_printf(cpu, "invalid sp[%lx]\n", bottom);
- return;
- }
- high = ALIGN(bottom, THREAD_SIZE);
- cur_frame.fp = regs->reg_fp;
- cur_frame.pc = regs->reg_pc;
- cur_frame.sp = regs->reg_sp;
- wdt_percpu_stackframe[cpu][0] = regs->reg_lr;
- for (i = 1; i < MAX_EXCEPTION_FRAME; i++) {
- fp = cur_frame.fp;
- if ((fp < bottom) || (fp >= (high + THREAD_SIZE))) {
- /* aee_wdt_percpu_printf(cpu, "i=%d, fp=%lx, bottom=%lx\n", i, fp, bottom); */
- break;
- }
- if (unwind_frame(&cur_frame) < 0) {
- aee_wdt_percpu_printf(cpu, "unwind_frame < 0\n");
- break;
- }
- if (!((cur_frame.pc >= (PAGE_OFFSET + THREAD_SIZE))
- && virt_addr_valid(cur_frame.pc))) {
- aee_wdt_percpu_printf(cpu, "virt_addr_valid fail\n");
- break;
- }
- if (in_exception_text(cur_frame.pc)) {
- #ifdef CONFIG_ARM64
- /* work around for unknown reason do_mem_abort stack abnormal */
- excp_regs = (void *)(cur_frame.fp + 0x10 + 0xa0);
- unwind_frame(&cur_frame); /* skip do_mem_abort & el1_da */
- #else
- excp_regs = (void *)(cur_frame.fp + 4);
- #endif
- cur_frame.pc = excp_regs->reg_pc;
- }
- wdt_percpu_stackframe[cpu][i] = cur_frame.pc;
- }
- }
- /* save binary register and stack value into ram console */
- static void aee_save_reg_stack_sram(int cpu)
- {
- int i;
- int len = 0;
- if (regs_buffer_bin[cpu].real_len != 0) {
- snprintf(str_buf[cpu], sizeof(str_buf[cpu]),
- "\n\ncpu %d preempt=%lx, softirq=%lx, hardirq=%lx ", cpu,
- ((wdt_percpu_preempt_cnt[cpu] & PREEMPT_MASK) >> PREEMPT_SHIFT),
- ((wdt_percpu_preempt_cnt[cpu] & SOFTIRQ_MASK) >> SOFTIRQ_SHIFT),
- ((wdt_percpu_preempt_cnt[cpu] & HARDIRQ_MASK) >> HARDIRQ_SHIFT));
- aee_sram_fiq_log(str_buf[cpu]);
- memset_io(str_buf[cpu], 0, sizeof(str_buf[cpu]));
- #ifdef CONFIG_ARM64
- snprintf(str_buf[cpu], sizeof(str_buf[cpu]), "\ncpu %d x0->x30 sp pc pstate\n", cpu);
- #else
- snprintf(str_buf[cpu], sizeof(str_buf[cpu]),
- "\ncpu %d r0->r10 fp ip sp lr pc cpsr orig_r0\n", cpu);
- #endif
- aee_sram_fiq_log(str_buf[cpu]);
- aee_sram_fiq_save_bin((char *)&(regs_buffer_bin[cpu].regs),
- regs_buffer_bin[cpu].real_len);
- }
- if (stacks_buffer_bin[cpu].real_len > 0) {
- memset_io(str_buf[cpu], 0, sizeof(str_buf[cpu]));
- #ifdef CONFIG_ARM64
- snprintf(str_buf[cpu], sizeof(str_buf[cpu]), "\ncpu %d stack [%016lx %016lx]\n",
- cpu, stacks_buffer_bin[cpu].bottom, stacks_buffer_bin[cpu].top);
- #else
- snprintf(str_buf[cpu], sizeof(str_buf[cpu]), "\ncpu %d stack [%08lx %08lx]\n",
- cpu, stacks_buffer_bin[cpu].bottom, stacks_buffer_bin[cpu].top);
- #endif
- aee_sram_fiq_log(str_buf[cpu]);
- aee_sram_fiq_save_bin(stacks_buffer_bin[cpu].bin_buf,
- stacks_buffer_bin[cpu].real_len);
- memset_io(str_buf[cpu], 0, sizeof(str_buf[cpu]));
- len = snprintf(str_buf[cpu], sizeof(str_buf[cpu]), "\ncpu %d backtrace : ", cpu);
- for (i = 0; i < MAX_EXCEPTION_FRAME; i++) {
- if (wdt_percpu_stackframe[cpu][i] == 0)
- break;
- len += snprintf((str_buf[cpu] + len), (sizeof(str_buf[cpu]) - len),
- "%08lx, ", wdt_percpu_stackframe[cpu][i]);
- }
- aee_sram_fiq_log(str_buf[cpu]);
- }
- mrdump_mini_per_cpu_regs(cpu, ®s_buffer_bin[cpu].regs);
- }
- void aee_wdt_irq_info(void)
- {
- /* obsolete, to be removed */
- BUG();
- }
- void aee_wdt_atf_info(unsigned int cpu, struct pt_regs *regs)
- {
- unsigned long long t;
- unsigned long nanosec_rem;
- int res = 0;
- struct wd_api *wd_api = NULL;
- /* LOGD("\n ===> aee_wdt_atf_info : cpu %d\n", cpu); */
- if (!cpu_possible(cpu)) {
- aee_wdt_printf("FIQ: Watchdog time out at incorrect CPU %d ?\n", cpu);
- cpu = 0;
- }
- aee_wdt_percpu_printf(cpu, "CPU %d FIQ: Watchdog time out\n", cpu);
- wdt_percpu_preempt_cnt[cpu] = preempt_count();
- aee_wdt_percpu_printf(cpu, "preempt=%lx, softirq=%lx, hardirq=%lx\n",
- ((wdt_percpu_preempt_cnt[cpu] & PREEMPT_MASK) >> PREEMPT_SHIFT),
- ((wdt_percpu_preempt_cnt[cpu] & SOFTIRQ_MASK) >> SOFTIRQ_SHIFT),
- ((wdt_percpu_preempt_cnt[cpu] & HARDIRQ_MASK) >> HARDIRQ_SHIFT));
- if (regs) {
- aee_dump_cpu_reg_bin(cpu, regs);
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_WDT_FIQ_STACK);
- aee_wdt_dump_stack_bin(cpu, regs->reg_sp, regs->reg_sp + WDT_SAVE_STACK_SIZE);
- aee_wdt_dump_backtrace(cpu, regs);
- }
- if (atomic_xchg(&wdt_enter_fiq, 1) != 0) {
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_WDT_FIQ_LOOP);
- /* aee_wdt_percpu_printf(cpu, "Other CPU already enter WDT FIQ handler\n"); */
- set_cpu_online(cpu, false);
- local_fiq_disable();
- local_irq_disable();
- while (1)
- cpu_relax();
- }
- /* Wait for other cpu dump */
- mdelay(1000);
- if (regs) {
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_WDT_IRQ_STACK);
- for (cpu = 0; cpu < NR_CPUS; cpu++)
- aee_save_reg_stack_sram(cpu);
- aee_sram_fiq_log("\n\n");
- } else {
- aee_wdt_printf("Invalid atf_aee_debug_virt_addr, no register dump\n");
- }
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_WDT_IRQ_KICK);
- res = get_wd_api(&wd_api);
- if (res) {
- aee_wdt_printf("aee_wdt_irq_info, get wd api error\n");
- } else {
- wd_api->wd_restart(WD_TYPE_NOLOCK);
- aee_wdt_printf("kick=0x%08x,check=0x%08x", wd_api->wd_get_kick_bit(),
- wd_api->wd_get_check_bit());
- }
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_WDT_IRQ_TIME);
- t = cpu_clock(smp_processor_id());
- nanosec_rem = do_div(t, 1000000000);
- aee_wdt_printf("\nQwdt at [%5lu.%06lu]\n", (unsigned long)t, nanosec_rem / 1000);
- #ifdef CONFIG_MT_SCHED_MONITOR
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_WDT_IRQ_SCHED);
- mt_aee_dump_sched_traces();
- #endif
- aee_sram_fiq_log(wdt_log_buf);
- /* avoid lock prove to dump_stack in __debug_locks_off() */
- xchg(&debug_locks, 0);
- aee_rr_rec_fiq_step(AEE_FIQ_STEP_WDT_IRQ_DONE);
- aee_rr_rec_exp_type(1);
- BUG();
- }
- void notrace aee_wdt_atf_entry(void)
- {
- #ifdef CONFIG_ARM64
- int i;
- #endif
- void *regs;
- struct pt_regs pregs;
- int cpu = get_HW_cpuid();
- if (atf_aee_debug_virt_addr) {
- regs = (void *)(atf_aee_debug_virt_addr + (cpu * sizeof(struct atf_aee_regs)));
- #ifdef CONFIG_ARM64
- pregs.pstate = ((struct atf_aee_regs *)regs)->pstate;
- pregs.pc = ((struct atf_aee_regs *)regs)->pc;
- pregs.sp = ((struct atf_aee_regs *)regs)->sp;
- for (i = 0; i < 31; i++)
- pregs.regs[i] = ((struct atf_aee_regs *)regs)->regs[i];
- #else
- pregs.ARM_cpsr = (unsigned long)((struct atf_aee_regs *)regs)->pstate;
- pregs.ARM_pc = (unsigned long)((struct atf_aee_regs *)regs)->pc;
- pregs.ARM_sp = (unsigned long)((struct atf_aee_regs *)regs)->regs[19];
- pregs.ARM_lr = (unsigned long)((struct atf_aee_regs *)regs)->regs[18];
- pregs.ARM_ip = (unsigned long)((struct atf_aee_regs *)regs)->regs[12];
- pregs.ARM_fp = (unsigned long)((struct atf_aee_regs *)regs)->regs[11];
- pregs.ARM_r10 = (unsigned long)((struct atf_aee_regs *)regs)->regs[10];
- pregs.ARM_r9 = (unsigned long)((struct atf_aee_regs *)regs)->regs[9];
- pregs.ARM_r8 = (unsigned long)((struct atf_aee_regs *)regs)->regs[8];
- pregs.ARM_r7 = (unsigned long)((struct atf_aee_regs *)regs)->regs[7];
- pregs.ARM_r6 = (unsigned long)((struct atf_aee_regs *)regs)->regs[6];
- pregs.ARM_r5 = (unsigned long)((struct atf_aee_regs *)regs)->regs[5];
- pregs.ARM_r4 = (unsigned long)((struct atf_aee_regs *)regs)->regs[4];
- pregs.ARM_r3 = (unsigned long)((struct atf_aee_regs *)regs)->regs[3];
- pregs.ARM_r2 = (unsigned long)((struct atf_aee_regs *)regs)->regs[2];
- pregs.ARM_r1 = (unsigned long)((struct atf_aee_regs *)regs)->regs[1];
- pregs.ARM_r0 = (unsigned long)((struct atf_aee_regs *)regs)->regs[0];
- #endif
- aee_wdt_atf_info(cpu, &pregs);
- } else {
- aee_wdt_atf_info(cpu, 0);
- }
- }
- static int __init aee_wdt_init(void)
- {
- int i;
- phys_addr_t atf_aee_debug_phy_addr;
- atomic_set(&wdt_enter_fiq, 0);
- for (i = 0; i < NR_CPUS; i++) {
- wdt_percpu_log_buf[i] = kzalloc(WDT_PERCPU_LOG_SIZE, GFP_KERNEL);
- if (wdt_percpu_log_buf[i] == NULL)
- LOGE("\n aee_common_init : kmalloc fail\n");
- wdt_percpu_log_length[i] = 0;
- wdt_percpu_preempt_cnt[i] = 0;
- }
- memset_io(wdt_log_buf, 0, sizeof(wdt_log_buf));
- memset_io(regs_buffer_bin, 0, sizeof(regs_buffer_bin));
- memset_io(stacks_buffer_bin, 0, sizeof(stacks_buffer_bin));
- memset_io(wdt_percpu_stackframe, 0, sizeof(wdt_percpu_stackframe));
- /* send SMC to ATF to register call back function */
- #ifdef CONFIG_ARM64
- atf_aee_debug_phy_addr = (phys_addr_t) (0x00000000FFFFFFFF &
- mt_secure_call(MTK_SIP_KERNEL_WDT,
- (u64) &aee_wdt_atf_entry, 0, 0));
- #else
- atf_aee_debug_phy_addr = (phys_addr_t)
- mt_secure_call(MTK_SIP_KERNEL_WDT, (u32) &aee_wdt_atf_entry, 0, 0);
- #endif
- LOGD("\n MTK_SIP_KERNEL_WDT - 0x%p\n", &aee_wdt_atf_entry);
- if ((atf_aee_debug_phy_addr == 0) || (atf_aee_debug_phy_addr == 0xFFFFFFFF)) {
- LOGE("\n invalid atf_aee_debug_phy_addr\n");
- } else {
- /* use the last 16KB in ATF log buffer */
- atf_aee_debug_virt_addr = ioremap(atf_aee_debug_phy_addr, ATF_AEE_DEBUG_BUF_LENGTH);
- LOGD("\n atf_aee_debug_virt_addr = 0x%p\n", atf_aee_debug_virt_addr);
- if (atf_aee_debug_virt_addr)
- memset_io(atf_aee_debug_virt_addr, 0, ATF_AEE_DEBUG_BUF_LENGTH);
- }
- return 0;
- }
- module_init(aee_wdt_init);
|