Skip to content

Commit

Permalink
samples: watchdog: Add watchdog overlay for ADL boards
Browse files Browse the repository at this point in the history
Add watchdog overlay for ADL boards.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
  • Loading branch information
jhedberg committed Aug 2, 2023
1 parent 81b3307 commit f9aa2d3
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 0 deletions.
2 changes: 2 additions & 0 deletions boards/x86/adl/adl_crb.yaml
Expand Up @@ -5,6 +5,8 @@ arch: x86
toolchain:
- zephyr
ram: 2048
supported:
- watchdog
testing:
timeout_multiplier: 4
ignore_tags:
Expand Down
2 changes: 2 additions & 0 deletions boards/x86/adl/adl_rvp.yaml
Expand Up @@ -5,6 +5,8 @@ arch: x86
toolchain:
- zephyr
ram: 2048
supported:
- watchdog
testing:
timeout_multiplier: 4
ignore_tags:
Expand Down
1 change: 1 addition & 0 deletions dts/x86/intel/alder_lake.dtsi
Expand Up @@ -116,6 +116,7 @@
tco_wdt: tco_wdt@400 {
compatible = "intel,tco-wdt";
reg = <0x0400 0x20>;
status = "disabled";
};
};
};
9 changes: 9 additions & 0 deletions samples/drivers/watchdog/boards/adl_crb.overlay
@@ -0,0 +1,9 @@
/*
* Copyright (c) 2023 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/

&tco_wdt {
status = "okay";
};
9 changes: 9 additions & 0 deletions samples/drivers/watchdog/boards/adl_rvp.overlay
@@ -0,0 +1,9 @@
/*
* Copyright (c) 2023 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/

&tco_wdt {
status = "okay";
};
9 changes: 9 additions & 0 deletions tests/drivers/watchdog/wdt_basic_api/boards/adl_crb.overlay
@@ -0,0 +1,9 @@
/*
* Copyright (c) 2023 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/

&tco_wdt {
status = "okay";
};
9 changes: 9 additions & 0 deletions tests/drivers/watchdog/wdt_basic_api/boards/adl_rvp.overlay
@@ -0,0 +1,9 @@
/*
* Copyright (c) 2023 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/

&tco_wdt {
status = "okay";
};

0 comments on commit f9aa2d3

Please sign in to comment.