[S390] cio: Export some symbols for modular css drivers.
[pandora-kernel.git] / drivers / s390 / cio / chp.c
1 /*
2  *  drivers/s390/cio/chp.c
3  *
4  *    Copyright IBM Corp. 1999,2007
5  *    Author(s): Cornelia Huck (cornelia.huck@de.ibm.com)
6  *               Arnd Bergmann (arndb@de.ibm.com)
7  *               Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
8  */
9
10 #include <linux/bug.h>
11 #include <linux/workqueue.h>
12 #include <linux/spinlock.h>
13 #include <linux/init.h>
14 #include <linux/jiffies.h>
15 #include <linux/wait.h>
16 #include <linux/mutex.h>
17 #include <linux/errno.h>
18 #include <asm/chpid.h>
19 #include <asm/sclp.h>
20
21 #include "../s390mach.h"
22 #include "cio.h"
23 #include "css.h"
24 #include "ioasm.h"
25 #include "cio_debug.h"
26 #include "chp.h"
27
28 #define to_channelpath(device) container_of(device, struct channel_path, dev)
29 #define CHP_INFO_UPDATE_INTERVAL        1*HZ
30
31 enum cfg_task_t {
32         cfg_none,
33         cfg_configure,
34         cfg_deconfigure
35 };
36
37 /* Map for pending configure tasks. */
38 static enum cfg_task_t chp_cfg_task[__MAX_CSSID + 1][__MAX_CHPID + 1];
39 static DEFINE_MUTEX(cfg_lock);
40 static int cfg_busy;
41
42 /* Map for channel-path status. */
43 static struct sclp_chp_info chp_info;
44 static DEFINE_MUTEX(info_lock);
45
46 /* Time after which channel-path status may be outdated. */
47 static unsigned long chp_info_expires;
48
49 /* Workqueue to perform pending configure tasks. */
50 static struct workqueue_struct *chp_wq;
51 static struct work_struct cfg_work;
52
53 /* Wait queue for configure completion events. */
54 static wait_queue_head_t cfg_wait_queue;
55
56 /* Return channel_path struct for given chpid. */
57 static inline struct channel_path *chpid_to_chp(struct chp_id chpid)
58 {
59         return channel_subsystems[chpid.cssid]->chps[chpid.id];
60 }
61
62 /* Set vary state for given chpid. */
63 static void set_chp_logically_online(struct chp_id chpid, int onoff)
64 {
65         chpid_to_chp(chpid)->state = onoff;
66 }
67
68 /* On succes return 0 if channel-path is varied offline, 1 if it is varied
69  * online. Return -ENODEV if channel-path is not registered. */
70 int chp_get_status(struct chp_id chpid)
71 {
72         return (chpid_to_chp(chpid) ? chpid_to_chp(chpid)->state : -ENODEV);
73 }
74
75 /**
76  * chp_get_sch_opm - return opm for subchannel
77  * @sch: subchannel
78  *
79  * Calculate and return the operational path mask (opm) based on the chpids
80  * used by the subchannel and the status of the associated channel-paths.
81  */
82 u8 chp_get_sch_opm(struct subchannel *sch)
83 {
84         struct chp_id chpid;
85         int opm;
86         int i;
87
88         opm = 0;
89         chp_id_init(&chpid);
90         for (i = 0; i < 8; i++) {
91                 opm <<= 1;
92                 chpid.id = sch->schib.pmcw.chpid[i];
93                 if (chp_get_status(chpid) != 0)
94                         opm |= 1;
95         }
96         return opm;
97 }
98 EXPORT_SYMBOL_GPL(chp_get_sch_opm);
99
100 /**
101  * chp_is_registered - check if a channel-path is registered
102  * @chpid: channel-path ID
103  *
104  * Return non-zero if a channel-path with the given chpid is registered,
105  * zero otherwise.
106  */
107 int chp_is_registered(struct chp_id chpid)
108 {
109         return chpid_to_chp(chpid) != NULL;
110 }
111
112 /*
113  * Function: s390_vary_chpid
114  * Varies the specified chpid online or offline
115  */
116 static int s390_vary_chpid(struct chp_id chpid, int on)
117 {
118         char dbf_text[15];
119         int status;
120
121         sprintf(dbf_text, on?"varyon%x.%02x":"varyoff%x.%02x", chpid.cssid,
122                 chpid.id);
123         CIO_TRACE_EVENT(2, dbf_text);
124
125         status = chp_get_status(chpid);
126         if (!on && !status) {
127                 printk(KERN_ERR "cio: chpid %x.%02x is already offline\n",
128                        chpid.cssid, chpid.id);
129                 return -EINVAL;
130         }
131
132         set_chp_logically_online(chpid, on);
133         chsc_chp_vary(chpid, on);
134         return 0;
135 }
136
137 /*
138  * Channel measurement related functions
139  */
140 static ssize_t chp_measurement_chars_read(struct kobject *kobj,
141                                           struct bin_attribute *bin_attr,
142                                           char *buf, loff_t off, size_t count)
143 {
144         struct channel_path *chp;
145         struct device *device;
146         unsigned int size;
147
148         device = container_of(kobj, struct device, kobj);
149         chp = to_channelpath(device);
150         if (!chp->cmg_chars)
151                 return 0;
152
153         size = sizeof(struct cmg_chars);
154
155         if (off > size)
156                 return 0;
157         if (off + count > size)
158                 count = size - off;
159         memcpy(buf, chp->cmg_chars + off, count);
160         return count;
161 }
162
163 static struct bin_attribute chp_measurement_chars_attr = {
164         .attr = {
165                 .name = "measurement_chars",
166                 .mode = S_IRUSR,
167         },
168         .size = sizeof(struct cmg_chars),
169         .read = chp_measurement_chars_read,
170 };
171
172 static void chp_measurement_copy_block(struct cmg_entry *buf,
173                                        struct channel_subsystem *css,
174                                        struct chp_id chpid)
175 {
176         void *area;
177         struct cmg_entry *entry, reference_buf;
178         int idx;
179
180         if (chpid.id < 128) {
181                 area = css->cub_addr1;
182                 idx = chpid.id;
183         } else {
184                 area = css->cub_addr2;
185                 idx = chpid.id - 128;
186         }
187         entry = area + (idx * sizeof(struct cmg_entry));
188         do {
189                 memcpy(buf, entry, sizeof(*entry));
190                 memcpy(&reference_buf, entry, sizeof(*entry));
191         } while (reference_buf.values[0] != buf->values[0]);
192 }
193
194 static ssize_t chp_measurement_read(struct kobject *kobj,
195                                     struct bin_attribute *bin_attr,
196                                     char *buf, loff_t off, size_t count)
197 {
198         struct channel_path *chp;
199         struct channel_subsystem *css;
200         struct device *device;
201         unsigned int size;
202
203         device = container_of(kobj, struct device, kobj);
204         chp = to_channelpath(device);
205         css = to_css(chp->dev.parent);
206
207         size = sizeof(struct cmg_entry);
208
209         /* Only allow single reads. */
210         if (off || count < size)
211                 return 0;
212         chp_measurement_copy_block((struct cmg_entry *)buf, css, chp->chpid);
213         count = size;
214         return count;
215 }
216
217 static struct bin_attribute chp_measurement_attr = {
218         .attr = {
219                 .name = "measurement",
220                 .mode = S_IRUSR,
221         },
222         .size = sizeof(struct cmg_entry),
223         .read = chp_measurement_read,
224 };
225
226 void chp_remove_cmg_attr(struct channel_path *chp)
227 {
228         device_remove_bin_file(&chp->dev, &chp_measurement_chars_attr);
229         device_remove_bin_file(&chp->dev, &chp_measurement_attr);
230 }
231
232 int chp_add_cmg_attr(struct channel_path *chp)
233 {
234         int ret;
235
236         ret = device_create_bin_file(&chp->dev, &chp_measurement_chars_attr);
237         if (ret)
238                 return ret;
239         ret = device_create_bin_file(&chp->dev, &chp_measurement_attr);
240         if (ret)
241                 device_remove_bin_file(&chp->dev, &chp_measurement_chars_attr);
242         return ret;
243 }
244
245 /*
246  * Files for the channel path entries.
247  */
248 static ssize_t chp_status_show(struct device *dev,
249                                struct device_attribute *attr, char *buf)
250 {
251         struct channel_path *chp = to_channelpath(dev);
252
253         if (!chp)
254                 return 0;
255         return (chp_get_status(chp->chpid) ? sprintf(buf, "online\n") :
256                 sprintf(buf, "offline\n"));
257 }
258
259 static ssize_t chp_status_write(struct device *dev,
260                                 struct device_attribute *attr,
261                                 const char *buf, size_t count)
262 {
263         struct channel_path *cp = to_channelpath(dev);
264         char cmd[10];
265         int num_args;
266         int error;
267
268         num_args = sscanf(buf, "%5s", cmd);
269         if (!num_args)
270                 return count;
271
272         if (!strnicmp(cmd, "on", 2) || !strcmp(cmd, "1"))
273                 error = s390_vary_chpid(cp->chpid, 1);
274         else if (!strnicmp(cmd, "off", 3) || !strcmp(cmd, "0"))
275                 error = s390_vary_chpid(cp->chpid, 0);
276         else
277                 error = -EINVAL;
278
279         return error < 0 ? error : count;
280
281 }
282
283 static DEVICE_ATTR(status, 0644, chp_status_show, chp_status_write);
284
285 static ssize_t chp_configure_show(struct device *dev,
286                                   struct device_attribute *attr, char *buf)
287 {
288         struct channel_path *cp;
289         int status;
290
291         cp = to_channelpath(dev);
292         status = chp_info_get_status(cp->chpid);
293         if (status < 0)
294                 return status;
295
296         return snprintf(buf, PAGE_SIZE, "%d\n", status);
297 }
298
299 static int cfg_wait_idle(void);
300
301 static ssize_t chp_configure_write(struct device *dev,
302                                    struct device_attribute *attr,
303                                    const char *buf, size_t count)
304 {
305         struct channel_path *cp;
306         int val;
307         char delim;
308
309         if (sscanf(buf, "%d %c", &val, &delim) != 1)
310                 return -EINVAL;
311         if (val != 0 && val != 1)
312                 return -EINVAL;
313         cp = to_channelpath(dev);
314         chp_cfg_schedule(cp->chpid, val);
315         cfg_wait_idle();
316
317         return count;
318 }
319
320 static DEVICE_ATTR(configure, 0644, chp_configure_show, chp_configure_write);
321
322 static ssize_t chp_type_show(struct device *dev, struct device_attribute *attr,
323                              char *buf)
324 {
325         struct channel_path *chp = to_channelpath(dev);
326
327         if (!chp)
328                 return 0;
329         return sprintf(buf, "%x\n", chp->desc.desc);
330 }
331
332 static DEVICE_ATTR(type, 0444, chp_type_show, NULL);
333
334 static ssize_t chp_cmg_show(struct device *dev, struct device_attribute *attr,
335                             char *buf)
336 {
337         struct channel_path *chp = to_channelpath(dev);
338
339         if (!chp)
340                 return 0;
341         if (chp->cmg == -1) /* channel measurements not available */
342                 return sprintf(buf, "unknown\n");
343         return sprintf(buf, "%x\n", chp->cmg);
344 }
345
346 static DEVICE_ATTR(cmg, 0444, chp_cmg_show, NULL);
347
348 static ssize_t chp_shared_show(struct device *dev,
349                                struct device_attribute *attr, char *buf)
350 {
351         struct channel_path *chp = to_channelpath(dev);
352
353         if (!chp)
354                 return 0;
355         if (chp->shared == -1) /* channel measurements not available */
356                 return sprintf(buf, "unknown\n");
357         return sprintf(buf, "%x\n", chp->shared);
358 }
359
360 static DEVICE_ATTR(shared, 0444, chp_shared_show, NULL);
361
362 static struct attribute *chp_attrs[] = {
363         &dev_attr_status.attr,
364         &dev_attr_configure.attr,
365         &dev_attr_type.attr,
366         &dev_attr_cmg.attr,
367         &dev_attr_shared.attr,
368         NULL,
369 };
370
371 static struct attribute_group chp_attr_group = {
372         .attrs = chp_attrs,
373 };
374
375 static void chp_release(struct device *dev)
376 {
377         struct channel_path *cp;
378
379         cp = to_channelpath(dev);
380         kfree(cp);
381 }
382
383 /**
384  * chp_new - register a new channel-path
385  * @chpid - channel-path ID
386  *
387  * Create and register data structure representing new channel-path. Return
388  * zero on success, non-zero otherwise.
389  */
390 int chp_new(struct chp_id chpid)
391 {
392         struct channel_path *chp;
393         int ret;
394
395         if (chp_is_registered(chpid))
396                 return 0;
397         chp = kzalloc(sizeof(struct channel_path), GFP_KERNEL);
398         if (!chp)
399                 return -ENOMEM;
400
401         /* fill in status, etc. */
402         chp->chpid = chpid;
403         chp->state = 1;
404         chp->dev.parent = &channel_subsystems[chpid.cssid]->device;
405         chp->dev.release = chp_release;
406         snprintf(chp->dev.bus_id, BUS_ID_SIZE, "chp%x.%02x", chpid.cssid,
407                  chpid.id);
408
409         /* Obtain channel path description and fill it in. */
410         ret = chsc_determine_channel_path_description(chpid, &chp->desc);
411         if (ret)
412                 goto out_free;
413         if ((chp->desc.flags & 0x80) == 0) {
414                 ret = -ENODEV;
415                 goto out_free;
416         }
417         /* Get channel-measurement characteristics. */
418         if (css_characteristics_avail && css_chsc_characteristics.scmc
419             && css_chsc_characteristics.secm) {
420                 ret = chsc_get_channel_measurement_chars(chp);
421                 if (ret)
422                         goto out_free;
423         } else {
424                 chp->cmg = -1;
425         }
426
427         /* make it known to the system */
428         ret = device_register(&chp->dev);
429         if (ret) {
430                 CIO_MSG_EVENT(0, "Could not register chp%x.%02x: %d\n",
431                               chpid.cssid, chpid.id, ret);
432                 goto out_free;
433         }
434         ret = sysfs_create_group(&chp->dev.kobj, &chp_attr_group);
435         if (ret) {
436                 device_unregister(&chp->dev);
437                 goto out_free;
438         }
439         mutex_lock(&channel_subsystems[chpid.cssid]->mutex);
440         if (channel_subsystems[chpid.cssid]->cm_enabled) {
441                 ret = chp_add_cmg_attr(chp);
442                 if (ret) {
443                         sysfs_remove_group(&chp->dev.kobj, &chp_attr_group);
444                         device_unregister(&chp->dev);
445                         mutex_unlock(&channel_subsystems[chpid.cssid]->mutex);
446                         goto out_free;
447                 }
448         }
449         channel_subsystems[chpid.cssid]->chps[chpid.id] = chp;
450         mutex_unlock(&channel_subsystems[chpid.cssid]->mutex);
451         return ret;
452 out_free:
453         kfree(chp);
454         return ret;
455 }
456
457 /**
458  * chp_get_chp_desc - return newly allocated channel-path description
459  * @chpid: channel-path ID
460  *
461  * On success return a newly allocated copy of the channel-path description
462  * data associated with the given channel-path ID. Return %NULL on error.
463  */
464 void *chp_get_chp_desc(struct chp_id chpid)
465 {
466         struct channel_path *chp;
467         struct channel_path_desc *desc;
468
469         chp = chpid_to_chp(chpid);
470         if (!chp)
471                 return NULL;
472         desc = kmalloc(sizeof(struct channel_path_desc), GFP_KERNEL);
473         if (!desc)
474                 return NULL;
475         memcpy(desc, &chp->desc, sizeof(struct channel_path_desc));
476         return desc;
477 }
478
479 /**
480  * chp_process_crw - process channel-path status change
481  * @crw0: channel report-word to handler
482  * @crw1: second channel-report word (always NULL)
483  * @overflow: crw overflow indication
484  *
485  * Handle channel-report-words indicating that the status of a channel-path
486  * has changed.
487  */
488 static void chp_process_crw(struct crw *crw0, struct crw *crw1,
489                             int overflow)
490 {
491         struct chp_id chpid;
492
493         if (overflow) {
494                 css_schedule_eval_all();
495                 return;
496         }
497         CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
498                       "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
499                       crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
500                       crw0->erc, crw0->rsid);
501         /*
502          * Check for solicited machine checks. These are
503          * created by reset channel path and need not be
504          * handled here.
505          */
506         if (crw0->slct) {
507                 CIO_CRW_EVENT(2, "solicited machine check for "
508                               "channel path %02X\n", crw0->rsid);
509                 return;
510         }
511         chp_id_init(&chpid);
512         chpid.id = crw0->rsid;
513         switch (crw0->erc) {
514         case CRW_ERC_IPARM: /* Path has come. */
515                 if (!chp_is_registered(chpid))
516                         chp_new(chpid);
517                 chsc_chp_online(chpid);
518                 break;
519         case CRW_ERC_PERRI: /* Path has gone. */
520         case CRW_ERC_PERRN:
521                 chsc_chp_offline(chpid);
522                 break;
523         default:
524                 CIO_CRW_EVENT(2, "Don't know how to handle erc=%x\n",
525                               crw0->erc);
526         }
527 }
528
529 int chp_ssd_get_mask(struct chsc_ssd_info *ssd, struct res_acc_data *data)
530 {
531         int i;
532         int mask;
533
534         for (i = 0; i < 8; i++) {
535                 mask = 0x80 >> i;
536                 if (!(ssd->path_mask & mask))
537                         continue;
538                 if (!chp_id_is_equal(&ssd->chpid[i], &data->chpid))
539                         continue;
540                 if ((ssd->fla_valid_mask & mask) &&
541                     ((ssd->fla[i] & data->fla_mask) != data->fla))
542                         continue;
543                 return mask;
544         }
545         return 0;
546 }
547 EXPORT_SYMBOL_GPL(chp_ssd_get_mask);
548
549 static inline int info_bit_num(struct chp_id id)
550 {
551         return id.id + id.cssid * (__MAX_CHPID + 1);
552 }
553
554 /* Force chp_info refresh on next call to info_validate(). */
555 static void info_expire(void)
556 {
557         mutex_lock(&info_lock);
558         chp_info_expires = jiffies - 1;
559         mutex_unlock(&info_lock);
560 }
561
562 /* Ensure that chp_info is up-to-date. */
563 static int info_update(void)
564 {
565         int rc;
566
567         mutex_lock(&info_lock);
568         rc = 0;
569         if (time_after(jiffies, chp_info_expires)) {
570                 /* Data is too old, update. */
571                 rc = sclp_chp_read_info(&chp_info);
572                 chp_info_expires = jiffies + CHP_INFO_UPDATE_INTERVAL ;
573         }
574         mutex_unlock(&info_lock);
575
576         return rc;
577 }
578
579 /**
580  * chp_info_get_status - retrieve configure status of a channel-path
581  * @chpid: channel-path ID
582  *
583  * On success, return 0 for standby, 1 for configured, 2 for reserved,
584  * 3 for not recognized. Return negative error code on error.
585  */
586 int chp_info_get_status(struct chp_id chpid)
587 {
588         int rc;
589         int bit;
590
591         rc = info_update();
592         if (rc)
593                 return rc;
594
595         bit = info_bit_num(chpid);
596         mutex_lock(&info_lock);
597         if (!chp_test_bit(chp_info.recognized, bit))
598                 rc = CHP_STATUS_NOT_RECOGNIZED;
599         else if (chp_test_bit(chp_info.configured, bit))
600                 rc = CHP_STATUS_CONFIGURED;
601         else if (chp_test_bit(chp_info.standby, bit))
602                 rc = CHP_STATUS_STANDBY;
603         else
604                 rc = CHP_STATUS_RESERVED;
605         mutex_unlock(&info_lock);
606
607         return rc;
608 }
609
610 /* Return configure task for chpid. */
611 static enum cfg_task_t cfg_get_task(struct chp_id chpid)
612 {
613         return chp_cfg_task[chpid.cssid][chpid.id];
614 }
615
616 /* Set configure task for chpid. */
617 static void cfg_set_task(struct chp_id chpid, enum cfg_task_t cfg)
618 {
619         chp_cfg_task[chpid.cssid][chpid.id] = cfg;
620 }
621
622 /* Perform one configure/deconfigure request. Reschedule work function until
623  * last request. */
624 static void cfg_func(struct work_struct *work)
625 {
626         struct chp_id chpid;
627         enum cfg_task_t t;
628
629         mutex_lock(&cfg_lock);
630         t = cfg_none;
631         chp_id_for_each(&chpid) {
632                 t = cfg_get_task(chpid);
633                 if (t != cfg_none) {
634                         cfg_set_task(chpid, cfg_none);
635                         break;
636                 }
637         }
638         mutex_unlock(&cfg_lock);
639
640         switch (t) {
641         case cfg_configure:
642                 sclp_chp_configure(chpid);
643                 info_expire();
644                 chsc_chp_online(chpid);
645                 break;
646         case cfg_deconfigure:
647                 sclp_chp_deconfigure(chpid);
648                 info_expire();
649                 chsc_chp_offline(chpid);
650                 break;
651         case cfg_none:
652                 /* Get updated information after last change. */
653                 info_update();
654                 mutex_lock(&cfg_lock);
655                 cfg_busy = 0;
656                 mutex_unlock(&cfg_lock);
657                 wake_up_interruptible(&cfg_wait_queue);
658                 return;
659         }
660         queue_work(chp_wq, &cfg_work);
661 }
662
663 /**
664  * chp_cfg_schedule - schedule chpid configuration request
665  * @chpid - channel-path ID
666  * @configure - Non-zero for configure, zero for deconfigure
667  *
668  * Schedule a channel-path configuration/deconfiguration request.
669  */
670 void chp_cfg_schedule(struct chp_id chpid, int configure)
671 {
672         CIO_MSG_EVENT(2, "chp_cfg_sched%x.%02x=%d\n", chpid.cssid, chpid.id,
673                       configure);
674         mutex_lock(&cfg_lock);
675         cfg_set_task(chpid, configure ? cfg_configure : cfg_deconfigure);
676         cfg_busy = 1;
677         mutex_unlock(&cfg_lock);
678         queue_work(chp_wq, &cfg_work);
679 }
680
681 /**
682  * chp_cfg_cancel_deconfigure - cancel chpid deconfiguration request
683  * @chpid - channel-path ID
684  *
685  * Cancel an active channel-path deconfiguration request if it has not yet
686  * been performed.
687  */
688 void chp_cfg_cancel_deconfigure(struct chp_id chpid)
689 {
690         CIO_MSG_EVENT(2, "chp_cfg_cancel:%x.%02x\n", chpid.cssid, chpid.id);
691         mutex_lock(&cfg_lock);
692         if (cfg_get_task(chpid) == cfg_deconfigure)
693                 cfg_set_task(chpid, cfg_none);
694         mutex_unlock(&cfg_lock);
695 }
696
697 static int cfg_wait_idle(void)
698 {
699         if (wait_event_interruptible(cfg_wait_queue, !cfg_busy))
700                 return -ERESTARTSYS;
701         return 0;
702 }
703
704 static int __init chp_init(void)
705 {
706         struct chp_id chpid;
707         int ret;
708
709         ret = s390_register_crw_handler(CRW_RSC_CPATH, chp_process_crw);
710         if (ret)
711                 return ret;
712         chp_wq = create_singlethread_workqueue("cio_chp");
713         if (!chp_wq) {
714                 s390_unregister_crw_handler(CRW_RSC_CPATH);
715                 return -ENOMEM;
716         }
717         INIT_WORK(&cfg_work, cfg_func);
718         init_waitqueue_head(&cfg_wait_queue);
719         if (info_update())
720                 return 0;
721         /* Register available channel-paths. */
722         chp_id_for_each(&chpid) {
723                 if (chp_info_get_status(chpid) != CHP_STATUS_NOT_RECOGNIZED)
724                         chp_new(chpid);
725         }
726
727         return 0;
728 }
729
730 subsys_initcall(chp_init);