blob: be8cc53204b5088425af0f79d23bff276bc0b1c8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Michael Holzheu24bbb1f2006-06-23 02:05:06 -07002/*
Michael Holzheu24bbb1f2006-06-23 02:05:06 -07003 * Hypervisor filesystem for Linux on s390. Diag 204 and 224
4 * implementation.
5 *
Michael Holzheuf55495b2008-12-25 13:39:39 +01006 * Copyright IBM Corp. 2006, 2008
Michael Holzheu24bbb1f2006-06-23 02:05:06 -07007 * Author(s): Michael Holzheu <holzheu@de.ibm.com>
8 */
9
Michael Holzheuf55495b2008-12-25 13:39:39 +010010#define KMSG_COMPONENT "hypfs"
11#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070013#include <linux/types.h>
14#include <linux/errno.h>
Heiko Carstens33b26d72009-03-31 19:16:02 +020015#include <linux/slab.h>
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070016#include <linux/string.h>
17#include <linux/vmalloc.h>
Michael Holzheu57b28f62010-05-17 10:00:20 +020018#include <linux/mm.h>
Martin Schwidefsky1ec27722015-08-20 17:28:44 +020019#include <asm/diag.h>
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070020#include <asm/ebcdic.h>
21#include "hypfs.h"
22
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070023#define TMP_SIZE 64 /* size of temporary buffers */
24
Michael Holzheu57b28f62010-05-17 10:00:20 +020025#define DBFS_D204_HDR_VERSION 0
26
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070027static char *diag224_cpu_names; /* diag 224 name table */
28static enum diag204_sc diag204_store_sc; /* used subcode for store */
29static enum diag204_format diag204_info_type; /* used diag 204 data format */
30
31static void *diag204_buf; /* 4K aligned buffer for diag204 data */
32static void *diag204_buf_vmalloc; /* vmalloc pointer for diag204 data */
33static int diag204_buf_pages; /* number of pages for diag204 data */
34
Michael Holzheu57b28f62010-05-17 10:00:20 +020035static struct dentry *dbfs_d204_file;
36
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070037/*
Janosch Franke65f30e2016-02-04 10:24:52 +010038 * DIAG 204 member access functions.
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070039 *
40 * Since we have two different diag 204 data formats for old and new s390
41 * machines, we do not access the structs directly, but use getter functions for
42 * each struct member instead. This should make the code more readable.
43 */
44
45/* Time information block */
46
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070047static inline int info_blk_hdr__size(enum diag204_format type)
48{
Janosch Franke65f30e2016-02-04 10:24:52 +010049 if (type == DIAG204_INFO_SIMPLE)
50 return sizeof(struct diag204_info_blk_hdr);
51 else /* DIAG204_INFO_EXT */
52 return sizeof(struct diag204_x_info_blk_hdr);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070053}
54
55static inline __u8 info_blk_hdr__npar(enum diag204_format type, void *hdr)
56{
Janosch Franke65f30e2016-02-04 10:24:52 +010057 if (type == DIAG204_INFO_SIMPLE)
58 return ((struct diag204_info_blk_hdr *)hdr)->npar;
59 else /* DIAG204_INFO_EXT */
60 return ((struct diag204_x_info_blk_hdr *)hdr)->npar;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070061}
62
63static inline __u8 info_blk_hdr__flags(enum diag204_format type, void *hdr)
64{
Janosch Franke65f30e2016-02-04 10:24:52 +010065 if (type == DIAG204_INFO_SIMPLE)
66 return ((struct diag204_info_blk_hdr *)hdr)->flags;
67 else /* DIAG204_INFO_EXT */
68 return ((struct diag204_x_info_blk_hdr *)hdr)->flags;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070069}
70
71static inline __u16 info_blk_hdr__pcpus(enum diag204_format type, void *hdr)
72{
Janosch Franke65f30e2016-02-04 10:24:52 +010073 if (type == DIAG204_INFO_SIMPLE)
74 return ((struct diag204_info_blk_hdr *)hdr)->phys_cpus;
75 else /* DIAG204_INFO_EXT */
76 return ((struct diag204_x_info_blk_hdr *)hdr)->phys_cpus;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070077}
78
79/* Partition header */
80
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070081static inline int part_hdr__size(enum diag204_format type)
82{
Janosch Franke65f30e2016-02-04 10:24:52 +010083 if (type == DIAG204_INFO_SIMPLE)
84 return sizeof(struct diag204_part_hdr);
85 else /* DIAG204_INFO_EXT */
86 return sizeof(struct diag204_x_part_hdr);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070087}
88
89static inline __u8 part_hdr__rcpus(enum diag204_format type, void *hdr)
90{
Janosch Franke65f30e2016-02-04 10:24:52 +010091 if (type == DIAG204_INFO_SIMPLE)
92 return ((struct diag204_part_hdr *)hdr)->cpus;
93 else /* DIAG204_INFO_EXT */
94 return ((struct diag204_x_part_hdr *)hdr)->rcpus;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -070095}
96
97static inline void part_hdr__part_name(enum diag204_format type, void *hdr,
98 char *name)
99{
Janosch Franke65f30e2016-02-04 10:24:52 +0100100 if (type == DIAG204_INFO_SIMPLE)
101 memcpy(name, ((struct diag204_part_hdr *)hdr)->part_name,
102 DIAG204_LPAR_NAME_LEN);
103 else /* DIAG204_INFO_EXT */
104 memcpy(name, ((struct diag204_x_part_hdr *)hdr)->part_name,
105 DIAG204_LPAR_NAME_LEN);
106 EBCASC(name, DIAG204_LPAR_NAME_LEN);
107 name[DIAG204_LPAR_NAME_LEN] = 0;
Heiko Carstens1d802e22009-12-18 17:43:27 +0100108 strim(name);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700109}
110
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700111/* CPU info block */
112
113static inline int cpu_info__size(enum diag204_format type)
114{
Janosch Franke65f30e2016-02-04 10:24:52 +0100115 if (type == DIAG204_INFO_SIMPLE)
116 return sizeof(struct diag204_cpu_info);
117 else /* DIAG204_INFO_EXT */
118 return sizeof(struct diag204_x_cpu_info);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700119}
120
121static inline __u8 cpu_info__ctidx(enum diag204_format type, void *hdr)
122{
Janosch Franke65f30e2016-02-04 10:24:52 +0100123 if (type == DIAG204_INFO_SIMPLE)
124 return ((struct diag204_cpu_info *)hdr)->ctidx;
125 else /* DIAG204_INFO_EXT */
126 return ((struct diag204_x_cpu_info *)hdr)->ctidx;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700127}
128
129static inline __u16 cpu_info__cpu_addr(enum diag204_format type, void *hdr)
130{
Janosch Franke65f30e2016-02-04 10:24:52 +0100131 if (type == DIAG204_INFO_SIMPLE)
132 return ((struct diag204_cpu_info *)hdr)->cpu_addr;
133 else /* DIAG204_INFO_EXT */
134 return ((struct diag204_x_cpu_info *)hdr)->cpu_addr;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700135}
136
137static inline __u64 cpu_info__acc_time(enum diag204_format type, void *hdr)
138{
Janosch Franke65f30e2016-02-04 10:24:52 +0100139 if (type == DIAG204_INFO_SIMPLE)
140 return ((struct diag204_cpu_info *)hdr)->acc_time;
141 else /* DIAG204_INFO_EXT */
142 return ((struct diag204_x_cpu_info *)hdr)->acc_time;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700143}
144
145static inline __u64 cpu_info__lp_time(enum diag204_format type, void *hdr)
146{
Janosch Franke65f30e2016-02-04 10:24:52 +0100147 if (type == DIAG204_INFO_SIMPLE)
148 return ((struct diag204_cpu_info *)hdr)->lp_time;
149 else /* DIAG204_INFO_EXT */
150 return ((struct diag204_x_cpu_info *)hdr)->lp_time;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700151}
152
153static inline __u64 cpu_info__online_time(enum diag204_format type, void *hdr)
154{
Janosch Franke65f30e2016-02-04 10:24:52 +0100155 if (type == DIAG204_INFO_SIMPLE)
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700156 return 0; /* online_time not available in simple info */
Janosch Franke65f30e2016-02-04 10:24:52 +0100157 else /* DIAG204_INFO_EXT */
158 return ((struct diag204_x_cpu_info *)hdr)->online_time;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700159}
160
161/* Physical header */
162
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700163static inline int phys_hdr__size(enum diag204_format type)
164{
Janosch Franke65f30e2016-02-04 10:24:52 +0100165 if (type == DIAG204_INFO_SIMPLE)
166 return sizeof(struct diag204_phys_hdr);
167 else /* DIAG204_INFO_EXT */
168 return sizeof(struct diag204_x_phys_hdr);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700169}
170
171static inline __u8 phys_hdr__cpus(enum diag204_format type, void *hdr)
172{
Janosch Franke65f30e2016-02-04 10:24:52 +0100173 if (type == DIAG204_INFO_SIMPLE)
174 return ((struct diag204_phys_hdr *)hdr)->cpus;
175 else /* DIAG204_INFO_EXT */
176 return ((struct diag204_x_phys_hdr *)hdr)->cpus;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700177}
178
179/* Physical CPU info block */
180
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700181static inline int phys_cpu__size(enum diag204_format type)
182{
Janosch Franke65f30e2016-02-04 10:24:52 +0100183 if (type == DIAG204_INFO_SIMPLE)
184 return sizeof(struct diag204_phys_cpu);
185 else /* DIAG204_INFO_EXT */
186 return sizeof(struct diag204_x_phys_cpu);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700187}
188
189static inline __u16 phys_cpu__cpu_addr(enum diag204_format type, void *hdr)
190{
Janosch Franke65f30e2016-02-04 10:24:52 +0100191 if (type == DIAG204_INFO_SIMPLE)
192 return ((struct diag204_phys_cpu *)hdr)->cpu_addr;
193 else /* DIAG204_INFO_EXT */
194 return ((struct diag204_x_phys_cpu *)hdr)->cpu_addr;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700195}
196
197static inline __u64 phys_cpu__mgm_time(enum diag204_format type, void *hdr)
198{
Janosch Franke65f30e2016-02-04 10:24:52 +0100199 if (type == DIAG204_INFO_SIMPLE)
200 return ((struct diag204_phys_cpu *)hdr)->mgm_time;
201 else /* DIAG204_INFO_EXT */
202 return ((struct diag204_x_phys_cpu *)hdr)->mgm_time;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700203}
204
205static inline __u64 phys_cpu__ctidx(enum diag204_format type, void *hdr)
206{
Janosch Franke65f30e2016-02-04 10:24:52 +0100207 if (type == DIAG204_INFO_SIMPLE)
208 return ((struct diag204_phys_cpu *)hdr)->ctidx;
209 else /* DIAG204_INFO_EXT */
210 return ((struct diag204_x_phys_cpu *)hdr)->ctidx;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700211}
212
213/* Diagnose 204 functions */
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700214/*
215 * For the old diag subcode 4 with simple data format we have to use real
216 * memory. If we use subcode 6 or 7 with extended data format, we can (and
217 * should) use vmalloc, since we need a lot of memory in that case. Currently
218 * up to 93 pages!
219 */
220
221static void diag204_free_buffer(void)
222{
223 if (!diag204_buf)
224 return;
225 if (diag204_buf_vmalloc) {
226 vfree(diag204_buf_vmalloc);
227 diag204_buf_vmalloc = NULL;
228 } else {
229 free_pages((unsigned long) diag204_buf, 0);
230 }
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700231 diag204_buf = NULL;
232}
233
Michael Holzheu57b28f62010-05-17 10:00:20 +0200234static void *page_align_ptr(void *ptr)
235{
236 return (void *) PAGE_ALIGN((unsigned long) ptr);
237}
238
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700239static void *diag204_alloc_vbuf(int pages)
240{
241 /* The buffer has to be page aligned! */
242 diag204_buf_vmalloc = vmalloc(PAGE_SIZE * (pages + 1));
243 if (!diag204_buf_vmalloc)
244 return ERR_PTR(-ENOMEM);
Michael Holzheu57b28f62010-05-17 10:00:20 +0200245 diag204_buf = page_align_ptr(diag204_buf_vmalloc);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700246 diag204_buf_pages = pages;
247 return diag204_buf;
248}
249
250static void *diag204_alloc_rbuf(void)
251{
252 diag204_buf = (void*)__get_free_pages(GFP_KERNEL,0);
Christian Borntraeger86b22472006-12-15 17:18:10 +0100253 if (!diag204_buf)
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700254 return ERR_PTR(-ENOMEM);
255 diag204_buf_pages = 1;
256 return diag204_buf;
257}
258
259static void *diag204_get_buffer(enum diag204_format fmt, int *pages)
260{
261 if (diag204_buf) {
262 *pages = diag204_buf_pages;
263 return diag204_buf;
264 }
Janosch Franke65f30e2016-02-04 10:24:52 +0100265 if (fmt == DIAG204_INFO_SIMPLE) {
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700266 *pages = 1;
267 return diag204_alloc_rbuf();
Janosch Franke65f30e2016-02-04 10:24:52 +0100268 } else {/* DIAG204_INFO_EXT */
269 *pages = diag204((unsigned long)DIAG204_SUBC_RSI |
270 (unsigned long)DIAG204_INFO_EXT, 0, NULL);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700271 if (*pages <= 0)
272 return ERR_PTR(-ENOSYS);
273 else
274 return diag204_alloc_vbuf(*pages);
275 }
276}
277
278/*
279 * diag204_probe() has to find out, which type of diagnose 204 implementation
280 * we have on our machine. Currently there are three possible scanarios:
281 * - subcode 4 + simple data format (only one page)
282 * - subcode 4-6 + extended data format
283 * - subcode 4-7 + extended data format
284 *
285 * Subcode 5 is used to retrieve the size of the data, provided by subcodes
286 * 6 and 7. Subcode 7 basically has the same function as subcode 6. In addition
287 * to subcode 6 it provides also information about secondary cpus.
288 * In order to get as much information as possible, we first try
289 * subcode 7, then 6 and if both fail, we use subcode 4.
290 */
291
292static int diag204_probe(void)
293{
294 void *buf;
295 int pages, rc;
296
Janosch Franke65f30e2016-02-04 10:24:52 +0100297 buf = diag204_get_buffer(DIAG204_INFO_EXT, &pages);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700298 if (!IS_ERR(buf)) {
Janosch Franke65f30e2016-02-04 10:24:52 +0100299 if (diag204((unsigned long)DIAG204_SUBC_STIB7 |
300 (unsigned long)DIAG204_INFO_EXT, pages, buf) >= 0) {
301 diag204_store_sc = DIAG204_SUBC_STIB7;
302 diag204_info_type = DIAG204_INFO_EXT;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700303 goto out;
304 }
Janosch Franke65f30e2016-02-04 10:24:52 +0100305 if (diag204((unsigned long)DIAG204_SUBC_STIB6 |
306 (unsigned long)DIAG204_INFO_EXT, pages, buf) >= 0) {
307 diag204_store_sc = DIAG204_SUBC_STIB6;
308 diag204_info_type = DIAG204_INFO_EXT;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700309 goto out;
310 }
311 diag204_free_buffer();
312 }
313
314 /* subcodes 6 and 7 failed, now try subcode 4 */
315
Janosch Franke65f30e2016-02-04 10:24:52 +0100316 buf = diag204_get_buffer(DIAG204_INFO_SIMPLE, &pages);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700317 if (IS_ERR(buf)) {
318 rc = PTR_ERR(buf);
319 goto fail_alloc;
320 }
Janosch Franke65f30e2016-02-04 10:24:52 +0100321 if (diag204((unsigned long)DIAG204_SUBC_STIB4 |
322 (unsigned long)DIAG204_INFO_SIMPLE, pages, buf) >= 0) {
323 diag204_store_sc = DIAG204_SUBC_STIB4;
324 diag204_info_type = DIAG204_INFO_SIMPLE;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700325 goto out;
326 } else {
327 rc = -ENOSYS;
328 goto fail_store;
329 }
330out:
331 rc = 0;
332fail_store:
333 diag204_free_buffer();
334fail_alloc:
335 return rc;
336}
337
Michael Holzheu57b28f62010-05-17 10:00:20 +0200338static int diag204_do_store(void *buf, int pages)
339{
340 int rc;
341
342 rc = diag204((unsigned long) diag204_store_sc |
343 (unsigned long) diag204_info_type, pages, buf);
344 return rc < 0 ? -ENOSYS : 0;
345}
346
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700347static void *diag204_store(void)
348{
349 void *buf;
Michael Holzheu57b28f62010-05-17 10:00:20 +0200350 int pages, rc;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700351
352 buf = diag204_get_buffer(diag204_info_type, &pages);
353 if (IS_ERR(buf))
354 goto out;
Michael Holzheu57b28f62010-05-17 10:00:20 +0200355 rc = diag204_do_store(buf, pages);
356 if (rc)
357 return ERR_PTR(rc);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700358out:
359 return buf;
360}
361
362/* Diagnose 224 functions */
363
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700364static int diag224_get_name_table(void)
365{
366 /* memory must be below 2GB */
Michael Holzheu237d6e62016-10-25 16:24:28 +0200367 diag224_cpu_names = (char *) __get_free_page(GFP_KERNEL | GFP_DMA);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700368 if (!diag224_cpu_names)
369 return -ENOMEM;
Michael Holzheuc41d4e32007-05-31 17:38:01 +0200370 if (diag224(diag224_cpu_names)) {
Michael Holzheu237d6e62016-10-25 16:24:28 +0200371 free_page((unsigned long) diag224_cpu_names);
Heiko Carstensb8e660b2010-02-26 22:37:41 +0100372 return -EOPNOTSUPP;
Michael Holzheuc41d4e32007-05-31 17:38:01 +0200373 }
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700374 EBCASC(diag224_cpu_names + 16, (*diag224_cpu_names + 1) * 16);
375 return 0;
376}
377
378static void diag224_delete_name_table(void)
379{
Michael Holzheu237d6e62016-10-25 16:24:28 +0200380 free_page((unsigned long) diag224_cpu_names);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700381}
382
383static int diag224_idx2name(int index, char *name)
384{
Janosch Franke65f30e2016-02-04 10:24:52 +0100385 memcpy(name, diag224_cpu_names + ((index + 1) * DIAG204_CPU_NAME_LEN),
386 DIAG204_CPU_NAME_LEN);
387 name[DIAG204_CPU_NAME_LEN] = 0;
Heiko Carstens1d802e22009-12-18 17:43:27 +0100388 strim(name);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700389 return 0;
390}
391
Michael Holzheu57b28f62010-05-17 10:00:20 +0200392struct dbfs_d204_hdr {
393 u64 len; /* Length of d204 buffer without header */
394 u16 version; /* Version of header */
395 u8 sc; /* Used subcode */
396 char reserved[53];
397} __attribute__ ((packed));
398
399struct dbfs_d204 {
400 struct dbfs_d204_hdr hdr; /* 64 byte header */
401 char buf[]; /* d204 buffer */
402} __attribute__ ((packed));
403
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100404static int dbfs_d204_create(void **data, void **data_free_ptr, size_t *size)
Michael Holzheu57b28f62010-05-17 10:00:20 +0200405{
Michael Holzheu57b28f62010-05-17 10:00:20 +0200406 struct dbfs_d204 *d204;
407 int rc, buf_size;
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100408 void *base;
Michael Holzheu57b28f62010-05-17 10:00:20 +0200409
Michael Holzheu57b28f62010-05-17 10:00:20 +0200410 buf_size = PAGE_SIZE * (diag204_buf_pages + 1) + sizeof(d204->hdr);
Joe Perchesdc8a5c92011-05-28 10:36:21 -0700411 base = vzalloc(buf_size);
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100412 if (!base)
413 return -ENOMEM;
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100414 d204 = page_align_ptr(base + sizeof(d204->hdr)) - sizeof(d204->hdr);
415 rc = diag204_do_store(d204->buf, diag204_buf_pages);
416 if (rc) {
417 vfree(base);
418 return rc;
Michael Holzheu57b28f62010-05-17 10:00:20 +0200419 }
Michael Holzheu57b28f62010-05-17 10:00:20 +0200420 d204->hdr.version = DBFS_D204_HDR_VERSION;
421 d204->hdr.len = PAGE_SIZE * diag204_buf_pages;
422 d204->hdr.sc = diag204_store_sc;
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100423 *data = d204;
424 *data_free_ptr = base;
425 *size = d204->hdr.len + sizeof(struct dbfs_d204_hdr);
Michael Holzheu57b28f62010-05-17 10:00:20 +0200426 return 0;
427}
428
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100429static struct hypfs_dbfs_file dbfs_file_d204 = {
430 .name = "diag_204",
431 .data_create = dbfs_d204_create,
432 .data_free = vfree,
Michael Holzheu57b28f62010-05-17 10:00:20 +0200433};
434
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700435__init int hypfs_diag_init(void)
436{
437 int rc;
438
439 if (diag204_probe()) {
Michael Holzheuf55495b2008-12-25 13:39:39 +0100440 pr_err("The hardware system does not support hypfs\n");
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700441 return -ENODATA;
442 }
Janosch Franke65f30e2016-02-04 10:24:52 +0100443 if (diag204_info_type == DIAG204_INFO_EXT) {
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100444 rc = hypfs_dbfs_create_file(&dbfs_file_d204);
Michael Holzheu57b28f62010-05-17 10:00:20 +0200445 if (rc)
Michael Holzheu3c8ebca2010-10-29 16:50:39 +0200446 return rc;
Michael Holzheu57b28f62010-05-17 10:00:20 +0200447 }
Michael Holzheu3c8ebca2010-10-29 16:50:39 +0200448 if (MACHINE_IS_LPAR) {
449 rc = diag224_get_name_table();
450 if (rc) {
451 pr_err("The hardware system does not provide all "
452 "functions required by hypfs\n");
453 debugfs_remove(dbfs_d204_file);
454 return rc;
455 }
456 }
457 return 0;
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700458}
459
Heiko Carstens1375fc12006-09-20 15:59:12 +0200460void hypfs_diag_exit(void)
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700461{
Michael Holzheu57b28f62010-05-17 10:00:20 +0200462 debugfs_remove(dbfs_d204_file);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700463 diag224_delete_name_table();
464 diag204_free_buffer();
Michael Holzheu2fcb3682011-01-05 12:47:43 +0100465 hypfs_dbfs_remove_file(&dbfs_file_d204);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700466}
467
468/*
469 * Functions to create the directory structure
470 * *******************************************
471 */
472
Al Viroe334cf42013-07-19 17:10:21 +0400473static int hypfs_create_cpu_files(struct dentry *cpus_dir, void *cpu_info)
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700474{
475 struct dentry *cpu_dir;
476 char buffer[TMP_SIZE];
477 void *rc;
478
479 snprintf(buffer, TMP_SIZE, "%d", cpu_info__cpu_addr(diag204_info_type,
480 cpu_info));
Al Viroa118cfd2013-07-19 18:05:21 +0400481 cpu_dir = hypfs_mkdir(cpus_dir, buffer);
482 rc = hypfs_create_u64(cpu_dir, "mgmtime",
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700483 cpu_info__acc_time(diag204_info_type, cpu_info) -
484 cpu_info__lp_time(diag204_info_type, cpu_info));
485 if (IS_ERR(rc))
486 return PTR_ERR(rc);
Al Viroa118cfd2013-07-19 18:05:21 +0400487 rc = hypfs_create_u64(cpu_dir, "cputime",
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700488 cpu_info__lp_time(diag204_info_type, cpu_info));
489 if (IS_ERR(rc))
490 return PTR_ERR(rc);
Janosch Franke65f30e2016-02-04 10:24:52 +0100491 if (diag204_info_type == DIAG204_INFO_EXT) {
Al Viroa118cfd2013-07-19 18:05:21 +0400492 rc = hypfs_create_u64(cpu_dir, "onlinetime",
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700493 cpu_info__online_time(diag204_info_type,
494 cpu_info));
495 if (IS_ERR(rc))
496 return PTR_ERR(rc);
497 }
498 diag224_idx2name(cpu_info__ctidx(diag204_info_type, cpu_info), buffer);
Al Viroa118cfd2013-07-19 18:05:21 +0400499 rc = hypfs_create_str(cpu_dir, "type", buffer);
Thomas Meyer5eba9bb2013-06-01 11:59:51 +0200500 return PTR_RET(rc);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700501}
502
Al Viroe334cf42013-07-19 17:10:21 +0400503static void *hypfs_create_lpar_files(struct dentry *systems_dir, void *part_hdr)
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700504{
505 struct dentry *cpus_dir;
506 struct dentry *lpar_dir;
Janosch Franke65f30e2016-02-04 10:24:52 +0100507 char lpar_name[DIAG204_LPAR_NAME_LEN + 1];
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700508 void *cpu_info;
509 int i;
510
511 part_hdr__part_name(diag204_info_type, part_hdr, lpar_name);
Janosch Franke65f30e2016-02-04 10:24:52 +0100512 lpar_name[DIAG204_LPAR_NAME_LEN] = 0;
Al Viroa118cfd2013-07-19 18:05:21 +0400513 lpar_dir = hypfs_mkdir(systems_dir, lpar_name);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700514 if (IS_ERR(lpar_dir))
515 return lpar_dir;
Al Viroa118cfd2013-07-19 18:05:21 +0400516 cpus_dir = hypfs_mkdir(lpar_dir, "cpus");
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700517 if (IS_ERR(cpus_dir))
518 return cpus_dir;
519 cpu_info = part_hdr + part_hdr__size(diag204_info_type);
520 for (i = 0; i < part_hdr__rcpus(diag204_info_type, part_hdr); i++) {
521 int rc;
Al Viroe334cf42013-07-19 17:10:21 +0400522 rc = hypfs_create_cpu_files(cpus_dir, cpu_info);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700523 if (rc)
524 return ERR_PTR(rc);
525 cpu_info += cpu_info__size(diag204_info_type);
526 }
527 return cpu_info;
528}
529
Al Viroe334cf42013-07-19 17:10:21 +0400530static int hypfs_create_phys_cpu_files(struct dentry *cpus_dir, void *cpu_info)
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700531{
532 struct dentry *cpu_dir;
533 char buffer[TMP_SIZE];
534 void *rc;
535
536 snprintf(buffer, TMP_SIZE, "%i", phys_cpu__cpu_addr(diag204_info_type,
537 cpu_info));
Al Viroa118cfd2013-07-19 18:05:21 +0400538 cpu_dir = hypfs_mkdir(cpus_dir, buffer);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700539 if (IS_ERR(cpu_dir))
540 return PTR_ERR(cpu_dir);
Al Viroa118cfd2013-07-19 18:05:21 +0400541 rc = hypfs_create_u64(cpu_dir, "mgmtime",
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700542 phys_cpu__mgm_time(diag204_info_type, cpu_info));
543 if (IS_ERR(rc))
544 return PTR_ERR(rc);
545 diag224_idx2name(phys_cpu__ctidx(diag204_info_type, cpu_info), buffer);
Al Viroa118cfd2013-07-19 18:05:21 +0400546 rc = hypfs_create_str(cpu_dir, "type", buffer);
Thomas Meyer5eba9bb2013-06-01 11:59:51 +0200547 return PTR_RET(rc);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700548}
549
Al Viroe334cf42013-07-19 17:10:21 +0400550static void *hypfs_create_phys_files(struct dentry *parent_dir, void *phys_hdr)
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700551{
552 int i;
553 void *cpu_info;
554 struct dentry *cpus_dir;
555
Al Viroa118cfd2013-07-19 18:05:21 +0400556 cpus_dir = hypfs_mkdir(parent_dir, "cpus");
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700557 if (IS_ERR(cpus_dir))
558 return cpus_dir;
559 cpu_info = phys_hdr + phys_hdr__size(diag204_info_type);
560 for (i = 0; i < phys_hdr__cpus(diag204_info_type, phys_hdr); i++) {
561 int rc;
Al Viroe334cf42013-07-19 17:10:21 +0400562 rc = hypfs_create_phys_cpu_files(cpus_dir, cpu_info);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700563 if (rc)
564 return ERR_PTR(rc);
565 cpu_info += phys_cpu__size(diag204_info_type);
566 }
567 return cpu_info;
568}
569
Al Viroe334cf42013-07-19 17:10:21 +0400570int hypfs_diag_create_files(struct dentry *root)
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700571{
572 struct dentry *systems_dir, *hyp_dir;
573 void *time_hdr, *part_hdr;
574 int i, rc;
575 void *buffer, *ptr;
576
577 buffer = diag204_store();
578 if (IS_ERR(buffer))
579 return PTR_ERR(buffer);
580
Al Viroa118cfd2013-07-19 18:05:21 +0400581 systems_dir = hypfs_mkdir(root, "systems");
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700582 if (IS_ERR(systems_dir)) {
583 rc = PTR_ERR(systems_dir);
584 goto err_out;
585 }
586 time_hdr = (struct x_info_blk_hdr *)buffer;
587 part_hdr = time_hdr + info_blk_hdr__size(diag204_info_type);
588 for (i = 0; i < info_blk_hdr__npar(diag204_info_type, time_hdr); i++) {
Al Viroe334cf42013-07-19 17:10:21 +0400589 part_hdr = hypfs_create_lpar_files(systems_dir, part_hdr);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700590 if (IS_ERR(part_hdr)) {
591 rc = PTR_ERR(part_hdr);
592 goto err_out;
593 }
594 }
Janosch Franke65f30e2016-02-04 10:24:52 +0100595 if (info_blk_hdr__flags(diag204_info_type, time_hdr) &
596 DIAG204_LPAR_PHYS_FLG) {
Al Viroe334cf42013-07-19 17:10:21 +0400597 ptr = hypfs_create_phys_files(root, part_hdr);
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700598 if (IS_ERR(ptr)) {
599 rc = PTR_ERR(ptr);
600 goto err_out;
601 }
602 }
Al Viroa118cfd2013-07-19 18:05:21 +0400603 hyp_dir = hypfs_mkdir(root, "hyp");
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700604 if (IS_ERR(hyp_dir)) {
605 rc = PTR_ERR(hyp_dir);
606 goto err_out;
607 }
Al Viroa118cfd2013-07-19 18:05:21 +0400608 ptr = hypfs_create_str(hyp_dir, "type", "LPAR Hypervisor");
Michael Holzheu24bbb1f2006-06-23 02:05:06 -0700609 if (IS_ERR(ptr)) {
610 rc = PTR_ERR(ptr);
611 goto err_out;
612 }
613 rc = 0;
614
615err_out:
616 return rc;
617}