Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * S/390 common I/O routines -- low level i/o calls |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 1999, 2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Ingo Adlung (adlung@de.ibm.com) |
Cornelia Huck | 4ce3b30 | 2006-01-14 13:21:04 -0800 | [diff] [blame] | 6 | * Cornelia Huck (cornelia.huck@de.ibm.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Arnd Bergmann (arndb@de.ibm.com) |
| 8 | * Martin Schwidefsky (schwidefsky@de.ibm.com) |
| 9 | */ |
| 10 | |
Michael Ernst | e6d5a42 | 2008-12-25 13:39:36 +0100 | [diff] [blame] | 11 | #define KMSG_COMPONENT "cio" |
| 12 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 13 | |
Heiko Carstens | 88dbd20 | 2009-06-12 10:26:46 +0200 | [diff] [blame] | 14 | #include <linux/ftrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/init.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/device.h> |
| 19 | #include <linux/kernel_stat.h> |
| 20 | #include <linux/interrupt.h> |
Thomas Gleixner | 257ceab | 2014-03-04 23:57:29 +0100 | [diff] [blame] | 21 | #include <linux/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <asm/cio.h> |
| 23 | #include <asm/delay.h> |
| 24 | #include <asm/irq.h> |
Heiko Carstens | 5a489b98 | 2006-10-06 16:38:35 +0200 | [diff] [blame] | 25 | #include <asm/irq_regs.h> |
Heiko Carstens | e87bfe5 | 2006-09-20 15:59:15 +0200 | [diff] [blame] | 26 | #include <asm/setup.h> |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 27 | #include <asm/reset.h> |
Michael Holzheu | 46b05d2 | 2007-02-21 10:55:21 +0100 | [diff] [blame] | 28 | #include <asm/ipl.h> |
Peter Oberparleiter | e5854a5 | 2007-04-27 16:01:31 +0200 | [diff] [blame] | 29 | #include <asm/chpid.h> |
Peter Oberparleiter | 4e8e56c | 2008-01-26 14:10:44 +0100 | [diff] [blame] | 30 | #include <asm/airq.h> |
Cornelia Huck | 3a3fc29 | 2008-07-14 09:58:58 +0200 | [diff] [blame] | 31 | #include <asm/isc.h> |
Frederic Weisbecker | bfc3f02 | 2014-03-05 16:33:42 +0100 | [diff] [blame] | 32 | #include <linux/cputime.h> |
Peter Oberparleiter | 83262d6 | 2008-07-14 09:58:51 +0200 | [diff] [blame] | 33 | #include <asm/fcx.h> |
Heiko Carstens | f5daba1 | 2009-03-26 15:24:01 +0100 | [diff] [blame] | 34 | #include <asm/nmi.h> |
| 35 | #include <asm/crw.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include "cio.h" |
| 37 | #include "css.h" |
| 38 | #include "chsc.h" |
| 39 | #include "ioasm.h" |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 40 | #include "io_sch.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include "blacklist.h" |
| 42 | #include "cio_debug.h" |
Peter Oberparleiter | e6b6e10 | 2007-04-27 16:01:28 +0200 | [diff] [blame] | 43 | #include "chp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | debug_info_t *cio_debug_msg_id; |
| 46 | debug_info_t *cio_debug_trace_id; |
| 47 | debug_info_t *cio_debug_crw_id; |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* |
| 50 | * Function: cio_debug_init |
Cornelia Huck | bc698bc | 2008-01-26 14:10:42 +0100 | [diff] [blame] | 51 | * Initializes three debug logs for common I/O: |
| 52 | * - cio_msg logs generic cio messages |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | * - cio_trace logs the calling of different functions |
Cornelia Huck | bc698bc | 2008-01-26 14:10:42 +0100 | [diff] [blame] | 54 | * - cio_crw logs machine check related cio messages |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | */ |
Cornelia Huck | bc698bc | 2008-01-26 14:10:42 +0100 | [diff] [blame] | 56 | static int __init cio_debug_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
Sebastian Ott | f7e1e65 | 2014-02-17 11:16:10 +0100 | [diff] [blame] | 58 | cio_debug_msg_id = debug_register("cio_msg", 16, 1, 11 * sizeof(long)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | if (!cio_debug_msg_id) |
| 60 | goto out_unregister; |
Cornelia Huck | bc698bc | 2008-01-26 14:10:42 +0100 | [diff] [blame] | 61 | debug_register_view(cio_debug_msg_id, &debug_sprintf_view); |
| 62 | debug_set_level(cio_debug_msg_id, 2); |
Peter Tiedemann | 361f494 | 2008-01-26 14:11:30 +0100 | [diff] [blame] | 63 | cio_debug_trace_id = debug_register("cio_trace", 16, 1, 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | if (!cio_debug_trace_id) |
| 65 | goto out_unregister; |
Cornelia Huck | bc698bc | 2008-01-26 14:10:42 +0100 | [diff] [blame] | 66 | debug_register_view(cio_debug_trace_id, &debug_hex_ascii_view); |
| 67 | debug_set_level(cio_debug_trace_id, 2); |
Sebastian Ott | f7e1e65 | 2014-02-17 11:16:10 +0100 | [diff] [blame] | 68 | cio_debug_crw_id = debug_register("cio_crw", 8, 1, 8 * sizeof(long)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | if (!cio_debug_crw_id) |
| 70 | goto out_unregister; |
Cornelia Huck | bc698bc | 2008-01-26 14:10:42 +0100 | [diff] [blame] | 71 | debug_register_view(cio_debug_crw_id, &debug_sprintf_view); |
| 72 | debug_set_level(cio_debug_crw_id, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | return 0; |
| 74 | |
| 75 | out_unregister: |
| 76 | if (cio_debug_msg_id) |
Cornelia Huck | bc698bc | 2008-01-26 14:10:42 +0100 | [diff] [blame] | 77 | debug_unregister(cio_debug_msg_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | if (cio_debug_trace_id) |
Cornelia Huck | bc698bc | 2008-01-26 14:10:42 +0100 | [diff] [blame] | 79 | debug_unregister(cio_debug_trace_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | if (cio_debug_crw_id) |
Cornelia Huck | bc698bc | 2008-01-26 14:10:42 +0100 | [diff] [blame] | 81 | debug_unregister(cio_debug_crw_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | return -1; |
| 83 | } |
| 84 | |
| 85 | arch_initcall (cio_debug_init); |
| 86 | |
Sebastian Ott | c513d07 | 2011-03-15 17:08:25 +0100 | [diff] [blame] | 87 | int cio_set_options(struct subchannel *sch, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { |
Sebastian Ott | c513d07 | 2011-03-15 17:08:25 +0100 | [diff] [blame] | 89 | struct io_subchannel_private *priv = to_io_private(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Sebastian Ott | c513d07 | 2011-03-15 17:08:25 +0100 | [diff] [blame] | 91 | priv->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0; |
| 92 | priv->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0; |
| 93 | priv->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0; |
| 94 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 97 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | cio_start_handle_notoper(struct subchannel *sch, __u8 lpm) |
| 99 | { |
| 100 | char dbf_text[15]; |
| 101 | |
| 102 | if (lpm != 0) |
| 103 | sch->lpm &= ~lpm; |
| 104 | else |
| 105 | sch->lpm = 0; |
| 106 | |
Michael Ernst | 139b83d | 2008-05-07 09:22:54 +0200 | [diff] [blame] | 107 | CIO_MSG_EVENT(2, "cio_start: 'not oper' status for " |
Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 108 | "subchannel 0.%x.%04x!\n", sch->schid.ssid, |
| 109 | sch->schid.sch_no); |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 110 | |
| 111 | if (cio_update_schib(sch)) |
| 112 | return -ENODEV; |
| 113 | |
Kay Sievers | 2a0217d | 2008-10-10 21:33:09 +0200 | [diff] [blame] | 114 | sprintf(dbf_text, "no%s", dev_name(&sch->dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | CIO_TRACE_EVENT(0, dbf_text); |
| 116 | CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib)); |
| 117 | |
| 118 | return (sch->lpm ? -EACCES : -ENODEV); |
| 119 | } |
| 120 | |
| 121 | int |
| 122 | cio_start_key (struct subchannel *sch, /* subchannel structure */ |
| 123 | struct ccw1 * cpa, /* logical channel prog addr */ |
| 124 | __u8 lpm, /* logical path mask */ |
| 125 | __u8 key) /* storage key */ |
| 126 | { |
Sebastian Ott | c513d07 | 2011-03-15 17:08:25 +0100 | [diff] [blame] | 127 | struct io_subchannel_private *priv = to_io_private(sch); |
| 128 | union orb *orb = &priv->orb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | int ccode; |
| 130 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 131 | CIO_TRACE_EVENT(5, "stIO"); |
| 132 | CIO_TRACE_EVENT(5, dev_name(&sch->dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Stefan Weinhuber | 9adb8c1 | 2008-09-16 09:32:19 -0700 | [diff] [blame] | 134 | memset(orb, 0, sizeof(union orb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | /* sch is always under 2G. */ |
Peter Oberparleiter | 83262d6 | 2008-07-14 09:58:51 +0200 | [diff] [blame] | 136 | orb->cmd.intparm = (u32)(addr_t)sch; |
| 137 | orb->cmd.fmt = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Sebastian Ott | c513d07 | 2011-03-15 17:08:25 +0100 | [diff] [blame] | 139 | orb->cmd.pfch = priv->options.prefetch == 0; |
| 140 | orb->cmd.spnd = priv->options.suspend; |
| 141 | orb->cmd.ssic = priv->options.suspend && priv->options.inter; |
Peter Oberparleiter | 83262d6 | 2008-07-14 09:58:51 +0200 | [diff] [blame] | 142 | orb->cmd.lpm = (lpm != 0) ? lpm : sch->lpm; |
Martin Schwidefsky | 347a8dc | 2006-01-06 00:19:28 -0800 | [diff] [blame] | 143 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | /* |
| 145 | * for 64 bit we always support 64 bit IDAWs with 4k page size only |
| 146 | */ |
Peter Oberparleiter | 83262d6 | 2008-07-14 09:58:51 +0200 | [diff] [blame] | 147 | orb->cmd.c64 = 1; |
| 148 | orb->cmd.i2k = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | #endif |
Peter Oberparleiter | 83262d6 | 2008-07-14 09:58:51 +0200 | [diff] [blame] | 150 | orb->cmd.key = key >> 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | /* issue "Start Subchannel" */ |
Peter Oberparleiter | 83262d6 | 2008-07-14 09:58:51 +0200 | [diff] [blame] | 152 | orb->cmd.cpa = (__u32) __pa(cpa); |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 153 | ccode = ssch(sch->schid, orb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | /* process condition code */ |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 156 | CIO_HEX_EVENT(5, &ccode, sizeof(ccode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | switch (ccode) { |
| 159 | case 0: |
| 160 | /* |
| 161 | * initialize device status information |
| 162 | */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 163 | sch->schib.scsw.cmd.actl |= SCSW_ACTL_START_PEND; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | return 0; |
| 165 | case 1: /* status pending */ |
| 166 | case 2: /* busy */ |
| 167 | return -EBUSY; |
Cornelia Huck | c91ebe4 | 2008-09-09 12:38:58 +0200 | [diff] [blame] | 168 | case 3: /* device/path not operational */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | return cio_start_handle_notoper(sch, lpm); |
Cornelia Huck | c91ebe4 | 2008-09-09 12:38:58 +0200 | [diff] [blame] | 170 | default: |
| 171 | return ccode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
| 173 | } |
| 174 | |
| 175 | int |
| 176 | cio_start (struct subchannel *sch, struct ccw1 *cpa, __u8 lpm) |
| 177 | { |
Peter Oberparleiter | 0b642ed | 2005-05-01 08:58:58 -0700 | [diff] [blame] | 178 | return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | /* |
| 182 | * resume suspended I/O operation |
| 183 | */ |
| 184 | int |
| 185 | cio_resume (struct subchannel *sch) |
| 186 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | int ccode; |
| 188 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 189 | CIO_TRACE_EVENT(4, "resIO"); |
Kay Sievers | 2a0217d | 2008-10-10 21:33:09 +0200 | [diff] [blame] | 190 | CIO_TRACE_EVENT(4, dev_name(&sch->dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 192 | ccode = rsch (sch->schid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 194 | CIO_HEX_EVENT(4, &ccode, sizeof(ccode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
| 196 | switch (ccode) { |
| 197 | case 0: |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 198 | sch->schib.scsw.cmd.actl |= SCSW_ACTL_RESUME_PEND; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | return 0; |
| 200 | case 1: |
| 201 | return -EBUSY; |
| 202 | case 2: |
| 203 | return -EINVAL; |
| 204 | default: |
| 205 | /* |
| 206 | * useless to wait for request completion |
| 207 | * as device is no longer operational ! |
| 208 | */ |
| 209 | return -ENODEV; |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | * halt I/O operation |
| 215 | */ |
| 216 | int |
| 217 | cio_halt(struct subchannel *sch) |
| 218 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | int ccode; |
| 220 | |
| 221 | if (!sch) |
| 222 | return -ENODEV; |
| 223 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 224 | CIO_TRACE_EVENT(2, "haltIO"); |
Kay Sievers | 2a0217d | 2008-10-10 21:33:09 +0200 | [diff] [blame] | 225 | CIO_TRACE_EVENT(2, dev_name(&sch->dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | /* |
| 228 | * Issue "Halt subchannel" and process condition code |
| 229 | */ |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 230 | ccode = hsch (sch->schid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 232 | CIO_HEX_EVENT(2, &ccode, sizeof(ccode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
| 234 | switch (ccode) { |
| 235 | case 0: |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 236 | sch->schib.scsw.cmd.actl |= SCSW_ACTL_HALT_PEND; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | return 0; |
| 238 | case 1: /* status pending */ |
| 239 | case 2: /* busy */ |
| 240 | return -EBUSY; |
| 241 | default: /* device not operational */ |
| 242 | return -ENODEV; |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | /* |
| 247 | * Clear I/O operation |
| 248 | */ |
| 249 | int |
| 250 | cio_clear(struct subchannel *sch) |
| 251 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | int ccode; |
| 253 | |
| 254 | if (!sch) |
| 255 | return -ENODEV; |
| 256 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 257 | CIO_TRACE_EVENT(2, "clearIO"); |
Kay Sievers | 2a0217d | 2008-10-10 21:33:09 +0200 | [diff] [blame] | 258 | CIO_TRACE_EVENT(2, dev_name(&sch->dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | |
| 260 | /* |
| 261 | * Issue "Clear subchannel" and process condition code |
| 262 | */ |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 263 | ccode = csch (sch->schid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 265 | CIO_HEX_EVENT(2, &ccode, sizeof(ccode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
| 267 | switch (ccode) { |
| 268 | case 0: |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 269 | sch->schib.scsw.cmd.actl |= SCSW_ACTL_CLEAR_PEND; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | return 0; |
| 271 | default: /* device not operational */ |
| 272 | return -ENODEV; |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | /* |
| 277 | * Function: cio_cancel |
| 278 | * Issues a "Cancel Subchannel" on the specified subchannel |
| 279 | * Note: We don't need any fancy intparms and flags here |
| 280 | * since xsch is executed synchronously. |
| 281 | * Only for common I/O internal use as for now. |
| 282 | */ |
| 283 | int |
| 284 | cio_cancel (struct subchannel *sch) |
| 285 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | int ccode; |
| 287 | |
| 288 | if (!sch) |
| 289 | return -ENODEV; |
| 290 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 291 | CIO_TRACE_EVENT(2, "cancelIO"); |
Kay Sievers | 2a0217d | 2008-10-10 21:33:09 +0200 | [diff] [blame] | 292 | CIO_TRACE_EVENT(2, dev_name(&sch->dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 294 | ccode = xsch (sch->schid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 296 | CIO_HEX_EVENT(2, &ccode, sizeof(ccode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | |
| 298 | switch (ccode) { |
| 299 | case 0: /* success */ |
| 300 | /* Update information in scsw. */ |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 301 | if (cio_update_schib(sch)) |
| 302 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | return 0; |
| 304 | case 1: /* status pending */ |
| 305 | return -EBUSY; |
| 306 | case 2: /* not applicable */ |
| 307 | return -EINVAL; |
| 308 | default: /* not oper */ |
| 309 | return -ENODEV; |
| 310 | } |
| 311 | } |
| 312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 314 | static void cio_apply_config(struct subchannel *sch, struct schib *schib) |
| 315 | { |
| 316 | schib->pmcw.intparm = sch->config.intparm; |
| 317 | schib->pmcw.mbi = sch->config.mbi; |
| 318 | schib->pmcw.isc = sch->config.isc; |
| 319 | schib->pmcw.ena = sch->config.ena; |
| 320 | schib->pmcw.mme = sch->config.mme; |
| 321 | schib->pmcw.mp = sch->config.mp; |
| 322 | schib->pmcw.csense = sch->config.csense; |
| 323 | schib->pmcw.mbfc = sch->config.mbfc; |
| 324 | if (sch->config.mbfc) |
| 325 | schib->mba = sch->config.mba; |
| 326 | } |
| 327 | |
| 328 | static int cio_check_config(struct subchannel *sch, struct schib *schib) |
| 329 | { |
| 330 | return (schib->pmcw.intparm == sch->config.intparm) && |
| 331 | (schib->pmcw.mbi == sch->config.mbi) && |
| 332 | (schib->pmcw.isc == sch->config.isc) && |
| 333 | (schib->pmcw.ena == sch->config.ena) && |
| 334 | (schib->pmcw.mme == sch->config.mme) && |
| 335 | (schib->pmcw.mp == sch->config.mp) && |
| 336 | (schib->pmcw.csense == sch->config.csense) && |
| 337 | (schib->pmcw.mbfc == sch->config.mbfc) && |
| 338 | (!sch->config.mbfc || (schib->mba == sch->config.mba)); |
| 339 | } |
| 340 | |
| 341 | /* |
| 342 | * cio_commit_config - apply configuration to the subchannel |
| 343 | */ |
| 344 | int cio_commit_config(struct subchannel *sch) |
| 345 | { |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 346 | int ccode, retry, ret = 0; |
Sebastian Ott | 1bc8927 | 2014-02-05 13:36:05 +0100 | [diff] [blame] | 347 | struct schib schib; |
| 348 | struct irb irb; |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 349 | |
Sebastian Ott | 8821d24 | 2010-04-22 17:17:05 +0200 | [diff] [blame] | 350 | if (stsch_err(sch->schid, &schib) || !css_sch_is_valid(&schib)) |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 351 | return -ENODEV; |
| 352 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | for (retry = 0; retry < 5; retry++) { |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 354 | /* copy desired changes to local schib */ |
| 355 | cio_apply_config(sch, &schib); |
| 356 | ccode = msch_err(sch->schid, &schib); |
| 357 | if (ccode < 0) /* -EIO if msch gets a program check. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | return ccode; |
| 359 | switch (ccode) { |
Coly Li | 73ac36e | 2009-01-07 18:09:16 -0800 | [diff] [blame] | 360 | case 0: /* successful */ |
Sebastian Ott | 8821d24 | 2010-04-22 17:17:05 +0200 | [diff] [blame] | 361 | if (stsch_err(sch->schid, &schib) || |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 362 | !css_sch_is_valid(&schib)) |
| 363 | return -ENODEV; |
| 364 | if (cio_check_config(sch, &schib)) { |
| 365 | /* commit changes from local schib */ |
| 366 | memcpy(&sch->schib, &schib, sizeof(schib)); |
| 367 | return 0; |
| 368 | } |
| 369 | ret = -EAGAIN; |
| 370 | break; |
| 371 | case 1: /* status pending */ |
Sebastian Ott | 1bc8927 | 2014-02-05 13:36:05 +0100 | [diff] [blame] | 372 | ret = -EBUSY; |
| 373 | if (tsch(sch->schid, &irb)) |
| 374 | return ret; |
| 375 | break; |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 376 | case 2: /* busy */ |
| 377 | udelay(100); /* allow for recovery */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | ret = -EBUSY; |
| 379 | break; |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 380 | case 3: /* not operational */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | return -ENODEV; |
| 382 | } |
| 383 | } |
| 384 | return ret; |
| 385 | } |
| 386 | |
Cornelia Huck | 44a1c19 | 2008-07-14 09:58:47 +0200 | [diff] [blame] | 387 | /** |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 388 | * cio_update_schib - Perform stsch and update schib if subchannel is valid. |
| 389 | * @sch: subchannel on which to perform stsch |
| 390 | * Return zero on success, -ENODEV otherwise. |
| 391 | */ |
| 392 | int cio_update_schib(struct subchannel *sch) |
| 393 | { |
| 394 | struct schib schib; |
| 395 | |
Sebastian Ott | 8821d24 | 2010-04-22 17:17:05 +0200 | [diff] [blame] | 396 | if (stsch_err(sch->schid, &schib) || !css_sch_is_valid(&schib)) |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 397 | return -ENODEV; |
| 398 | |
| 399 | memcpy(&sch->schib, &schib, sizeof(schib)); |
| 400 | return 0; |
| 401 | } |
| 402 | EXPORT_SYMBOL_GPL(cio_update_schib); |
| 403 | |
| 404 | /** |
Cornelia Huck | 44a1c19 | 2008-07-14 09:58:47 +0200 | [diff] [blame] | 405 | * cio_enable_subchannel - enable a subchannel. |
| 406 | * @sch: subchannel to be enabled |
| 407 | * @intparm: interruption parameter to set |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | */ |
Cornelia Huck | edf2209 | 2008-04-30 13:38:39 +0200 | [diff] [blame] | 409 | int cio_enable_subchannel(struct subchannel *sch, u32 intparm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | int ret; |
| 412 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 413 | CIO_TRACE_EVENT(2, "ensch"); |
Kay Sievers | 2a0217d | 2008-10-10 21:33:09 +0200 | [diff] [blame] | 414 | CIO_TRACE_EVENT(2, dev_name(&sch->dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 416 | if (sch_is_pseudo_sch(sch)) |
| 417 | return -EINVAL; |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 418 | if (cio_update_schib(sch)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | return -ENODEV; |
| 420 | |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 421 | sch->config.ena = 1; |
| 422 | sch->config.isc = sch->isc; |
| 423 | sch->config.intparm = intparm; |
| 424 | |
Sebastian Ott | 1bc8927 | 2014-02-05 13:36:05 +0100 | [diff] [blame] | 425 | ret = cio_commit_config(sch); |
| 426 | if (ret == -EIO) { |
| 427 | /* |
| 428 | * Got a program check in msch. Try without |
| 429 | * the concurrent sense bit the next time. |
| 430 | */ |
| 431 | sch->config.csense = 0; |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 432 | ret = cio_commit_config(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 434 | CIO_HEX_EVENT(2, &ret, sizeof(ret)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | return ret; |
| 436 | } |
Cornelia Huck | 44a1c19 | 2008-07-14 09:58:47 +0200 | [diff] [blame] | 437 | EXPORT_SYMBOL_GPL(cio_enable_subchannel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
Cornelia Huck | 44a1c19 | 2008-07-14 09:58:47 +0200 | [diff] [blame] | 439 | /** |
| 440 | * cio_disable_subchannel - disable a subchannel. |
| 441 | * @sch: subchannel to disable |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | */ |
Cornelia Huck | 44a1c19 | 2008-07-14 09:58:47 +0200 | [diff] [blame] | 443 | int cio_disable_subchannel(struct subchannel *sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | int ret; |
| 446 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 447 | CIO_TRACE_EVENT(2, "dissch"); |
Kay Sievers | 2a0217d | 2008-10-10 21:33:09 +0200 | [diff] [blame] | 448 | CIO_TRACE_EVENT(2, dev_name(&sch->dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
Cornelia Huck | d7b5a4c9 | 2006-12-08 15:54:28 +0100 | [diff] [blame] | 450 | if (sch_is_pseudo_sch(sch)) |
| 451 | return 0; |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 452 | if (cio_update_schib(sch)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | return -ENODEV; |
| 454 | |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 455 | sch->config.ena = 0; |
Sebastian Ott | 1bc8927 | 2014-02-05 13:36:05 +0100 | [diff] [blame] | 456 | ret = cio_commit_config(sch); |
Sebastian Ott | 13952ec | 2008-12-25 13:39:13 +0100 | [diff] [blame] | 457 | |
Sebastian Ott | efd986d | 2009-09-11 10:28:18 +0200 | [diff] [blame] | 458 | CIO_HEX_EVENT(2, &ret, sizeof(ret)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | return ret; |
| 460 | } |
Cornelia Huck | 44a1c19 | 2008-07-14 09:58:47 +0200 | [diff] [blame] | 461 | EXPORT_SYMBOL_GPL(cio_disable_subchannel); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Cornelia Huck | b3a686f | 2008-07-14 09:58:48 +0200 | [diff] [blame] | 463 | static int cio_check_devno_blacklisted(struct subchannel *sch) |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 464 | { |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 465 | if (is_blacklisted(sch->schid.ssid, sch->schib.pmcw.dev)) { |
| 466 | /* |
| 467 | * This device must not be known to Linux. So we simply |
| 468 | * say that there is no device and return ENODEV. |
| 469 | */ |
| 470 | CIO_MSG_EVENT(6, "Blacklisted device detected " |
| 471 | "at devno %04X, subchannel set %x\n", |
| 472 | sch->schib.pmcw.dev, sch->schid.ssid); |
| 473 | return -ENODEV; |
| 474 | } |
| 475 | return 0; |
| 476 | } |
| 477 | |
Cornelia Huck | b3a686f | 2008-07-14 09:58:48 +0200 | [diff] [blame] | 478 | static int cio_validate_io_subchannel(struct subchannel *sch) |
| 479 | { |
| 480 | /* Initialization for io subchannels. */ |
| 481 | if (!css_sch_is_valid(&sch->schib)) |
| 482 | return -ENODEV; |
| 483 | |
| 484 | /* Devno is valid. */ |
| 485 | return cio_check_devno_blacklisted(sch); |
| 486 | } |
| 487 | |
| 488 | static int cio_validate_msg_subchannel(struct subchannel *sch) |
| 489 | { |
| 490 | /* Initialization for message subchannels. */ |
| 491 | if (!css_sch_is_valid(&sch->schib)) |
| 492 | return -ENODEV; |
| 493 | |
| 494 | /* Devno is valid. */ |
| 495 | return cio_check_devno_blacklisted(sch); |
| 496 | } |
| 497 | |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 498 | /** |
| 499 | * cio_validate_subchannel - basic validation of subchannel |
| 500 | * @sch: subchannel structure to be filled out |
| 501 | * @schid: subchannel id |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | * |
| 503 | * Find out subchannel type and initialize struct subchannel. |
| 504 | * Return codes: |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 505 | * 0 on success |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | * -ENXIO for non-defined subchannels |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 507 | * -ENODEV for invalid subchannels or blacklisted devices |
| 508 | * -EIO for subchannels in an invalid subchannel set |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | */ |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 510 | int cio_validate_subchannel(struct subchannel *sch, struct subchannel_id schid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | { |
| 512 | char dbf_txt[15]; |
| 513 | int ccode; |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 514 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 516 | sprintf(dbf_txt, "valsch%x", schid.sch_no); |
| 517 | CIO_TRACE_EVENT(4, dbf_txt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | /* |
| 520 | * The first subchannel that is not-operational (ccode==3) |
Sebastian Ott | e5dcf00 | 2013-04-13 13:08:01 +0200 | [diff] [blame] | 521 | * indicates that there aren't any more devices available. |
Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 522 | * If stsch gets an exception, it means the current subchannel set |
Sebastian Ott | e5dcf00 | 2013-04-13 13:08:01 +0200 | [diff] [blame] | 523 | * is not valid. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | */ |
Sebastian Ott | e5dcf00 | 2013-04-13 13:08:01 +0200 | [diff] [blame] | 525 | ccode = stsch_err(schid, &sch->schib); |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 526 | if (ccode) { |
| 527 | err = (ccode == 3) ? -ENXIO : ccode; |
| 528 | goto out; |
| 529 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | sch->st = sch->schib.pmcw.st; |
Sebastian Ott | e5dcf00 | 2013-04-13 13:08:01 +0200 | [diff] [blame] | 531 | sch->schid = schid; |
Cornelia Huck | c820de3 | 2008-07-14 09:58:45 +0200 | [diff] [blame] | 532 | |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 533 | switch (sch->st) { |
| 534 | case SUBCHANNEL_TYPE_IO: |
| 535 | err = cio_validate_io_subchannel(sch); |
| 536 | break; |
Cornelia Huck | b3a686f | 2008-07-14 09:58:48 +0200 | [diff] [blame] | 537 | case SUBCHANNEL_TYPE_MSG: |
| 538 | err = cio_validate_msg_subchannel(sch); |
| 539 | break; |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 540 | default: |
| 541 | err = 0; |
| 542 | } |
| 543 | if (err) |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 544 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 546 | CIO_MSG_EVENT(4, "Subchannel 0.%x.%04x reports subchannel type %04X\n", |
| 547 | sch->schid.ssid, sch->schid.sch_no, sch->st); |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 548 | out: |
Cornelia Huck | 2ec2298 | 2006-12-08 15:54:26 +0100 | [diff] [blame] | 549 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | /* |
Martin Schwidefsky | 1f44a225 | 2013-06-27 09:01:09 +0200 | [diff] [blame] | 553 | * do_cio_interrupt() handles all normal I/O device IRQ's |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | */ |
Martin Schwidefsky | 1f44a225 | 2013-06-27 09:01:09 +0200 | [diff] [blame] | 555 | static irqreturn_t do_cio_interrupt(int irq, void *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
Martin Schwidefsky | 1f44a225 | 2013-06-27 09:01:09 +0200 | [diff] [blame] | 557 | struct tpi_info *tpi_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | struct subchannel *sch; |
| 559 | struct irb *irb; |
| 560 | |
Christoph Lameter | 4a6f4fe | 2010-12-06 11:16:24 -0600 | [diff] [blame] | 561 | __this_cpu_write(s390_idle.nohz_delay, 1); |
Martin Schwidefsky | 1f44a225 | 2013-06-27 09:01:09 +0200 | [diff] [blame] | 562 | tpi_info = (struct tpi_info *) &get_irq_regs()->int_code; |
Martin Schwidefsky | 48f6b00 | 2013-06-17 14:54:02 +0200 | [diff] [blame] | 563 | irb = (struct irb *) &S390_lowcore.irb; |
Martin Schwidefsky | 48f6b00 | 2013-06-17 14:54:02 +0200 | [diff] [blame] | 564 | sch = (struct subchannel *)(unsigned long) tpi_info->intparm; |
| 565 | if (!sch) { |
| 566 | /* Clear pending interrupt condition. */ |
| 567 | inc_irq_stat(IRQIO_CIO); |
| 568 | tsch(tpi_info->schid, irb); |
Martin Schwidefsky | 1f44a225 | 2013-06-27 09:01:09 +0200 | [diff] [blame] | 569 | return IRQ_HANDLED; |
Martin Schwidefsky | 48f6b00 | 2013-06-17 14:54:02 +0200 | [diff] [blame] | 570 | } |
| 571 | spin_lock(sch->lock); |
| 572 | /* Store interrupt response block to lowcore. */ |
| 573 | if (tsch(tpi_info->schid, irb) == 0) { |
| 574 | /* Keep subchannel information word up to date. */ |
| 575 | memcpy (&sch->schib.scsw, &irb->scsw, sizeof (irb->scsw)); |
| 576 | /* Call interrupt handler if there is one. */ |
| 577 | if (sch->driver && sch->driver->irq) |
| 578 | sch->driver->irq(sch); |
| 579 | else |
Heiko Carstens | 420f42e | 2013-01-02 15:18:18 +0100 | [diff] [blame] | 580 | inc_irq_stat(IRQIO_CIO); |
Martin Schwidefsky | 48f6b00 | 2013-06-17 14:54:02 +0200 | [diff] [blame] | 581 | } else |
| 582 | inc_irq_stat(IRQIO_CIO); |
| 583 | spin_unlock(sch->lock); |
Martin Schwidefsky | 1f44a225 | 2013-06-27 09:01:09 +0200 | [diff] [blame] | 584 | |
| 585 | return IRQ_HANDLED; |
| 586 | } |
| 587 | |
Martin Schwidefsky | 1f44a225 | 2013-06-27 09:01:09 +0200 | [diff] [blame] | 588 | static struct irqaction io_interrupt = { |
| 589 | .name = "IO", |
| 590 | .handler = do_cio_interrupt, |
| 591 | }; |
| 592 | |
| 593 | void __init init_cio_interrupts(void) |
| 594 | { |
| 595 | irq_set_chip_and_handler(IO_INTERRUPT, |
| 596 | &dummy_irq_chip, handle_percpu_irq); |
| 597 | setup_irq(IO_INTERRUPT, &io_interrupt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | #ifdef CONFIG_CCW_CONSOLE |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 601 | static struct subchannel *console_sch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 603 | /* |
Martin Schwidefsky | b603d25 | 2012-05-09 16:27:36 +0200 | [diff] [blame] | 604 | * Use cio_tsch to update the subchannel status and call the interrupt handler |
Sebastian Ott | 188561a | 2013-04-13 12:53:21 +0200 | [diff] [blame] | 605 | * if status had been pending. Called with the subchannel's lock held. |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 606 | */ |
Sebastian Ott | 188561a | 2013-04-13 12:53:21 +0200 | [diff] [blame] | 607 | void cio_tsch(struct subchannel *sch) |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 608 | { |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 609 | struct irb *irb; |
| 610 | int irq_context; |
| 611 | |
Heiko Carstens | cbb870c | 2010-02-26 22:37:43 +0100 | [diff] [blame] | 612 | irb = (struct irb *)&S390_lowcore.irb; |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 613 | /* Store interrupt response block to lowcore. */ |
Martin Schwidefsky | b603d25 | 2012-05-09 16:27:36 +0200 | [diff] [blame] | 614 | if (tsch(sch->schid, irb) != 0) |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 615 | /* Not status pending or not operational. */ |
Martin Schwidefsky | b603d25 | 2012-05-09 16:27:36 +0200 | [diff] [blame] | 616 | return; |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 617 | memcpy(&sch->schib.scsw, &irb->scsw, sizeof(union scsw)); |
Martin Schwidefsky | b603d25 | 2012-05-09 16:27:36 +0200 | [diff] [blame] | 618 | /* Call interrupt handler with updated status. */ |
| 619 | irq_context = in_interrupt(); |
| 620 | if (!irq_context) { |
| 621 | local_bh_disable(); |
| 622 | irq_enter(); |
| 623 | } |
Thomas Gleixner | bc5dfcf | 2014-02-23 21:40:17 +0000 | [diff] [blame] | 624 | kstat_incr_irq_this_cpu(IO_INTERRUPT); |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 625 | if (sch->driver && sch->driver->irq) |
| 626 | sch->driver->irq(sch); |
Peter Oberparleiter | de400d6 | 2011-10-30 15:16:04 +0100 | [diff] [blame] | 627 | else |
Heiko Carstens | 420f42e | 2013-01-02 15:18:18 +0100 | [diff] [blame] | 628 | inc_irq_stat(IRQIO_CIO); |
Martin Schwidefsky | b603d25 | 2012-05-09 16:27:36 +0200 | [diff] [blame] | 629 | if (!irq_context) { |
| 630 | irq_exit(); |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 631 | _local_bh_enable(); |
Martin Schwidefsky | b603d25 | 2012-05-09 16:27:36 +0200 | [diff] [blame] | 632 | } |
Heiko Carstens | 191fd44 | 2008-12-25 13:39:01 +0100 | [diff] [blame] | 633 | } |
| 634 | |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 635 | static int cio_test_for_console(struct subchannel_id schid, void *data) |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 636 | { |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 637 | struct schib schib; |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 638 | |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 639 | if (stsch_err(schid, &schib) != 0) |
Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 640 | return -ENXIO; |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 641 | if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv && |
| 642 | (schib.pmcw.dev == console_devno)) { |
Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 643 | console_irq = schid.sch_no; |
| 644 | return 1; /* found */ |
| 645 | } |
| 646 | return 0; |
| 647 | } |
| 648 | |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 649 | static int cio_get_console_sch_no(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | { |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 651 | struct subchannel_id schid; |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 652 | struct schib schib; |
| 653 | |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 654 | init_subchannel_id(&schid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | if (console_irq != -1) { |
| 656 | /* VM provided us with the irq number of the console. */ |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 657 | schid.sch_no = console_irq; |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 658 | if (stsch_err(schid, &schib) != 0 || |
| 659 | (schib.pmcw.st != SUBCHANNEL_TYPE_IO) || !schib.pmcw.dnv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | return -1; |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 661 | console_devno = schib.pmcw.dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | } else if (console_devno != -1) { |
| 663 | /* At least the console device number is known. */ |
Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 664 | for_each_subchannel(cio_test_for_console, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | } |
| 666 | return console_irq; |
| 667 | } |
| 668 | |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 669 | struct subchannel *cio_probe_console(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | { |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 671 | struct subchannel_id schid; |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 672 | struct subchannel *sch; |
| 673 | int sch_no, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 675 | sch_no = cio_get_console_sch_no(); |
| 676 | if (sch_no == -1) { |
Michael Ernst | e6d5a42 | 2008-12-25 13:39:36 +0100 | [diff] [blame] | 677 | pr_warning("No CCW console was found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | return ERR_PTR(-ENODEV); |
| 679 | } |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 680 | init_subchannel_id(&schid); |
Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 681 | schid.sch_no = sch_no; |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 682 | sch = css_alloc_subchannel(schid); |
| 683 | if (IS_ERR(sch)) |
| 684 | return sch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
Cornelia Huck | 6ef556c | 2008-07-14 09:59:01 +0200 | [diff] [blame] | 686 | isc_register(CONSOLE_ISC); |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 687 | sch->config.isc = CONSOLE_ISC; |
| 688 | sch->config.intparm = (u32)(addr_t)sch; |
| 689 | ret = cio_commit_config(sch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | if (ret) { |
Cornelia Huck | 6ef556c | 2008-07-14 09:59:01 +0200 | [diff] [blame] | 691 | isc_unregister(CONSOLE_ISC); |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 692 | put_device(&sch->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | return ERR_PTR(ret); |
| 694 | } |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 695 | console_sch = sch; |
| 696 | return sch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
| 698 | |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 699 | int cio_is_console(struct subchannel_id schid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | { |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 701 | if (!console_sch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | return 0; |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 703 | return schid_equal(&schid, &console_sch->schid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | } |
| 705 | |
Sebastian Ott | 14556b3 | 2013-04-13 13:03:54 +0200 | [diff] [blame] | 706 | void cio_register_early_subchannels(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | { |
Sebastian Ott | 14556b3 | 2013-04-13 13:03:54 +0200 | [diff] [blame] | 708 | int ret; |
| 709 | |
| 710 | if (!console_sch) |
| 711 | return; |
| 712 | |
| 713 | ret = css_register_subchannel(console_sch); |
| 714 | if (ret) |
| 715 | put_device(&console_sch->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | } |
Sebastian Ott | 863fc84 | 2013-04-13 13:01:50 +0200 | [diff] [blame] | 717 | #endif /* CONFIG_CCW_CONSOLE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 719 | static int |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 720 | __disable_subchannel_easy(struct subchannel_id schid, struct schib *schib) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | { |
| 722 | int retry, cc; |
| 723 | |
| 724 | cc = 0; |
| 725 | for (retry=0;retry<3;retry++) { |
| 726 | schib->pmcw.ena = 0; |
Sebastian Ott | 8821d24 | 2010-04-22 17:17:05 +0200 | [diff] [blame] | 727 | cc = msch_err(schid, schib); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | if (cc) |
| 729 | return (cc==3?-ENODEV:-EBUSY); |
Sebastian Ott | 8821d24 | 2010-04-22 17:17:05 +0200 | [diff] [blame] | 730 | if (stsch_err(schid, schib) || !css_sch_is_valid(schib)) |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 731 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | if (!schib->pmcw.ena) |
| 733 | return 0; |
| 734 | } |
| 735 | return -EBUSY; /* uhm... */ |
| 736 | } |
| 737 | |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 738 | static int |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 739 | __clear_io_subchannel_easy(struct subchannel_id schid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | { |
| 741 | int retry; |
| 742 | |
| 743 | if (csch(schid)) |
| 744 | return -ENODEV; |
| 745 | for (retry=0;retry<20;retry++) { |
| 746 | struct tpi_info ti; |
| 747 | |
| 748 | if (tpi(&ti)) { |
Heiko Carstens | cbb870c | 2010-02-26 22:37:43 +0100 | [diff] [blame] | 749 | tsch(ti.schid, (struct irb *)&S390_lowcore.irb); |
Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 750 | if (schid_equal(&ti.schid, &schid)) |
Cornelia Huck | 4c24da7 | 2005-09-03 15:58:01 -0700 | [diff] [blame] | 751 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | } |
Heiko Carstens | 5a0d0e6 | 2008-10-10 21:33:22 +0200 | [diff] [blame] | 753 | udelay_simple(100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | } |
| 755 | return -EBUSY; |
| 756 | } |
| 757 | |
Cornelia Huck | 9d92a7e | 2008-07-14 09:59:05 +0200 | [diff] [blame] | 758 | static void __clear_chsc_subchannel_easy(void) |
| 759 | { |
| 760 | /* It seems we can only wait for a bit here :/ */ |
Heiko Carstens | 5a0d0e6 | 2008-10-10 21:33:22 +0200 | [diff] [blame] | 761 | udelay_simple(100); |
Cornelia Huck | 9d92a7e | 2008-07-14 09:59:05 +0200 | [diff] [blame] | 762 | } |
| 763 | |
Michael Holzheu | a45e141 | 2006-12-15 17:18:22 +0100 | [diff] [blame] | 764 | static int pgm_check_occured; |
| 765 | |
| 766 | static void cio_reset_pgm_check_handler(void) |
| 767 | { |
| 768 | pgm_check_occured = 1; |
| 769 | } |
| 770 | |
Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 771 | static int stsch_reset(struct subchannel_id schid, struct schib *addr) |
Michael Holzheu | a45e141 | 2006-12-15 17:18:22 +0100 | [diff] [blame] | 772 | { |
| 773 | int rc; |
| 774 | |
| 775 | pgm_check_occured = 0; |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 776 | s390_base_pgm_handler_fn = cio_reset_pgm_check_handler; |
Sebastian Ott | 8821d24 | 2010-04-22 17:17:05 +0200 | [diff] [blame] | 777 | rc = stsch_err(schid, addr); |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 778 | s390_base_pgm_handler_fn = NULL; |
Heiko Carstens | 6faf444 | 2007-01-09 10:18:41 +0100 | [diff] [blame] | 779 | |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 780 | /* The program check handler could have changed pgm_check_occured. */ |
Heiko Carstens | 6faf444 | 2007-01-09 10:18:41 +0100 | [diff] [blame] | 781 | barrier(); |
| 782 | |
Michael Holzheu | a45e141 | 2006-12-15 17:18:22 +0100 | [diff] [blame] | 783 | if (pgm_check_occured) |
| 784 | return -EIO; |
| 785 | else |
| 786 | return rc; |
| 787 | } |
| 788 | |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 789 | static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data) |
Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 790 | { |
| 791 | struct schib schib; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
Michael Holzheu | a45e141 | 2006-12-15 17:18:22 +0100 | [diff] [blame] | 793 | if (stsch_reset(schid, &schib)) |
Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 794 | return -ENXIO; |
| 795 | if (!schib.pmcw.ena) |
| 796 | return 0; |
| 797 | switch(__disable_subchannel_easy(schid, &schib)) { |
| 798 | case 0: |
| 799 | case -ENODEV: |
| 800 | break; |
| 801 | default: /* -EBUSY */ |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 802 | switch (schib.pmcw.st) { |
| 803 | case SUBCHANNEL_TYPE_IO: |
| 804 | if (__clear_io_subchannel_easy(schid)) |
| 805 | goto out; /* give up... */ |
| 806 | break; |
Cornelia Huck | 9d92a7e | 2008-07-14 09:59:05 +0200 | [diff] [blame] | 807 | case SUBCHANNEL_TYPE_CHSC: |
| 808 | __clear_chsc_subchannel_easy(); |
| 809 | break; |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 810 | default: |
| 811 | /* No default clear strategy */ |
| 812 | break; |
| 813 | } |
Sebastian Ott | 8821d24 | 2010-04-22 17:17:05 +0200 | [diff] [blame] | 814 | stsch_err(schid, &schib); |
Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 815 | __disable_subchannel_easy(schid, &schib); |
| 816 | } |
Cornelia Huck | 0ae7a7b | 2008-07-14 09:58:43 +0200 | [diff] [blame] | 817 | out: |
Cornelia Huck | f97a56f | 2006-01-06 00:19:22 -0800 | [diff] [blame] | 818 | return 0; |
| 819 | } |
| 820 | |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 821 | static atomic_t chpid_reset_count; |
| 822 | |
| 823 | static void s390_reset_chpids_mcck_handler(void) |
| 824 | { |
| 825 | struct crw crw; |
| 826 | struct mci *mci; |
| 827 | |
| 828 | /* Check for pending channel report word. */ |
| 829 | mci = (struct mci *)&S390_lowcore.mcck_interruption_code; |
| 830 | if (!mci->cp) |
| 831 | return; |
| 832 | /* Process channel report words. */ |
| 833 | while (stcrw(&crw) == 0) { |
| 834 | /* Check for responses to RCHP. */ |
| 835 | if (crw.slct && crw.rsc == CRW_RSC_CPATH) |
| 836 | atomic_dec(&chpid_reset_count); |
| 837 | } |
| 838 | } |
| 839 | |
| 840 | #define RCHP_TIMEOUT (30 * USEC_PER_SEC) |
| 841 | static void css_reset(void) |
| 842 | { |
| 843 | int i, ret; |
| 844 | unsigned long long timeout; |
Peter Oberparleiter | f86635f | 2007-04-27 16:01:26 +0200 | [diff] [blame] | 845 | struct chp_id chpid; |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 846 | |
| 847 | /* Reset subchannels. */ |
| 848 | for_each_subchannel(__shutdown_subchannel_easy, NULL); |
| 849 | /* Reset channel paths. */ |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 850 | s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler; |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 851 | /* Enable channel report machine checks. */ |
| 852 | __ctl_set_bit(14, 28); |
| 853 | /* Temporarily reenable machine checks. */ |
| 854 | local_mcck_enable(); |
Peter Oberparleiter | f86635f | 2007-04-27 16:01:26 +0200 | [diff] [blame] | 855 | chp_id_init(&chpid); |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 856 | for (i = 0; i <= __MAX_CHPID; i++) { |
Peter Oberparleiter | f86635f | 2007-04-27 16:01:26 +0200 | [diff] [blame] | 857 | chpid.id = i; |
| 858 | ret = rchp(chpid); |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 859 | if ((ret == 0) || (ret == 2)) |
| 860 | /* |
| 861 | * rchp either succeeded, or another rchp is already |
| 862 | * in progress. In either case, we'll get a crw. |
| 863 | */ |
| 864 | atomic_inc(&chpid_reset_count); |
| 865 | } |
| 866 | /* Wait for machine check for all channel paths. */ |
Martin Schwidefsky | 8c071b0 | 2013-10-17 12:38:17 +0200 | [diff] [blame] | 867 | timeout = get_tod_clock_fast() + (RCHP_TIMEOUT << 12); |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 868 | while (atomic_read(&chpid_reset_count) != 0) { |
Martin Schwidefsky | 8c071b0 | 2013-10-17 12:38:17 +0200 | [diff] [blame] | 869 | if (get_tod_clock_fast() > timeout) |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 870 | break; |
| 871 | cpu_relax(); |
| 872 | } |
| 873 | /* Disable machine checks again. */ |
| 874 | local_mcck_disable(); |
| 875 | /* Disable channel report machine checks. */ |
| 876 | __ctl_clear_bit(14, 28); |
Heiko Carstens | ab14de6 | 2007-02-05 21:18:37 +0100 | [diff] [blame] | 877 | s390_base_mcck_handler_fn = NULL; |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 878 | } |
| 879 | |
| 880 | static struct reset_call css_reset_call = { |
| 881 | .fn = css_reset, |
| 882 | }; |
| 883 | |
| 884 | static int __init init_css_reset_call(void) |
| 885 | { |
| 886 | atomic_set(&chpid_reset_count, 0); |
| 887 | register_reset_call(&css_reset_call); |
| 888 | return 0; |
| 889 | } |
| 890 | |
| 891 | arch_initcall(init_css_reset_call); |
| 892 | |
| 893 | struct sch_match_id { |
| 894 | struct subchannel_id schid; |
| 895 | struct ccw_dev_id devid; |
| 896 | int rc; |
| 897 | }; |
| 898 | |
| 899 | static int __reipl_subchannel_match(struct subchannel_id schid, void *data) |
| 900 | { |
| 901 | struct schib schib; |
| 902 | struct sch_match_id *match_id = data; |
| 903 | |
Michael Holzheu | a45e141 | 2006-12-15 17:18:22 +0100 | [diff] [blame] | 904 | if (stsch_reset(schid, &schib)) |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 905 | return -ENXIO; |
Cornelia Huck | b279a4f | 2008-01-26 14:10:45 +0100 | [diff] [blame] | 906 | if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv && |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 907 | (schib.pmcw.dev == match_id->devid.devno) && |
| 908 | (schid.ssid == match_id->devid.ssid)) { |
| 909 | match_id->schid = schid; |
| 910 | match_id->rc = 0; |
| 911 | return 1; |
| 912 | } |
| 913 | return 0; |
| 914 | } |
| 915 | |
| 916 | static int reipl_find_schid(struct ccw_dev_id *devid, |
| 917 | struct subchannel_id *schid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | { |
Michael Holzheu | ff6b8ea | 2006-09-20 15:58:49 +0200 | [diff] [blame] | 919 | struct sch_match_id match_id; |
| 920 | |
| 921 | match_id.devid = *devid; |
| 922 | match_id.rc = -ENODEV; |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 923 | for_each_subchannel(__reipl_subchannel_match, &match_id); |
Michael Holzheu | ff6b8ea | 2006-09-20 15:58:49 +0200 | [diff] [blame] | 924 | if (match_id.rc == 0) |
| 925 | *schid = match_id.schid; |
| 926 | return match_id.rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | } |
| 928 | |
Michael Holzheu | ff6b8ea | 2006-09-20 15:58:49 +0200 | [diff] [blame] | 929 | extern void do_reipl_asm(__u32 schid); |
| 930 | |
| 931 | /* Make sure all subchannels are quiet before we re-ipl an lpar. */ |
| 932 | void reipl_ccw_dev(struct ccw_dev_id *devid) |
| 933 | { |
Heiko Carstens | 41459d3 | 2012-09-14 11:09:52 +0200 | [diff] [blame] | 934 | struct subchannel_id uninitialized_var(schid); |
Michael Holzheu | ff6b8ea | 2006-09-20 15:58:49 +0200 | [diff] [blame] | 935 | |
Michael Holzheu | 60a0c68 | 2011-10-30 15:16:40 +0100 | [diff] [blame] | 936 | s390_reset_system(NULL, NULL); |
Heiko Carstens | 15e9b58 | 2006-12-04 15:40:26 +0100 | [diff] [blame] | 937 | if (reipl_find_schid(devid, &schid) != 0) |
Michael Holzheu | ff6b8ea | 2006-09-20 15:58:49 +0200 | [diff] [blame] | 938 | panic("IPL Device not found\n"); |
Michael Holzheu | ff6b8ea | 2006-09-20 15:58:49 +0200 | [diff] [blame] | 939 | do_reipl_asm(*((__u32*)&schid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | } |
Heiko Carstens | e87bfe5 | 2006-09-20 15:59:15 +0200 | [diff] [blame] | 941 | |
Heiko Carstens | 6fc321f | 2007-04-27 16:01:25 +0200 | [diff] [blame] | 942 | int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo) |
Heiko Carstens | e87bfe5 | 2006-09-20 15:59:15 +0200 | [diff] [blame] | 943 | { |
| 944 | struct subchannel_id schid; |
Heiko Carstens | 6fc321f | 2007-04-27 16:01:25 +0200 | [diff] [blame] | 945 | struct schib schib; |
Heiko Carstens | e87bfe5 | 2006-09-20 15:59:15 +0200 | [diff] [blame] | 946 | |
Heiko Carstens | cbb870c | 2010-02-26 22:37:43 +0100 | [diff] [blame] | 947 | schid = *(struct subchannel_id *)&S390_lowcore.subchannel_id; |
Heiko Carstens | e87bfe5 | 2006-09-20 15:59:15 +0200 | [diff] [blame] | 948 | if (!schid.one) |
Heiko Carstens | 6fc321f | 2007-04-27 16:01:25 +0200 | [diff] [blame] | 949 | return -ENODEV; |
Sebastian Ott | 8821d24 | 2010-04-22 17:17:05 +0200 | [diff] [blame] | 950 | if (stsch_err(schid, &schib)) |
Heiko Carstens | 6fc321f | 2007-04-27 16:01:25 +0200 | [diff] [blame] | 951 | return -ENODEV; |
Cornelia Huck | b279a4f | 2008-01-26 14:10:45 +0100 | [diff] [blame] | 952 | if (schib.pmcw.st != SUBCHANNEL_TYPE_IO) |
| 953 | return -ENODEV; |
Heiko Carstens | 6fc321f | 2007-04-27 16:01:25 +0200 | [diff] [blame] | 954 | if (!schib.pmcw.dnv) |
| 955 | return -ENODEV; |
| 956 | iplinfo->devno = schib.pmcw.dev; |
| 957 | iplinfo->is_qdio = schib.pmcw.qf; |
| 958 | return 0; |
Heiko Carstens | e87bfe5 | 2006-09-20 15:59:15 +0200 | [diff] [blame] | 959 | } |
Peter Oberparleiter | 83262d6 | 2008-07-14 09:58:51 +0200 | [diff] [blame] | 960 | |
| 961 | /** |
| 962 | * cio_tm_start_key - perform start function |
| 963 | * @sch: subchannel on which to perform the start function |
| 964 | * @tcw: transport-command word to be started |
| 965 | * @lpm: mask of paths to use |
| 966 | * @key: storage key to use for storage access |
| 967 | * |
| 968 | * Start the tcw on the given subchannel. Return zero on success, non-zero |
| 969 | * otherwise. |
| 970 | */ |
| 971 | int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key) |
| 972 | { |
| 973 | int cc; |
| 974 | union orb *orb = &to_io_private(sch)->orb; |
| 975 | |
| 976 | memset(orb, 0, sizeof(union orb)); |
| 977 | orb->tm.intparm = (u32) (addr_t) sch; |
| 978 | orb->tm.key = key >> 4; |
| 979 | orb->tm.b = 1; |
| 980 | orb->tm.lpm = lpm ? lpm : sch->lpm; |
| 981 | orb->tm.tcw = (u32) (addr_t) tcw; |
| 982 | cc = ssch(sch->schid, orb); |
| 983 | switch (cc) { |
| 984 | case 0: |
| 985 | return 0; |
| 986 | case 1: |
| 987 | case 2: |
| 988 | return -EBUSY; |
| 989 | default: |
| 990 | return cio_start_handle_notoper(sch, lpm); |
| 991 | } |
| 992 | } |
| 993 | |
| 994 | /** |
| 995 | * cio_tm_intrg - perform interrogate function |
| 996 | * @sch - subchannel on which to perform the interrogate function |
| 997 | * |
| 998 | * If the specified subchannel is running in transport-mode, perform the |
| 999 | * interrogate function. Return zero on success, non-zero otherwie. |
| 1000 | */ |
| 1001 | int cio_tm_intrg(struct subchannel *sch) |
| 1002 | { |
| 1003 | int cc; |
| 1004 | |
| 1005 | if (!to_io_private(sch)->orb.tm.b) |
| 1006 | return -EINVAL; |
| 1007 | cc = xsch(sch->schid); |
| 1008 | switch (cc) { |
| 1009 | case 0: |
| 1010 | case 2: |
| 1011 | return 0; |
| 1012 | case 1: |
| 1013 | return -EBUSY; |
| 1014 | default: |
| 1015 | return -ENODEV; |
| 1016 | } |
| 1017 | } |