Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Matt Fleming | 420b54d | 2015-08-06 13:46:24 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Platform data for the Intel TCO Watchdog |
| 4 | */ |
| 5 | |
| 6 | #ifndef _ITCO_WDT_H_ |
| 7 | #define _ITCO_WDT_H_ |
| 8 | |
| 9 | /* Watchdog resources */ |
| 10 | #define ICH_RES_IO_TCO 0 |
| 11 | #define ICH_RES_IO_SMI 1 |
| 12 | #define ICH_RES_MEM_OFF 2 |
| 13 | #define ICH_RES_MEM_GCS_PMC 0 |
| 14 | |
| 15 | struct itco_wdt_platform_data { |
| 16 | char name[32]; |
| 17 | unsigned int version; |
Kuppuswamy Sathyanarayanan | 140c91b2 | 2017-04-09 15:00:19 -0700 | [diff] [blame] | 18 | /* private data to be passed to update_no_reboot_bit API */ |
| 19 | void *no_reboot_priv; |
| 20 | /* pointer for platform specific no reboot update function */ |
| 21 | int (*update_no_reboot_bit)(void *priv, bool set); |
Matt Fleming | 420b54d | 2015-08-06 13:46:24 +0100 | [diff] [blame] | 22 | }; |
| 23 | |
| 24 | #endif /* _ITCO_WDT_H_ */ |