]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/s390/char/zcore.c
[S390] Cleanup struct _lowcore usage and defines.
[karo-tx-linux.git] / drivers / s390 / char / zcore.c
1 /*
2  * zcore module to export memory content and register sets for creating system
3  * dumps on SCSI disks (zfcpdump). The "zcore/mem" debugfs file shows the same
4  * dump format as s390 standalone dumps.
5  *
6  * For more information please refer to Documentation/s390/zfcpdump.txt
7  *
8  * Copyright IBM Corp. 2003,2008
9  * Author(s): Michael Holzheu
10  */
11
12 #define KMSG_COMPONENT "zdump"
13 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14
15 #include <linux/init.h>
16 #include <linux/miscdevice.h>
17 #include <linux/debugfs.h>
18 #include <asm/asm-offsets.h>
19 #include <asm/ipl.h>
20 #include <asm/sclp.h>
21 #include <asm/setup.h>
22 #include <asm/sigp.h>
23 #include <asm/uaccess.h>
24 #include <asm/debug.h>
25 #include <asm/processor.h>
26 #include <asm/irqflags.h>
27 #include <asm/checksum.h>
28 #include "sclp.h"
29
30 #define TRACE(x...) debug_sprintf_event(zcore_dbf, 1, x)
31
32 #define TO_USER         0
33 #define TO_KERNEL       1
34 #define CHUNK_INFO_SIZE 34 /* 2 16-byte char, each followed by blank */
35
36 enum arch_id {
37         ARCH_S390       = 0,
38         ARCH_S390X      = 1,
39 };
40
41 /* dump system info */
42
43 struct sys_info {
44         enum arch_id     arch;
45         unsigned long    sa_base;
46         u32              sa_size;
47         int              cpu_map[NR_CPUS];
48         unsigned long    mem_size;
49         struct save_area lc_mask;
50 };
51
52 struct ipib_info {
53         unsigned long   ipib;
54         u32             checksum;
55 }  __attribute__((packed));
56
57 static struct sys_info sys_info;
58 static struct debug_info *zcore_dbf;
59 static int hsa_available;
60 static struct dentry *zcore_dir;
61 static struct dentry *zcore_file;
62 static struct dentry *zcore_memmap_file;
63 static struct dentry *zcore_reipl_file;
64 static struct ipl_parameter_block *ipl_block;
65
66 /*
67  * Copy memory from HSA to kernel or user memory (not reentrant):
68  *
69  * @dest:  Kernel or user buffer where memory should be copied to
70  * @src:   Start address within HSA where data should be copied
71  * @count: Size of buffer, which should be copied
72  * @mode:  Either TO_KERNEL or TO_USER
73  */
74 static int memcpy_hsa(void *dest, unsigned long src, size_t count, int mode)
75 {
76         int offs, blk_num;
77         static char buf[PAGE_SIZE] __attribute__((__aligned__(PAGE_SIZE)));
78
79         if (count == 0)
80                 return 0;
81
82         /* copy first block */
83         offs = 0;
84         if ((src % PAGE_SIZE) != 0) {
85                 blk_num = src / PAGE_SIZE + 2;
86                 if (sclp_sdias_copy(buf, blk_num, 1)) {
87                         TRACE("sclp_sdias_copy() failed\n");
88                         return -EIO;
89                 }
90                 offs = min((PAGE_SIZE - (src % PAGE_SIZE)), count);
91                 if (mode == TO_USER) {
92                         if (copy_to_user((__force __user void*) dest,
93                                          buf + (src % PAGE_SIZE), offs))
94                                 return -EFAULT;
95                 } else
96                         memcpy(dest, buf + (src % PAGE_SIZE), offs);
97         }
98         if (offs == count)
99                 goto out;
100
101         /* copy middle */
102         for (; (offs + PAGE_SIZE) <= count; offs += PAGE_SIZE) {
103                 blk_num = (src + offs) / PAGE_SIZE + 2;
104                 if (sclp_sdias_copy(buf, blk_num, 1)) {
105                         TRACE("sclp_sdias_copy() failed\n");
106                         return -EIO;
107                 }
108                 if (mode == TO_USER) {
109                         if (copy_to_user((__force __user void*) dest + offs,
110                                          buf, PAGE_SIZE))
111                                 return -EFAULT;
112                 } else
113                         memcpy(dest + offs, buf, PAGE_SIZE);
114         }
115         if (offs == count)
116                 goto out;
117
118         /* copy last block */
119         blk_num = (src + offs) / PAGE_SIZE + 2;
120         if (sclp_sdias_copy(buf, blk_num, 1)) {
121                 TRACE("sclp_sdias_copy() failed\n");
122                 return -EIO;
123         }
124         if (mode == TO_USER) {
125                 if (copy_to_user((__force __user void*) dest + offs, buf,
126                                  PAGE_SIZE))
127                         return -EFAULT;
128         } else
129                 memcpy(dest + offs, buf, count - offs);
130 out:
131         return 0;
132 }
133
134 static int memcpy_hsa_user(void __user *dest, unsigned long src, size_t count)
135 {
136         return memcpy_hsa((void __force *) dest, src, count, TO_USER);
137 }
138
139 static int memcpy_hsa_kernel(void *dest, unsigned long src, size_t count)
140 {
141         return memcpy_hsa(dest, src, count, TO_KERNEL);
142 }
143
144 static int memcpy_real(void *dest, unsigned long src, size_t count)
145 {
146         unsigned long flags;
147         int rc = -EFAULT;
148         register unsigned long _dest asm("2") = (unsigned long) dest;
149         register unsigned long _len1 asm("3") = (unsigned long) count;
150         register unsigned long _src  asm("4") = src;
151         register unsigned long _len2 asm("5") = (unsigned long) count;
152
153         if (count == 0)
154                 return 0;
155         flags = __raw_local_irq_stnsm(0xf8UL); /* switch to real mode */
156         asm volatile (
157                 "0:     mvcle   %1,%2,0x0\n"
158                 "1:     jo      0b\n"
159                 "       lhi     %0,0x0\n"
160                 "2:\n"
161                 EX_TABLE(1b,2b)
162                 : "+d" (rc), "+d" (_dest), "+d" (_src), "+d" (_len1),
163                   "+d" (_len2), "=m" (*((long*)dest))
164                 : "m" (*((long*)src))
165                 : "cc", "memory");
166         __raw_local_irq_ssm(flags);
167
168         return rc;
169 }
170
171 static int memcpy_real_user(void __user *dest, unsigned long src, size_t count)
172 {
173         static char buf[4096];
174         int offs = 0, size;
175
176         while (offs < count) {
177                 size = min(sizeof(buf), count - offs);
178                 if (memcpy_real(buf, src + offs, size))
179                         return -EFAULT;
180                 if (copy_to_user(dest + offs, buf, size))
181                         return -EFAULT;
182                 offs += size;
183         }
184         return 0;
185 }
186
187 static int __init init_cpu_info(enum arch_id arch)
188 {
189         struct save_area *sa;
190
191         /* get info for boot cpu from lowcore, stored in the HSA */
192
193         sa = kmalloc(sizeof(*sa), GFP_KERNEL);
194         if (!sa)
195                 return -ENOMEM;
196         if (memcpy_hsa_kernel(sa, sys_info.sa_base, sys_info.sa_size) < 0) {
197                 TRACE("could not copy from HSA\n");
198                 kfree(sa);
199                 return -EIO;
200         }
201         zfcpdump_save_areas[0] = sa;
202         return 0;
203 }
204
205 static DEFINE_MUTEX(zcore_mutex);
206
207 #define DUMP_VERSION    0x3
208 #define DUMP_MAGIC      0xa8190173618f23fdULL
209 #define DUMP_ARCH_S390X 2
210 #define DUMP_ARCH_S390  1
211 #define HEADER_SIZE     4096
212
213 /* dump header dumped according to s390 crash dump format */
214
215 struct zcore_header {
216         u64 magic;
217         u32 version;
218         u32 header_size;
219         u32 dump_level;
220         u32 page_size;
221         u64 mem_size;
222         u64 mem_start;
223         u64 mem_end;
224         u32 num_pages;
225         u32 pad1;
226         u64 tod;
227         struct cpuid cpu_id;
228         u32 arch_id;
229         u32 volnr;
230         u32 build_arch;
231         u64 rmem_size;
232         char pad2[4016];
233 } __attribute__((packed,__aligned__(16)));
234
235 static struct zcore_header zcore_header = {
236         .magic          = DUMP_MAGIC,
237         .version        = DUMP_VERSION,
238         .header_size    = 4096,
239         .dump_level     = 0,
240         .page_size      = PAGE_SIZE,
241         .mem_start      = 0,
242 #ifdef CONFIG_64BIT
243         .build_arch     = DUMP_ARCH_S390X,
244 #else
245         .build_arch     = DUMP_ARCH_S390,
246 #endif
247 };
248
249 /*
250  * Copy lowcore info to buffer. Use map in order to copy only register parts.
251  *
252  * @buf:    User buffer
253  * @sa:     Pointer to save area
254  * @sa_off: Offset in save area to copy
255  * @len:    Number of bytes to copy
256  */
257 static int copy_lc(void __user *buf, void *sa, int sa_off, int len)
258 {
259         int i;
260         char *lc_mask = (char*)&sys_info.lc_mask;
261
262         for (i = 0; i < len; i++) {
263                 if (!lc_mask[i + sa_off])
264                         continue;
265                 if (copy_to_user(buf + i, sa + sa_off + i, 1))
266                         return -EFAULT;
267         }
268         return 0;
269 }
270
271 /*
272  * Copy lowcores info to memory, if necessary
273  *
274  * @buf:   User buffer
275  * @addr:  Start address of buffer in dump memory
276  * @count: Size of buffer
277  */
278 static int zcore_add_lc(char __user *buf, unsigned long start, size_t count)
279 {
280         unsigned long end;
281         int i = 0;
282
283         if (count == 0)
284                 return 0;
285
286         end = start + count;
287         while (zfcpdump_save_areas[i]) {
288                 unsigned long cp_start, cp_end; /* copy range */
289                 unsigned long sa_start, sa_end; /* save area range */
290                 unsigned long prefix;
291                 unsigned long sa_off, len, buf_off;
292
293                 prefix = zfcpdump_save_areas[i]->pref_reg;
294                 sa_start = prefix + sys_info.sa_base;
295                 sa_end = prefix + sys_info.sa_base + sys_info.sa_size;
296
297                 if ((end < sa_start) || (start > sa_end))
298                         goto next;
299                 cp_start = max(start, sa_start);
300                 cp_end = min(end, sa_end);
301
302                 buf_off = cp_start - start;
303                 sa_off = cp_start - sa_start;
304                 len = cp_end - cp_start;
305
306                 TRACE("copy_lc for: %lx\n", start);
307                 if (copy_lc(buf + buf_off, zfcpdump_save_areas[i], sa_off, len))
308                         return -EFAULT;
309 next:
310                 i++;
311         }
312         return 0;
313 }
314
315 /*
316  * Read routine for zcore character device
317  * First 4K are dump header
318  * Next 32MB are HSA Memory
319  * Rest is read from absolute Memory
320  */
321 static ssize_t zcore_read(struct file *file, char __user *buf, size_t count,
322                           loff_t *ppos)
323 {
324         unsigned long mem_start; /* Start address in memory */
325         size_t mem_offs;         /* Offset in dump memory */
326         size_t hdr_count;        /* Size of header part of output buffer */
327         size_t size;
328         int rc;
329
330         mutex_lock(&zcore_mutex);
331
332         if (*ppos > (sys_info.mem_size + HEADER_SIZE)) {
333                 rc = -EINVAL;
334                 goto fail;
335         }
336
337         count = min(count, (size_t) (sys_info.mem_size + HEADER_SIZE - *ppos));
338
339         /* Copy dump header */
340         if (*ppos < HEADER_SIZE) {
341                 size = min(count, (size_t) (HEADER_SIZE - *ppos));
342                 if (copy_to_user(buf, &zcore_header + *ppos, size)) {
343                         rc = -EFAULT;
344                         goto fail;
345                 }
346                 hdr_count = size;
347                 mem_start = 0;
348         } else {
349                 hdr_count = 0;
350                 mem_start = *ppos - HEADER_SIZE;
351         }
352
353         mem_offs = 0;
354
355         /* Copy from HSA data */
356         if (*ppos < (ZFCPDUMP_HSA_SIZE + HEADER_SIZE)) {
357                 size = min((count - hdr_count), (size_t) (ZFCPDUMP_HSA_SIZE
358                            - mem_start));
359                 rc = memcpy_hsa_user(buf + hdr_count, mem_start, size);
360                 if (rc)
361                         goto fail;
362
363                 mem_offs += size;
364         }
365
366         /* Copy from real mem */
367         size = count - mem_offs - hdr_count;
368         rc = memcpy_real_user(buf + hdr_count + mem_offs, mem_start + mem_offs,
369                               size);
370         if (rc)
371                 goto fail;
372
373         /*
374          * Since s390 dump analysis tools like lcrash or crash
375          * expect register sets in the prefix pages of the cpus,
376          * we copy them into the read buffer, if necessary.
377          * buf + hdr_count: Start of memory part of output buffer
378          * mem_start: Start memory address to copy from
379          * count - hdr_count: Size of memory area to copy
380          */
381         if (zcore_add_lc(buf + hdr_count, mem_start, count - hdr_count)) {
382                 rc = -EFAULT;
383                 goto fail;
384         }
385         *ppos += count;
386 fail:
387         mutex_unlock(&zcore_mutex);
388         return (rc < 0) ? rc : count;
389 }
390
391 static int zcore_open(struct inode *inode, struct file *filp)
392 {
393         if (!hsa_available)
394                 return -ENODATA;
395         else
396                 return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
397 }
398
399 static int zcore_release(struct inode *inode, struct file *filep)
400 {
401         diag308(DIAG308_REL_HSA, NULL);
402         hsa_available = 0;
403         return 0;
404 }
405
406 static loff_t zcore_lseek(struct file *file, loff_t offset, int orig)
407 {
408         loff_t rc;
409
410         mutex_lock(&zcore_mutex);
411         switch (orig) {
412         case 0:
413                 file->f_pos = offset;
414                 rc = file->f_pos;
415                 break;
416         case 1:
417                 file->f_pos += offset;
418                 rc = file->f_pos;
419                 break;
420         default:
421                 rc = -EINVAL;
422         }
423         mutex_unlock(&zcore_mutex);
424         return rc;
425 }
426
427 static const struct file_operations zcore_fops = {
428         .owner          = THIS_MODULE,
429         .llseek         = zcore_lseek,
430         .read           = zcore_read,
431         .open           = zcore_open,
432         .release        = zcore_release,
433 };
434
435 static ssize_t zcore_memmap_read(struct file *filp, char __user *buf,
436                                  size_t count, loff_t *ppos)
437 {
438         return simple_read_from_buffer(buf, count, ppos, filp->private_data,
439                                        MEMORY_CHUNKS * CHUNK_INFO_SIZE);
440 }
441
442 static int zcore_memmap_open(struct inode *inode, struct file *filp)
443 {
444         int i;
445         char *buf;
446         struct mem_chunk *chunk_array;
447
448         chunk_array = kzalloc(MEMORY_CHUNKS * sizeof(struct mem_chunk),
449                               GFP_KERNEL);
450         if (!chunk_array)
451                 return -ENOMEM;
452         detect_memory_layout(chunk_array);
453         buf = kzalloc(MEMORY_CHUNKS * CHUNK_INFO_SIZE, GFP_KERNEL);
454         if (!buf) {
455                 kfree(chunk_array);
456                 return -ENOMEM;
457         }
458         for (i = 0; i < MEMORY_CHUNKS; i++) {
459                 sprintf(buf + (i * CHUNK_INFO_SIZE), "%016llx %016llx ",
460                         (unsigned long long) chunk_array[i].addr,
461                         (unsigned long long) chunk_array[i].size);
462                 if (chunk_array[i].size == 0)
463                         break;
464         }
465         kfree(chunk_array);
466         filp->private_data = buf;
467         return 0;
468 }
469
470 static int zcore_memmap_release(struct inode *inode, struct file *filp)
471 {
472         kfree(filp->private_data);
473         return 0;
474 }
475
476 static const struct file_operations zcore_memmap_fops = {
477         .owner          = THIS_MODULE,
478         .read           = zcore_memmap_read,
479         .open           = zcore_memmap_open,
480         .release        = zcore_memmap_release,
481 };
482
483 static ssize_t zcore_reipl_write(struct file *filp, const char __user *buf,
484                                  size_t count, loff_t *ppos)
485 {
486         if (ipl_block) {
487                 diag308(DIAG308_SET, ipl_block);
488                 diag308(DIAG308_IPL, NULL);
489         }
490         return count;
491 }
492
493 static int zcore_reipl_open(struct inode *inode, struct file *filp)
494 {
495         return 0;
496 }
497
498 static int zcore_reipl_release(struct inode *inode, struct file *filp)
499 {
500         return 0;
501 }
502
503 static const struct file_operations zcore_reipl_fops = {
504         .owner          = THIS_MODULE,
505         .write          = zcore_reipl_write,
506         .open           = zcore_reipl_open,
507         .release        = zcore_reipl_release,
508 };
509
510 #ifdef CONFIG_32BIT
511
512 static void __init set_lc_mask(struct save_area *map)
513 {
514         memset(&map->ext_save, 0xff, sizeof(map->ext_save));
515         memset(&map->timer, 0xff, sizeof(map->timer));
516         memset(&map->clk_cmp, 0xff, sizeof(map->clk_cmp));
517         memset(&map->psw, 0xff, sizeof(map->psw));
518         memset(&map->pref_reg, 0xff, sizeof(map->pref_reg));
519         memset(&map->acc_regs, 0xff, sizeof(map->acc_regs));
520         memset(&map->fp_regs, 0xff, sizeof(map->fp_regs));
521         memset(&map->gp_regs, 0xff, sizeof(map->gp_regs));
522         memset(&map->ctrl_regs, 0xff, sizeof(map->ctrl_regs));
523 }
524
525 #else /* CONFIG_32BIT */
526
527 static void __init set_lc_mask(struct save_area *map)
528 {
529         memset(&map->fp_regs, 0xff, sizeof(map->fp_regs));
530         memset(&map->gp_regs, 0xff, sizeof(map->gp_regs));
531         memset(&map->psw, 0xff, sizeof(map->psw));
532         memset(&map->pref_reg, 0xff, sizeof(map->pref_reg));
533         memset(&map->fp_ctrl_reg, 0xff, sizeof(map->fp_ctrl_reg));
534         memset(&map->tod_reg, 0xff, sizeof(map->tod_reg));
535         memset(&map->timer, 0xff, sizeof(map->timer));
536         memset(&map->clk_cmp, 0xff, sizeof(map->clk_cmp));
537         memset(&map->acc_regs, 0xff, sizeof(map->acc_regs));
538         memset(&map->ctrl_regs, 0xff, sizeof(map->ctrl_regs));
539 }
540
541 #endif /* CONFIG_32BIT */
542
543 /*
544  * Initialize dump globals for a given architecture
545  */
546 static int __init sys_info_init(enum arch_id arch)
547 {
548         int rc;
549
550         switch (arch) {
551         case ARCH_S390X:
552                 pr_alert("DETECTED 'S390X (64 bit) OS'\n");
553                 break;
554         case ARCH_S390:
555                 pr_alert("DETECTED 'S390 (32 bit) OS'\n");
556                 break;
557         default:
558                 pr_alert("0x%x is an unknown architecture.\n",arch);
559                 return -EINVAL;
560         }
561         sys_info.sa_base = SAVE_AREA_BASE;
562         sys_info.sa_size = sizeof(struct save_area);
563         sys_info.arch = arch;
564         set_lc_mask(&sys_info.lc_mask);
565         rc = init_cpu_info(arch);
566         if (rc)
567                 return rc;
568         sys_info.mem_size = real_memory_size;
569
570         return 0;
571 }
572
573 static int __init check_sdias(void)
574 {
575         int rc, act_hsa_size;
576
577         rc = sclp_sdias_blk_count();
578         if (rc < 0) {
579                 TRACE("Could not determine HSA size\n");
580                 return rc;
581         }
582         act_hsa_size = (rc - 1) * PAGE_SIZE;
583         if (act_hsa_size < ZFCPDUMP_HSA_SIZE) {
584                 TRACE("HSA size too small: %i\n", act_hsa_size);
585                 return -EINVAL;
586         }
587         return 0;
588 }
589
590 static int __init get_mem_size(unsigned long *mem)
591 {
592         int i;
593         struct mem_chunk *chunk_array;
594
595         chunk_array = kzalloc(MEMORY_CHUNKS * sizeof(struct mem_chunk),
596                               GFP_KERNEL);
597         if (!chunk_array)
598                 return -ENOMEM;
599         detect_memory_layout(chunk_array);
600         for (i = 0; i < MEMORY_CHUNKS; i++) {
601                 if (chunk_array[i].size == 0)
602                         break;
603                 *mem += chunk_array[i].size;
604         }
605         kfree(chunk_array);
606         return 0;
607 }
608
609 static int __init zcore_header_init(int arch, struct zcore_header *hdr)
610 {
611         int rc;
612         unsigned long memory = 0;
613
614         if (arch == ARCH_S390X)
615                 hdr->arch_id = DUMP_ARCH_S390X;
616         else
617                 hdr->arch_id = DUMP_ARCH_S390;
618         rc = get_mem_size(&memory);
619         if (rc)
620                 return rc;
621         hdr->mem_size = memory;
622         hdr->rmem_size = memory;
623         hdr->mem_end = sys_info.mem_size;
624         hdr->num_pages = memory / PAGE_SIZE;
625         hdr->tod = get_clock();
626         get_cpu_id(&hdr->cpu_id);
627         return 0;
628 }
629
630 /*
631  * Provide IPL parameter information block from either HSA or memory
632  * for future reipl
633  */
634 static int __init zcore_reipl_init(void)
635 {
636         struct ipib_info ipib_info;
637         int rc;
638
639         rc = memcpy_hsa_kernel(&ipib_info, __LC_DUMP_REIPL, sizeof(ipib_info));
640         if (rc)
641                 return rc;
642         if (ipib_info.ipib == 0)
643                 return 0;
644         ipl_block = (void *) __get_free_page(GFP_KERNEL);
645         if (!ipl_block)
646                 return -ENOMEM;
647         if (ipib_info.ipib < ZFCPDUMP_HSA_SIZE)
648                 rc = memcpy_hsa_kernel(ipl_block, ipib_info.ipib, PAGE_SIZE);
649         else
650                 rc = memcpy_real(ipl_block, ipib_info.ipib, PAGE_SIZE);
651         if (rc) {
652                 free_page((unsigned long) ipl_block);
653                 return rc;
654         }
655         if (csum_partial(ipl_block, ipl_block->hdr.len, 0) !=
656             ipib_info.checksum) {
657                 TRACE("Checksum does not match\n");
658                 free_page((unsigned long) ipl_block);
659                 ipl_block = NULL;
660         }
661         return 0;
662 }
663
664 static int __init zcore_init(void)
665 {
666         unsigned char arch;
667         int rc;
668
669         if (ipl_info.type != IPL_TYPE_FCP_DUMP)
670                 return -ENODATA;
671
672         zcore_dbf = debug_register("zcore", 4, 1, 4 * sizeof(long));
673         debug_register_view(zcore_dbf, &debug_sprintf_view);
674         debug_set_level(zcore_dbf, 6);
675
676         TRACE("devno:  %x\n", ipl_info.data.fcp.dev_id.devno);
677         TRACE("wwpn:   %llx\n", (unsigned long long) ipl_info.data.fcp.wwpn);
678         TRACE("lun:    %llx\n", (unsigned long long) ipl_info.data.fcp.lun);
679
680         rc = sclp_sdias_init();
681         if (rc)
682                 goto fail;
683
684         rc = check_sdias();
685         if (rc)
686                 goto fail;
687
688         rc = memcpy_hsa_kernel(&arch, __LC_AR_MODE_ID, 1);
689         if (rc)
690                 goto fail;
691
692 #ifdef CONFIG_64BIT
693         if (arch == ARCH_S390) {
694                 pr_alert("The 64-bit dump tool cannot be used for a "
695                          "32-bit system\n");
696                 rc = -EINVAL;
697                 goto fail;
698         }
699 #else /* CONFIG_64BIT */
700         if (arch == ARCH_S390X) {
701                 pr_alert("The 32-bit dump tool cannot be used for a "
702                          "64-bit system\n");
703                 rc = -EINVAL;
704                 goto fail;
705         }
706 #endif /* CONFIG_64BIT */
707
708         rc = sys_info_init(arch);
709         if (rc)
710                 goto fail;
711
712         rc = zcore_header_init(arch, &zcore_header);
713         if (rc)
714                 goto fail;
715
716         rc = zcore_reipl_init();
717         if (rc)
718                 goto fail;
719
720         zcore_dir = debugfs_create_dir("zcore" , NULL);
721         if (!zcore_dir) {
722                 rc = -ENOMEM;
723                 goto fail;
724         }
725         zcore_file = debugfs_create_file("mem", S_IRUSR, zcore_dir, NULL,
726                                          &zcore_fops);
727         if (!zcore_file) {
728                 rc = -ENOMEM;
729                 goto fail_dir;
730         }
731         zcore_memmap_file = debugfs_create_file("memmap", S_IRUSR, zcore_dir,
732                                                 NULL, &zcore_memmap_fops);
733         if (!zcore_memmap_file) {
734                 rc = -ENOMEM;
735                 goto fail_file;
736         }
737         zcore_reipl_file = debugfs_create_file("reipl", S_IRUSR, zcore_dir,
738                                                 NULL, &zcore_reipl_fops);
739         if (!zcore_reipl_file) {
740                 rc = -ENOMEM;
741                 goto fail_memmap_file;
742         }
743         hsa_available = 1;
744         return 0;
745
746 fail_memmap_file:
747         debugfs_remove(zcore_memmap_file);
748 fail_file:
749         debugfs_remove(zcore_file);
750 fail_dir:
751         debugfs_remove(zcore_dir);
752 fail:
753         diag308(DIAG308_REL_HSA, NULL);
754         return rc;
755 }
756
757 static void __exit zcore_exit(void)
758 {
759         debug_unregister(zcore_dbf);
760         sclp_sdias_exit();
761         free_page((unsigned long) ipl_block);
762         debugfs_remove(zcore_reipl_file);
763         debugfs_remove(zcore_memmap_file);
764         debugfs_remove(zcore_file);
765         debugfs_remove(zcore_dir);
766         diag308(DIAG308_REL_HSA, NULL);
767 }
768
769 MODULE_AUTHOR("Copyright IBM Corp. 2003,2008");
770 MODULE_DESCRIPTION("zcore module for zfcpdump support");
771 MODULE_LICENSE("GPL");
772
773 subsys_initcall(zcore_init);
774 module_exit(zcore_exit);