blob: 55895c83d499ad0353b6b7b6f1bc6c7fb3cfb2c3 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024int need_rescan = 0;
25int 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
Cornelia Huckf97a56f2006-01-06 00:19:22 -080033inline int
34for_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);
94 kfree(sch);
95 }
96
97}
98
99static void
100css_subchannel_release(struct device *dev)
101{
102 struct subchannel *sch;
103
104 sch = to_subchannel(dev);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800105 if (!cio_is_console(sch->schid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 kfree(sch);
107}
108
109extern int css_get_ssd_info(struct subchannel *sch);
110
Cornelia Huck6ab48792006-07-12 16:39:50 +0200111
112int css_sch_device_register(struct subchannel *sch)
113{
114 int ret;
115
116 mutex_lock(&sch->reg_mutex);
117 ret = device_register(&sch->dev);
118 mutex_unlock(&sch->reg_mutex);
119 return ret;
120}
121
122void css_sch_device_unregister(struct subchannel *sch)
123{
124 mutex_lock(&sch->reg_mutex);
125 device_unregister(&sch->dev);
126 mutex_unlock(&sch->reg_mutex);
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static int
130css_register_subchannel(struct subchannel *sch)
131{
132 int ret;
133
134 /* Initialize the subchannel structure */
Cornelia Hucka28c6942006-01-06 00:19:23 -0800135 sch->dev.parent = &css[0]->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 sch->dev.bus = &css_bus_type;
137 sch->dev.release = &css_subchannel_release;
Cornelia Huck7674da72006-12-08 15:54:21 +0100138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* make it known to the system */
Cornelia Huck6ab48792006-07-12 16:39:50 +0200140 ret = css_sch_device_register(sch);
Cornelia Huck7674da72006-12-08 15:54:21 +0100141 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 printk (KERN_WARNING "%s: could not register %s\n",
143 __func__, sch->dev.bus_id);
Cornelia Huck7674da72006-12-08 15:54:21 +0100144 return ret;
145 }
146 css_get_ssd_info(sch);
147 ret = subchannel_add_files(&sch->dev);
148 if (ret)
149 printk(KERN_WARNING "%s: could not add attributes to %s\n",
150 __func__, sch->dev.bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return ret;
152}
153
154int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800155css_probe_device(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 int ret;
158 struct subchannel *sch;
159
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800160 sch = css_alloc_subchannel(schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (IS_ERR(sch))
162 return PTR_ERR(sch);
163 ret = css_register_subchannel(sch);
164 if (ret)
165 css_free_subchannel(sch);
166 return ret;
167}
168
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700169static int
170check_subchannel(struct device * dev, void * data)
171{
172 struct subchannel *sch;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800173 struct subchannel_id *schid = data;
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700174
175 sch = to_subchannel(dev);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800176 return schid_equal(&sch->schid, schid);
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179struct subchannel *
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800180get_subchannel_by_schid(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 struct device *dev;
183
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700184 dev = bus_find_device(&css_bus_type, NULL,
Cornelia Huck12975ae2006-10-11 15:31:47 +0200185 &schid, check_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700187 return dev ? to_subchannel(dev) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200190static inline int css_get_subchannel_status(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200194 if (stsch(sch->schid, &schib) || !schib.pmcw.dnv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return CIO_GONE;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200196 if (sch->schib.pmcw.dnv && (schib.pmcw.dev != sch->schib.pmcw.dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return CIO_REVALIDATE;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200198 if (!sch->lpm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return CIO_NO_PATH;
200 return CIO_OPER;
201}
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200202
203static int css_evaluate_known_subchannel(struct subchannel *sch, int slow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 int event, ret, disc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 unsigned long flags;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200207 enum { NONE, UNREGISTER, UNREGISTER_PROBE, REPROBE } action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200209 spin_lock_irqsave(&sch->lock, flags);
210 disc = device_is_disconnected(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (disc && slow) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200212 /* Disconnected devices are evaluated directly only.*/
213 spin_unlock_irqrestore(&sch->lock, flags);
214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200216 /* No interrupt after machine check - kill pending timers. */
217 device_kill_pending_timer(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (!disc && !slow) {
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200219 /* Non-disconnected devices are evaluated on the slow path. */
220 spin_unlock_irqrestore(&sch->lock, flags);
221 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200223 event = css_get_subchannel_status(sch);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800224 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, %s, %s path.\n",
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200225 sch->schid.ssid, sch->schid.sch_no, event,
226 disc ? "disconnected" : "normal",
227 slow ? "slow" : "fast");
228 /* Analyze subchannel status. */
229 action = NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 switch (event) {
231 case CIO_NO_PATH:
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200232 if (disc) {
233 /* Check if paths have become available. */
234 action = REPROBE;
235 break;
236 }
237 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 case CIO_GONE:
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200239 /* Prevent unwanted effects when opening lock. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 cio_disable_subchannel(sch);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200241 device_set_disconnected(sch);
242 /* Ask driver what to do with device. */
243 action = UNREGISTER;
244 if (sch->driver && sch->driver->notify) {
245 spin_unlock_irqrestore(&sch->lock, flags);
246 ret = sch->driver->notify(&sch->dev, event);
247 spin_lock_irqsave(&sch->lock, flags);
248 if (ret)
249 action = NONE;
250 }
251 break;
252 case CIO_REVALIDATE:
253 /* Device will be removed, so no notify necessary. */
254 if (disc)
255 /* Reprobe because immediate unregister might block. */
256 action = REPROBE;
257 else
258 action = UNREGISTER_PROBE;
259 break;
260 case CIO_OPER:
261 if (disc)
262 /* Get device operational again. */
263 action = REPROBE;
264 break;
265 }
266 /* Perform action. */
267 ret = 0;
268 switch (action) {
269 case UNREGISTER:
270 case UNREGISTER_PROBE:
271 /* Unregister device (will use subchannel lock). */
272 spin_unlock_irqrestore(&sch->lock, flags);
Cornelia Huck6ab48792006-07-12 16:39:50 +0200273 css_sch_device_unregister(sch);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200274 spin_lock_irqsave(&sch->lock, flags);
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* Reset intparm to zeroes. */
277 sch->schib.pmcw.intparm = 0;
278 cio_modify(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 break;
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200280 case REPROBE:
281 device_trigger_reprobe(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 break;
283 default:
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200284 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200286 spin_unlock_irqrestore(&sch->lock, flags);
Cornelia Huckc2b14492006-10-27 12:39:17 +0200287 /* Probe if necessary. */
288 if (action == UNREGISTER_PROBE)
289 ret = css_probe_device(sch->schid);
Peter Oberparleiter564337f2006-09-20 16:00:01 +0200290
291 return ret;
292}
293
294static int css_evaluate_new_subchannel(struct subchannel_id schid, int slow)
295{
296 struct schib schib;
297
298 if (!slow) {
299 /* Will be done on the slow path. */
300 return -EAGAIN;
301 }
302 if (stsch(schid, &schib) || !schib.pmcw.dnv) {
303 /* Unusable - ignore. */
304 return 0;
305 }
306 CIO_MSG_EVENT(4, "Evaluating schid 0.%x.%04x, event %d, unknown, "
307 "slow path.\n", schid.ssid, schid.sch_no, CIO_OPER);
308
309 return css_probe_device(schid);
310}
311
312static int css_evaluate_subchannel(struct subchannel_id schid, int slow)
313{
314 struct subchannel *sch;
315 int ret;
316
317 sch = get_subchannel_by_schid(schid);
318 if (sch) {
319 ret = css_evaluate_known_subchannel(sch, slow);
320 put_device(&sch->dev);
321 } else
322 ret = css_evaluate_new_subchannel(schid, slow);
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return ret;
325}
326
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800327static int
328css_rescan_devices(struct subchannel_id schid, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800330 return css_evaluate_subchannel(schid, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333struct slow_subchannel {
334 struct list_head slow_list;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800335 struct subchannel_id schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336};
337
338static LIST_HEAD(slow_subchannels_head);
339static DEFINE_SPINLOCK(slow_subchannel_lock);
340
341static void
Al Viro4927b3f2006-12-06 19:18:20 +0000342css_trigger_slow_path(struct work_struct *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 CIO_TRACE_EVENT(4, "slowpath");
345
346 if (need_rescan) {
347 need_rescan = 0;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800348 for_each_subchannel(css_rescan_devices, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return;
350 }
351
352 spin_lock_irq(&slow_subchannel_lock);
353 while (!list_empty(&slow_subchannels_head)) {
354 struct slow_subchannel *slow_sch =
355 list_entry(slow_subchannels_head.next,
356 struct slow_subchannel, slow_list);
357
358 list_del_init(slow_subchannels_head.next);
359 spin_unlock_irq(&slow_subchannel_lock);
360 css_evaluate_subchannel(slow_sch->schid, 1);
361 spin_lock_irq(&slow_subchannel_lock);
362 kfree(slow_sch);
363 }
364 spin_unlock_irq(&slow_subchannel_lock);
365}
366
Al Viro4927b3f2006-12-06 19:18:20 +0000367DECLARE_WORK(slow_path_work, css_trigger_slow_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368struct workqueue_struct *slow_path_wq;
369
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200370/* Reprobe subchannel if unregistered. */
371static int reprobe_subchannel(struct subchannel_id schid, void *data)
372{
373 struct subchannel *sch;
374 int ret;
375
376 CIO_DEBUG(KERN_INFO, 6, "cio: reprobe 0.%x.%04x\n",
377 schid.ssid, schid.sch_no);
378 if (need_reprobe)
379 return -EAGAIN;
380
381 sch = get_subchannel_by_schid(schid);
382 if (sch) {
383 /* Already known. */
384 put_device(&sch->dev);
385 return 0;
386 }
387
388 ret = css_probe_device(schid);
389 switch (ret) {
390 case 0:
391 break;
392 case -ENXIO:
393 case -ENOMEM:
394 /* These should abort looping */
395 break;
396 default:
397 ret = 0;
398 }
399
400 return ret;
401}
402
403/* Work function used to reprobe all unregistered subchannels. */
Al Viro4927b3f2006-12-06 19:18:20 +0000404static void reprobe_all(struct work_struct *unused)
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200405{
406 int ret;
407
408 CIO_MSG_EVENT(2, "reprobe start\n");
409
410 need_reprobe = 0;
411 /* Make sure initial subchannel scan is done. */
412 wait_event(ccw_device_init_wq,
413 atomic_read(&ccw_device_init_count) == 0);
414 ret = for_each_subchannel(reprobe_subchannel, NULL);
415
416 CIO_MSG_EVENT(2, "reprobe done (rc=%d, need_reprobe=%d)\n", ret,
417 need_reprobe);
418}
419
Al Viro4927b3f2006-12-06 19:18:20 +0000420DECLARE_WORK(css_reprobe_work, reprobe_all);
Peter Oberparleiter40154b82006-06-29 14:57:03 +0200421
422/* Schedule reprobing of all unregistered subchannels. */
423void css_schedule_reprobe(void)
424{
425 need_reprobe = 1;
426 queue_work(ccw_device_work, &css_reprobe_work);
427}
428
429EXPORT_SYMBOL_GPL(css_schedule_reprobe);
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431/*
432 * Rescan for new devices. FIXME: This is slow.
433 * This function is called when we have lost CRWs due to overflows and we have
434 * to do subchannel housekeeping.
435 */
436void
437css_reiterate_subchannels(void)
438{
439 css_clear_subchannel_slow_list();
440 need_rescan = 1;
441}
442
443/*
444 * Called from the machine check handler for subchannel report words.
445 */
446int
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800447css_process_crw(int rsid1, int rsid2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 int ret;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800450 struct subchannel_id mchk_schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800452 CIO_CRW_EVENT(2, "source is subchannel %04X, subsystem id %x\n",
453 rsid1, rsid2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 if (need_rescan)
456 /* We need to iterate all subchannels anyway. */
457 return -EAGAIN;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800458
459 init_subchannel_id(&mchk_schid);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800460 mchk_schid.sch_no = rsid1;
461 if (rsid2 != 0)
462 mchk_schid.ssid = (rsid2 >> 8) & 3;
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 /*
465 * Since we are always presented with IPI in the CRW, we have to
466 * use stsch() to find out if the subchannel in question has come
467 * or gone.
468 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800469 ret = css_evaluate_subchannel(mchk_schid, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (ret == -EAGAIN) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800471 if (css_enqueue_subchannel_slow(mchk_schid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 css_clear_subchannel_slow_list();
473 need_rescan = 1;
474 }
475 }
476 return ret;
477}
478
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800479static int __init
480__init_channel_subsystem(struct subchannel_id schid, void *data)
481{
482 struct subchannel *sch;
483 int ret;
484
485 if (cio_is_console(schid))
486 sch = cio_get_console_subchannel();
487 else {
488 sch = css_alloc_subchannel(schid);
489 if (IS_ERR(sch))
490 ret = PTR_ERR(sch);
491 else
492 ret = 0;
493 switch (ret) {
494 case 0:
495 break;
496 case -ENOMEM:
497 panic("Out of memory in init_channel_subsystem\n");
498 /* -ENXIO: no more subchannels. */
499 case -ENXIO:
500 return ret;
Greg Smithe843e282006-03-14 19:50:17 -0800501 /* -EIO: this subchannel set not supported. */
502 case -EIO:
503 return ret;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800504 default:
505 return 0;
506 }
507 }
508 /*
509 * We register ALL valid subchannels in ioinfo, even those
510 * that have been present before init_channel_subsystem.
511 * These subchannels can't have been registered yet (kmalloc
512 * not working) so we do it now. This is true e.g. for the
513 * console subchannel.
514 */
515 css_register_subchannel(sch);
516 return 0;
517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519static void __init
Cornelia Hucka28c6942006-01-06 00:19:23 -0800520css_generate_pgid(struct channel_subsystem *css, u32 tod_high)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800522 if (css_characteristics_avail && css_general_characteristics.mcss) {
523 css->global_pgid.pgid_high.ext_cssid.version = 0x80;
524 css->global_pgid.pgid_high.ext_cssid.cssid = css->cssid;
525 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526#ifdef CONFIG_SMP
Cornelia Hucka28c6942006-01-06 00:19:23 -0800527 css->global_pgid.pgid_high.cpu_addr = hard_smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528#else
Cornelia Hucka28c6942006-01-06 00:19:23 -0800529 css->global_pgid.pgid_high.cpu_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530#endif
531 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800532 css->global_pgid.cpu_id = ((cpuid_t *) __LC_CPUID)->ident;
533 css->global_pgid.cpu_model = ((cpuid_t *) __LC_CPUID)->machine;
534 css->global_pgid.tod_high = tod_high;
535
536}
537
Cornelia Huck3b793062006-01-06 00:19:26 -0800538static void
539channel_subsystem_release(struct device *dev)
540{
541 struct channel_subsystem *css;
542
543 css = to_css(dev);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800544 mutex_destroy(&css->mutex);
Cornelia Huck3b793062006-01-06 00:19:26 -0800545 kfree(css);
546}
547
Cornelia Huck495a5b42006-03-24 03:15:14 -0800548static ssize_t
549css_cm_enable_show(struct device *dev, struct device_attribute *attr,
550 char *buf)
551{
552 struct channel_subsystem *css = to_css(dev);
553
554 if (!css)
555 return 0;
556 return sprintf(buf, "%x\n", css->cm_enabled);
557}
558
559static ssize_t
560css_cm_enable_store(struct device *dev, struct device_attribute *attr,
561 const char *buf, size_t count)
562{
563 struct channel_subsystem *css = to_css(dev);
564 int ret;
565
566 switch (buf[0]) {
567 case '0':
568 ret = css->cm_enabled ? chsc_secm(css, 0) : 0;
569 break;
570 case '1':
571 ret = css->cm_enabled ? 0 : chsc_secm(css, 1);
572 break;
573 default:
574 ret = -EINVAL;
575 }
576 return ret < 0 ? ret : count;
577}
578
579static DEVICE_ATTR(cm_enable, 0644, css_cm_enable_show, css_cm_enable_store);
580
Cornelia Hucka28c6942006-01-06 00:19:23 -0800581static inline void __init
582setup_css(int nr)
583{
584 u32 tod_high;
585
586 memset(css[nr], 0, sizeof(struct channel_subsystem));
Cornelia Huck495a5b42006-03-24 03:15:14 -0800587 mutex_init(&css[nr]->mutex);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800588 css[nr]->valid = 1;
589 css[nr]->cssid = nr;
590 sprintf(css[nr]->device.bus_id, "css%x", nr);
Cornelia Huck3b793062006-01-06 00:19:26 -0800591 css[nr]->device.release = channel_subsystem_release;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800592 tod_high = (u32) (get_clock() >> 32);
593 css_generate_pgid(css[nr], tod_high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596/*
597 * Now that the driver core is running, we can setup our channel subsystem.
598 * The struct subchannel's are created during probing (except for the
599 * static console subchannel).
600 */
601static int __init
602init_channel_subsystem (void)
603{
Cornelia Hucka28c6942006-01-06 00:19:23 -0800604 int ret, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 if (chsc_determine_css_characteristics() == 0)
607 css_characteristics_avail = 1;
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if ((ret = bus_register(&css_bus_type)))
610 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800612 /* Try to enable MSS. */
613 ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
614 switch (ret) {
615 case 0: /* Success. */
616 max_ssid = __MAX_SSID;
617 break;
618 case -ENOMEM:
619 goto out_bus;
620 default:
621 max_ssid = 0;
622 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800623 /* Setup css structure. */
624 for (i = 0; i <= __MAX_CSSID; i++) {
625 css[i] = kmalloc(sizeof(struct channel_subsystem), GFP_KERNEL);
626 if (!css[i]) {
627 ret = -ENOMEM;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800628 goto out_unregister;
Cornelia Hucka28c6942006-01-06 00:19:23 -0800629 }
630 setup_css(i);
631 ret = device_register(&css[i]->device);
632 if (ret)
633 goto out_free;
Cornelia Huck7e560812006-07-12 16:40:19 +0200634 if (css_characteristics_avail &&
635 css_chsc_characteristics.secm) {
636 ret = device_create_file(&css[i]->device,
637 &dev_attr_cm_enable);
638 if (ret)
639 goto out_device;
640 }
Cornelia Hucka28c6942006-01-06 00:19:23 -0800641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 css_init_done = 1;
643
644 ctl_set_bit(6, 28);
645
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800646 for_each_subchannel(__init_channel_subsystem, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return 0;
Cornelia Huck7e560812006-07-12 16:40:19 +0200648out_device:
649 device_unregister(&css[i]->device);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800650out_free:
651 kfree(css[i]);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800652out_unregister:
Cornelia Hucka28c6942006-01-06 00:19:23 -0800653 while (i > 0) {
654 i--;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800655 if (css_characteristics_avail && css_chsc_characteristics.secm)
656 device_remove_file(&css[i]->device,
657 &dev_attr_cm_enable);
Cornelia Hucka28c6942006-01-06 00:19:23 -0800658 device_unregister(&css[i]->device);
659 }
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800660out_bus:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 bus_unregister(&css_bus_type);
662out:
663 return ret;
664}
665
666/*
667 * find a driver for a subchannel. They identify by the subchannel
668 * type with the exception that the console subchannel driver has its own
669 * subchannel type although the device is an i/o subchannel
670 */
671static int
672css_bus_match (struct device *dev, struct device_driver *drv)
673{
674 struct subchannel *sch = container_of (dev, struct subchannel, dev);
675 struct css_driver *driver = container_of (drv, struct css_driver, drv);
676
677 if (sch->st == driver->subchannel_type)
678 return 1;
679
680 return 0;
681}
682
Cornelia Huck8bbace72006-01-11 10:56:22 +0100683static int
684css_probe (struct device *dev)
685{
686 struct subchannel *sch;
687
688 sch = to_subchannel(dev);
689 sch->driver = container_of (dev->driver, struct css_driver, drv);
690 return (sch->driver->probe ? sch->driver->probe(sch) : 0);
691}
692
693static int
694css_remove (struct device *dev)
695{
696 struct subchannel *sch;
697
698 sch = to_subchannel(dev);
699 return (sch->driver->remove ? sch->driver->remove(sch) : 0);
700}
701
702static void
703css_shutdown (struct device *dev)
704{
705 struct subchannel *sch;
706
707 sch = to_subchannel(dev);
708 if (sch->driver->shutdown)
709 sch->driver->shutdown(sch);
710}
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712struct bus_type css_bus_type = {
Cornelia Huck8bbace72006-01-11 10:56:22 +0100713 .name = "css",
714 .match = css_bus_match,
715 .probe = css_probe,
716 .remove = css_remove,
717 .shutdown = css_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718};
719
720subsys_initcall(init_channel_subsystem);
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800723css_enqueue_subchannel_slow(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 struct slow_subchannel *new_slow_sch;
726 unsigned long flags;
727
Eric Sesterhenn88abaab2006-03-24 03:15:31 -0800728 new_slow_sch = kzalloc(sizeof(struct slow_subchannel), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (!new_slow_sch)
730 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 new_slow_sch->schid = schid;
732 spin_lock_irqsave(&slow_subchannel_lock, flags);
733 list_add_tail(&new_slow_sch->slow_list, &slow_subchannels_head);
734 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
735 return 0;
736}
737
738void
739css_clear_subchannel_slow_list(void)
740{
741 unsigned long flags;
742
743 spin_lock_irqsave(&slow_subchannel_lock, flags);
744 while (!list_empty(&slow_subchannels_head)) {
745 struct slow_subchannel *slow_sch =
746 list_entry(slow_subchannels_head.next,
747 struct slow_subchannel, slow_list);
748
749 list_del_init(slow_subchannels_head.next);
750 kfree(slow_sch);
751 }
752 spin_unlock_irqrestore(&slow_subchannel_lock, flags);
753}
754
755
756
757int
758css_slow_subchannels_exist(void)
759{
760 return (!list_empty(&slow_subchannels_head));
761}
762
763MODULE_LICENSE("GPL");
764EXPORT_SYMBOL(css_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765EXPORT_SYMBOL_GPL(css_characteristics_avail);