blob: 4fa21f7e23085aafbdef58ce7d4805e07418118c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Michael Holzheu62b749422009-06-16 10:30:40 +02002 * core function to access sclp interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Michael Holzheu62b749422009-06-16 10:30:40 +02004 * Copyright IBM Corp. 1999, 2009
5 *
6 * Author(s): Martin Peschke <mpeschke@de.ibm.com>
7 * Martin Schwidefsky <schwidefsky@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Heiko Carstens052ff462011-01-05 12:47:28 +010010#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/err.h>
13#include <linux/spinlock.h>
14#include <linux/interrupt.h>
15#include <linux/timer.h>
16#include <linux/reboot.h>
17#include <linux/jiffies.h>
Peter Oberparleiterb3d00c32007-04-27 16:01:51 +020018#include <linux/init.h>
Michael Holzheu62b749422009-06-16 10:30:40 +020019#include <linux/suspend.h>
20#include <linux/completion.h>
21#include <linux/platform_device.h>
Heiko Carstens052ff462011-01-05 12:47:28 +010022#include <asm/types.h>
23#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "sclp.h"
26
27#define SCLP_HEADER "sclp: "
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/* Lock to protect internal data consistency. */
30static DEFINE_SPINLOCK(sclp_lock);
31
Peter Oberparleiterd082d3c2008-02-19 15:29:32 +010032/* Mask of events that we can send to the sclp interface. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static sccb_mask_t sclp_receive_mask;
34
Peter Oberparleiterd082d3c2008-02-19 15:29:32 +010035/* Mask of events that we can receive from the sclp interface. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static sccb_mask_t sclp_send_mask;
37
38/* List of registered event listeners and senders. */
39static struct list_head sclp_reg_list;
40
41/* List of queued requests. */
42static struct list_head sclp_req_queue;
43
44/* Data for read and and init requests. */
45static struct sclp_req sclp_read_req;
46static struct sclp_req sclp_init_req;
47static char sclp_read_sccb[PAGE_SIZE] __attribute__((__aligned__(PAGE_SIZE)));
48static char sclp_init_sccb[PAGE_SIZE] __attribute__((__aligned__(PAGE_SIZE)));
49
Michael Holzheu62b749422009-06-16 10:30:40 +020050/* Suspend request */
51static DECLARE_COMPLETION(sclp_request_queue_flushed);
52
53static void sclp_suspend_req_cb(struct sclp_req *req, void *data)
54{
55 complete(&sclp_request_queue_flushed);
56}
57
58static struct sclp_req sclp_suspend_req;
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/* Timer for request retries. */
61static struct timer_list sclp_request_timer;
62
63/* Internal state: is the driver initialized? */
64static volatile enum sclp_init_state_t {
65 sclp_init_state_uninitialized,
66 sclp_init_state_initializing,
67 sclp_init_state_initialized
68} sclp_init_state = sclp_init_state_uninitialized;
69
70/* Internal state: is a request active at the sclp? */
71static volatile enum sclp_running_state_t {
72 sclp_running_state_idle,
Peter Oberparleiterdbd8ae62007-02-05 21:17:00 +010073 sclp_running_state_running,
74 sclp_running_state_reset_pending
Linus Torvalds1da177e2005-04-16 15:20:36 -070075} sclp_running_state = sclp_running_state_idle;
76
77/* Internal state: is a read request pending? */
78static volatile enum sclp_reading_state_t {
79 sclp_reading_state_idle,
80 sclp_reading_state_reading
81} sclp_reading_state = sclp_reading_state_idle;
82
83/* Internal state: is the driver currently serving requests? */
84static volatile enum sclp_activation_state_t {
85 sclp_activation_state_active,
86 sclp_activation_state_deactivating,
87 sclp_activation_state_inactive,
88 sclp_activation_state_activating
89} sclp_activation_state = sclp_activation_state_active;
90
91/* Internal state: is an init mask request pending? */
92static volatile enum sclp_mask_state_t {
93 sclp_mask_state_idle,
94 sclp_mask_state_initializing
95} sclp_mask_state = sclp_mask_state_idle;
96
Michael Holzheu62b749422009-06-16 10:30:40 +020097/* Internal state: is the driver suspended? */
98static enum sclp_suspend_state_t {
99 sclp_suspend_state_running,
100 sclp_suspend_state_suspended,
101} sclp_suspend_state = sclp_suspend_state_running;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/* Maximum retry counts */
104#define SCLP_INIT_RETRY 3
105#define SCLP_MASK_RETRY 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107/* Timeout intervals in seconds.*/
Peter Oberparleiter25fab9e2006-02-11 17:55:59 -0800108#define SCLP_BUSY_INTERVAL 10
Peter Oberparleiterdbd8ae62007-02-05 21:17:00 +0100109#define SCLP_RETRY_INTERVAL 30
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111static void sclp_process_queue(void);
Heiko Carstens364c8552007-10-12 16:11:35 +0200112static void __sclp_make_read_req(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static int sclp_init_mask(int calculate);
114static int sclp_init(void);
115
116/* Perform service call. Return 0 on success, non-zero otherwise. */
Heiko Carstensab14de62007-02-05 21:18:37 +0100117int
118sclp_service_call(sclp_cmdw_t command, void *sccb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 int cc;
121
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200122 asm volatile(
123 " .insn rre,0xb2200000,%1,%2\n" /* servc %1,%2 */
124 " ipm %0\n"
125 " srl %0,28"
126 : "=&d" (cc) : "d" (command), "a" (__pa(sccb))
127 : "cc", "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (cc == 3)
129 return -EIO;
130 if (cc == 2)
131 return -EBUSY;
132 return 0;
133}
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Peter Oberparleiterdbd8ae62007-02-05 21:17:00 +0100136static void
137__sclp_queue_read_req(void)
138{
139 if (sclp_reading_state == sclp_reading_state_idle) {
140 sclp_reading_state = sclp_reading_state_reading;
141 __sclp_make_read_req();
142 /* Add request to head of queue */
143 list_add(&sclp_read_req.list, &sclp_req_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
147/* Set up request retry timer. Called while sclp_lock is locked. */
148static inline void
149__sclp_set_request_timer(unsigned long time, void (*function)(unsigned long),
150 unsigned long data)
151{
152 del_timer(&sclp_request_timer);
153 sclp_request_timer.function = function;
154 sclp_request_timer.data = data;
155 sclp_request_timer.expires = jiffies + time;
156 add_timer(&sclp_request_timer);
157}
158
Peter Oberparleiterdbd8ae62007-02-05 21:17:00 +0100159/* Request timeout handler. Restart the request queue. If DATA is non-zero,
160 * force restart of running request. */
161static void
162sclp_request_timeout(unsigned long data)
163{
164 unsigned long flags;
165
166 spin_lock_irqsave(&sclp_lock, flags);
167 if (data) {
168 if (sclp_running_state == sclp_running_state_running) {
169 /* Break running state and queue NOP read event request
170 * to get a defined interface state. */
171 __sclp_queue_read_req();
172 sclp_running_state = sclp_running_state_idle;
173 }
174 } else {
175 __sclp_set_request_timer(SCLP_BUSY_INTERVAL * HZ,
176 sclp_request_timeout, 0);
177 }
178 spin_unlock_irqrestore(&sclp_lock, flags);
179 sclp_process_queue();
180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* Try to start a request. Return zero if the request was successfully
183 * started or if it will be started at a later time. Return non-zero otherwise.
184 * Called while sclp_lock is locked. */
185static int
186__sclp_start_request(struct sclp_req *req)
187{
188 int rc;
189
190 if (sclp_running_state != sclp_running_state_idle)
191 return 0;
192 del_timer(&sclp_request_timer);
Heiko Carstensab14de62007-02-05 21:18:37 +0100193 rc = sclp_service_call(req->command, req->sccb);
Peter Oberparleiter25fab9e2006-02-11 17:55:59 -0800194 req->start_count++;
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (rc == 0) {
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800197 /* Successfully started request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 req->status = SCLP_REQ_RUNNING;
199 sclp_running_state = sclp_running_state_running;
200 __sclp_set_request_timer(SCLP_RETRY_INTERVAL * HZ,
201 sclp_request_timeout, 1);
202 return 0;
203 } else if (rc == -EBUSY) {
204 /* Try again later */
205 __sclp_set_request_timer(SCLP_BUSY_INTERVAL * HZ,
206 sclp_request_timeout, 0);
207 return 0;
208 }
209 /* Request failed */
210 req->status = SCLP_REQ_FAILED;
211 return rc;
212}
213
214/* Try to start queued requests. */
215static void
216sclp_process_queue(void)
217{
218 struct sclp_req *req;
219 int rc;
220 unsigned long flags;
221
222 spin_lock_irqsave(&sclp_lock, flags);
223 if (sclp_running_state != sclp_running_state_idle) {
224 spin_unlock_irqrestore(&sclp_lock, flags);
225 return;
226 }
227 del_timer(&sclp_request_timer);
228 while (!list_empty(&sclp_req_queue)) {
229 req = list_entry(sclp_req_queue.next, struct sclp_req, list);
Michael Holzheu62b749422009-06-16 10:30:40 +0200230 if (!req->sccb)
231 goto do_post;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 rc = __sclp_start_request(req);
233 if (rc == 0)
234 break;
Peter Oberparleiterdbd8ae62007-02-05 21:17:00 +0100235 /* Request failed */
236 if (req->start_count > 1) {
237 /* Cannot abort already submitted request - could still
238 * be active at the SCLP */
239 __sclp_set_request_timer(SCLP_BUSY_INTERVAL * HZ,
240 sclp_request_timeout, 0);
241 break;
242 }
Michael Holzheu62b749422009-06-16 10:30:40 +0200243do_post:
Peter Oberparleiterdbd8ae62007-02-05 21:17:00 +0100244 /* Post-processing for aborted request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 list_del(&req->list);
246 if (req->callback) {
247 spin_unlock_irqrestore(&sclp_lock, flags);
248 req->callback(req, req->callback_data);
249 spin_lock_irqsave(&sclp_lock, flags);
250 }
251 }
252 spin_unlock_irqrestore(&sclp_lock, flags);
253}
254
Michael Holzheu62b749422009-06-16 10:30:40 +0200255static int __sclp_can_add_request(struct sclp_req *req)
256{
257 if (req == &sclp_suspend_req || req == &sclp_init_req)
258 return 1;
259 if (sclp_suspend_state != sclp_suspend_state_running)
260 return 0;
261 if (sclp_init_state != sclp_init_state_initialized)
262 return 0;
263 if (sclp_activation_state != sclp_activation_state_active)
264 return 0;
265 return 1;
266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/* Queue a new request. Return zero on success, non-zero otherwise. */
269int
270sclp_add_request(struct sclp_req *req)
271{
272 unsigned long flags;
273 int rc;
274
275 spin_lock_irqsave(&sclp_lock, flags);
Michael Holzheu62b749422009-06-16 10:30:40 +0200276 if (!__sclp_can_add_request(req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 spin_unlock_irqrestore(&sclp_lock, flags);
278 return -EIO;
279 }
280 req->status = SCLP_REQ_QUEUED;
281 req->start_count = 0;
282 list_add_tail(&req->list, &sclp_req_queue);
283 rc = 0;
284 /* Start if request is first in list */
Peter Oberparleiterdbd8ae62007-02-05 21:17:00 +0100285 if (sclp_running_state == sclp_running_state_idle &&
286 req->list.prev == &sclp_req_queue) {
Michael Holzheu62b749422009-06-16 10:30:40 +0200287 if (!req->sccb) {
288 list_del(&req->list);
289 rc = -ENODATA;
290 goto out;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 rc = __sclp_start_request(req);
293 if (rc)
294 list_del(&req->list);
295 }
Michael Holzheu62b749422009-06-16 10:30:40 +0200296out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 spin_unlock_irqrestore(&sclp_lock, flags);
298 return rc;
299}
300
301EXPORT_SYMBOL(sclp_add_request);
302
303/* Dispatch events found in request buffer to registered listeners. Return 0
304 * if all events were dispatched, non-zero otherwise. */
305static int
306sclp_dispatch_evbufs(struct sccb_header *sccb)
307{
308 unsigned long flags;
309 struct evbuf_header *evbuf;
310 struct list_head *l;
311 struct sclp_register *reg;
312 int offset;
313 int rc;
314
315 spin_lock_irqsave(&sclp_lock, flags);
316 rc = 0;
317 for (offset = sizeof(struct sccb_header); offset < sccb->length;
318 offset += evbuf->length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 evbuf = (struct evbuf_header *) ((addr_t) sccb + offset);
Peter Oberparleitere2e5a0f2009-02-19 15:18:59 +0100320 /* Check for malformed hardware response */
321 if (evbuf->length == 0)
322 break;
323 /* Search for event handler */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 reg = NULL;
325 list_for_each(l, &sclp_reg_list) {
326 reg = list_entry(l, struct sclp_register, list);
327 if (reg->receive_mask & (1 << (32 - evbuf->type)))
328 break;
329 else
330 reg = NULL;
331 }
332 if (reg && reg->receiver_fn) {
333 spin_unlock_irqrestore(&sclp_lock, flags);
334 reg->receiver_fn(evbuf);
335 spin_lock_irqsave(&sclp_lock, flags);
336 } else if (reg == NULL)
Heiko Carstensd06cbda2012-09-06 15:00:07 +0200337 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339 spin_unlock_irqrestore(&sclp_lock, flags);
340 return rc;
341}
342
343/* Read event data request callback. */
344static void
345sclp_read_cb(struct sclp_req *req, void *data)
346{
347 unsigned long flags;
348 struct sccb_header *sccb;
349
350 sccb = (struct sccb_header *) req->sccb;
351 if (req->status == SCLP_REQ_DONE && (sccb->response_code == 0x20 ||
352 sccb->response_code == 0x220))
353 sclp_dispatch_evbufs(sccb);
354 spin_lock_irqsave(&sclp_lock, flags);
355 sclp_reading_state = sclp_reading_state_idle;
356 spin_unlock_irqrestore(&sclp_lock, flags);
357}
358
359/* Prepare read event data request. Called while sclp_lock is locked. */
Heiko Carstens364c8552007-10-12 16:11:35 +0200360static void __sclp_make_read_req(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 struct sccb_header *sccb;
363
364 sccb = (struct sccb_header *) sclp_read_sccb;
365 clear_page(sccb);
366 memset(&sclp_read_req, 0, sizeof(struct sclp_req));
Heiko Carstensab14de62007-02-05 21:18:37 +0100367 sclp_read_req.command = SCLP_CMDW_READ_EVENT_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 sclp_read_req.status = SCLP_REQ_QUEUED;
369 sclp_read_req.start_count = 0;
370 sclp_read_req.callback = sclp_read_cb;
371 sclp_read_req.sccb = sccb;
372 sccb->length = PAGE_SIZE;
373 sccb->function_code = 0;
374 sccb->control_mask[2] = 0x80;
375}
376
377/* Search request list for request with matching sccb. Return request if found,
378 * NULL otherwise. Called while sclp_lock is locked. */
379static inline struct sclp_req *
380__sclp_find_req(u32 sccb)
381{
382 struct list_head *l;
383 struct sclp_req *req;
384
385 list_for_each(l, &sclp_req_queue) {
386 req = list_entry(l, struct sclp_req, list);
387 if (sccb == (u32) (addr_t) req->sccb)
388 return req;
389 }
390 return NULL;
391}
392
393/* Handler for external interruption. Perform request post-processing.
394 * Prepare read event data request if necessary. Start processing of next
395 * request on queue. */
Heiko Carstensfde15c32012-03-11 11:59:31 -0400396static void sclp_interrupt_handler(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200397 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
399 struct sclp_req *req;
400 u32 finished_sccb;
401 u32 evbuf_pending;
402
Heiko Carstens052ff462011-01-05 12:47:28 +0100403 kstat_cpu(smp_processor_id()).irqs[EXTINT_SCP]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 spin_lock(&sclp_lock);
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200405 finished_sccb = param32 & 0xfffffff8;
406 evbuf_pending = param32 & 0x3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (finished_sccb) {
Peter Oberparleiterdbd8ae62007-02-05 21:17:00 +0100408 del_timer(&sclp_request_timer);
409 sclp_running_state = sclp_running_state_reset_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 req = __sclp_find_req(finished_sccb);
411 if (req) {
412 /* Request post-processing */
413 list_del(&req->list);
414 req->status = SCLP_REQ_DONE;
415 if (req->callback) {
416 spin_unlock(&sclp_lock);
417 req->callback(req, req->callback_data);
418 spin_lock(&sclp_lock);
419 }
420 }
421 sclp_running_state = sclp_running_state_idle;
422 }
Peter Oberparleiterd082d3c2008-02-19 15:29:32 +0100423 if (evbuf_pending &&
Peter Oberparleiterdbd8ae62007-02-05 21:17:00 +0100424 sclp_activation_state == sclp_activation_state_active)
425 __sclp_queue_read_req();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 spin_unlock(&sclp_lock);
427 sclp_process_queue();
428}
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/* Convert interval in jiffies to TOD ticks. */
431static inline u64
432sclp_tod_from_jiffies(unsigned long jiffies)
433{
434 return (u64) (jiffies / HZ) << 32;
435}
436
437/* Wait until a currently running request finished. Note: while this function
438 * is running, no timers are served on the calling CPU. */
439void
440sclp_sync_wait(void)
441{
Heiko Carstens934b2852008-08-01 16:39:11 +0200442 unsigned long long old_tick;
Heiko Carstens1f194a42006-07-03 00:24:46 -0700443 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 unsigned long cr0, cr0_sync;
445 u64 timeout;
Heiko Carstensc59d7442007-02-05 21:17:16 +0100446 int irq_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /* We'll be disabling timer interrupts, so we need a custom timeout
449 * mechanism */
450 timeout = 0;
451 if (timer_pending(&sclp_request_timer)) {
452 /* Get timeout TOD value */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200453 timeout = get_clock() +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 sclp_tod_from_jiffies(sclp_request_timer.expires -
455 jiffies);
456 }
Heiko Carstens1f194a42006-07-03 00:24:46 -0700457 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* Prevent bottom half from executing once we force interrupts open */
Heiko Carstensc59d7442007-02-05 21:17:16 +0100459 irq_context = in_interrupt();
460 if (!irq_context)
461 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /* Enable service-signal interruption, disable timer interrupts */
Heiko Carstens934b2852008-08-01 16:39:11 +0200463 old_tick = local_tick_disable();
Heiko Carstens1f194a42006-07-03 00:24:46 -0700464 trace_hardirqs_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 __ctl_store(cr0, 0, 0);
466 cr0_sync = cr0;
Heiko Carstens934b2852008-08-01 16:39:11 +0200467 cr0_sync &= 0xffff00a0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 cr0_sync |= 0x00000200;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 __ctl_load(cr0_sync, 0, 0);
David Howellsdf9ee292010-10-07 14:08:55 +0100470 __arch_local_irq_stosm(0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /* Loop until driver state indicates finished request */
472 while (sclp_running_state != sclp_running_state_idle) {
473 /* Check for expired request timer */
474 if (timer_pending(&sclp_request_timer) &&
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200475 get_clock() > timeout &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 del_timer(&sclp_request_timer))
477 sclp_request_timer.function(sclp_request_timer.data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 cpu_relax();
479 }
Heiko Carstens1f194a42006-07-03 00:24:46 -0700480 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 __ctl_load(cr0, 0, 0);
Heiko Carstensc59d7442007-02-05 21:17:16 +0100482 if (!irq_context)
483 _local_bh_enable();
Heiko Carstens934b2852008-08-01 16:39:11 +0200484 local_tick_enable(old_tick);
Heiko Carstens1f194a42006-07-03 00:24:46 -0700485 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487EXPORT_SYMBOL(sclp_sync_wait);
488
489/* Dispatch changes in send and receive mask to registered listeners. */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100490static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491sclp_dispatch_state_change(void)
492{
493 struct list_head *l;
494 struct sclp_register *reg;
495 unsigned long flags;
496 sccb_mask_t receive_mask;
497 sccb_mask_t send_mask;
498
499 do {
500 spin_lock_irqsave(&sclp_lock, flags);
501 reg = NULL;
502 list_for_each(l, &sclp_reg_list) {
503 reg = list_entry(l, struct sclp_register, list);
Peter Oberparleiterd082d3c2008-02-19 15:29:32 +0100504 receive_mask = reg->send_mask & sclp_receive_mask;
505 send_mask = reg->receive_mask & sclp_send_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (reg->sclp_receive_mask != receive_mask ||
507 reg->sclp_send_mask != send_mask) {
508 reg->sclp_receive_mask = receive_mask;
509 reg->sclp_send_mask = send_mask;
510 break;
511 } else
512 reg = NULL;
513 }
514 spin_unlock_irqrestore(&sclp_lock, flags);
515 if (reg && reg->state_change_fn)
516 reg->state_change_fn(reg);
517 } while (reg);
518}
519
520struct sclp_statechangebuf {
521 struct evbuf_header header;
522 u8 validity_sclp_active_facility_mask : 1;
523 u8 validity_sclp_receive_mask : 1;
524 u8 validity_sclp_send_mask : 1;
525 u8 validity_read_data_function_mask : 1;
526 u16 _zeros : 12;
527 u16 mask_length;
528 u64 sclp_active_facility_mask;
529 sccb_mask_t sclp_receive_mask;
530 sccb_mask_t sclp_send_mask;
531 u32 read_data_function_mask;
532} __attribute__((packed));
533
534
535/* State change event callback. Inform listeners of changes. */
536static void
537sclp_state_change_cb(struct evbuf_header *evbuf)
538{
539 unsigned long flags;
540 struct sclp_statechangebuf *scbuf;
541
542 scbuf = (struct sclp_statechangebuf *) evbuf;
543 if (scbuf->mask_length != sizeof(sccb_mask_t))
544 return;
545 spin_lock_irqsave(&sclp_lock, flags);
546 if (scbuf->validity_sclp_receive_mask)
547 sclp_receive_mask = scbuf->sclp_receive_mask;
548 if (scbuf->validity_sclp_send_mask)
549 sclp_send_mask = scbuf->sclp_send_mask;
550 spin_unlock_irqrestore(&sclp_lock, flags);
Heiko Carstens887d9352008-07-14 09:57:26 +0200551 if (scbuf->validity_sclp_active_facility_mask)
552 sclp_facilities = scbuf->sclp_active_facility_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 sclp_dispatch_state_change();
554}
555
556static struct sclp_register sclp_state_change_event = {
Stefan Haberland6d4740c2007-04-27 16:01:53 +0200557 .receive_mask = EVTYP_STATECHANGE_MASK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 .receiver_fn = sclp_state_change_cb
559};
560
561/* Calculate receive and send mask of currently registered listeners.
562 * Called while sclp_lock is locked. */
563static inline void
564__sclp_get_mask(sccb_mask_t *receive_mask, sccb_mask_t *send_mask)
565{
566 struct list_head *l;
567 struct sclp_register *t;
568
569 *receive_mask = 0;
570 *send_mask = 0;
571 list_for_each(l, &sclp_reg_list) {
572 t = list_entry(l, struct sclp_register, list);
573 *receive_mask |= t->receive_mask;
574 *send_mask |= t->send_mask;
575 }
576}
577
578/* Register event listener. Return 0 on success, non-zero otherwise. */
579int
580sclp_register(struct sclp_register *reg)
581{
582 unsigned long flags;
583 sccb_mask_t receive_mask;
584 sccb_mask_t send_mask;
585 int rc;
586
587 rc = sclp_init();
588 if (rc)
589 return rc;
590 spin_lock_irqsave(&sclp_lock, flags);
591 /* Check event mask for collisions */
592 __sclp_get_mask(&receive_mask, &send_mask);
593 if (reg->receive_mask & receive_mask || reg->send_mask & send_mask) {
594 spin_unlock_irqrestore(&sclp_lock, flags);
595 return -EBUSY;
596 }
597 /* Trigger initial state change callback */
598 reg->sclp_receive_mask = 0;
599 reg->sclp_send_mask = 0;
Michael Holzheu62b749422009-06-16 10:30:40 +0200600 reg->pm_event_posted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 list_add(&reg->list, &sclp_reg_list);
602 spin_unlock_irqrestore(&sclp_lock, flags);
603 rc = sclp_init_mask(1);
604 if (rc) {
605 spin_lock_irqsave(&sclp_lock, flags);
606 list_del(&reg->list);
607 spin_unlock_irqrestore(&sclp_lock, flags);
608 }
609 return rc;
610}
611
612EXPORT_SYMBOL(sclp_register);
613
614/* Unregister event listener. */
615void
616sclp_unregister(struct sclp_register *reg)
617{
618 unsigned long flags;
619
620 spin_lock_irqsave(&sclp_lock, flags);
621 list_del(&reg->list);
622 spin_unlock_irqrestore(&sclp_lock, flags);
623 sclp_init_mask(1);
624}
625
626EXPORT_SYMBOL(sclp_unregister);
627
628/* Remove event buffers which are marked processed. Return the number of
629 * remaining event buffers. */
630int
631sclp_remove_processed(struct sccb_header *sccb)
632{
633 struct evbuf_header *evbuf;
634 int unprocessed;
635 u16 remaining;
636
637 evbuf = (struct evbuf_header *) (sccb + 1);
638 unprocessed = 0;
639 remaining = sccb->length - sizeof(struct sccb_header);
640 while (remaining > 0) {
641 remaining -= evbuf->length;
642 if (evbuf->flags & 0x80) {
643 sccb->length -= evbuf->length;
644 memcpy(evbuf, (void *) ((addr_t) evbuf + evbuf->length),
645 remaining);
646 } else {
647 unprocessed++;
648 evbuf = (struct evbuf_header *)
649 ((addr_t) evbuf + evbuf->length);
650 }
651 }
652 return unprocessed;
653}
654
655EXPORT_SYMBOL(sclp_remove_processed);
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/* Prepare init mask request. Called while sclp_lock is locked. */
658static inline void
659__sclp_make_init_req(u32 receive_mask, u32 send_mask)
660{
661 struct init_sccb *sccb;
662
663 sccb = (struct init_sccb *) sclp_init_sccb;
664 clear_page(sccb);
665 memset(&sclp_init_req, 0, sizeof(struct sclp_req));
Heiko Carstensab14de62007-02-05 21:18:37 +0100666 sclp_init_req.command = SCLP_CMDW_WRITE_EVENT_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 sclp_init_req.status = SCLP_REQ_FILLED;
668 sclp_init_req.start_count = 0;
669 sclp_init_req.callback = NULL;
670 sclp_init_req.callback_data = NULL;
671 sclp_init_req.sccb = sccb;
672 sccb->header.length = sizeof(struct init_sccb);
673 sccb->mask_length = sizeof(sccb_mask_t);
674 sccb->receive_mask = receive_mask;
675 sccb->send_mask = send_mask;
676 sccb->sclp_receive_mask = 0;
677 sccb->sclp_send_mask = 0;
678}
679
680/* Start init mask request. If calculate is non-zero, calculate the mask as
681 * requested by registered listeners. Use zero mask otherwise. Return 0 on
682 * success, non-zero otherwise. */
683static int
684sclp_init_mask(int calculate)
685{
686 unsigned long flags;
687 struct init_sccb *sccb = (struct init_sccb *) sclp_init_sccb;
688 sccb_mask_t receive_mask;
689 sccb_mask_t send_mask;
690 int retry;
691 int rc;
692 unsigned long wait;
693
694 spin_lock_irqsave(&sclp_lock, flags);
695 /* Check if interface is in appropriate state */
696 if (sclp_mask_state != sclp_mask_state_idle) {
697 spin_unlock_irqrestore(&sclp_lock, flags);
698 return -EBUSY;
699 }
700 if (sclp_activation_state == sclp_activation_state_inactive) {
701 spin_unlock_irqrestore(&sclp_lock, flags);
702 return -EINVAL;
703 }
704 sclp_mask_state = sclp_mask_state_initializing;
705 /* Determine mask */
706 if (calculate)
707 __sclp_get_mask(&receive_mask, &send_mask);
708 else {
709 receive_mask = 0;
710 send_mask = 0;
711 }
712 rc = -EIO;
713 for (retry = 0; retry <= SCLP_MASK_RETRY; retry++) {
714 /* Prepare request */
715 __sclp_make_init_req(receive_mask, send_mask);
716 spin_unlock_irqrestore(&sclp_lock, flags);
717 if (sclp_add_request(&sclp_init_req)) {
718 /* Try again later */
719 wait = jiffies + SCLP_BUSY_INTERVAL * HZ;
720 while (time_before(jiffies, wait))
721 sclp_sync_wait();
722 spin_lock_irqsave(&sclp_lock, flags);
723 continue;
724 }
725 while (sclp_init_req.status != SCLP_REQ_DONE &&
726 sclp_init_req.status != SCLP_REQ_FAILED)
727 sclp_sync_wait();
728 spin_lock_irqsave(&sclp_lock, flags);
729 if (sclp_init_req.status == SCLP_REQ_DONE &&
730 sccb->header.response_code == 0x20) {
731 /* Successful request */
732 if (calculate) {
733 sclp_receive_mask = sccb->sclp_receive_mask;
734 sclp_send_mask = sccb->sclp_send_mask;
735 } else {
736 sclp_receive_mask = 0;
737 sclp_send_mask = 0;
738 }
739 spin_unlock_irqrestore(&sclp_lock, flags);
740 sclp_dispatch_state_change();
741 spin_lock_irqsave(&sclp_lock, flags);
742 rc = 0;
743 break;
744 }
745 }
746 sclp_mask_state = sclp_mask_state_idle;
747 spin_unlock_irqrestore(&sclp_lock, flags);
748 return rc;
749}
750
751/* Deactivate SCLP interface. On success, new requests will be rejected,
752 * events will no longer be dispatched. Return 0 on success, non-zero
753 * otherwise. */
754int
755sclp_deactivate(void)
756{
757 unsigned long flags;
758 int rc;
759
760 spin_lock_irqsave(&sclp_lock, flags);
761 /* Deactivate can only be called when active */
762 if (sclp_activation_state != sclp_activation_state_active) {
763 spin_unlock_irqrestore(&sclp_lock, flags);
764 return -EINVAL;
765 }
766 sclp_activation_state = sclp_activation_state_deactivating;
767 spin_unlock_irqrestore(&sclp_lock, flags);
768 rc = sclp_init_mask(0);
769 spin_lock_irqsave(&sclp_lock, flags);
770 if (rc == 0)
771 sclp_activation_state = sclp_activation_state_inactive;
772 else
773 sclp_activation_state = sclp_activation_state_active;
774 spin_unlock_irqrestore(&sclp_lock, flags);
775 return rc;
776}
777
778EXPORT_SYMBOL(sclp_deactivate);
779
780/* Reactivate SCLP interface after sclp_deactivate. On success, new
781 * requests will be accepted, events will be dispatched again. Return 0 on
782 * success, non-zero otherwise. */
783int
784sclp_reactivate(void)
785{
786 unsigned long flags;
787 int rc;
788
789 spin_lock_irqsave(&sclp_lock, flags);
790 /* Reactivate can only be called when inactive */
791 if (sclp_activation_state != sclp_activation_state_inactive) {
792 spin_unlock_irqrestore(&sclp_lock, flags);
793 return -EINVAL;
794 }
795 sclp_activation_state = sclp_activation_state_activating;
796 spin_unlock_irqrestore(&sclp_lock, flags);
797 rc = sclp_init_mask(1);
798 spin_lock_irqsave(&sclp_lock, flags);
799 if (rc == 0)
800 sclp_activation_state = sclp_activation_state_active;
801 else
802 sclp_activation_state = sclp_activation_state_inactive;
803 spin_unlock_irqrestore(&sclp_lock, flags);
804 return rc;
805}
806
807EXPORT_SYMBOL(sclp_reactivate);
808
809/* Handler for external interruption used during initialization. Modify
810 * request state to done. */
Heiko Carstensfde15c32012-03-11 11:59:31 -0400811static void sclp_check_handler(struct ext_code ext_code,
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200812 unsigned int param32, unsigned long param64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
814 u32 finished_sccb;
815
Heiko Carstens052ff462011-01-05 12:47:28 +0100816 kstat_cpu(smp_processor_id()).irqs[EXTINT_SCP]++;
Martin Schwidefskyf6649a72010-10-25 16:10:38 +0200817 finished_sccb = param32 & 0xfffffff8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 /* Is this the interrupt we are waiting for? */
819 if (finished_sccb == 0)
820 return;
Martin Schwidefskya12c53f2008-07-14 09:59:28 +0200821 if (finished_sccb != (u32) (addr_t) sclp_init_sccb)
822 panic("sclp: unsolicited interrupt for buffer at 0x%x\n",
823 finished_sccb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 spin_lock(&sclp_lock);
825 if (sclp_running_state == sclp_running_state_running) {
826 sclp_init_req.status = SCLP_REQ_DONE;
827 sclp_running_state = sclp_running_state_idle;
828 }
829 spin_unlock(&sclp_lock);
830}
831
832/* Initial init mask request timed out. Modify request state to failed. */
833static void
834sclp_check_timeout(unsigned long data)
835{
836 unsigned long flags;
837
838 spin_lock_irqsave(&sclp_lock, flags);
839 if (sclp_running_state == sclp_running_state_running) {
840 sclp_init_req.status = SCLP_REQ_FAILED;
841 sclp_running_state = sclp_running_state_idle;
842 }
843 spin_unlock_irqrestore(&sclp_lock, flags);
844}
845
846/* Perform a check of the SCLP interface. Return zero if the interface is
847 * available and there are no pending requests from a previous instance.
848 * Return non-zero otherwise. */
849static int
850sclp_check_interface(void)
851{
852 struct init_sccb *sccb;
853 unsigned long flags;
854 int retry;
855 int rc;
856
857 spin_lock_irqsave(&sclp_lock, flags);
858 /* Prepare init mask command */
Heiko Carstens98b79982011-01-05 12:47:40 +0100859 rc = register_external_interrupt(0x2401, sclp_check_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (rc) {
861 spin_unlock_irqrestore(&sclp_lock, flags);
862 return rc;
863 }
864 for (retry = 0; retry <= SCLP_INIT_RETRY; retry++) {
865 __sclp_make_init_req(0, 0);
866 sccb = (struct init_sccb *) sclp_init_req.sccb;
Heiko Carstensab14de62007-02-05 21:18:37 +0100867 rc = sclp_service_call(sclp_init_req.command, sccb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (rc == -EIO)
869 break;
870 sclp_init_req.status = SCLP_REQ_RUNNING;
871 sclp_running_state = sclp_running_state_running;
872 __sclp_set_request_timer(SCLP_RETRY_INTERVAL * HZ,
873 sclp_check_timeout, 0);
874 spin_unlock_irqrestore(&sclp_lock, flags);
875 /* Enable service-signal interruption - needs to happen
876 * with IRQs enabled. */
Heiko Carstensdf7997a2011-05-26 09:48:23 +0200877 service_subclass_irq_register();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 /* Wait for signal from interrupt or timeout */
879 sclp_sync_wait();
880 /* Disable service-signal interruption - needs to happen
881 * with IRQs enabled. */
Heiko Carstensdf7997a2011-05-26 09:48:23 +0200882 service_subclass_irq_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 spin_lock_irqsave(&sclp_lock, flags);
884 del_timer(&sclp_request_timer);
885 if (sclp_init_req.status == SCLP_REQ_DONE &&
886 sccb->header.response_code == 0x20) {
887 rc = 0;
888 break;
889 } else
890 rc = -EBUSY;
891 }
Heiko Carstens98b79982011-01-05 12:47:40 +0100892 unregister_external_interrupt(0x2401, sclp_check_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 spin_unlock_irqrestore(&sclp_lock, flags);
894 return rc;
895}
896
897/* Reboot event handler. Reset send and receive mask to prevent pending SCLP
898 * events from interfering with rebooted system. */
899static int
900sclp_reboot_event(struct notifier_block *this, unsigned long event, void *ptr)
901{
902 sclp_deactivate();
903 return NOTIFY_DONE;
904}
905
906static struct notifier_block sclp_reboot_notifier = {
907 .notifier_call = sclp_reboot_event
908};
909
Michael Holzheu62b749422009-06-16 10:30:40 +0200910/*
911 * Suspend/resume SCLP notifier implementation
912 */
913
914static void sclp_pm_event(enum sclp_pm_event sclp_pm_event, int rollback)
915{
916 struct sclp_register *reg;
917 unsigned long flags;
918
919 if (!rollback) {
920 spin_lock_irqsave(&sclp_lock, flags);
921 list_for_each_entry(reg, &sclp_reg_list, list)
922 reg->pm_event_posted = 0;
923 spin_unlock_irqrestore(&sclp_lock, flags);
924 }
925 do {
926 spin_lock_irqsave(&sclp_lock, flags);
927 list_for_each_entry(reg, &sclp_reg_list, list) {
928 if (rollback && reg->pm_event_posted)
929 goto found;
930 if (!rollback && !reg->pm_event_posted)
931 goto found;
932 }
933 spin_unlock_irqrestore(&sclp_lock, flags);
934 return;
935found:
936 spin_unlock_irqrestore(&sclp_lock, flags);
937 if (reg->pm_event_fn)
938 reg->pm_event_fn(reg, sclp_pm_event);
939 reg->pm_event_posted = rollback ? 0 : 1;
940 } while (1);
941}
942
943/*
944 * Susend/resume callbacks for platform device
945 */
946
947static int sclp_freeze(struct device *dev)
948{
949 unsigned long flags;
950 int rc;
951
952 sclp_pm_event(SCLP_PM_EVENT_FREEZE, 0);
953
954 spin_lock_irqsave(&sclp_lock, flags);
955 sclp_suspend_state = sclp_suspend_state_suspended;
956 spin_unlock_irqrestore(&sclp_lock, flags);
957
958 /* Init supend data */
959 memset(&sclp_suspend_req, 0, sizeof(sclp_suspend_req));
960 sclp_suspend_req.callback = sclp_suspend_req_cb;
961 sclp_suspend_req.status = SCLP_REQ_FILLED;
962 init_completion(&sclp_request_queue_flushed);
963
964 rc = sclp_add_request(&sclp_suspend_req);
965 if (rc == 0)
966 wait_for_completion(&sclp_request_queue_flushed);
967 else if (rc != -ENODATA)
968 goto fail_thaw;
969
970 rc = sclp_deactivate();
971 if (rc)
972 goto fail_thaw;
973 return 0;
974
975fail_thaw:
976 spin_lock_irqsave(&sclp_lock, flags);
977 sclp_suspend_state = sclp_suspend_state_running;
978 spin_unlock_irqrestore(&sclp_lock, flags);
979 sclp_pm_event(SCLP_PM_EVENT_THAW, 1);
980 return rc;
981}
982
983static int sclp_undo_suspend(enum sclp_pm_event event)
984{
985 unsigned long flags;
986 int rc;
987
988 rc = sclp_reactivate();
989 if (rc)
990 return rc;
991
992 spin_lock_irqsave(&sclp_lock, flags);
993 sclp_suspend_state = sclp_suspend_state_running;
994 spin_unlock_irqrestore(&sclp_lock, flags);
995
996 sclp_pm_event(event, 0);
997 return 0;
998}
999
1000static int sclp_thaw(struct device *dev)
1001{
1002 return sclp_undo_suspend(SCLP_PM_EVENT_THAW);
1003}
1004
1005static int sclp_restore(struct device *dev)
1006{
1007 return sclp_undo_suspend(SCLP_PM_EVENT_RESTORE);
1008}
1009
Alexey Dobriyan47145212009-12-14 18:00:08 -08001010static const struct dev_pm_ops sclp_pm_ops = {
Michael Holzheu62b749422009-06-16 10:30:40 +02001011 .freeze = sclp_freeze,
1012 .thaw = sclp_thaw,
1013 .restore = sclp_restore,
1014};
1015
1016static struct platform_driver sclp_pdrv = {
1017 .driver = {
1018 .name = "sclp",
1019 .owner = THIS_MODULE,
1020 .pm = &sclp_pm_ops,
1021 },
1022};
1023
1024static struct platform_device *sclp_pdev;
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026/* Initialize SCLP driver. Return zero if driver is operational, non-zero
1027 * otherwise. */
1028static int
1029sclp_init(void)
1030{
1031 unsigned long flags;
Michael Holzheu62b749422009-06-16 10:30:40 +02001032 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 spin_lock_irqsave(&sclp_lock, flags);
1035 /* Check for previous or running initialization */
Michael Holzheu62b749422009-06-16 10:30:40 +02001036 if (sclp_init_state != sclp_init_state_uninitialized)
1037 goto fail_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 sclp_init_state = sclp_init_state_initializing;
1039 /* Set up variables */
1040 INIT_LIST_HEAD(&sclp_req_queue);
1041 INIT_LIST_HEAD(&sclp_reg_list);
1042 list_add(&sclp_state_change_event.list, &sclp_reg_list);
1043 init_timer(&sclp_request_timer);
1044 /* Check interface */
1045 spin_unlock_irqrestore(&sclp_lock, flags);
1046 rc = sclp_check_interface();
1047 spin_lock_irqsave(&sclp_lock, flags);
Michael Holzheu62b749422009-06-16 10:30:40 +02001048 if (rc)
1049 goto fail_init_state_uninitialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 /* Register reboot handler */
1051 rc = register_reboot_notifier(&sclp_reboot_notifier);
Michael Holzheu62b749422009-06-16 10:30:40 +02001052 if (rc)
1053 goto fail_init_state_uninitialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 /* Register interrupt handler */
Heiko Carstens98b79982011-01-05 12:47:40 +01001055 rc = register_external_interrupt(0x2401, sclp_interrupt_handler);
Michael Holzheu62b749422009-06-16 10:30:40 +02001056 if (rc)
1057 goto fail_unregister_reboot_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 sclp_init_state = sclp_init_state_initialized;
1059 spin_unlock_irqrestore(&sclp_lock, flags);
1060 /* Enable service-signal external interruption - needs to happen with
1061 * IRQs enabled. */
Heiko Carstensdf7997a2011-05-26 09:48:23 +02001062 service_subclass_irq_register();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 sclp_init_mask(1);
1064 return 0;
Michael Holzheu62b749422009-06-16 10:30:40 +02001065
1066fail_unregister_reboot_notifier:
1067 unregister_reboot_notifier(&sclp_reboot_notifier);
1068fail_init_state_uninitialized:
1069 sclp_init_state = sclp_init_state_uninitialized;
1070fail_unlock:
1071 spin_unlock_irqrestore(&sclp_lock, flags);
1072 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
Peter Oberparleiterb3d00c32007-04-27 16:01:51 +02001074
Michael Holzheu62b749422009-06-16 10:30:40 +02001075/*
1076 * SCLP panic notifier: If we are suspended, we thaw SCLP in order to be able
1077 * to print the panic message.
1078 */
1079static int sclp_panic_notify(struct notifier_block *self,
1080 unsigned long event, void *data)
1081{
1082 if (sclp_suspend_state == sclp_suspend_state_suspended)
1083 sclp_undo_suspend(SCLP_PM_EVENT_THAW);
1084 return NOTIFY_OK;
1085}
1086
1087static struct notifier_block sclp_on_panic_nb = {
1088 .notifier_call = sclp_panic_notify,
1089 .priority = SCLP_PANIC_PRIO,
1090};
1091
Peter Oberparleiterb3d00c32007-04-27 16:01:51 +02001092static __init int sclp_initcall(void)
1093{
Michael Holzheu62b749422009-06-16 10:30:40 +02001094 int rc;
1095
1096 rc = platform_driver_register(&sclp_pdrv);
1097 if (rc)
1098 return rc;
1099 sclp_pdev = platform_device_register_simple("sclp", -1, NULL, 0);
1100 rc = IS_ERR(sclp_pdev) ? PTR_ERR(sclp_pdev) : 0;
1101 if (rc)
1102 goto fail_platform_driver_unregister;
1103 rc = atomic_notifier_chain_register(&panic_notifier_list,
1104 &sclp_on_panic_nb);
1105 if (rc)
1106 goto fail_platform_device_unregister;
1107
Peter Oberparleiterb3d00c32007-04-27 16:01:51 +02001108 return sclp_init();
Michael Holzheu62b749422009-06-16 10:30:40 +02001109
1110fail_platform_device_unregister:
1111 platform_device_unregister(sclp_pdev);
1112fail_platform_driver_unregister:
1113 platform_driver_unregister(&sclp_pdrv);
1114 return rc;
Peter Oberparleiterb3d00c32007-04-27 16:01:51 +02001115}
1116
1117arch_initcall(sclp_initcall);