2 * Hypervisor filesystem for Linux on s390.
3 * Set Partition-Resource Parameter interface.
5 * Copyright IBM Corp. 2013
6 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
9 #include <linux/compat.h>
10 #include <linux/errno.h>
11 #include <linux/gfp.h>
12 #include <linux/string.h>
13 #include <linux/types.h>
14 #include <linux/uaccess.h>
15 #include <asm/compat.h>
20 #define DIAG304_SET_WEIGHTS 0
21 #define DIAG304_QUERY_PRP 1
22 #define DIAG304_SET_CAPPING 2
24 #define DIAG304_CMD_MAX 2
26 static inline unsigned long __hypfs_sprp_diag304(void *data
, unsigned long cmd
)
28 register unsigned long _data
asm("2") = (unsigned long) data
;
29 register unsigned long _rc
asm("3");
30 register unsigned long _cmd
asm("4") = cmd
;
32 asm volatile("diag %1,%2,0x304\n"
33 : "=d" (_rc
) : "d" (_data
), "d" (_cmd
) : "memory");
38 static unsigned long hypfs_sprp_diag304(void *data
, unsigned long cmd
)
40 diag_stat_inc(DIAG_STAT_X304
);
41 return __hypfs_sprp_diag304(data
, cmd
);
44 static void hypfs_sprp_free(const void *data
)
46 free_page((unsigned long) data
);
49 static int hypfs_sprp_create(void **data_ptr
, void **free_ptr
, size_t *size
)
54 data
= (void *) get_zeroed_page(GFP_KERNEL
);
57 rc
= hypfs_sprp_diag304(data
, DIAG304_QUERY_PRP
);
59 *data_ptr
= *free_ptr
= NULL
;
61 free_page((unsigned long) data
);
64 *data_ptr
= *free_ptr
= data
;
69 static int __hypfs_sprp_ioctl(void __user
*user_area
)
71 struct hypfs_diag304 diag304
;
77 if (copy_from_user(&diag304
, user_area
, sizeof(diag304
)))
79 if ((diag304
.args
[0] >> 8) != 0 || diag304
.args
[1] > DIAG304_CMD_MAX
)
82 data
= (void *) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
86 udata
= (void __user
*)(unsigned long) diag304
.data
;
87 if (diag304
.args
[1] == DIAG304_SET_WEIGHTS
||
88 diag304
.args
[1] == DIAG304_SET_CAPPING
)
89 if (copy_from_user(data
, udata
, PAGE_SIZE
)) {
94 cmd
= *(unsigned long *) &diag304
.args
[0];
95 diag304
.rc
= hypfs_sprp_diag304(data
, cmd
);
97 if (diag304
.args
[1] == DIAG304_QUERY_PRP
)
98 if (copy_to_user(udata
, data
, PAGE_SIZE
)) {
103 rc
= copy_to_user(user_area
, &diag304
, sizeof(diag304
)) ? -EFAULT
: 0;
105 free_page((unsigned long) data
);
109 static long hypfs_sprp_ioctl(struct file
*file
, unsigned int cmd
,
114 if (!capable(CAP_SYS_ADMIN
))
116 if (is_compat_task())
117 argp
= compat_ptr(arg
);
119 argp
= (void __user
*) arg
;
122 return __hypfs_sprp_ioctl(argp
);
123 default: /* unknown ioctl number */
129 static struct hypfs_dbfs_file hypfs_sprp_file
= {
131 .data_create
= hypfs_sprp_create
,
132 .data_free
= hypfs_sprp_free
,
133 .unlocked_ioctl
= hypfs_sprp_ioctl
,
136 int hypfs_sprp_init(void)
140 return hypfs_dbfs_create_file(&hypfs_sprp_file
);
143 void hypfs_sprp_exit(void)
147 hypfs_dbfs_remove_file(&hypfs_sprp_file
);