blob: b1addd78689dc0f57b44964944e3de3598d2a443 [file] [log] [blame]
Peter Oberparleitere6b6e102007-04-27 16:01:28 +02001/*
2 * drivers/s390/cio/chp.c
3 *
Sebastian Ottb730f3a2010-10-25 16:10:27 +02004 * Copyright IBM Corp. 1999,2010
Peter Oberparleitere6b6e102007-04-27 16:01:28 +02005 * 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>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020013#include <linux/init.h>
14#include <linux/jiffies.h>
15#include <linux/wait.h>
16#include <linux/mutex.h>
Cornelia Hucka0ea22c32007-10-12 16:11:19 +020017#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020019#include <asm/chpid.h>
20#include <asm/sclp.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010021#include <asm/crw.h>
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020022
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020023#include "cio.h"
24#include "css.h"
25#include "ioasm.h"
26#include "cio_debug.h"
27#include "chp.h"
28
29#define to_channelpath(device) container_of(device, struct channel_path, dev)
Peter Oberparleitere5854a52007-04-27 16:01:31 +020030#define CHP_INFO_UPDATE_INTERVAL 1*HZ
31
32enum cfg_task_t {
33 cfg_none,
34 cfg_configure,
35 cfg_deconfigure
36};
37
38/* Map for pending configure tasks. */
39static enum cfg_task_t chp_cfg_task[__MAX_CSSID + 1][__MAX_CHPID + 1];
40static DEFINE_MUTEX(cfg_lock);
41static int cfg_busy;
42
43/* Map for channel-path status. */
44static struct sclp_chp_info chp_info;
45static DEFINE_MUTEX(info_lock);
46
47/* Time after which channel-path status may be outdated. */
48static unsigned long chp_info_expires;
49
50/* Workqueue to perform pending configure tasks. */
51static struct workqueue_struct *chp_wq;
52static struct work_struct cfg_work;
53
54/* Wait queue for configure completion events. */
55static wait_queue_head_t cfg_wait_queue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020056
57/* Return channel_path struct for given chpid. */
58static inline struct channel_path *chpid_to_chp(struct chp_id chpid)
59{
Cornelia Huck7c9f4e32007-10-12 16:11:13 +020060 return channel_subsystems[chpid.cssid]->chps[chpid.id];
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020061}
62
63/* Set vary state for given chpid. */
64static void set_chp_logically_online(struct chp_id chpid, int onoff)
65{
66 chpid_to_chp(chpid)->state = onoff;
67}
68
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020069/* On success return 0 if channel-path is varied offline, 1 if it is varied
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020070 * online. Return -ENODEV if channel-path is not registered. */
71int chp_get_status(struct chp_id chpid)
72{
73 return (chpid_to_chp(chpid) ? chpid_to_chp(chpid)->state : -ENODEV);
74}
75
76/**
77 * chp_get_sch_opm - return opm for subchannel
78 * @sch: subchannel
79 *
80 * Calculate and return the operational path mask (opm) based on the chpids
81 * used by the subchannel and the status of the associated channel-paths.
82 */
83u8 chp_get_sch_opm(struct subchannel *sch)
84{
85 struct chp_id chpid;
86 int opm;
87 int i;
88
89 opm = 0;
90 chp_id_init(&chpid);
Cornelia Hucka0ea22c32007-10-12 16:11:19 +020091 for (i = 0; i < 8; i++) {
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020092 opm <<= 1;
93 chpid.id = sch->schib.pmcw.chpid[i];
94 if (chp_get_status(chpid) != 0)
95 opm |= 1;
96 }
97 return opm;
98}
Cornelia Huck44a1c192008-07-14 09:58:47 +020099EXPORT_SYMBOL_GPL(chp_get_sch_opm);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200100
101/**
102 * chp_is_registered - check if a channel-path is registered
103 * @chpid: channel-path ID
104 *
105 * Return non-zero if a channel-path with the given chpid is registered,
106 * zero otherwise.
107 */
108int chp_is_registered(struct chp_id chpid)
109{
110 return chpid_to_chp(chpid) != NULL;
111}
112
113/*
114 * Function: s390_vary_chpid
115 * Varies the specified chpid online or offline
116 */
117static int s390_vary_chpid(struct chp_id chpid, int on)
118{
119 char dbf_text[15];
120 int status;
121
122 sprintf(dbf_text, on?"varyon%x.%02x":"varyoff%x.%02x", chpid.cssid,
123 chpid.id);
Cornelia Hucka0ea22c32007-10-12 16:11:19 +0200124 CIO_TRACE_EVENT(2, dbf_text);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200125
126 status = chp_get_status(chpid);
Michael Ernstc78aa6c2008-07-14 09:59:22 +0200127 if (!on && !status)
128 return 0;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200129
130 set_chp_logically_online(chpid, on);
131 chsc_chp_vary(chpid, on);
132 return 0;
133}
134
135/*
136 * Channel measurement related functions
137 */
Chris Wright2c3c8be2010-05-12 18:28:57 -0700138static ssize_t chp_measurement_chars_read(struct file *filp,
139 struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800140 struct bin_attribute *bin_attr,
141 char *buf, loff_t off, size_t count)
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200142{
143 struct channel_path *chp;
Heiko Carstens364c8552007-10-12 16:11:35 +0200144 struct device *device;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200145
Heiko Carstens364c8552007-10-12 16:11:35 +0200146 device = container_of(kobj, struct device, kobj);
147 chp = to_channelpath(device);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200148 if (!chp->cmg_chars)
149 return 0;
150
Akinobu Mitad9cef212008-07-14 09:59:15 +0200151 return memory_read_from_buffer(buf, count, &off,
152 chp->cmg_chars, sizeof(struct cmg_chars));
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200153}
154
155static struct bin_attribute chp_measurement_chars_attr = {
156 .attr = {
157 .name = "measurement_chars",
158 .mode = S_IRUSR,
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200159 },
160 .size = sizeof(struct cmg_chars),
161 .read = chp_measurement_chars_read,
162};
163
164static void chp_measurement_copy_block(struct cmg_entry *buf,
165 struct channel_subsystem *css,
166 struct chp_id chpid)
167{
168 void *area;
169 struct cmg_entry *entry, reference_buf;
170 int idx;
171
172 if (chpid.id < 128) {
173 area = css->cub_addr1;
174 idx = chpid.id;
175 } else {
176 area = css->cub_addr2;
177 idx = chpid.id - 128;
178 }
179 entry = area + (idx * sizeof(struct cmg_entry));
180 do {
181 memcpy(buf, entry, sizeof(*entry));
182 memcpy(&reference_buf, entry, sizeof(*entry));
183 } while (reference_buf.values[0] != buf->values[0]);
184}
185
Chris Wright2c3c8be2010-05-12 18:28:57 -0700186static ssize_t chp_measurement_read(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800187 struct bin_attribute *bin_attr,
188 char *buf, loff_t off, size_t count)
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200189{
190 struct channel_path *chp;
191 struct channel_subsystem *css;
Heiko Carstens364c8552007-10-12 16:11:35 +0200192 struct device *device;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200193 unsigned int size;
194
Heiko Carstens364c8552007-10-12 16:11:35 +0200195 device = container_of(kobj, struct device, kobj);
196 chp = to_channelpath(device);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200197 css = to_css(chp->dev.parent);
198
199 size = sizeof(struct cmg_entry);
200
201 /* Only allow single reads. */
202 if (off || count < size)
203 return 0;
204 chp_measurement_copy_block((struct cmg_entry *)buf, css, chp->chpid);
205 count = size;
206 return count;
207}
208
209static struct bin_attribute chp_measurement_attr = {
210 .attr = {
211 .name = "measurement",
212 .mode = S_IRUSR,
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200213 },
214 .size = sizeof(struct cmg_entry),
215 .read = chp_measurement_read,
216};
217
218void chp_remove_cmg_attr(struct channel_path *chp)
219{
220 device_remove_bin_file(&chp->dev, &chp_measurement_chars_attr);
221 device_remove_bin_file(&chp->dev, &chp_measurement_attr);
222}
223
224int chp_add_cmg_attr(struct channel_path *chp)
225{
226 int ret;
227
228 ret = device_create_bin_file(&chp->dev, &chp_measurement_chars_attr);
229 if (ret)
230 return ret;
231 ret = device_create_bin_file(&chp->dev, &chp_measurement_attr);
232 if (ret)
233 device_remove_bin_file(&chp->dev, &chp_measurement_chars_attr);
234 return ret;
235}
236
237/*
238 * Files for the channel path entries.
239 */
240static ssize_t chp_status_show(struct device *dev,
241 struct device_attribute *attr, char *buf)
242{
Cornelia Huck05469602007-10-22 12:52:40 +0200243 struct channel_path *chp = to_channelpath(dev);
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200244 int status;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200245
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200246 mutex_lock(&chp->lock);
247 status = chp->state;
248 mutex_unlock(&chp->lock);
249
250 return status ? sprintf(buf, "online\n") : sprintf(buf, "offline\n");
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200251}
252
253static ssize_t chp_status_write(struct device *dev,
254 struct device_attribute *attr,
255 const char *buf, size_t count)
256{
Cornelia Huck05469602007-10-22 12:52:40 +0200257 struct channel_path *cp = to_channelpath(dev);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200258 char cmd[10];
259 int num_args;
260 int error;
261
262 num_args = sscanf(buf, "%5s", cmd);
263 if (!num_args)
264 return count;
265
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200266 if (!strnicmp(cmd, "on", 2) || !strcmp(cmd, "1")) {
267 mutex_lock(&cp->lock);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200268 error = s390_vary_chpid(cp->chpid, 1);
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200269 mutex_unlock(&cp->lock);
270 } else if (!strnicmp(cmd, "off", 3) || !strcmp(cmd, "0")) {
271 mutex_lock(&cp->lock);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200272 error = s390_vary_chpid(cp->chpid, 0);
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200273 mutex_unlock(&cp->lock);
274 } else
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200275 error = -EINVAL;
276
277 return error < 0 ? error : count;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200278}
279
280static DEVICE_ATTR(status, 0644, chp_status_show, chp_status_write);
281
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200282static ssize_t chp_configure_show(struct device *dev,
283 struct device_attribute *attr, char *buf)
284{
285 struct channel_path *cp;
286 int status;
287
Cornelia Huck05469602007-10-22 12:52:40 +0200288 cp = to_channelpath(dev);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200289 status = chp_info_get_status(cp->chpid);
290 if (status < 0)
291 return status;
292
293 return snprintf(buf, PAGE_SIZE, "%d\n", status);
294}
295
296static int cfg_wait_idle(void);
297
298static ssize_t chp_configure_write(struct device *dev,
299 struct device_attribute *attr,
300 const char *buf, size_t count)
301{
302 struct channel_path *cp;
303 int val;
304 char delim;
305
306 if (sscanf(buf, "%d %c", &val, &delim) != 1)
307 return -EINVAL;
308 if (val != 0 && val != 1)
309 return -EINVAL;
Cornelia Huck05469602007-10-22 12:52:40 +0200310 cp = to_channelpath(dev);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200311 chp_cfg_schedule(cp->chpid, val);
312 cfg_wait_idle();
313
314 return count;
315}
316
317static DEVICE_ATTR(configure, 0644, chp_configure_show, chp_configure_write);
318
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200319static ssize_t chp_type_show(struct device *dev, struct device_attribute *attr,
320 char *buf)
321{
Cornelia Huck05469602007-10-22 12:52:40 +0200322 struct channel_path *chp = to_channelpath(dev);
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200323 u8 type;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200324
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200325 mutex_lock(&chp->lock);
326 type = chp->desc.desc;
327 mutex_unlock(&chp->lock);
328 return sprintf(buf, "%x\n", type);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200329}
330
331static DEVICE_ATTR(type, 0444, chp_type_show, NULL);
332
333static ssize_t chp_cmg_show(struct device *dev, struct device_attribute *attr,
334 char *buf)
335{
336 struct channel_path *chp = to_channelpath(dev);
337
338 if (!chp)
339 return 0;
340 if (chp->cmg == -1) /* channel measurements not available */
341 return sprintf(buf, "unknown\n");
342 return sprintf(buf, "%x\n", chp->cmg);
343}
344
345static DEVICE_ATTR(cmg, 0444, chp_cmg_show, NULL);
346
347static ssize_t chp_shared_show(struct device *dev,
348 struct device_attribute *attr, char *buf)
349{
350 struct channel_path *chp = to_channelpath(dev);
351
352 if (!chp)
353 return 0;
354 if (chp->shared == -1) /* channel measurements not available */
355 return sprintf(buf, "unknown\n");
356 return sprintf(buf, "%x\n", chp->shared);
357}
358
359static DEVICE_ATTR(shared, 0444, chp_shared_show, NULL);
360
Cornelia Hucka0ea22c32007-10-12 16:11:19 +0200361static struct attribute *chp_attrs[] = {
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200362 &dev_attr_status.attr,
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200363 &dev_attr_configure.attr,
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200364 &dev_attr_type.attr,
365 &dev_attr_cmg.attr,
366 &dev_attr_shared.attr,
367 NULL,
368};
369
370static struct attribute_group chp_attr_group = {
371 .attrs = chp_attrs,
372};
373
374static void chp_release(struct device *dev)
375{
376 struct channel_path *cp;
377
Cornelia Huck05469602007-10-22 12:52:40 +0200378 cp = to_channelpath(dev);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200379 kfree(cp);
380}
381
382/**
383 * chp_new - register a new channel-path
384 * @chpid - channel-path ID
385 *
386 * Create and register data structure representing new channel-path. Return
387 * zero on success, non-zero otherwise.
388 */
389int chp_new(struct chp_id chpid)
390{
391 struct channel_path *chp;
392 int ret;
393
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200394 if (chp_is_registered(chpid))
395 return 0;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200396 chp = kzalloc(sizeof(struct channel_path), GFP_KERNEL);
397 if (!chp)
398 return -ENOMEM;
399
400 /* fill in status, etc. */
401 chp->chpid = chpid;
402 chp->state = 1;
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200403 chp->dev.parent = &channel_subsystems[chpid.cssid]->device;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200404 chp->dev.release = chp_release;
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200405 mutex_init(&chp->lock);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200406
407 /* Obtain channel path description and fill it in. */
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200408 ret = chsc_determine_base_channel_path_desc(chpid, &chp->desc);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200409 if (ret)
410 goto out_free;
Peter Oberparleiterc9182e02007-04-27 16:01:29 +0200411 if ((chp->desc.flags & 0x80) == 0) {
412 ret = -ENODEV;
413 goto out_free;
414 }
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200415 /* Get channel-measurement characteristics. */
Cornelia Huck75784c02008-07-14 09:58:57 +0200416 if (css_chsc_characteristics.scmc && css_chsc_characteristics.secm) {
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200417 ret = chsc_get_channel_measurement_chars(chp);
418 if (ret)
419 goto out_free;
420 } else {
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200421 chp->cmg = -1;
422 }
Michael Ernstec004402009-10-06 10:33:59 +0200423 dev_set_name(&chp->dev, "chp%x.%02x", chpid.cssid, chpid.id);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200424
425 /* make it known to the system */
426 ret = device_register(&chp->dev);
427 if (ret) {
Cornelia Hucke556bbb2007-07-27 12:29:19 +0200428 CIO_MSG_EVENT(0, "Could not register chp%x.%02x: %d\n",
429 chpid.cssid, chpid.id, ret);
Sebastian Ottc6304932009-09-11 10:28:38 +0200430 put_device(&chp->dev);
431 goto out;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200432 }
433 ret = sysfs_create_group(&chp->dev.kobj, &chp_attr_group);
434 if (ret) {
435 device_unregister(&chp->dev);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200436 goto out;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200437 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200438 mutex_lock(&channel_subsystems[chpid.cssid]->mutex);
439 if (channel_subsystems[chpid.cssid]->cm_enabled) {
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200440 ret = chp_add_cmg_attr(chp);
441 if (ret) {
442 sysfs_remove_group(&chp->dev.kobj, &chp_attr_group);
443 device_unregister(&chp->dev);
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200444 mutex_unlock(&channel_subsystems[chpid.cssid]->mutex);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200445 goto out;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200446 }
447 }
Cornelia Huck7c9f4e32007-10-12 16:11:13 +0200448 channel_subsystems[chpid.cssid]->chps[chpid.id] = chp;
449 mutex_unlock(&channel_subsystems[chpid.cssid]->mutex);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200450 goto out;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200451out_free:
452 kfree(chp);
Cornelia Hucka2164b82008-09-09 12:38:57 +0200453out:
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200454 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 */
464void *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;
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200475
476 mutex_lock(&chp->lock);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200477 memcpy(desc, &chp->desc, sizeof(struct channel_path_desc));
Sebastian Ottb730f3a2010-10-25 16:10:27 +0200478 mutex_unlock(&chp->lock);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200479 return desc;
480}
481
482/**
483 * chp_process_crw - process channel-path status change
Cornelia Huckc1156182008-07-14 09:58:46 +0200484 * @crw0: channel report-word to handler
485 * @crw1: second channel-report word (always NULL)
486 * @overflow: crw overflow indication
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200487 *
488 * Handle channel-report-words indicating that the status of a channel-path
489 * has changed.
490 */
Cornelia Huckc1156182008-07-14 09:58:46 +0200491static void chp_process_crw(struct crw *crw0, struct crw *crw1,
492 int overflow)
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200493{
494 struct chp_id chpid;
495
Cornelia Huckc1156182008-07-14 09:58:46 +0200496 if (overflow) {
497 css_schedule_eval_all();
498 return;
499 }
500 CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
501 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
502 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
503 crw0->erc, crw0->rsid);
504 /*
505 * Check for solicited machine checks. These are
506 * created by reset channel path and need not be
507 * handled here.
508 */
509 if (crw0->slct) {
510 CIO_CRW_EVENT(2, "solicited machine check for "
511 "channel path %02X\n", crw0->rsid);
512 return;
513 }
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200514 chp_id_init(&chpid);
Cornelia Huckc1156182008-07-14 09:58:46 +0200515 chpid.id = crw0->rsid;
516 switch (crw0->erc) {
517 case CRW_ERC_IPARM: /* Path has come. */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200518 if (!chp_is_registered(chpid))
519 chp_new(chpid);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200520 chsc_chp_online(chpid);
Cornelia Huckc1156182008-07-14 09:58:46 +0200521 break;
522 case CRW_ERC_PERRI: /* Path has gone. */
523 case CRW_ERC_PERRN:
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200524 chsc_chp_offline(chpid);
Cornelia Huckc1156182008-07-14 09:58:46 +0200525 break;
526 default:
527 CIO_CRW_EVENT(2, "Don't know how to handle erc=%x\n",
528 crw0->erc);
529 }
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200530}
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200531
Cornelia Huck99611f82008-07-14 09:59:02 +0200532int chp_ssd_get_mask(struct chsc_ssd_info *ssd, struct chp_link *link)
Cornelia Huckc820de32008-07-14 09:58:45 +0200533{
534 int i;
535 int mask;
536
537 for (i = 0; i < 8; i++) {
538 mask = 0x80 >> i;
539 if (!(ssd->path_mask & mask))
540 continue;
Cornelia Huck99611f82008-07-14 09:59:02 +0200541 if (!chp_id_is_equal(&ssd->chpid[i], &link->chpid))
Cornelia Huckc820de32008-07-14 09:58:45 +0200542 continue;
543 if ((ssd->fla_valid_mask & mask) &&
Cornelia Huck99611f82008-07-14 09:59:02 +0200544 ((ssd->fla[i] & link->fla_mask) != link->fla))
Cornelia Huckc820de32008-07-14 09:58:45 +0200545 continue;
546 return mask;
547 }
548 return 0;
549}
550EXPORT_SYMBOL_GPL(chp_ssd_get_mask);
551
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200552static inline int info_bit_num(struct chp_id id)
553{
554 return id.id + id.cssid * (__MAX_CHPID + 1);
555}
556
557/* Force chp_info refresh on next call to info_validate(). */
558static void info_expire(void)
559{
560 mutex_lock(&info_lock);
561 chp_info_expires = jiffies - 1;
562 mutex_unlock(&info_lock);
563}
564
565/* Ensure that chp_info is up-to-date. */
566static int info_update(void)
567{
568 int rc;
569
570 mutex_lock(&info_lock);
571 rc = 0;
572 if (time_after(jiffies, chp_info_expires)) {
573 /* Data is too old, update. */
574 rc = sclp_chp_read_info(&chp_info);
575 chp_info_expires = jiffies + CHP_INFO_UPDATE_INTERVAL ;
576 }
577 mutex_unlock(&info_lock);
578
579 return rc;
580}
581
582/**
583 * chp_info_get_status - retrieve configure status of a channel-path
584 * @chpid: channel-path ID
585 *
586 * On success, return 0 for standby, 1 for configured, 2 for reserved,
587 * 3 for not recognized. Return negative error code on error.
588 */
589int chp_info_get_status(struct chp_id chpid)
590{
591 int rc;
592 int bit;
593
594 rc = info_update();
595 if (rc)
596 return rc;
597
598 bit = info_bit_num(chpid);
599 mutex_lock(&info_lock);
600 if (!chp_test_bit(chp_info.recognized, bit))
601 rc = CHP_STATUS_NOT_RECOGNIZED;
602 else if (chp_test_bit(chp_info.configured, bit))
603 rc = CHP_STATUS_CONFIGURED;
604 else if (chp_test_bit(chp_info.standby, bit))
605 rc = CHP_STATUS_STANDBY;
606 else
607 rc = CHP_STATUS_RESERVED;
608 mutex_unlock(&info_lock);
609
610 return rc;
611}
612
613/* Return configure task for chpid. */
614static enum cfg_task_t cfg_get_task(struct chp_id chpid)
615{
616 return chp_cfg_task[chpid.cssid][chpid.id];
617}
618
619/* Set configure task for chpid. */
620static void cfg_set_task(struct chp_id chpid, enum cfg_task_t cfg)
621{
622 chp_cfg_task[chpid.cssid][chpid.id] = cfg;
623}
624
625/* Perform one configure/deconfigure request. Reschedule work function until
626 * last request. */
627static void cfg_func(struct work_struct *work)
628{
629 struct chp_id chpid;
630 enum cfg_task_t t;
Peter Oberparleiter683c5412008-07-14 09:59:04 +0200631 int rc;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200632
633 mutex_lock(&cfg_lock);
634 t = cfg_none;
635 chp_id_for_each(&chpid) {
636 t = cfg_get_task(chpid);
637 if (t != cfg_none) {
638 cfg_set_task(chpid, cfg_none);
639 break;
640 }
641 }
642 mutex_unlock(&cfg_lock);
643
644 switch (t) {
645 case cfg_configure:
Peter Oberparleiter683c5412008-07-14 09:59:04 +0200646 rc = sclp_chp_configure(chpid);
647 if (rc)
648 CIO_MSG_EVENT(2, "chp: sclp_chp_configure(%x.%02x)="
649 "%d\n", chpid.cssid, chpid.id, rc);
650 else {
651 info_expire();
652 chsc_chp_online(chpid);
653 }
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200654 break;
655 case cfg_deconfigure:
Peter Oberparleiter683c5412008-07-14 09:59:04 +0200656 rc = sclp_chp_deconfigure(chpid);
657 if (rc)
658 CIO_MSG_EVENT(2, "chp: sclp_chp_deconfigure(%x.%02x)="
659 "%d\n", chpid.cssid, chpid.id, rc);
660 else {
661 info_expire();
662 chsc_chp_offline(chpid);
663 }
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200664 break;
665 case cfg_none:
666 /* Get updated information after last change. */
667 info_update();
668 mutex_lock(&cfg_lock);
669 cfg_busy = 0;
670 mutex_unlock(&cfg_lock);
671 wake_up_interruptible(&cfg_wait_queue);
672 return;
673 }
674 queue_work(chp_wq, &cfg_work);
675}
676
677/**
678 * chp_cfg_schedule - schedule chpid configuration request
679 * @chpid - channel-path ID
680 * @configure - Non-zero for configure, zero for deconfigure
681 *
682 * Schedule a channel-path configuration/deconfiguration request.
683 */
684void chp_cfg_schedule(struct chp_id chpid, int configure)
685{
686 CIO_MSG_EVENT(2, "chp_cfg_sched%x.%02x=%d\n", chpid.cssid, chpid.id,
687 configure);
688 mutex_lock(&cfg_lock);
689 cfg_set_task(chpid, configure ? cfg_configure : cfg_deconfigure);
690 cfg_busy = 1;
691 mutex_unlock(&cfg_lock);
692 queue_work(chp_wq, &cfg_work);
693}
694
695/**
696 * chp_cfg_cancel_deconfigure - cancel chpid deconfiguration request
697 * @chpid - channel-path ID
698 *
699 * Cancel an active channel-path deconfiguration request if it has not yet
700 * been performed.
701 */
702void chp_cfg_cancel_deconfigure(struct chp_id chpid)
703{
704 CIO_MSG_EVENT(2, "chp_cfg_cancel:%x.%02x\n", chpid.cssid, chpid.id);
705 mutex_lock(&cfg_lock);
706 if (cfg_get_task(chpid) == cfg_deconfigure)
707 cfg_set_task(chpid, cfg_none);
708 mutex_unlock(&cfg_lock);
709}
710
711static int cfg_wait_idle(void)
712{
713 if (wait_event_interruptible(cfg_wait_queue, !cfg_busy))
714 return -ERESTARTSYS;
715 return 0;
716}
717
718static int __init chp_init(void)
719{
720 struct chp_id chpid;
Cornelia Huckc1156182008-07-14 09:58:46 +0200721 int ret;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200722
Heiko Carstensf5daba12009-03-26 15:24:01 +0100723 ret = crw_register_handler(CRW_RSC_CPATH, chp_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +0200724 if (ret)
725 return ret;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200726 chp_wq = create_singlethread_workqueue("cio_chp");
Cornelia Huckc1156182008-07-14 09:58:46 +0200727 if (!chp_wq) {
Heiko Carstensf5daba12009-03-26 15:24:01 +0100728 crw_unregister_handler(CRW_RSC_CPATH);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200729 return -ENOMEM;
Cornelia Huckc1156182008-07-14 09:58:46 +0200730 }
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200731 INIT_WORK(&cfg_work, cfg_func);
732 init_waitqueue_head(&cfg_wait_queue);
733 if (info_update())
734 return 0;
735 /* Register available channel-paths. */
736 chp_id_for_each(&chpid) {
737 if (chp_info_get_status(chpid) != CHP_STATUS_NOT_RECOGNIZED)
738 chp_new(chpid);
739 }
740
741 return 0;
742}
743
744subsys_initcall(chp_init);