/*------------------------------------------------------------------------------------------*\ * * Copyright (C) 2015 AVM GmbH * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \*------------------------------------------------------------------------------------------*/ #if defined(CONFIG_AVM_WATCHDOG) #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "avm_sammel.h" /* WDT MACROs */ #define WD_RESET (1 << 7) #define WD_INTR (1 << 6) #define WD_NWAIT (1 << 5) #define WD_DEBUG (1 << 4) /*--- Stop countdown if the VPE is in debug mode. ---*/ /* Second Countdown mode */ #define WD_TYPE_SCD (1 << 1) #define WD_TYPE_PIT (2 << 1) #define WD_START (0x1) #define NVEC_BASE KSEG1ADDR(0x1f2001e4) #define RVEC_BASE KSEG1ADDR(0x1f2001e0) extern void except_avm_vec_nmi(void); /* RCU MACROs */ void __iomem *rcu_membase = (void *)KSEG1ADDR(0x16000000); #define RCU_IAP_WDT_RST_EN 0x0050 #define RCU_WDTx_RESET 0xf #define DBG_ERR(args...) printk(KERN_ERR args) /*--- #define DBG_TRC(args...) printk(KERN_ERR args) ---*/ #define DBG_TRC(args...) static atomic_t nmi_trigger_once; static atomic_t wdt_active; static int nmi_notify_first(struct notifier_block *self, unsigned long dummy, void *param); static int nmi_notify_last(struct notifier_block *self, unsigned long dummy, void *param); static struct notifier_block nmi_nb[2] = { { .notifier_call = nmi_notify_first, .priority = INT_MAX }, { .notifier_call = nmi_notify_last, .priority = 0 }, }; static struct timer_list WDTimer[NR_CPUS]; /*--------------------------------------------------------------------------------*\ \*--------------------------------------------------------------------------------*/ static int grxwdt_start(void) { uint32_t config0; GICREAD(GIC_REG(VPE_LOCAL, GIC_VPE_WD_CONFIG0), config0); rmb(); GICWRITE(GIC_REG(VPE_LOCAL, GIC_VPE_WD_CONFIG0), (config0 | WD_START)); wmb(); return 0; } /*--------------------------------------------------------------------------------*\ \*--------------------------------------------------------------------------------*/ static int grxwdt_stop(void) { uint32_t config0; GICREAD(GIC_REG(VPE_LOCAL, GIC_VPE_WD_CONFIG0), config0); rmb(); GICWRITE(GIC_REG(VPE_LOCAL, GIC_VPE_WD_CONFIG0), (config0 & ~WD_START)); wmb(); return 0; } #if 0 /*--------------------------------------------------------------------------------*\ \*--------------------------------------------------------------------------------*/ static int grxwdt_set_timeout(unsigned int new_timeout) { unsigned int cpu_clk; printk(KERN_ERR"%s: timeout = %d\n", __func__, new_timeout); cpu_clk = avm_get_clock(avm_clock_id_cpu); grxwdt_stop(); GICWRITE(GIC_REG(VPE_LOCAL, GIC_VPE_WD_INITIAL0), (cpu_clk * new_timeout)); wmb(); grxwdt_start(); return 0; } /*--------------------------------------------------------------------------------*\ \*--------------------------------------------------------------------------------*/ static uint32_t grxwdt_get_timeleft(void) { unsigned int cpu_clk; uint32_t count0, initial0, config0; cpu_clk = avm_get_clock(avm_clock_id_cpu) / 1000; GICREAD(GIC_REG(VPE_LOCAL, GIC_VPE_WD_INITIAL0), initial0); GICREAD(GIC_REG(VPE_LOCAL, GIC_VPE_WD_CONFIG0), config0); GICREAD(GIC_REG(VPE_LOCAL, GIC_VPE_WD_COUNT0), count0); /*--- printk(KERN_ERR"%s cpu=%d , initial0=%x, count0=%x, config0=%x timeleftsecs=%d ms\n", __func__, smp_processor_id(), initial0, count0, config0, count0 / cpu_clk); ---*/ return count0 / cpu_clk; } #endif /*--------------------------------------------------------------------------------*\ * es werden soviel Timer wie CPU's aufgesetzt \*--------------------------------------------------------------------------------*/ static void wd_timer_function(unsigned long context) { struct timer_list *pwdtimer = (struct timer_list *)context; unsigned long flags; DBG_TRC("[%s]cpu = %d retrigger %x\n", __func__, smp_processor_id()); pwdtimer->expires = jiffies + (HZ * 1); local_irq_save(flags); grxwdt_stop(); grxwdt_start(); local_irq_restore(flags); add_timer(pwdtimer); } /*--------------------------------------------------------------------------------*\ \*--------------------------------------------------------------------------------*/ static void setup_watchog_per_cpu(void *dummy __maybe_unused) { int wd_irq = MIPS_GIC_LOCAL_IRQ_BASE + GIC_LOCAL_TO_HWIRQ(GIC_LOCAL_INT_WD); unsigned int timeout; unsigned int config0; int cpu = get_cpu(); DBG_ERR( "[grx:watchdog] start on cpu%x\n", cpu); DBG_TRC("[%s]:[%d] irq= %d cpu = %d \n", __FUNCTION__, __LINE__, wd_irq, cpu); /*--- timeout = (0xFFFF << 16) + ((cpu * 0xFFFF) / NR_CPUS); ---*/ timeout = UINT_MAX; GICWRITE(GIC_REG(VPE_LOCAL, GIC_VPE_WD_CONFIG0), 0x0); /* Reset CONFIG0 to 0x0 */ GICREAD(GIC_REG(VPE_LOCAL, GIC_VPE_WD_CONFIG0), config0); GICWRITE(GIC_REG(VPE_LOCAL, GIC_VPE_WD_CONFIG0), (config0 | WD_TYPE_SCD | WD_NWAIT)); GICWRITE(GIC_REG(VPE_LOCAL, GIC_VPE_WD_INITIAL0), timeout); /* map to NMI */ gic_map_setup(cpu, wd_irq, 1 /* nmi */, 0); init_timer(&WDTimer[cpu]); WDTimer[cpu].data = (unsigned long)&WDTimer[cpu]; WDTimer[cpu].function = wd_timer_function; /*--- leicht zeitversetzt, damit bei Totalblockade nicht alle zur gleichen Zeit zuschlagen ---*/ WDTimer[cpu].expires = jiffies + (HZ * 1) + (cpu * HZ) / 5; add_timer(&WDTimer[cpu]); put_cpu(); } /*--------------------------------------------------------------------------------*\ \*--------------------------------------------------------------------------------*/ void ar7wdt_hw_init(void) { unsigned int i; int cpu; atomic_set(&nmi_trigger_once, 0); /*--- set NMI-Base ---*/ __raw_writel((unsigned long)except_avm_vec_nmi, (void *)RVEC_BASE); /*--- this adress will be taken! ---*/ __raw_writel((unsigned long)except_avm_vec_nmi, (void *)NVEC_BASE); wmb(); /* Enable WDT reset to RCU for VPEx */ __raw_writel(RCU_WDTx_RESET, rcu_membase + RCU_IAP_WDT_RST_EN); wmb(); for_each_online_cpu(cpu) { /*--- Use enable_percpu_irq() for each Online CPU. ---*/ smp_call_function_single(cpu, (smp_call_func_t)setup_watchog_per_cpu, NULL, true); } for(i = 0; i < ARRAY_SIZE(nmi_nb); i++) { register_nmi_notifier(&nmi_nb[i]); } atomic_set(&wdt_active, 1); } /*--------------------------------------------------------------------------------*\ \*--------------------------------------------------------------------------------*/ static void stop_per_cpu_wdt(void *data __maybe_unused) { int cpu = get_cpu(); unsigned long flags; local_irq_save(flags); DBG_ERR("[grx:watchdog] stop on cpu%x\n", cpu); del_timer(&WDTimer[cpu]); grxwdt_stop(); local_irq_restore(flags); put_cpu(); } /**--------------------------------------------------------------------------------**\ \**--------------------------------------------------------------------------------**/ int ar7wdt_hw_is_wdt_running(void) { return atomic_read(&wdt_active); } /**--------------------------------------------------------------------------------**\ * dummy \**--------------------------------------------------------------------------------**/ void ar7wdt_hw_secure_wdt_disable(void) { } /*--------------------------------------------------------------------------------*\ \*--------------------------------------------------------------------------------*/ void ar7wdt_hw_deinit(void) { int cpu; for_each_online_cpu(cpu) { smp_call_function_single(cpu, stop_per_cpu_wdt, NULL, true); } atomic_set(&wdt_active, 0); } /*------------------------------------------------------------------------------------------*\ \*------------------------------------------------------------------------------------------*/ void ar7wdt_hw_reboot(void) { DBG_TRC("ar7wdt_hw_reboot!!\n"); panic("ar7wdt_hw_reboot: watchdog expired\n"); } /*------------------------------------------------------------------------------------------*\ \*------------------------------------------------------------------------------------------*/ void ar7wdt_hw_trigger(void) { if(atomic_read(&nmi_trigger_once)) { DBG_TRC("%s: ignore trigger after nmi\n", __func__); return; } } EXPORT_SYMBOL(ar7wdt_hw_trigger); /*--------------------------------------------------------------------------------*\ \*--------------------------------------------------------------------------------*/ static int nmi_notify_first(struct notifier_block *self __maybe_unused, unsigned long dummy __maybe_unused, void *param) { struct pt_regs *regs = (struct pt_regs *)param; unsigned int status; if(regs) regs->cp0_epc = read_c0_errorepc(); /*--- damit backtrace vernuenftig funktioniert ---*/ GICWRITE(GIC_REG(VPE_LOCAL, GIC_VPE_RMASK), 1 << GIC_LOCAL_INT_WD); /*--- switch off NMI-Mask ---*/ status = read_c0_status(); status &= ~(1 << 0); /* disable all interrupts */ status &= ~(1 << 19); /* reset NMI status */ status &= ~(1 << 22); /* bootstrap bit BEV zurücksetzen */ /*--------------------------------------------------------------------------------*\ * mbahr: Doku MIPS32 4KE Processor Cores Software User's Manual: Operation: // If StatusEXL is 1, all exceptions go through the general exception vector !!! // and neither EPC nor CauseBD nor SRSCtl are modified if StatusEXL = 1 then vectorOffset ← 16#180 else if InstructionInBranchDelaySlot then EPC ← restartPC // PC of branch/jump CauseBD ← 1 else EPC ← restartPC //PC of instruction CauseBD ← 0 endif .... -> NMI setzt EXL!!!!!! \*--------------------------------------------------------------------------------*/ status &= ~(1 << 1); /* Superwichtig! EXL ruecksetzen - somit funktionieren nachfolgend auch TLB-Exceptions (Zugriff auf virtuellen Speicher)*/ write_c0_status(status); if(atomic_add_return(1, &nmi_trigger_once) > 1) { DBG_TRC("%s cpu=%d ->ignore\n", __func__, raw_smp_processor_id()); for(;;); } avm_set_reset_status(RS_NMIWATCHDOG); return NOTIFY_OK; } static int nmi_notify_last(struct notifier_block *self __maybe_unused, unsigned long dummy __maybe_unused, void *param) { struct pt_regs *regs = (struct pt_regs *)param; char str[100]; bust_spinlocks(1); console_verbose(); avm_stack_check(NULL); printk_avm_console_bend(0); /* force serial-output */ snprintf(str, sizeof(str), "CPU%d NMI taken (err)epc=%pF ", raw_smp_processor_id(), regs ? (void *)regs->cp0_epc : (void *)read_c0_errorepc()); die(str, regs); return NOTIFY_STOP; } #endif/*--- #if defined(CONFIG_AVM_WATCHDOG) ---*/