1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright IBM Corp. 2014
5 * Author: Martin Schwidefsky <schwidefsky@de.ibm.com>
11 #include <linux/types.h>
12 #include <linux/device.h>
13 #include <linux/seqlock.h>
15 struct s390_idle_data
{
17 unsigned long long idle_count
;
18 unsigned long long idle_time
;
19 unsigned long long clock_idle_enter
;
20 unsigned long long clock_idle_exit
;
21 unsigned long long timer_idle_enter
;
22 unsigned long long timer_idle_exit
;
25 extern struct device_attribute dev_attr_idle_count
;
26 extern struct device_attribute dev_attr_idle_time_us
;
28 void psw_idle(struct s390_idle_data
*, unsigned long);
30 #endif /* _S390_IDLE_H */