2 * Hypervisor filesystem for Linux on s390
4 * Diag 0C implementation
6 * Copyright IBM Corp. 2014
9 #include <linux/slab.h>
10 #include <linux/cpu.h>
12 #include <asm/hypfs.h>
15 #define DBFS_D0C_HDR_VERSION 0
18 * Execute diagnose 0c in 31 bit mode
20 static void diag0c(struct hypfs_diag0c_entry
*entry
)
22 diag_stat_inc(DIAG_STAT_X00C
);
27 : /* no output register */
33 * Get hypfs_diag0c_entry from CPU vector and store diag0c data
35 static void diag0c_fn(void *data
)
37 diag0c(((void **) data
)[smp_processor_id()]);
41 * Allocate buffer and store diag 0c data
43 static void *diag0c_store(unsigned int *count
)
45 struct hypfs_diag0c_data
*diag0c_data
;
46 unsigned int cpu_count
, cpu
, i
;
50 cpu_count
= num_online_cpus();
51 cpu_vec
= kmalloc(sizeof(*cpu_vec
) * num_possible_cpus(), GFP_KERNEL
);
53 goto fail_put_online_cpus
;
54 /* Note: Diag 0c needs 8 byte alignment and real storage */
55 diag0c_data
= kzalloc(sizeof(struct hypfs_diag0c_hdr
) +
56 cpu_count
* sizeof(struct hypfs_diag0c_entry
),
57 GFP_KERNEL
| GFP_DMA
);
59 goto fail_kfree_cpu_vec
;
61 /* Fill CPU vector for each online CPU */
62 for_each_online_cpu(cpu
) {
63 diag0c_data
->entry
[i
].cpu
= cpu
;
64 cpu_vec
[cpu
] = &diag0c_data
->entry
[i
++];
66 /* Collect data all CPUs */
67 on_each_cpu(diag0c_fn
, cpu_vec
, 1);
77 return ERR_PTR(-ENOMEM
);
81 * Hypfs DBFS callback: Free diag 0c data
83 static void dbfs_diag0c_free(const void *data
)
89 * Hypfs DBFS callback: Create diag 0c data
91 static int dbfs_diag0c_create(void **data
, void **data_free_ptr
, size_t *size
)
93 struct hypfs_diag0c_data
*diag0c_data
;
96 diag0c_data
= diag0c_store(&count
);
97 if (IS_ERR(diag0c_data
))
98 return PTR_ERR(diag0c_data
);
99 memset(&diag0c_data
->hdr
, 0, sizeof(diag0c_data
->hdr
));
100 get_tod_clock_ext(diag0c_data
->hdr
.tod_ext
);
101 diag0c_data
->hdr
.len
= count
* sizeof(struct hypfs_diag0c_entry
);
102 diag0c_data
->hdr
.version
= DBFS_D0C_HDR_VERSION
;
103 diag0c_data
->hdr
.count
= count
;
105 *data_free_ptr
= diag0c_data
;
106 *size
= diag0c_data
->hdr
.len
+ sizeof(struct hypfs_diag0c_hdr
);
111 * Hypfs DBFS file structure
113 static struct hypfs_dbfs_file dbfs_file_0c
= {
115 .data_create
= dbfs_diag0c_create
,
116 .data_free
= dbfs_diag0c_free
,
120 * Initialize diag 0c interface for z/VM
122 int __init
hypfs_diag0c_init(void)
126 return hypfs_dbfs_create_file(&dbfs_file_0c
);
130 * Shutdown diag 0c interface for z/VM
132 void hypfs_diag0c_exit(void)
136 hypfs_dbfs_remove_file(&dbfs_file_0c
);