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