1# Xilinx watchdog configuration 2 3# Copyright (c) 2023, Calian 4# SPDX-License-Identifier: Apache-2.0 5 6config WDT_XILINX_AXI 7 bool "Xilinx AXI Timebase WDT driver" 8 default y 9 depends on DT_HAS_XLNX_XPS_TIMEBASE_WDT_1_00_A_ENABLED 10 help 11 Enable the Xilinx AXI Timebase WDT driver. 12 13if WDT_XILINX_AXI 14 15config WDT_XILINX_AXI_HWINFO_API 16 bool "Expose HWINFO API in Xilinx AXI Timebase WDT driver" 17 default y 18 select HWINFO 19 help 20 Controls whether the Xilinx AXI Timebase WDT driver exposes a HWINFO 21 API which allows determining whether the WDT initiated the last 22 system reset. This may need to be disabled if using a device or SoC 23 which already implements this API. 24 25endif # WDT_XILINX_AXI 26