1 // SPDX-License-Identifier: GPL-2.0
3 * Hypervisor filesystem for Linux on s390. Diag 204 and 224
6 * Copyright IBM Corp. 2006, 2008
10 #define KMSG_COMPONENT "hypfs"
11 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13 #include <linux/types.h>
14 #include <linux/errno.h>
15 #include <linux/slab.h>
16 #include <linux/string.h>
17 #include <linux/vmalloc.h>
20 #include <asm/ebcdic.h>
21 #include "hypfs_diag.h"
24 #define DBFS_D204_HDR_VERSION 0
26 static enum diag204_sc diag204_store_sc; /* used subcode for store */
27 static enum diag204_format diag204_info_type; /* used diag 204 data format */
29 static void *diag204_buf; /* 4K aligned buffer for diag204 data */
30 static int diag204_buf_pages; /* number of pages for diag204 data */
32 static struct dentry *dbfs_d204_file;
34 enum diag204_format diag204_get_info_type(void)
36 return diag204_info_type;
39 static void diag204_set_info_type(enum diag204_format type)
41 diag204_info_type = type;
44 /* Diagnose 204 functions */
46 * For the old diag subcode 4 with simple data format we have to use real
47 * memory. If we use subcode 6 or 7 with extended data format, we can (and
48 * should) use vmalloc, since we need a lot of memory in that case. Currently
52 static void diag204_free_buffer(void)
58 void *diag204_get_buffer(enum diag204_format fmt, int *pages)
61 *pages = diag204_buf_pages;
64 if (fmt == DIAG204_INFO_SIMPLE) {
66 } else {/* DIAG204_INFO_EXT */
67 *pages = diag204((unsigned long)DIAG204_SUBC_RSI |
68 (unsigned long)DIAG204_INFO_EXT, 0, NULL);
70 return ERR_PTR(-EOPNOTSUPP);
72 diag204_buf = __vmalloc_node(array_size(*pages, PAGE_SIZE),
73 PAGE_SIZE, GFP_KERNEL, NUMA_NO_NODE,
74 __builtin_return_address(0));
76 return ERR_PTR(-ENOMEM);
77 diag204_buf_pages = *pages;
82 * diag204_probe() has to find out, which type of diagnose 204 implementation
83 * we have on our machine. Currently there are three possible scanarios:
84 * - subcode 4 + simple data format (only one page)
85 * - subcode 4-6 + extended data format
86 * - subcode 4-7 + extended data format
88 * Subcode 5 is used to retrieve the size of the data, provided by subcodes
89 * 6 and 7. Subcode 7 basically has the same function as subcode 6. In addition
90 * to subcode 6 it provides also information about secondary cpus.
91 * In order to get as much information as possible, we first try
92 * subcode 7, then 6 and if both fail, we use subcode 4.
95 static int diag204_probe(void)
100 buf = diag204_get_buffer(DIAG204_INFO_EXT, &pages);
102 if (diag204((unsigned long)DIAG204_SUBC_STIB7 |
103 (unsigned long)DIAG204_INFO_EXT, pages, buf) >= 0) {
104 diag204_store_sc = DIAG204_SUBC_STIB7;
105 diag204_set_info_type(DIAG204_INFO_EXT);
108 if (diag204((unsigned long)DIAG204_SUBC_STIB6 |
109 (unsigned long)DIAG204_INFO_EXT, pages, buf) >= 0) {
110 diag204_store_sc = DIAG204_SUBC_STIB6;
111 diag204_set_info_type(DIAG204_INFO_EXT);
114 diag204_free_buffer();
117 /* subcodes 6 and 7 failed, now try subcode 4 */
119 buf = diag204_get_buffer(DIAG204_INFO_SIMPLE, &pages);
124 if (diag204((unsigned long)DIAG204_SUBC_STIB4 |
125 (unsigned long)DIAG204_INFO_SIMPLE, pages, buf) >= 0) {
126 diag204_store_sc = DIAG204_SUBC_STIB4;
127 diag204_set_info_type(DIAG204_INFO_SIMPLE);
136 diag204_free_buffer();
141 int diag204_store(void *buf, int pages)
145 rc = diag204((unsigned long)diag204_store_sc |
146 (unsigned long)diag204_get_info_type(), pages, buf);
147 return rc < 0 ? -EOPNOTSUPP : 0;
150 struct dbfs_d204_hdr {
151 u64 len; /* Length of d204 buffer without header */
152 u16 version; /* Version of header */
153 u8 sc; /* Used subcode */
155 } __attribute__ ((packed));
158 struct dbfs_d204_hdr hdr; /* 64 byte header */
159 char buf[]; /* d204 buffer */
160 } __attribute__ ((packed));
162 static int dbfs_d204_create(void **data, void **data_free_ptr, size_t *size)
164 struct dbfs_d204 *d204;
168 buf_size = PAGE_SIZE * (diag204_buf_pages + 1) + sizeof(d204->hdr);
169 base = vzalloc(buf_size);
172 d204 = PTR_ALIGN(base + sizeof(d204->hdr), PAGE_SIZE) - sizeof(d204->hdr);
173 rc = diag204_store(d204->buf, diag204_buf_pages);
178 d204->hdr.version = DBFS_D204_HDR_VERSION;
179 d204->hdr.len = PAGE_SIZE * diag204_buf_pages;
180 d204->hdr.sc = diag204_store_sc;
182 *data_free_ptr = base;
183 *size = d204->hdr.len + sizeof(struct dbfs_d204_hdr);
187 static struct hypfs_dbfs_file dbfs_file_d204 = {
189 .data_create = dbfs_d204_create,
193 __init int hypfs_diag_init(void)
197 if (diag204_probe()) {
198 pr_info("The hardware system does not support hypfs\n");
202 if (diag204_get_info_type() == DIAG204_INFO_EXT)
203 hypfs_dbfs_create_file(&dbfs_file_d204);
205 rc = hypfs_diag_fs_init();
207 pr_err("The hardware system does not provide all functions required by hypfs\n");
208 debugfs_remove(dbfs_d204_file);
213 void hypfs_diag_exit(void)
215 debugfs_remove(dbfs_d204_file);
216 hypfs_diag_fs_exit();
217 diag204_free_buffer();
218 hypfs_dbfs_remove_file(&dbfs_file_d204);