IMX WDT: Difference between revisions

From Variscite Wiki
(Add category Debian)
(Add support for Yocto Debian)
 
Line 5: Line 5:
--> {{#lst:B2QT_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!--
--> {{#lst:B2QT_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!--
--> {{#lst:Debian_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!--
--> {{#lst:Debian_Platform_Customization|{{#var:RELEASE_PARAM}}}} <!--
--> {{#varexists:DEBIAN_NAME|{{#vardefine:PLATFORM_OS|Debian}}|{{#vardefine:PLATFORM_OS|Yocto}}}} <!--
--> {{#ifexpr:{{#rpos:{{#var:SOC}}|mx8q}}<0|
--> {{#ifexpr:{{#rpos:{{#var:SOC}}|mx8q}}<0|
{{#vardefine:WDT_CONFIG|CONFIG_IMX2_WDT}}
{{#vardefine:WDT_CONFIG|CONFIG_IMX2_WDT}}
Line 33: Line 32:


To cross compile it:<br>
To cross compile it:<br>
Install the toolchain and source the environment setup script, by following the {{Varlink2|{{#var:PLATFORM_OS}} Toolchain installation|{{#var:RELEASE_LINK}}}} guide, then run:
Install the toolchain and source the environment setup script, by following the {{Varlink2|Yocto Toolchain installation|{{#var:RELEASE_LINK}}}} guide, then run:
  $ $CC ./tools/testing/selftests/watchdog-test.c -o ./watchdog-test
  $ $CC ./tools/testing/selftests/watchdog-test.c -o ./watchdog-test

Latest revision as of 14:45, 19 April 2024

Warning: This page is designed to be used with a 'release' URL parameter.

This page is using the default release RELEASE_SUMO_V1.0_VAR-SOM-MX6.
To view this page for a specific Variscite SoM and software release, please follow these steps:

  1. Visit variwiki.com
  2. Select your SoM
  3. Select the software release
VAR-SOM-MX6 watchdog

Kernel configuration

The internal watchdog is enabled by default in the kernel configuration.

To verify that the i.MX watchdog driver (CONFIG_IMX2_WDT) is enabled in your kernel configuration:

  • In menuconfig: Device Drivers -> Watchdog Timer Support -> <*> IMX2+ Watchdog

Using a command line

Watchdog will be activated as soon as /dev/watchdog is opened and will reboot unless the watchdog is pinged within timeout (128 is the preconfigured value).

# echo "1" > /dev/watchdog0

Within 128 seconds the board will reset.

Compile a watchdog test application

There's a watchdog testing utility C code example in the kernel source tree: tools/testing/selftests/watchdog-test.c (in older kernels: Documentation/watchdog/src/watchdog-test.c).


To cross compile it:
Install the toolchain and source the environment setup script, by following the Yocto Toolchain installation guide, then run:

$ $CC ./tools/testing/selftests/watchdog-test.c -o ./watchdog-test