1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2021 - 2025 Intel Corporation
4  */
5 
6 #ifndef IPU7_FW_CONFIG_ABI_H
7 #define IPU7_FW_CONFIG_ABI_H
8 
9 #include <linux/types.h>
10 
11 #define IPU_CONFIG_ABI_WDT_TIMER_DISABLED	0U
12 #define IPU_CONFIG_ABI_CMD_TIMER_DISABLED	0U
13 
14 struct ipu7_wdt_abi {
15 	u32 wdt_timer1_us;
16 	u32 wdt_timer2_us;
17 };
18 
19 #endif
20