]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/s390/cio/chp.c
[S390] cio: add lock to struct channel_path
[karo-tx-linux.git] / drivers / s390 / cio / chp.c
1 /*
2  *  drivers/s390/cio/chp.c
3  *
4  *    Copyright IBM Corp. 1999,2010
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 <linux/slab.h>
19 #include <asm/chpid.h>
20 #include <asm/sclp.h>
21 #include <asm/crw.h>
22
23 #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)
30 #define CHP_INFO_UPDATE_INTERVAL        1*HZ
31
32 enum cfg_task_t {
33         cfg_none,
34         cfg_configure,
35         cfg_deconfigure
36 };
37
38 /* Map for pending configure tasks. */
39 static enum cfg_task_t chp_cfg_task[__MAX_CSSID + 1][__MAX_CHPID + 1];
40 static DEFINE_MUTEX(cfg_lock);
41 static int cfg_busy;
42
43 /* Map for channel-path status. */
44 static struct sclp_chp_info chp_info;
45 static DEFINE_MUTEX(info_lock);
46
47 /* Time after which channel-path status may be outdated. */
48 static unsigned long chp_info_expires;
49
50 /* Workqueue to perform pending configure tasks. */
51 static struct workqueue_struct *chp_wq;
52 static struct work_struct cfg_work;
53
54 /* Wait queue for configure completion events. */
55 static wait_queue_head_t cfg_wait_queue;
56
57 /* Return channel_path struct for given chpid. */
58 static inline struct channel_path *chpid_to_chp(struct chp_id chpid)
59 {
60         return channel_subsystems[chpid.cssid]->chps[chpid.id];
61 }
62
63 /* Set vary state for given chpid. */
64 static void set_chp_logically_online(struct chp_id chpid, int onoff)
65 {
66         chpid_to_chp(chpid)->state = onoff;
67 }
68
69 /* On success return 0 if channel-path is varied offline, 1 if it is varied
70  * online. Return -ENODEV if channel-path is not registered. */
71 int 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  */
83 u8 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);
91         for (i = 0; i < 8; i++) {
92                 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 }
99 EXPORT_SYMBOL_GPL(chp_get_sch_opm);
100
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  */
108 int 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  */
117 static 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);
124         CIO_TRACE_EVENT(2, dbf_text);
125
126         status = chp_get_status(chpid);
127         if (!on && !status)
128                 return 0;
129
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  */
138 static ssize_t chp_measurement_chars_read(struct file *filp,
139                                           struct kobject *kobj,
140                                           struct bin_attribute *bin_attr,
141                                           char *buf, loff_t off, size_t count)
142 {
143         struct channel_path *chp;
144         struct device *device;
145
146         device = container_of(kobj, struct device, kobj);
147         chp = to_channelpath(device);
148         if (!chp->cmg_chars)
149                 return 0;
150
151         return memory_read_from_buffer(buf, count, &off,
152                                 chp->cmg_chars, sizeof(struct cmg_chars));
153 }
154
155 static struct bin_attribute chp_measurement_chars_attr = {
156         .attr = {
157                 .name = "measurement_chars",
158                 .mode = S_IRUSR,
159         },
160         .size = sizeof(struct cmg_chars),
161         .read = chp_measurement_chars_read,
162 };
163
164 static 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
186 static ssize_t chp_measurement_read(struct file *filp, struct kobject *kobj,
187                                     struct bin_attribute *bin_attr,
188                                     char *buf, loff_t off, size_t count)
189 {
190         struct channel_path *chp;
191         struct channel_subsystem *css;
192         struct device *device;
193         unsigned int size;
194
195         device = container_of(kobj, struct device, kobj);
196         chp = to_channelpath(device);
197         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
209 static struct bin_attribute chp_measurement_attr = {
210         .attr = {
211                 .name = "measurement",
212                 .mode = S_IRUSR,
213         },
214         .size = sizeof(struct cmg_entry),
215         .read = chp_measurement_read,
216 };
217
218 void 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
224 int 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  */
240 static ssize_t chp_status_show(struct device *dev,
241                                struct device_attribute *attr, char *buf)
242 {
243         struct channel_path *chp = to_channelpath(dev);
244         int status;
245
246         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");
251 }
252
253 static ssize_t chp_status_write(struct device *dev,
254                                 struct device_attribute *attr,
255                                 const char *buf, size_t count)
256 {
257         struct channel_path *cp = to_channelpath(dev);
258         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
266         if (!strnicmp(cmd, "on", 2) || !strcmp(cmd, "1")) {
267                 mutex_lock(&cp->lock);
268                 error = s390_vary_chpid(cp->chpid, 1);
269                 mutex_unlock(&cp->lock);
270         } else if (!strnicmp(cmd, "off", 3) || !strcmp(cmd, "0")) {
271                 mutex_lock(&cp->lock);
272                 error = s390_vary_chpid(cp->chpid, 0);
273                 mutex_unlock(&cp->lock);
274         } else
275                 error = -EINVAL;
276
277         return error < 0 ? error : count;
278 }
279
280 static DEVICE_ATTR(status, 0644, chp_status_show, chp_status_write);
281
282 static 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
288         cp = to_channelpath(dev);
289         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
296 static int cfg_wait_idle(void);
297
298 static 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;
310         cp = to_channelpath(dev);
311         chp_cfg_schedule(cp->chpid, val);
312         cfg_wait_idle();
313
314         return count;
315 }
316
317 static DEVICE_ATTR(configure, 0644, chp_configure_show, chp_configure_write);
318
319 static ssize_t chp_type_show(struct device *dev, struct device_attribute *attr,
320                              char *buf)
321 {
322         struct channel_path *chp = to_channelpath(dev);
323         u8 type;
324
325         mutex_lock(&chp->lock);
326         type = chp->desc.desc;
327         mutex_unlock(&chp->lock);
328         return sprintf(buf, "%x\n", type);
329 }
330
331 static DEVICE_ATTR(type, 0444, chp_type_show, NULL);
332
333 static 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
345 static DEVICE_ATTR(cmg, 0444, chp_cmg_show, NULL);
346
347 static 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
359 static DEVICE_ATTR(shared, 0444, chp_shared_show, NULL);
360
361 static struct attribute *chp_attrs[] = {
362         &dev_attr_status.attr,
363         &dev_attr_configure.attr,
364         &dev_attr_type.attr,
365         &dev_attr_cmg.attr,
366         &dev_attr_shared.attr,
367         NULL,
368 };
369
370 static struct attribute_group chp_attr_group = {
371         .attrs = chp_attrs,
372 };
373
374 static void chp_release(struct device *dev)
375 {
376         struct channel_path *cp;
377
378         cp = to_channelpath(dev);
379         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  */
389 int chp_new(struct chp_id chpid)
390 {
391         struct channel_path *chp;
392         int ret;
393
394         if (chp_is_registered(chpid))
395                 return 0;
396         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;
403         chp->dev.parent = &channel_subsystems[chpid.cssid]->device;
404         chp->dev.release = chp_release;
405         mutex_init(&chp->lock);
406
407         /* Obtain channel path description and fill it in. */
408         ret = chsc_determine_base_channel_path_desc(chpid, &chp->desc);
409         if (ret)
410                 goto out_free;
411         if ((chp->desc.flags & 0x80) == 0) {
412                 ret = -ENODEV;
413                 goto out_free;
414         }
415         /* Get channel-measurement characteristics. */
416         if (css_chsc_characteristics.scmc && css_chsc_characteristics.secm) {
417                 ret = chsc_get_channel_measurement_chars(chp);
418                 if (ret)
419                         goto out_free;
420         } else {
421                 chp->cmg = -1;
422         }
423         dev_set_name(&chp->dev, "chp%x.%02x", chpid.cssid, chpid.id);
424
425         /* make it known to the system */
426         ret = device_register(&chp->dev);
427         if (ret) {
428                 CIO_MSG_EVENT(0, "Could not register chp%x.%02x: %d\n",
429                               chpid.cssid, chpid.id, ret);
430                 put_device(&chp->dev);
431                 goto out;
432         }
433         ret = sysfs_create_group(&chp->dev.kobj, &chp_attr_group);
434         if (ret) {
435                 device_unregister(&chp->dev);
436                 goto out;
437         }
438         mutex_lock(&channel_subsystems[chpid.cssid]->mutex);
439         if (channel_subsystems[chpid.cssid]->cm_enabled) {
440                 ret = chp_add_cmg_attr(chp);
441                 if (ret) {
442                         sysfs_remove_group(&chp->dev.kobj, &chp_attr_group);
443                         device_unregister(&chp->dev);
444                         mutex_unlock(&channel_subsystems[chpid.cssid]->mutex);
445                         goto out;
446                 }
447         }
448         channel_subsystems[chpid.cssid]->chps[chpid.id] = chp;
449         mutex_unlock(&channel_subsystems[chpid.cssid]->mutex);
450         goto out;
451 out_free:
452         kfree(chp);
453 out:
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
476         mutex_lock(&chp->lock);
477         memcpy(desc, &chp->desc, sizeof(struct channel_path_desc));
478         mutex_unlock(&chp->lock);
479         return desc;
480 }
481
482 /**
483  * chp_process_crw - process channel-path status change
484  * @crw0: channel report-word to handler
485  * @crw1: second channel-report word (always NULL)
486  * @overflow: crw overflow indication
487  *
488  * Handle channel-report-words indicating that the status of a channel-path
489  * has changed.
490  */
491 static void chp_process_crw(struct crw *crw0, struct crw *crw1,
492                             int overflow)
493 {
494         struct chp_id chpid;
495
496         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         }
514         chp_id_init(&chpid);
515         chpid.id = crw0->rsid;
516         switch (crw0->erc) {
517         case CRW_ERC_IPARM: /* Path has come. */
518                 if (!chp_is_registered(chpid))
519                         chp_new(chpid);
520                 chsc_chp_online(chpid);
521                 break;
522         case CRW_ERC_PERRI: /* Path has gone. */
523         case CRW_ERC_PERRN:
524                 chsc_chp_offline(chpid);
525                 break;
526         default:
527                 CIO_CRW_EVENT(2, "Don't know how to handle erc=%x\n",
528                               crw0->erc);
529         }
530 }
531
532 int chp_ssd_get_mask(struct chsc_ssd_info *ssd, struct chp_link *link)
533 {
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;
541                 if (!chp_id_is_equal(&ssd->chpid[i], &link->chpid))
542                         continue;
543                 if ((ssd->fla_valid_mask & mask) &&
544                     ((ssd->fla[i] & link->fla_mask) != link->fla))
545                         continue;
546                 return mask;
547         }
548         return 0;
549 }
550 EXPORT_SYMBOL_GPL(chp_ssd_get_mask);
551
552 static 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(). */
558 static 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. */
566 static 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  */
589 int 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. */
614 static 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. */
620 static 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. */
627 static void cfg_func(struct work_struct *work)
628 {
629         struct chp_id chpid;
630         enum cfg_task_t t;
631         int rc;
632
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:
646                 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                 }
654                 break;
655         case cfg_deconfigure:
656                 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                 }
664                 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  */
684 void 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  */
702 void 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
711 static int cfg_wait_idle(void)
712 {
713         if (wait_event_interruptible(cfg_wait_queue, !cfg_busy))
714                 return -ERESTARTSYS;
715         return 0;
716 }
717
718 static int __init chp_init(void)
719 {
720         struct chp_id chpid;
721         int ret;
722
723         ret = crw_register_handler(CRW_RSC_CPATH, chp_process_crw);
724         if (ret)
725                 return ret;
726         chp_wq = create_singlethread_workqueue("cio_chp");
727         if (!chp_wq) {
728                 crw_unregister_handler(CRW_RSC_CPATH);
729                 return -ENOMEM;
730         }
731         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
744 subsys_initcall(chp_init);