blob: fcc641e578f4e990517508facc3ba033229cf8e6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/s390/cio/css.c
3 * driver for channel subsystem
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2002 IBM Deutschland Entwicklung GmbH,
6 * IBM Corporation
7 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
Cornelia Huck4ce3b302006-01-14 13:21:04 -08008 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/device.h>
13#include <linux/slab.h>
14#include <linux/errno.h>
15#include <linux/list.h>
16
17#include "css.h"
18#include "cio.h"
19#include "cio_debug.h"
20#include "ioasm.h"
21#include "chsc.h"
Peter Oberparleiter40154b82006-06-29 14:57:03 +020022#include "device.h"
Peter Oberparleiter83b33702007-04-27 16:01:34 +020023#include "idset.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025int css_init_done = 0;
Peter Oberparleiter40154b82006-06-29 14:57:03 +020026static int need_reprobe = 0;
Cornelia Huckfb6958a2006-01-06 00:19:25 -080027static int max_ssid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Cornelia Hucka28c6942006-01-06 00:19:23 -080029struct channel_subsystem *css[__MAX_CSSID + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Cornelia Hucka28c6942006-01-06 00:19:23 -080031int css_characteristics_avail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Heiko Carstens4d284ca2007-02-05 21:18:53 +010033int
Cornelia Huckf97a56f2006-01-06 00:19:22 -080034for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *data)
35{
36 struct subchannel_id schid;
37 int ret;
38
39 init_subchannel_id(&schid);
40 ret = -ENODEV;
41 do {
Cornelia Huckfb6958a2006-01-06 00:19:25 -080042 do {
43 ret = fn(schid, data);
44 if (ret)
45 break;
46 } while (schid.sch_no++ < __MAX_SUBCHANNEL);
47 schid.sch_no = 0;
48 } while (schid.ssid++ < max_ssid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -080049 return ret;
50}
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -080053css_alloc_subchannel(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 struct subchannel *sch;
56 int ret;
57
58 sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
59 if (sch == NULL)
60 return ERR_PTR(-ENOMEM);
Cornelia Hucka8237fc2006-01-06 00:19:21 -080061 ret = cio_validate_subchannel (sch, schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (ret < 0) {
63 kfree(sch);
64 return ERR_PTR(ret);
65 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 if (sch->st != SUBCHANNEL_TYPE_IO) {
68 /* For now we ignore all non-io subchannels. */
69 kfree(sch);
70 return ERR_PTR(-EINVAL);
71 }
72
73 /*
74 * Set intparm to subchannel address.
75 * This is fine even on 64bit since the subchannel is always located
76 * under 2G.
77 */
78 sch->schib.pmcw.intparm = (__u32)(unsigned long)sch;
79 ret = cio_modify(sch);
80 if (ret) {
81 kfree(sch);
82 return ERR_PTR(ret);
83 }
84 return sch;
85}
86
87static void
88css_free_subchannel(struct subchannel *sch)
89{
90 if (sch) {
91 /* Reset intparm to zeroes. */
92 sch->schib.pmcw.intparm = 0;
93 cio_modify(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +010094 kfree(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 kfree(sch);
96 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99static void
100css_subchannel_release(struct device *dev)
101{
102 struct subchannel *sch;
103
104 sch = to_subchannel(dev);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100105 if (!cio_is_console(sch->schid)) {
106 kfree(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 kfree(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Cornelia Huck6ab48792006-07-12 16:39:50 +0200111int css_sch_device_register(struct subchannel *sch)
112{
113 int ret;
114
115 mutex_lock(&sch->reg_mutex);
116 ret = device_register(&sch->dev);
117 mutex_unlock(&sch->reg_mutex);
118 return ret;
119}
120
121void css_sch_device_unregister(struct subchannel *sch)
122{
123 mutex_lock(&sch->reg_mutex);
124 device_unregister(&sch->dev);
125 mutex_unlock(&sch->reg_mutex);
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static int
129css_register_subchannel(struct subchannel *sch)
130{
131 int ret;
132
133 /* Initialize the subchannel structure */
Cornelia Hucka28c6942006-01-06 00:19:23 -0800134 sch->dev.parent = &css[0]->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 sch->dev.bus = &css_bus_type;
136 sch->dev.release = &css_subchannel_release;
Cornelia Huck529192f2006-12-08 15:55:57 +0100137 sch->dev.groups = subch_attr_groups;
Cornelia Huck7674da72006-12-08 15:54:21 +0100138
Stefan Badere42734e2006-12-15 17:18:30 +0100139 css_get_ssd_info(sch);
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /* make it known to the system */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200142 ret = css_sch_device_register(sch);
Cornelia Huck7674da72006-12-08 15:54:21 +0100143 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 printk (KERN_WARNING "%s: could not register %s\n",
145 __func__, sch->dev.bus_id);
Cornelia Huck7674da72006-12-08 15:54:21 +0100146 return ret;
147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return ret;
149}
150
151int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800152css_probe_device(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 int ret;
155 struct subchannel *sch;
156
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800157 sch = css_alloc_subchannel(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (IS_ERR(sch))
159 return PTR_ERR(sch);
160 ret = css_register_subchannel(sch);
161 if (ret)
162 css_free_subchannel(sch);
163 return ret;
164}
165
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700166static int
167check_subchannel(struct device * dev, void * data)
168{
169 struct subchannel *sch;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800170 struct subchannel_id *schid = data;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700171
172 sch = to_subchannel(dev);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800173 return schid_equal(&sch->schid, schid);
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800177get_subchannel_by_schid(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 struct device *dev;
180
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700181 dev = bus_find_device(&css_bus_type, NULL,
Cornelia Huck12975ae2006-10-11 15:31:47 +0200182 &schid, check_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700184 return dev ? to_subchannel(dev) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100187static int css_get_subchannel_status(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200191 if (stsch(sch->schid, &schib) || !schib.pmcw.dnv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return CIO_GONE;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200193 if (sch->schib.pmcw.dnv && (schib.pmcw.dev != sch->schib.pmcw.dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return CIO_REVALIDATE;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200195 if (!sch->lpm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return CIO_NO_PATH;
197 return CIO_OPER;
198}
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200199
200static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 int event, ret, disc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 unsigned long flags;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200204 enum { NONE, UNREGISTER, UNREGISTER_PROBE, REPROBE } action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Cornelia Huck2ec22982006-12-08 15:54:26 +0100206 spin_lock_irqsave(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200207 disc = device_is_disconnected(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (disc && slow) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200209 /* Disconnected devices are evaluated directly only.*/
Cornelia Huck2ec22982006-12-08 15:54:26 +0100210 spin_unlock_irqrestore(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200211 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200213 /* No interrupt after machine check - kill pending timers. */
214 device_kill_pending_timer(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (!disc && !slow) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200216 /* Non-disconnected devices are evaluated on the slow path. */
Cornelia Huck2ec22982006-12-08 15:54:26 +0100217 spin_unlock_irqrestore(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200218 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200220 event = css_get_subchannel_status(sch);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800221 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, %s, %s path.\n",
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200222 sch->schid.ssid, sch->schid.sch_no, event,
223 disc ? "disconnected" : "normal",
224 slow ? "slow" : "fast");
225 /* Analyze subchannel status. */
226 action = NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 switch (event) {
228 case CIO_NO_PATH:
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200229 if (disc) {
230 /* Check if paths have become available. */
231 action = REPROBE;
232 break;
233 }
234 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 case CIO_GONE:
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200236 /* Prevent unwanted effects when opening lock. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 cio_disable_subchannel(sch);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200238 device_set_disconnected(sch);
239 /* Ask driver what to do with device. */
240 action = UNREGISTER;
241 if (sch->driver && sch->driver->notify) {
Cornelia Huck2ec22982006-12-08 15:54:26 +0100242 spin_unlock_irqrestore(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200243 ret = sch->driver->notify(&sch->dev, event);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100244 spin_lock_irqsave(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200245 if (ret)
246 action = NONE;
247 }
248 break;
249 case CIO_REVALIDATE:
250 /* Device will be removed, so no notify necessary. */
251 if (disc)
252 /* Reprobe because immediate unregister might block. */
253 action = REPROBE;
254 else
255 action = UNREGISTER_PROBE;
256 break;
257 case CIO_OPER:
258 if (disc)
259 /* Get device operational again. */
260 action = REPROBE;
261 break;
262 }
263 /* Perform action. */
264 ret = 0;
265 switch (action) {
266 case UNREGISTER:
267 case UNREGISTER_PROBE:
268 /* Unregister device (will use subchannel lock). */
Cornelia Huck2ec22982006-12-08 15:54:26 +0100269 spin_unlock_irqrestore(sch->lock, flags);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200270 css_sch_device_unregister(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100271 spin_lock_irqsave(sch->lock, flags);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* Reset intparm to zeroes. */
274 sch->schib.pmcw.intparm = 0;
275 cio_modify(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 break;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200277 case REPROBE:
278 device_trigger_reprobe(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 break;
280 default:
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200281 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
Cornelia Huck2ec22982006-12-08 15:54:26 +0100283 spin_unlock_irqrestore(sch->lock, flags);
Cornelia Huckc2b14492006-10-27 12:39:17 +0200284 /* Probe if necessary. */
285 if (action == UNREGISTER_PROBE)
286 ret = css_probe_device(sch->schid);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200287
288 return ret;
289}
290
291static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
292{
293 struct schib schib;
294
295 if (!slow) {
296 /* Will be done on the slow path. */
297 return -EAGAIN;
298 }
Cornelia Huck758976f2007-02-05 21:17:36 +0100299 if (stsch_err(schid, &schib) || !schib.pmcw.dnv) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200300 /* Unusable - ignore. */
301 return 0;
302 }
303 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, unknown, "
304 "slow path.\n", schid.ssid, schid.sch_no, CIO_OPER);
305
306 return css_probe_device(schid);
307}
308
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200309static void css_evaluate_subchannel(struct subchannel_id schid, int slow)
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200310{
311 struct subchannel *sch;
312 int ret;
313
314 sch = get_subchannel_by_schid(schid);
315 if (sch) {
316 ret = css_evaluate_known_subchannel(sch, slow);
317 put_device(&sch->dev);
318 } else
319 ret = css_evaluate_new_subchannel(schid, slow);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200320 if (ret == -EAGAIN)
321 css_schedule_eval(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200324static struct idset *slow_subchannel_set;
325static spinlock_t slow_subchannel_lock;
326
327static int __init slow_subchannel_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200329 spin_lock_init(&slow_subchannel_lock);
330 slow_subchannel_set = idset_sch_new();
331 if (!slow_subchannel_set) {
332 printk(KERN_WARNING "cio: could not allocate slow subchannel "
333 "set\n");
334 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200336 return 0;
337}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200339subsys_initcall(slow_subchannel_init);
340
341static void css_slow_path_func(struct work_struct *unused)
342{
343 struct subchannel_id schid;
344
345 CIO_TRACE_EVENT(4, "slowpath");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 spin_lock_irq(&slow_subchannel_lock);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200347 init_subchannel_id(&schid);
348 while (idset_sch_get_first(slow_subchannel_set, &schid)) {
349 idset_sch_del(slow_subchannel_set, schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 spin_unlock_irq(&slow_subchannel_lock);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200351 css_evaluate_subchannel(schid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 spin_lock_irq(&slow_subchannel_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354 spin_unlock_irq(&slow_subchannel_lock);
355}
356
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200357static DECLARE_WORK(slow_path_work, css_slow_path_func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358struct workqueue_struct *slow_path_wq;
359
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200360void css_schedule_eval(struct subchannel_id schid)
361{
362 unsigned long flags;
363
364 spin_lock_irqsave(&slow_subchannel_lock, flags);
365 idset_sch_add(slow_subchannel_set, schid);
366 queue_work(slow_path_wq, &slow_path_work);
367 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
368}
369
370void css_schedule_eval_all(void)
371{
372 unsigned long flags;
373
374 spin_lock_irqsave(&slow_subchannel_lock, flags);
375 idset_fill(slow_subchannel_set);
376 queue_work(slow_path_wq, &slow_path_work);
377 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
378}
379
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200380/* Reprobe subchannel if unregistered. */
381static int reprobe_subchannel(struct subchannel_id schid, void *data)
382{
383 struct subchannel *sch;
384 int ret;
385
386 CIO_DEBUG(KERN_INFO, 6, "cio: reprobe 0.%x.%04x\n",
387 schid.ssid, schid.sch_no);
388 if (need_reprobe)
389 return -EAGAIN;
390
391 sch = get_subchannel_by_schid(schid);
392 if (sch) {
393 /* Already known. */
394 put_device(&sch->dev);
395 return 0;
396 }
397
398 ret = css_probe_device(schid);
399 switch (ret) {
400 case 0:
401 break;
402 case -ENXIO:
403 case -ENOMEM:
404 /* These should abort looping */
405 break;
406 default:
407 ret = 0;
408 }
409
410 return ret;
411}
412
413/* Work function used to reprobe all unregistered subchannels. */
Al Viro4927b3f2006-12-06 19:18:20 +0000414static void reprobe_all(struct work_struct *unused)
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200415{
416 int ret;
417
418 CIO_MSG_EVENT(2, "reprobe start\n");
419
420 need_reprobe = 0;
421 /* Make sure initial subchannel scan is done. */
422 wait_event(ccw_device_init_wq,
423 atomic_read(&ccw_device_init_count) == 0);
424 ret = for_each_subchannel(reprobe_subchannel, NULL);
425
426 CIO_MSG_EVENT(2, "reprobe done (rc=%d, need_reprobe=%d)\n", ret,
427 need_reprobe);
428}
429
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100430static DECLARE_WORK(css_reprobe_work, reprobe_all);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200431
432/* Schedule reprobing of all unregistered subchannels. */
433void css_schedule_reprobe(void)
434{
435 need_reprobe = 1;
436 queue_work(ccw_device_work, &css_reprobe_work);
437}
438
439EXPORT_SYMBOL_GPL(css_schedule_reprobe);
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 * Called from the machine check handler for subchannel report words.
443 */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200444void css_process_crw(int rsid1, int rsid2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800446 struct subchannel_id mchk_schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800448 CIO_CRW_EVENT(2, "source is subchannel %04X, subsystem id %x\n",
449 rsid1, rsid2);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800450 init_subchannel_id(&mchk_schid);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800451 mchk_schid.sch_no = rsid1;
452 if (rsid2 != 0)
453 mchk_schid.ssid = (rsid2 >> 8) & 3;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /*
456 * Since we are always presented with IPI in the CRW, we have to
457 * use stsch() to find out if the subchannel in question has come
458 * or gone.
459 */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200460 css_evaluate_subchannel(mchk_schid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800463static int __init
464__init_channel_subsystem(struct subchannel_id schid, void *data)
465{
466 struct subchannel *sch;
467 int ret;
468
469 if (cio_is_console(schid))
470 sch = cio_get_console_subchannel();
471 else {
472 sch = css_alloc_subchannel(schid);
473 if (IS_ERR(sch))
474 ret = PTR_ERR(sch);
475 else
476 ret = 0;
477 switch (ret) {
478 case 0:
479 break;
480 case -ENOMEM:
481 panic("Out of memory in init_channel_subsystem\n");
482 /* -ENXIO: no more subchannels. */
483 case -ENXIO:
484 return ret;
Greg Smithe843e282006-03-14 19:50:17 -0800485 /* -EIO: this subchannel set not supported. */
486 case -EIO:
487 return ret;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800488 default:
489 return 0;
490 }
491 }
492 /*
493 * We register ALL valid subchannels in ioinfo, even those
494 * that have been present before init_channel_subsystem.
495 * These subchannels can't have been registered yet (kmalloc
496 * not working) so we do it now. This is true e.g. for the
497 * console subchannel.
498 */
499 css_register_subchannel(sch);
500 return 0;
501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503static void __init
Cornelia Hucka28c6942006-01-06 00:19:23 -0800504css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800506 if (css_characteristics_avail && css_general_characteristics.mcss) {
507 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
508 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
509 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510#ifdef CONFIG_SMP
Cornelia Hucka28c6942006-01-06 00:19:23 -0800511 css->global_pgid.pgid_high.cpu_addr = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512#else
Cornelia Hucka28c6942006-01-06 00:19:23 -0800513 css->global_pgid.pgid_high.cpu_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514#endif
515 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800516 css->global_pgid.cpu_id = ((cpuid_t *) __LC_CPUID)->ident;
517 css->global_pgid.cpu_model = ((cpuid_t *) __LC_CPUID)->machine;
518 css->global_pgid.tod_high = tod_high;
519
520}
521
Cornelia Huck3b793062006-01-06 00:19:26 -0800522static void
523channel_subsystem_release(struct device *dev)
524{
525 struct channel_subsystem *css;
526
527 css = to_css(dev);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800528 mutex_destroy(&css->mutex);
Cornelia Huck3b793062006-01-06 00:19:26 -0800529 kfree(css);
530}
531
Cornelia Huck495a5b42006-03-24 03:15:14 -0800532static ssize_t
533css_cm_enable_show(struct device *dev, struct device_attribute *attr,
534 char *buf)
535{
536 struct channel_subsystem *css = to_css(dev);
537
538 if (!css)
539 return 0;
540 return sprintf(buf, "%x\n", css->cm_enabled);
541}
542
543static ssize_t
544css_cm_enable_store(struct device *dev, struct device_attribute *attr,
545 const char *buf, size_t count)
546{
547 struct channel_subsystem *css = to_css(dev);
548 int ret;
549
550 switch (buf[0]) {
551 case '0':
552 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
553 break;
554 case '1':
555 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
556 break;
557 default:
558 ret = -EINVAL;
559 }
560 return ret < 0 ? ret : count;
561}
562
563static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
564
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100565static int __init setup_css(int nr)
Cornelia Hucka28c6942006-01-06 00:19:23 -0800566{
567 u32 tod_high;
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100568 int ret;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800569
570 memset(css[nr], 0, sizeof(struct channel_subsystem));
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100571 css[nr]->pseudo_subchannel =
572 kzalloc(sizeof(*css[nr]->pseudo_subchannel), GFP_KERNEL);
573 if (!css[nr]->pseudo_subchannel)
574 return -ENOMEM;
575 css[nr]->pseudo_subchannel->dev.parent = &css[nr]->device;
576 css[nr]->pseudo_subchannel->dev.release = css_subchannel_release;
577 sprintf(css[nr]->pseudo_subchannel->dev.bus_id, "defunct");
578 ret = cio_create_sch_lock(css[nr]->pseudo_subchannel);
579 if (ret) {
580 kfree(css[nr]->pseudo_subchannel);
581 return ret;
582 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800583 mutex_init(&css[nr]->mutex);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800584 css[nr]->valid = 1;
585 css[nr]->cssid = nr;
586 sprintf(css[nr]->device.bus_id, "css%x", nr);
Cornelia Huck3b793062006-01-06 00:19:26 -0800587 css[nr]->device.release = channel_subsystem_release;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800588 tod_high = (u32) (get_clock() >> 32);
589 css_generate_pgid(css[nr], tod_high);
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593/*
594 * Now that the driver core is running, we can setup our channel subsystem.
595 * The struct subchannel's are created during probing (except for the
596 * static console subchannel).
597 */
598static int __init
599init_channel_subsystem (void)
600{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800601 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (chsc_determine_css_characteristics() == 0)
604 css_characteristics_avail = 1;
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if ((ret = bus_register(&css_bus_type)))
607 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800609 /* Try to enable MSS. */
610 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
611 switch (ret) {
612 case 0: /* Success. */
613 max_ssid = __MAX_SSID;
614 break;
615 case -ENOMEM:
616 goto out_bus;
617 default:
618 max_ssid = 0;
619 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800620 /* Setup css structure. */
621 for (i = 0; i <= __MAX_CSSID; i++) {
622 css[i] = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
623 if (!css[i]) {
624 ret = -ENOMEM;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800625 goto out_unregister;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800626 }
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100627 ret = setup_css(i);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800628 if (ret)
629 goto out_free;
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100630 ret = device_register(&css[i]->device);
631 if (ret)
632 goto out_free_all;
Cornelia Huck7e560812006-07-12 16:40:19 +0200633 if (css_characteristics_avail &&
634 css_chsc_characteristics.secm) {
635 ret = device_create_file(&css[i]->device,
636 &dev_attr_cm_enable);
637 if (ret)
638 goto out_device;
639 }
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100640 ret = device_register(&css[i]->pseudo_subchannel->dev);
641 if (ret)
642 goto out_file;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 css_init_done = 1;
645
646 ctl_set_bit(6, 28);
647
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800648 for_each_subchannel(__init_channel_subsystem, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return 0;
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100650out_file:
651 device_remove_file(&css[i]->device, &dev_attr_cm_enable);
Cornelia Huck7e560812006-07-12 16:40:19 +0200652out_device:
653 device_unregister(&css[i]->device);
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100654out_free_all:
655 kfree(css[i]->pseudo_subchannel->lock);
656 kfree(css[i]->pseudo_subchannel);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800657out_free:
658 kfree(css[i]);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800659out_unregister:
Cornelia Hucka28c6942006-01-06 00:19:23 -0800660 while (i > 0) {
661 i--;
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100662 device_unregister(&css[i]->pseudo_subchannel->dev);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800663 if (css_characteristics_avail && css_chsc_characteristics.secm)
664 device_remove_file(&css[i]->device,
665 &dev_attr_cm_enable);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800666 device_unregister(&css[i]->device);
667 }
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800668out_bus:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 bus_unregister(&css_bus_type);
670out:
671 return ret;
672}
673
Cornelia Huckd7b5a4c2006-12-08 15:54:28 +0100674int sch_is_pseudo_sch(struct subchannel *sch)
675{
676 return sch == to_css(sch->dev.parent)->pseudo_subchannel;
677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679/*
680 * find a driver for a subchannel. They identify by the subchannel
681 * type with the exception that the console subchannel driver has its own
682 * subchannel type although the device is an i/o subchannel
683 */
684static int
685css_bus_match (struct device *dev, struct device_driver *drv)
686{
687 struct subchannel *sch = container_of (dev, struct subchannel, dev);
688 struct css_driver *driver = container_of (drv, struct css_driver, drv);
689
690 if (sch->st == driver->subchannel_type)
691 return 1;
692
693 return 0;
694}
695
Cornelia Huck8bbace72006-01-11 10:56:22 +0100696static int
697css_probe (struct device *dev)
698{
699 struct subchannel *sch;
700
701 sch = to_subchannel(dev);
702 sch->driver = container_of (dev->driver, struct css_driver, drv);
703 return (sch->driver->probe ? sch->driver->probe(sch) : 0);
704}
705
706static int
707css_remove (struct device *dev)
708{
709 struct subchannel *sch;
710
711 sch = to_subchannel(dev);
712 return (sch->driver->remove ? sch->driver->remove(sch) : 0);
713}
714
715static void
716css_shutdown (struct device *dev)
717{
718 struct subchannel *sch;
719
720 sch = to_subchannel(dev);
721 if (sch->driver->shutdown)
722 sch->driver->shutdown(sch);
723}
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725struct bus_type css_bus_type = {
Cornelia Huck8bbace72006-01-11 10:56:22 +0100726 .name = "css",
727 .match = css_bus_match,
728 .probe = css_probe,
729 .remove = css_remove,
730 .shutdown = css_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731};
732
733subsys_initcall(init_channel_subsystem);
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735MODULE_LICENSE("GPL");
736EXPORT_SYMBOL(css_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737EXPORT_SYMBOL_GPL(css_characteristics_avail);