Linux Audio

Check our new training course

Loading...
v3.5.6
  1/*
  2 * Linux Guest Relocation (LGR) detection
  3 *
  4 * Copyright IBM Corp. 2012
  5 * Author(s): Michael Holzheu <holzheu@linux.vnet.ibm.com>
  6 */
  7
  8#include <linux/module.h>
 
  9#include <linux/timer.h>
 10#include <linux/slab.h>
 11#include <asm/facility.h>
 12#include <asm/sysinfo.h>
 13#include <asm/ebcdic.h>
 14#include <asm/debug.h>
 15#include <asm/ipl.h>
 16
 17#define LGR_TIMER_INTERVAL_SECS (30 * 60)
 18#define VM_LEVEL_MAX 2 /* Maximum is 8, but we only record two levels */
 19
 20/*
 21 * LGR info: Contains stfle and stsi data
 22 */
 23struct lgr_info {
 24	/* Bit field with facility information: 4 DWORDs are stored */
 25	u64 stfle_fac_list[4];
 26	/* Level of system (1 = CEC, 2 = LPAR, 3 = z/VM */
 27	u32 level;
 28	/* Level 1: CEC info (stsi 1.1.1) */
 29	char manufacturer[16];
 30	char type[4];
 31	char sequence[16];
 32	char plant[4];
 33	char model[16];
 34	/* Level 2: LPAR info (stsi 2.2.2) */
 35	u16 lpar_number;
 36	char name[8];
 37	/* Level 3: VM info (stsi 3.2.2) */
 38	u8 vm_count;
 39	struct {
 40		char name[8];
 41		char cpi[16];
 42	} vm[VM_LEVEL_MAX];
 43} __packed __aligned(8);
 44
 45/*
 46 * LGR globals
 47 */
 48static void *lgr_page;
 49static struct lgr_info lgr_info_last;
 50static struct lgr_info lgr_info_cur;
 51static struct debug_info *lgr_dbf;
 52
 53/*
 54 * Return number of valid stsi levels
 55 */
 56static inline int stsi_0(void)
 57{
 58	int rc = stsi(NULL, 0, 0, 0);
 59
 60	return rc == -ENOSYS ? rc : (((unsigned int) rc) >> 28);
 61}
 62
 63/*
 64 * Copy buffer and then convert it to ASCII
 65 */
 66static void cpascii(char *dst, char *src, int size)
 67{
 68	memcpy(dst, src, size);
 69	EBCASC(dst, size);
 70}
 71
 72/*
 73 * Fill LGR info with 1.1.1 stsi data
 74 */
 75static void lgr_stsi_1_1_1(struct lgr_info *lgr_info)
 76{
 77	struct sysinfo_1_1_1 *si = lgr_page;
 78
 79	if (stsi(si, 1, 1, 1) == -ENOSYS)
 80		return;
 81	cpascii(lgr_info->manufacturer, si->manufacturer,
 82		sizeof(si->manufacturer));
 83	cpascii(lgr_info->type, si->type, sizeof(si->type));
 84	cpascii(lgr_info->model, si->model, sizeof(si->model));
 85	cpascii(lgr_info->sequence, si->sequence, sizeof(si->sequence));
 86	cpascii(lgr_info->plant, si->plant, sizeof(si->plant));
 87}
 88
 89/*
 90 * Fill LGR info with 2.2.2 stsi data
 91 */
 92static void lgr_stsi_2_2_2(struct lgr_info *lgr_info)
 93{
 94	struct sysinfo_2_2_2 *si = lgr_page;
 95
 96	if (stsi(si, 2, 2, 2) == -ENOSYS)
 97		return;
 98	cpascii(lgr_info->name, si->name, sizeof(si->name));
 99	memcpy(&lgr_info->lpar_number, &si->lpar_number,
100	       sizeof(lgr_info->lpar_number));
101}
102
103/*
104 * Fill LGR info with 3.2.2 stsi data
105 */
106static void lgr_stsi_3_2_2(struct lgr_info *lgr_info)
107{
108	struct sysinfo_3_2_2 *si = lgr_page;
109	int i;
110
111	if (stsi(si, 3, 2, 2) == -ENOSYS)
112		return;
113	for (i = 0; i < min_t(u8, si->count, VM_LEVEL_MAX); i++) {
114		cpascii(lgr_info->vm[i].name, si->vm[i].name,
115			sizeof(si->vm[i].name));
116		cpascii(lgr_info->vm[i].cpi, si->vm[i].cpi,
117			sizeof(si->vm[i].cpi));
118	}
119	lgr_info->vm_count = si->count;
120}
121
122/*
123 * Fill LGR info with current data
124 */
125static void lgr_info_get(struct lgr_info *lgr_info)
126{
 
 
127	memset(lgr_info, 0, sizeof(*lgr_info));
128	stfle(lgr_info->stfle_fac_list, ARRAY_SIZE(lgr_info->stfle_fac_list));
129	lgr_info->level = stsi_0();
130	if (lgr_info->level == -ENOSYS)
131		return;
132	if (lgr_info->level >= 1)
133		lgr_stsi_1_1_1(lgr_info);
134	if (lgr_info->level >= 2)
135		lgr_stsi_2_2_2(lgr_info);
136	if (lgr_info->level >= 3)
137		lgr_stsi_3_2_2(lgr_info);
138}
139
140/*
141 * Check if LGR info has changed and if yes log new LGR info to s390dbf
142 */
143void lgr_info_log(void)
144{
145	static DEFINE_SPINLOCK(lgr_info_lock);
146	unsigned long flags;
147
148	if (!spin_trylock_irqsave(&lgr_info_lock, flags))
149		return;
150	lgr_info_get(&lgr_info_cur);
151	if (memcmp(&lgr_info_last, &lgr_info_cur, sizeof(lgr_info_cur)) != 0) {
152		debug_event(lgr_dbf, 1, &lgr_info_cur, sizeof(lgr_info_cur));
153		lgr_info_last = lgr_info_cur;
154	}
155	spin_unlock_irqrestore(&lgr_info_lock, flags);
156}
157EXPORT_SYMBOL_GPL(lgr_info_log);
158
159static void lgr_timer_set(void);
160
161/*
162 * LGR timer callback
163 */
164static void lgr_timer_fn(unsigned long ignored)
165{
166	lgr_info_log();
167	lgr_timer_set();
168}
169
170static struct timer_list lgr_timer =
171	TIMER_DEFERRED_INITIALIZER(lgr_timer_fn, 0, 0);
172
173/*
174 * Setup next LGR timer
175 */
176static void lgr_timer_set(void)
177{
178	mod_timer(&lgr_timer, jiffies + LGR_TIMER_INTERVAL_SECS * HZ);
179}
180
181/*
182 * Initialize LGR: Add s390dbf, write initial lgr_info and setup timer
183 */
184static int __init lgr_init(void)
185{
186	lgr_page = (void *) __get_free_pages(GFP_KERNEL, 0);
187	if (!lgr_page)
188		return -ENOMEM;
189	lgr_dbf = debug_register("lgr", 1, 1, sizeof(struct lgr_info));
190	if (!lgr_dbf) {
191		free_page((unsigned long) lgr_page);
192		return -ENOMEM;
193	}
194	debug_register_view(lgr_dbf, &debug_hex_ascii_view);
195	lgr_info_get(&lgr_info_last);
196	debug_event(lgr_dbf, 1, &lgr_info_last, sizeof(lgr_info_last));
197	lgr_timer_set();
198	return 0;
199}
200module_init(lgr_init);
v4.10.11
  1/*
  2 * Linux Guest Relocation (LGR) detection
  3 *
  4 * Copyright IBM Corp. 2012
  5 * Author(s): Michael Holzheu <holzheu@linux.vnet.ibm.com>
  6 */
  7
  8#include <linux/init.h>
  9#include <linux/export.h>
 10#include <linux/timer.h>
 11#include <linux/slab.h>
 12#include <asm/facility.h>
 13#include <asm/sysinfo.h>
 14#include <asm/ebcdic.h>
 15#include <asm/debug.h>
 16#include <asm/ipl.h>
 17
 18#define LGR_TIMER_INTERVAL_SECS (30 * 60)
 19#define VM_LEVEL_MAX 2 /* Maximum is 8, but we only record two levels */
 20
 21/*
 22 * LGR info: Contains stfle and stsi data
 23 */
 24struct lgr_info {
 25	/* Bit field with facility information: 4 DWORDs are stored */
 26	u64 stfle_fac_list[4];
 27	/* Level of system (1 = CEC, 2 = LPAR, 3 = z/VM */
 28	u32 level;
 29	/* Level 1: CEC info (stsi 1.1.1) */
 30	char manufacturer[16];
 31	char type[4];
 32	char sequence[16];
 33	char plant[4];
 34	char model[16];
 35	/* Level 2: LPAR info (stsi 2.2.2) */
 36	u16 lpar_number;
 37	char name[8];
 38	/* Level 3: VM info (stsi 3.2.2) */
 39	u8 vm_count;
 40	struct {
 41		char name[8];
 42		char cpi[16];
 43	} vm[VM_LEVEL_MAX];
 44} __packed __aligned(8);
 45
 46/*
 47 * LGR globals
 48 */
 49static char lgr_page[PAGE_SIZE] __aligned(PAGE_SIZE);
 50static struct lgr_info lgr_info_last;
 51static struct lgr_info lgr_info_cur;
 52static struct debug_info *lgr_dbf;
 53
 54/*
 
 
 
 
 
 
 
 
 
 
 55 * Copy buffer and then convert it to ASCII
 56 */
 57static void cpascii(char *dst, char *src, int size)
 58{
 59	memcpy(dst, src, size);
 60	EBCASC(dst, size);
 61}
 62
 63/*
 64 * Fill LGR info with 1.1.1 stsi data
 65 */
 66static void lgr_stsi_1_1_1(struct lgr_info *lgr_info)
 67{
 68	struct sysinfo_1_1_1 *si = (void *) lgr_page;
 69
 70	if (stsi(si, 1, 1, 1))
 71		return;
 72	cpascii(lgr_info->manufacturer, si->manufacturer,
 73		sizeof(si->manufacturer));
 74	cpascii(lgr_info->type, si->type, sizeof(si->type));
 75	cpascii(lgr_info->model, si->model, sizeof(si->model));
 76	cpascii(lgr_info->sequence, si->sequence, sizeof(si->sequence));
 77	cpascii(lgr_info->plant, si->plant, sizeof(si->plant));
 78}
 79
 80/*
 81 * Fill LGR info with 2.2.2 stsi data
 82 */
 83static void lgr_stsi_2_2_2(struct lgr_info *lgr_info)
 84{
 85	struct sysinfo_2_2_2 *si = (void *) lgr_page;
 86
 87	if (stsi(si, 2, 2, 2))
 88		return;
 89	cpascii(lgr_info->name, si->name, sizeof(si->name));
 90	memcpy(&lgr_info->lpar_number, &si->lpar_number,
 91	       sizeof(lgr_info->lpar_number));
 92}
 93
 94/*
 95 * Fill LGR info with 3.2.2 stsi data
 96 */
 97static void lgr_stsi_3_2_2(struct lgr_info *lgr_info)
 98{
 99	struct sysinfo_3_2_2 *si = (void *) lgr_page;
100	int i;
101
102	if (stsi(si, 3, 2, 2))
103		return;
104	for (i = 0; i < min_t(u8, si->count, VM_LEVEL_MAX); i++) {
105		cpascii(lgr_info->vm[i].name, si->vm[i].name,
106			sizeof(si->vm[i].name));
107		cpascii(lgr_info->vm[i].cpi, si->vm[i].cpi,
108			sizeof(si->vm[i].cpi));
109	}
110	lgr_info->vm_count = si->count;
111}
112
113/*
114 * Fill LGR info with current data
115 */
116static void lgr_info_get(struct lgr_info *lgr_info)
117{
118	int level;
119
120	memset(lgr_info, 0, sizeof(*lgr_info));
121	stfle(lgr_info->stfle_fac_list, ARRAY_SIZE(lgr_info->stfle_fac_list));
122	level = stsi(NULL, 0, 0, 0);
123	lgr_info->level = level;
124	if (level >= 1)
 
125		lgr_stsi_1_1_1(lgr_info);
126	if (level >= 2)
127		lgr_stsi_2_2_2(lgr_info);
128	if (level >= 3)
129		lgr_stsi_3_2_2(lgr_info);
130}
131
132/*
133 * Check if LGR info has changed and if yes log new LGR info to s390dbf
134 */
135void lgr_info_log(void)
136{
137	static DEFINE_SPINLOCK(lgr_info_lock);
138	unsigned long flags;
139
140	if (!spin_trylock_irqsave(&lgr_info_lock, flags))
141		return;
142	lgr_info_get(&lgr_info_cur);
143	if (memcmp(&lgr_info_last, &lgr_info_cur, sizeof(lgr_info_cur)) != 0) {
144		debug_event(lgr_dbf, 1, &lgr_info_cur, sizeof(lgr_info_cur));
145		lgr_info_last = lgr_info_cur;
146	}
147	spin_unlock_irqrestore(&lgr_info_lock, flags);
148}
149EXPORT_SYMBOL_GPL(lgr_info_log);
150
151static void lgr_timer_set(void);
152
153/*
154 * LGR timer callback
155 */
156static void lgr_timer_fn(unsigned long ignored)
157{
158	lgr_info_log();
159	lgr_timer_set();
160}
161
162static struct timer_list lgr_timer =
163	TIMER_DEFERRED_INITIALIZER(lgr_timer_fn, 0, 0);
164
165/*
166 * Setup next LGR timer
167 */
168static void lgr_timer_set(void)
169{
170	mod_timer(&lgr_timer, jiffies + LGR_TIMER_INTERVAL_SECS * HZ);
171}
172
173/*
174 * Initialize LGR: Add s390dbf, write initial lgr_info and setup timer
175 */
176static int __init lgr_init(void)
177{
 
 
 
178	lgr_dbf = debug_register("lgr", 1, 1, sizeof(struct lgr_info));
179	if (!lgr_dbf)
 
180		return -ENOMEM;
 
181	debug_register_view(lgr_dbf, &debug_hex_ascii_view);
182	lgr_info_get(&lgr_info_last);
183	debug_event(lgr_dbf, 1, &lgr_info_last, sizeof(lgr_info_last));
184	lgr_timer_set();
185	return 0;
186}
187device_initcall(lgr_init);