drivers: intc_ite_it8xxx2: disable debug mode then reset for tests
After flashed EC image, we needed to manually press the reset button on it8xxx2_evb. Now, without pressing the button, we can disable debug mode and trigger a watchdog hard reset for running tests. After flash EC, running below tests can pass (without pressing the button): west build -p always -b it8xxx2_evb tests/drivers/watchdog/wdt_basic_api west build -p always -b it8xxx2_evb tests/kernel/timer/timer_api west build -p always -b it8xxx2_evb tests/kernel/fatal/exception Signed-off-by: Dino Li <Dino.Li@ite.com.tw> Signed-off-by: Ruibin Chang <Ruibin.Chang@ite.com.tw>
This commit is contained in:
parent
58ec51616d
commit
c3a4a1a0f6
2 changed files with 40 additions and 2 deletions
|
@ -347,6 +347,9 @@ struct kscan_it8xxx2_regs {
|
|||
* (1Fxxh) External Timer & External Watchdog (ETWD)
|
||||
*
|
||||
*/
|
||||
#define WDT_IT8XXX2_REGS_BASE \
|
||||
((struct wdt_it8xxx2_regs *)DT_REG_ADDR(DT_NODELABEL(twd0)))
|
||||
|
||||
#ifndef __ASSEMBLER__
|
||||
struct wdt_it8xxx2_regs {
|
||||
/* 0x000: Reserved1 */
|
||||
|
@ -1542,8 +1545,10 @@ struct gctrl_it8xxx2_regs {
|
|||
volatile uint8_t reserved_00_01[2];
|
||||
/* 0x02: Chip Version */
|
||||
volatile uint8_t GCTRL_ECHIPVER;
|
||||
/* 0x03-0x05: Reserved_03_05 */
|
||||
volatile uint8_t reserved_03_05[3];
|
||||
/* 0x03: DBGR Operate Status */
|
||||
volatile uint8_t GCTRL_DBGROS;
|
||||
/* 0x04-0x05: Reserved_04_05 */
|
||||
volatile uint8_t reserved_04_05[2];
|
||||
/* 0x06: Reset Status */
|
||||
volatile uint8_t GCTRL_RSTS;
|
||||
/* 0x07-0x09: Reserved_07_09 */
|
||||
|
@ -1630,6 +1635,8 @@ struct gctrl_it8xxx2_regs {
|
|||
#endif /* !__ASSEMBLER__ */
|
||||
|
||||
/* GCTRL register fields */
|
||||
/* 0x03: DBGR Operate Status */
|
||||
#define IT8XXX2_GCTRL_SMB_DBGR BIT(0)
|
||||
/* 0x06: Reset Status */
|
||||
#define IT8XXX2_GCTRL_LRS (BIT(1) | BIT(0))
|
||||
#define IT8XXX2_GCTRL_IWDTR BIT(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue