[PATCH] Add bttv sub bus_type probe and remove methods
[deliverable/linux.git] / drivers / s390 / cio / css.c
CommitLineData
1da177e4
LT
1/*
2 * drivers/s390/cio/css.c
3 * driver for channel subsystem
fb6958a5 4 * $Revision: 1.93 $
1da177e4
LT
5 *
6 * Copyright (C) 2002 IBM Deutschland Entwicklung GmbH,
7 * IBM Corporation
8 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
9 * Cornelia Huck (cohuck@de.ibm.com)
10 */
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/device.h>
14#include <linux/slab.h>
15#include <linux/errno.h>
16#include <linux/list.h>
17
18#include "css.h"
19#include "cio.h"
20#include "cio_debug.h"
21#include "ioasm.h"
22#include "chsc.h"
23
1da177e4
LT
24int need_rescan = 0;
25int css_init_done = 0;
fb6958a5 26static int max_ssid = 0;
1da177e4 27
a28c6944 28struct channel_subsystem *css[__MAX_CSSID + 1];
1da177e4 29
a28c6944 30int css_characteristics_avail = 0;
1da177e4 31
f97a56fb
CH
32inline int
33for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *data)
34{
35 struct subchannel_id schid;
36 int ret;
37
38 init_subchannel_id(&schid);
39 ret = -ENODEV;
40 do {
fb6958a5
CH
41 do {
42 ret = fn(schid, data);
43 if (ret)
44 break;
45 } while (schid.sch_no++ < __MAX_SUBCHANNEL);
46 schid.sch_no = 0;
47 } while (schid.ssid++ < max_ssid);
f97a56fb
CH
48 return ret;
49}
50
1da177e4 51static struct subchannel *
a8237fc4 52css_alloc_subchannel(struct subchannel_id schid)
1da177e4
LT
53{
54 struct subchannel *sch;
55 int ret;
56
57 sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
58 if (sch == NULL)
59 return ERR_PTR(-ENOMEM);
a8237fc4 60 ret = cio_validate_subchannel (sch, schid);
1da177e4
LT
61 if (ret < 0) {
62 kfree(sch);
63 return ERR_PTR(ret);
64 }
1da177e4
LT
65
66 if (sch->st != SUBCHANNEL_TYPE_IO) {
67 /* For now we ignore all non-io subchannels. */
68 kfree(sch);
69 return ERR_PTR(-EINVAL);
70 }
71
72 /*
73 * Set intparm to subchannel address.
74 * This is fine even on 64bit since the subchannel is always located
75 * under 2G.
76 */
77 sch->schib.pmcw.intparm = (__u32)(unsigned long)sch;
78 ret = cio_modify(sch);
79 if (ret) {
80 kfree(sch);
81 return ERR_PTR(ret);
82 }
83 return sch;
84}
85
86static void
87css_free_subchannel(struct subchannel *sch)
88{
89 if (sch) {
90 /* Reset intparm to zeroes. */
91 sch->schib.pmcw.intparm = 0;
92 cio_modify(sch);
93 kfree(sch);
94 }
95
96}
97
98static void
99css_subchannel_release(struct device *dev)
100{
101 struct subchannel *sch;
102
103 sch = to_subchannel(dev);
a8237fc4 104 if (!cio_is_console(sch->schid))
1da177e4
LT
105 kfree(sch);
106}
107
108extern int css_get_ssd_info(struct subchannel *sch);
109
110static int
111css_register_subchannel(struct subchannel *sch)
112{
113 int ret;
114
115 /* Initialize the subchannel structure */
a28c6944 116 sch->dev.parent = &css[0]->device;
1da177e4
LT
117 sch->dev.bus = &css_bus_type;
118 sch->dev.release = &css_subchannel_release;
119
120 /* make it known to the system */
121 ret = device_register(&sch->dev);
122 if (ret)
123 printk (KERN_WARNING "%s: could not register %s\n",
124 __func__, sch->dev.bus_id);
125 else
126 css_get_ssd_info(sch);
127 return ret;
128}
129
130int
a8237fc4 131css_probe_device(struct subchannel_id schid)
1da177e4
LT
132{
133 int ret;
134 struct subchannel *sch;
135
a8237fc4 136 sch = css_alloc_subchannel(schid);
1da177e4
LT
137 if (IS_ERR(sch))
138 return PTR_ERR(sch);
139 ret = css_register_subchannel(sch);
140 if (ret)
141 css_free_subchannel(sch);
142 return ret;
143}
144
b0744bd2
CH
145static int
146check_subchannel(struct device * dev, void * data)
147{
148 struct subchannel *sch;
a8237fc4 149 struct subchannel_id *schid = data;
b0744bd2
CH
150
151 sch = to_subchannel(dev);
a8237fc4 152 return schid_equal(&sch->schid, schid);
b0744bd2
CH
153}
154
1da177e4 155struct subchannel *
a8237fc4 156get_subchannel_by_schid(struct subchannel_id schid)
1da177e4 157{
1da177e4
LT
158 struct device *dev;
159
b0744bd2 160 dev = bus_find_device(&css_bus_type, NULL,
a8237fc4 161 (void *)&schid, check_subchannel);
1da177e4 162
b0744bd2 163 return dev ? to_subchannel(dev) : NULL;
1da177e4
LT
164}
165
b0744bd2 166
1da177e4 167static inline int
a8237fc4 168css_get_subchannel_status(struct subchannel *sch, struct subchannel_id schid)
1da177e4
LT
169{
170 struct schib schib;
171 int cc;
172
173 cc = stsch(schid, &schib);
174 if (cc)
175 return CIO_GONE;
176 if (!schib.pmcw.dnv)
177 return CIO_GONE;
178 if (sch && sch->schib.pmcw.dnv &&
179 (schib.pmcw.dev != sch->schib.pmcw.dev))
180 return CIO_REVALIDATE;
181 if (sch && !sch->lpm)
182 return CIO_NO_PATH;
183 return CIO_OPER;
184}
185
186static int
a8237fc4 187css_evaluate_subchannel(struct subchannel_id schid, int slow)
1da177e4
LT
188{
189 int event, ret, disc;
190 struct subchannel *sch;
191 unsigned long flags;
192
a8237fc4 193 sch = get_subchannel_by_schid(schid);
1da177e4
LT
194 disc = sch ? device_is_disconnected(sch) : 0;
195 if (disc && slow) {
196 if (sch)
197 put_device(&sch->dev);
198 return 0; /* Already processed. */
199 }
200 /*
201 * We've got a machine check, so running I/O won't get an interrupt.
202 * Kill any pending timers.
203 */
204 if (sch)
205 device_kill_pending_timer(sch);
206 if (!disc && !slow) {
207 if (sch)
208 put_device(&sch->dev);
209 return -EAGAIN; /* Will be done on the slow path. */
210 }
a8237fc4 211 event = css_get_subchannel_status(sch, schid);
fb6958a5
CH
212 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, %s, %s path.\n",
213 schid.ssid, schid.sch_no, event,
a8237fc4 214 sch?(disc?"disconnected":"normal"):"unknown",
1da177e4
LT
215 slow?"slow":"fast");
216 switch (event) {
217 case CIO_NO_PATH:
218 case CIO_GONE:
219 if (!sch) {
220 /* Never used this subchannel. Ignore. */
221 ret = 0;
222 break;
223 }
224 if (disc && (event == CIO_NO_PATH)) {
225 /*
226 * Uargh, hack again. Because we don't get a machine
227 * check on configure on, our path bookkeeping can
228 * be out of date here (it's fine while we only do
229 * logical varying or get chsc machine checks). We
230 * need to force reprobing or we might miss devices
231 * coming operational again. It won't do harm in real
232 * no path situations.
233 */
234 spin_lock_irqsave(&sch->lock, flags);
235 device_trigger_reprobe(sch);
236 spin_unlock_irqrestore(&sch->lock, flags);
237 ret = 0;
238 break;
239 }
240 if (sch->driver && sch->driver->notify &&
241 sch->driver->notify(&sch->dev, event)) {
242 cio_disable_subchannel(sch);
243 device_set_disconnected(sch);
244 ret = 0;
245 break;
246 }
247 /*
248 * Unregister subchannel.
249 * The device will be killed automatically.
250 */
251 cio_disable_subchannel(sch);
252 device_unregister(&sch->dev);
253 /* Reset intparm to zeroes. */
254 sch->schib.pmcw.intparm = 0;
255 cio_modify(sch);
256 put_device(&sch->dev);
257 ret = 0;
258 break;
259 case CIO_REVALIDATE:
260 /*
261 * Revalidation machine check. Sick.
262 * We don't notify the driver since we have to throw the device
263 * away in any case.
264 */
265 if (!disc) {
266 device_unregister(&sch->dev);
267 /* Reset intparm to zeroes. */
268 sch->schib.pmcw.intparm = 0;
269 cio_modify(sch);
270 put_device(&sch->dev);
a8237fc4 271 ret = css_probe_device(schid);
1da177e4
LT
272 } else {
273 /*
274 * We can't immediately deregister the disconnected
275 * device since it might block.
276 */
277 spin_lock_irqsave(&sch->lock, flags);
278 device_trigger_reprobe(sch);
279 spin_unlock_irqrestore(&sch->lock, flags);
280 ret = 0;
281 }
282 break;
283 case CIO_OPER:
284 if (disc) {
285 spin_lock_irqsave(&sch->lock, flags);
286 /* Get device operational again. */
287 device_trigger_reprobe(sch);
288 spin_unlock_irqrestore(&sch->lock, flags);
289 }
a8237fc4 290 ret = sch ? 0 : css_probe_device(schid);
1da177e4
LT
291 break;
292 default:
293 BUG();
294 ret = 0;
295 }
296 return ret;
297}
298
f97a56fb
CH
299static int
300css_rescan_devices(struct subchannel_id schid, void *data)
1da177e4 301{
f97a56fb 302 return css_evaluate_subchannel(schid, 1);
1da177e4
LT
303}
304
305struct slow_subchannel {
306 struct list_head slow_list;
a8237fc4 307 struct subchannel_id schid;
1da177e4
LT
308};
309
310static LIST_HEAD(slow_subchannels_head);
311static DEFINE_SPINLOCK(slow_subchannel_lock);
312
313static void
314css_trigger_slow_path(void)
315{
316 CIO_TRACE_EVENT(4, "slowpath");
317
318 if (need_rescan) {
319 need_rescan = 0;
f97a56fb 320 for_each_subchannel(css_rescan_devices, NULL);
1da177e4
LT
321 return;
322 }
323
324 spin_lock_irq(&slow_subchannel_lock);
325 while (!list_empty(&slow_subchannels_head)) {
326 struct slow_subchannel *slow_sch =
327 list_entry(slow_subchannels_head.next,
328 struct slow_subchannel, slow_list);
329
330 list_del_init(slow_subchannels_head.next);
331 spin_unlock_irq(&slow_subchannel_lock);
332 css_evaluate_subchannel(slow_sch->schid, 1);
333 spin_lock_irq(&slow_subchannel_lock);
334 kfree(slow_sch);
335 }
336 spin_unlock_irq(&slow_subchannel_lock);
337}
338
339typedef void (*workfunc)(void *);
340DECLARE_WORK(slow_path_work, (workfunc)css_trigger_slow_path, NULL);
341struct workqueue_struct *slow_path_wq;
342
343/*
344 * Rescan for new devices. FIXME: This is slow.
345 * This function is called when we have lost CRWs due to overflows and we have
346 * to do subchannel housekeeping.
347 */
348void
349css_reiterate_subchannels(void)
350{
351 css_clear_subchannel_slow_list();
352 need_rescan = 1;
353}
354
355/*
356 * Called from the machine check handler for subchannel report words.
357 */
358int
fb6958a5 359css_process_crw(int rsid1, int rsid2)
1da177e4
LT
360{
361 int ret;
a8237fc4 362 struct subchannel_id mchk_schid;
1da177e4 363
fb6958a5
CH
364 CIO_CRW_EVENT(2, "source is subchannel %04X, subsystem id %x\n",
365 rsid1, rsid2);
1da177e4
LT
366
367 if (need_rescan)
368 /* We need to iterate all subchannels anyway. */
369 return -EAGAIN;
a8237fc4
CH
370
371 init_subchannel_id(&mchk_schid);
fb6958a5
CH
372 mchk_schid.sch_no = rsid1;
373 if (rsid2 != 0)
374 mchk_schid.ssid = (rsid2 >> 8) & 3;
375
1da177e4
LT
376 /*
377 * Since we are always presented with IPI in the CRW, we have to
378 * use stsch() to find out if the subchannel in question has come
379 * or gone.
380 */
a8237fc4 381 ret = css_evaluate_subchannel(mchk_schid, 0);
1da177e4 382 if (ret == -EAGAIN) {
a8237fc4 383 if (css_enqueue_subchannel_slow(mchk_schid)) {
1da177e4
LT
384 css_clear_subchannel_slow_list();
385 need_rescan = 1;
386 }
387 }
388 return ret;
389}
390
f97a56fb
CH
391static int __init
392__init_channel_subsystem(struct subchannel_id schid, void *data)
393{
394 struct subchannel *sch;
395 int ret;
396
397 if (cio_is_console(schid))
398 sch = cio_get_console_subchannel();
399 else {
400 sch = css_alloc_subchannel(schid);
401 if (IS_ERR(sch))
402 ret = PTR_ERR(sch);
403 else
404 ret = 0;
405 switch (ret) {
406 case 0:
407 break;
408 case -ENOMEM:
409 panic("Out of memory in init_channel_subsystem\n");
410 /* -ENXIO: no more subchannels. */
411 case -ENXIO:
412 return ret;
413 default:
414 return 0;
415 }
416 }
417 /*
418 * We register ALL valid subchannels in ioinfo, even those
419 * that have been present before init_channel_subsystem.
420 * These subchannels can't have been registered yet (kmalloc
421 * not working) so we do it now. This is true e.g. for the
422 * console subchannel.
423 */
424 css_register_subchannel(sch);
425 return 0;
426}
427
1da177e4 428static void __init
a28c6944 429css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
1da177e4 430{
a28c6944
CH
431 if (css_characteristics_avail && css_general_characteristics.mcss) {
432 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
433 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
434 } else {
1da177e4 435#ifdef CONFIG_SMP
a28c6944 436 css->global_pgid.pgid_high.cpu_addr = hard_smp_processor_id();
1da177e4 437#else
a28c6944 438 css->global_pgid.pgid_high.cpu_addr = 0;
1da177e4
LT
439#endif
440 }
a28c6944
CH
441 css->global_pgid.cpu_id = ((cpuid_t *) __LC_CPUID)->ident;
442 css->global_pgid.cpu_model = ((cpuid_t *) __LC_CPUID)->machine;
443 css->global_pgid.tod_high = tod_high;
444
445}
446
3b793060
CH
447static void
448channel_subsystem_release(struct device *dev)
449{
450 struct channel_subsystem *css;
451
452 css = to_css(dev);
453 kfree(css);
454}
455
a28c6944
CH
456static inline void __init
457setup_css(int nr)
458{
459 u32 tod_high;
460
461 memset(css[nr], 0, sizeof(struct channel_subsystem));
462 css[nr]->valid = 1;
463 css[nr]->cssid = nr;
464 sprintf(css[nr]->device.bus_id, "css%x", nr);
3b793060 465 css[nr]->device.release = channel_subsystem_release;
a28c6944
CH
466 tod_high = (u32) (get_clock() >> 32);
467 css_generate_pgid(css[nr], tod_high);
1da177e4
LT
468}
469
470/*
471 * Now that the driver core is running, we can setup our channel subsystem.
472 * The struct subchannel's are created during probing (except for the
473 * static console subchannel).
474 */
475static int __init
476init_channel_subsystem (void)
477{
a28c6944 478 int ret, i;
1da177e4
LT
479
480 if (chsc_determine_css_characteristics() == 0)
481 css_characteristics_avail = 1;
482
1da177e4
LT
483 if ((ret = bus_register(&css_bus_type)))
484 goto out;
1da177e4 485
fb6958a5
CH
486 /* Try to enable MSS. */
487 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
488 switch (ret) {
489 case 0: /* Success. */
490 max_ssid = __MAX_SSID;
491 break;
492 case -ENOMEM:
493 goto out_bus;
494 default:
495 max_ssid = 0;
496 }
a28c6944
CH
497 /* Setup css structure. */
498 for (i = 0; i <= __MAX_CSSID; i++) {
499 css[i] = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
500 if (!css[i]) {
501 ret = -ENOMEM;
fb6958a5 502 goto out_unregister;
a28c6944
CH
503 }
504 setup_css(i);
505 ret = device_register(&css[i]->device);
506 if (ret)
507 goto out_free;
508 }
1da177e4
LT
509 css_init_done = 1;
510
511 ctl_set_bit(6, 28);
512
f97a56fb 513 for_each_subchannel(__init_channel_subsystem, NULL);
1da177e4 514 return 0;
a28c6944
CH
515out_free:
516 kfree(css[i]);
fb6958a5 517out_unregister:
a28c6944
CH
518 while (i > 0) {
519 i--;
520 device_unregister(&css[i]->device);
521 }
fb6958a5 522out_bus:
1da177e4
LT
523 bus_unregister(&css_bus_type);
524out:
525 return ret;
526}
527
528/*
529 * find a driver for a subchannel. They identify by the subchannel
530 * type with the exception that the console subchannel driver has its own
531 * subchannel type although the device is an i/o subchannel
532 */
533static int
534css_bus_match (struct device *dev, struct device_driver *drv)
535{
536 struct subchannel *sch = container_of (dev, struct subchannel, dev);
537 struct css_driver *driver = container_of (drv, struct css_driver, drv);
538
539 if (sch->st == driver->subchannel_type)
540 return 1;
541
542 return 0;
543}
544
545struct bus_type css_bus_type = {
546 .name = "css",
547 .match = &css_bus_match,
548};
549
550subsys_initcall(init_channel_subsystem);
551
1da177e4 552int
a8237fc4 553css_enqueue_subchannel_slow(struct subchannel_id schid)
1da177e4
LT
554{
555 struct slow_subchannel *new_slow_sch;
556 unsigned long flags;
557
558 new_slow_sch = kmalloc(sizeof(struct slow_subchannel), GFP_ATOMIC);
559 if (!new_slow_sch)
560 return -ENOMEM;
561 memset(new_slow_sch, 0, sizeof(struct slow_subchannel));
562 new_slow_sch->schid = schid;
563 spin_lock_irqsave(&slow_subchannel_lock, flags);
564 list_add_tail(&new_slow_sch->slow_list, &slow_subchannels_head);
565 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
566 return 0;
567}
568
569void
570css_clear_subchannel_slow_list(void)
571{
572 unsigned long flags;
573
574 spin_lock_irqsave(&slow_subchannel_lock, flags);
575 while (!list_empty(&slow_subchannels_head)) {
576 struct slow_subchannel *slow_sch =
577 list_entry(slow_subchannels_head.next,
578 struct slow_subchannel, slow_list);
579
580 list_del_init(slow_subchannels_head.next);
581 kfree(slow_sch);
582 }
583 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
584}
585
586
587
588int
589css_slow_subchannels_exist(void)
590{
591 return (!list_empty(&slow_subchannels_head));
592}
593
594MODULE_LICENSE("GPL");
595EXPORT_SYMBOL(css_bus_type);
1da177e4 596EXPORT_SYMBOL_GPL(css_characteristics_avail);
This page took 0.11234 seconds and 5 git commands to generate.