Edit online

测试指南

Watchdog 测试所需的测试环境如下:
  • 硬件:开发板,或 D211 的 FPGA 板
  • 软件
    • PC 端的串口终端软件,用于 PC 和开发板进行串口通信
    • luban 中带有的 test_wdt 测试工具
测试步骤如下所示:
  1. 配置软件
    在 luban 的根目录下通过 menuconfig 可以打开 test_wdt:
    Artinchip packages
        Sample code
            [*] test-watchdog
  2. test_wdt 测试

    test_wdt 的主要功能是通过 ioctl 标准接口,来查询、设置 Watchdog 的。

    板子上的 wdt 位于 /usr/local/bin/,无需进入该目录,在 shell 中直接运行 test_wdt 即可。

    test_wdt 的帮助信息:
    [aic@] # test_wdt -u
    Compile time: Apr 16 2022 14:31:42
    Usage: test_wdt [options]
         -i, --info     Print the status and infomation
         -s, --set-timeout  Set a timeout, in second
         -g, --get-timeout  Get the current timeout, in second
         -p, --set-pretimeout   Set a pretimeout, in second
         -G, --get-pretimeout   Get the current pretimeout, in second
         -k, --keepalive    Keepalive the watchdog
         -u, --usage
    
    Example: test_wdt -c 0 -s 12
    Example: test_wdt -c 1 -s 100 -p 90
    注:
    1. WDT V1.0 驱动中对 timeout 参数的范围有限制:[1, 3600],即最小 1 秒、最多 1 小时。
    2. Linux 的 Watchdog 子系统中对 pretimeout 参数有限制:pretimeout 必须小于 timeout。
    test_wdt 的使用示例:
    [aic@] # test_wdt -i
    In Artinchip Watchdog timer watchdog V0, options 0x8180
    Status: 32768
    Boot status: 0
    [aic@] # test_wdt -s 3601
    wdt_set_timeout()125 - Set chan0 timeout 3601, pretimeout 0
    [ERROR] wdt_set_timeout()128 - Failed to set timeout 22[Invalid argument]
    [aic@] # test_wdt -s 0
    wdt_set_timeout()125 - Set chan0 timeout 0, pretimeout 0
    [ERROR] wdt_set_timeout()128 - Failed to set timeout 22[Invalid argument]
    [aic@] # test_wdt -g
    wdt_get_timeout()155 - Get chan0 timeout 16
    [aic@] # test_wdt -s 2
    wdt_set_timeout()125 - Set chan0 timeout 2, pretimeout 0
    [aic@] # test_wdt -g
    wdt_get_timeout()155 - Get chan0 timeout 2
    [aic@] # test_wdt -s 9
    wdt_set_timeout()125 - Set chan0 timeout 9, pretimeout 0
    [aic@] # test_wdt -g
    wdt_get_timeout()155 - Get chan0 timeout 9
    [aic@] # test_wdt -s 9 -p 4
    wdt_set_timeout()125 - Set chan0 timeout 9, pretimeout 4