Merge branch 'master' into percpu
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / s390 / char / sclp_async.c
1 /*
2 * Enable Asynchronous Notification via SCLP.
3 *
4 * Copyright IBM Corp. 2009
5 * Author(s): Hans-Joachim Picht <hans@linux.vnet.ibm.com>
6 *
7 */
8
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/device.h>
12 #include <linux/stat.h>
13 #include <linux/string.h>
14 #include <linux/ctype.h>
15 #include <linux/kmod.h>
16 #include <linux/err.h>
17 #include <linux/errno.h>
18 #include <linux/proc_fs.h>
19 #include <linux/sysctl.h>
20 #include <linux/utsname.h>
21 #include "sclp.h"
22
23 static int callhome_enabled;
24 static struct sclp_req *request;
25 static struct sclp_async_sccb *sccb;
26 static int sclp_async_send_wait(char *message);
27 static struct ctl_table_header *callhome_sysctl_header;
28 static DEFINE_SPINLOCK(sclp_async_lock);
29 #define SCLP_NORMAL_WRITE 0x00
30
31 struct async_evbuf {
32 struct evbuf_header header;
33 u64 reserved;
34 u8 rflags;
35 u8 empty;
36 u8 rtype;
37 u8 otype;
38 char comp_id[12];
39 char data[3000]; /* there is still some space left */
40 } __attribute__((packed));
41
42 struct sclp_async_sccb {
43 struct sccb_header header;
44 struct async_evbuf evbuf;
45 } __attribute__((packed));
46
47 static struct sclp_register sclp_async_register = {
48 .send_mask = EVTYP_ASYNC_MASK,
49 };
50
51 static int call_home_on_panic(struct notifier_block *self,
52 unsigned long event, void *data)
53 {
54 strncat(data, init_utsname()->nodename,
55 sizeof(init_utsname()->nodename));
56 sclp_async_send_wait(data);
57 return NOTIFY_DONE;
58 }
59
60 static struct notifier_block call_home_panic_nb = {
61 .notifier_call = call_home_on_panic,
62 .priority = INT_MAX,
63 };
64
65 static int proc_handler_callhome(struct ctl_table *ctl, int write,
66 void __user *buffer, size_t *count,
67 loff_t *ppos)
68 {
69 unsigned long val;
70 int len, rc;
71 char buf[3];
72
73 if (!*count || (*ppos && !write)) {
74 *count = 0;
75 return 0;
76 }
77 if (!write) {
78 len = snprintf(buf, sizeof(buf), "%d\n", callhome_enabled);
79 rc = copy_to_user(buffer, buf, sizeof(buf));
80 if (rc != 0)
81 return -EFAULT;
82 } else {
83 len = *count;
84 rc = copy_from_user(buf, buffer, sizeof(buf));
85 if (rc != 0)
86 return -EFAULT;
87 if (strict_strtoul(buf, 0, &val) != 0)
88 return -EINVAL;
89 if (val != 0 && val != 1)
90 return -EINVAL;
91 callhome_enabled = val;
92 }
93 *count = len;
94 *ppos += len;
95 return 0;
96 }
97
98 static struct ctl_table callhome_table[] = {
99 {
100 .procname = "callhome",
101 .mode = 0644,
102 .proc_handler = proc_handler_callhome,
103 },
104 {}
105 };
106
107 static struct ctl_table kern_dir_table[] = {
108 {
109 .procname = "kernel",
110 .maxlen = 0,
111 .mode = 0555,
112 .child = callhome_table,
113 },
114 {}
115 };
116
117 /*
118 * Function used to transfer asynchronous notification
119 * records which waits for send completion
120 */
121 static int sclp_async_send_wait(char *message)
122 {
123 struct async_evbuf *evb;
124 int rc;
125 unsigned long flags;
126
127 if (!callhome_enabled)
128 return 0;
129 sccb->evbuf.header.type = EVTYP_ASYNC;
130 sccb->evbuf.rtype = 0xA5;
131 sccb->evbuf.otype = 0x00;
132 evb = &sccb->evbuf;
133 request->command = SCLP_CMDW_WRITE_EVENT_DATA;
134 request->sccb = sccb;
135 request->status = SCLP_REQ_FILLED;
136 strncpy(sccb->evbuf.data, message, sizeof(sccb->evbuf.data));
137 /*
138 * Retain Queue
139 * e.g. 5639CC140 500 Red Hat RHEL5 Linux for zSeries (RHEL AS)
140 */
141 strncpy(sccb->evbuf.comp_id, "000000000", sizeof(sccb->evbuf.comp_id));
142 sccb->evbuf.header.length = sizeof(sccb->evbuf);
143 sccb->header.length = sizeof(sccb->evbuf) + sizeof(sccb->header);
144 sccb->header.function_code = SCLP_NORMAL_WRITE;
145 rc = sclp_add_request(request);
146 if (rc)
147 return rc;
148 spin_lock_irqsave(&sclp_async_lock, flags);
149 while (request->status != SCLP_REQ_DONE &&
150 request->status != SCLP_REQ_FAILED) {
151 sclp_sync_wait();
152 }
153 spin_unlock_irqrestore(&sclp_async_lock, flags);
154 if (request->status != SCLP_REQ_DONE)
155 return -EIO;
156 rc = ((struct sclp_async_sccb *)
157 request->sccb)->header.response_code;
158 if (rc != 0x0020)
159 return -EIO;
160 if (evb->header.flags != 0x80)
161 return -EIO;
162 return rc;
163 }
164
165 static int __init sclp_async_init(void)
166 {
167 int rc;
168
169 rc = sclp_register(&sclp_async_register);
170 if (rc)
171 return rc;
172 rc = -EOPNOTSUPP;
173 if (!(sclp_async_register.sclp_receive_mask & EVTYP_ASYNC_MASK))
174 goto out_sclp;
175 rc = -ENOMEM;
176 callhome_sysctl_header = register_sysctl_table(kern_dir_table);
177 if (!callhome_sysctl_header)
178 goto out_sclp;
179 request = kzalloc(sizeof(struct sclp_req), GFP_KERNEL);
180 sccb = (struct sclp_async_sccb *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
181 if (!request || !sccb)
182 goto out_mem;
183 rc = atomic_notifier_chain_register(&panic_notifier_list,
184 &call_home_panic_nb);
185 if (!rc)
186 goto out;
187 out_mem:
188 kfree(request);
189 free_page((unsigned long) sccb);
190 unregister_sysctl_table(callhome_sysctl_header);
191 out_sclp:
192 sclp_unregister(&sclp_async_register);
193 out:
194 return rc;
195 }
196 module_init(sclp_async_init);
197
198 static void __exit sclp_async_exit(void)
199 {
200 atomic_notifier_chain_unregister(&panic_notifier_list,
201 &call_home_panic_nb);
202 unregister_sysctl_table(callhome_sysctl_header);
203 sclp_unregister(&sclp_async_register);
204 free_page((unsigned long) sccb);
205 kfree(request);
206 }
207 module_exit(sclp_async_exit);
208
209 MODULE_AUTHOR("Copyright IBM Corp. 2009");
210 MODULE_AUTHOR("Hans-Joachim Picht <hans@linux.vnet.ibm.com>");
211 MODULE_LICENSE("GPL");
212 MODULE_DESCRIPTION("SCLP Asynchronous Notification Records");