1 // SPDX-License-Identifier: GPL-2.0
3 * Linux Guest Relocation (LGR) detection
5 * Copyright IBM Corp. 2012
6 * Author(s): Michael Holzheu <holzheu@linux.vnet.ibm.com>
9 #include <linux/init.h>
10 #include <linux/export.h>
11 #include <linux/timer.h>
12 #include <linux/slab.h>
13 #include <asm/facility.h>
14 #include <asm/sysinfo.h>
15 #include <asm/ebcdic.h>
16 #include <asm/debug.h>
19 #define LGR_TIMER_INTERVAL_SECS (30 * 60)
20 #define VM_LEVEL_MAX 2 /* Maximum is 8, but we only record two levels */
23 * LGR info: Contains stfle and stsi data
26 /* Bit field with facility information: 4 DWORDs are stored */
27 u64 stfle_fac_list
[4];
28 /* Level of system (1 = CEC, 2 = LPAR, 3 = z/VM */
30 /* Level 1: CEC info (stsi 1.1.1) */
31 char manufacturer
[16];
36 /* Level 2: LPAR info (stsi 2.2.2) */
39 /* Level 3: VM info (stsi 3.2.2) */
45 } __packed
__aligned(8);
50 static char lgr_page
[PAGE_SIZE
] __aligned(PAGE_SIZE
);
51 static struct lgr_info lgr_info_last
;
52 static struct lgr_info lgr_info_cur
;
53 static struct debug_info
*lgr_dbf
;
56 * Copy buffer and then convert it to ASCII
58 static void cpascii(char *dst
, char *src
, int size
)
60 memcpy(dst
, src
, size
);
65 * Fill LGR info with 1.1.1 stsi data
67 static void lgr_stsi_1_1_1(struct lgr_info
*lgr_info
)
69 struct sysinfo_1_1_1
*si
= (void *) lgr_page
;
71 if (stsi(si
, 1, 1, 1))
73 cpascii(lgr_info
->manufacturer
, si
->manufacturer
,
74 sizeof(si
->manufacturer
));
75 cpascii(lgr_info
->type
, si
->type
, sizeof(si
->type
));
76 cpascii(lgr_info
->model
, si
->model
, sizeof(si
->model
));
77 cpascii(lgr_info
->sequence
, si
->sequence
, sizeof(si
->sequence
));
78 cpascii(lgr_info
->plant
, si
->plant
, sizeof(si
->plant
));
82 * Fill LGR info with 2.2.2 stsi data
84 static void lgr_stsi_2_2_2(struct lgr_info
*lgr_info
)
86 struct sysinfo_2_2_2
*si
= (void *) lgr_page
;
88 if (stsi(si
, 2, 2, 2))
90 cpascii(lgr_info
->name
, si
->name
, sizeof(si
->name
));
91 memcpy(&lgr_info
->lpar_number
, &si
->lpar_number
,
92 sizeof(lgr_info
->lpar_number
));
96 * Fill LGR info with 3.2.2 stsi data
98 static void lgr_stsi_3_2_2(struct lgr_info
*lgr_info
)
100 struct sysinfo_3_2_2
*si
= (void *) lgr_page
;
103 if (stsi(si
, 3, 2, 2))
105 for (i
= 0; i
< min_t(u8
, si
->count
, VM_LEVEL_MAX
); i
++) {
106 cpascii(lgr_info
->vm
[i
].name
, si
->vm
[i
].name
,
107 sizeof(si
->vm
[i
].name
));
108 cpascii(lgr_info
->vm
[i
].cpi
, si
->vm
[i
].cpi
,
109 sizeof(si
->vm
[i
].cpi
));
111 lgr_info
->vm_count
= si
->count
;
115 * Fill LGR info with current data
117 static void lgr_info_get(struct lgr_info
*lgr_info
)
121 memset(lgr_info
, 0, sizeof(*lgr_info
));
122 stfle(lgr_info
->stfle_fac_list
, ARRAY_SIZE(lgr_info
->stfle_fac_list
));
123 level
= stsi(NULL
, 0, 0, 0);
124 lgr_info
->level
= level
;
126 lgr_stsi_1_1_1(lgr_info
);
128 lgr_stsi_2_2_2(lgr_info
);
130 lgr_stsi_3_2_2(lgr_info
);
134 * Check if LGR info has changed and if yes log new LGR info to s390dbf
136 void lgr_info_log(void)
138 static DEFINE_SPINLOCK(lgr_info_lock
);
141 if (!spin_trylock_irqsave(&lgr_info_lock
, flags
))
143 lgr_info_get(&lgr_info_cur
);
144 if (memcmp(&lgr_info_last
, &lgr_info_cur
, sizeof(lgr_info_cur
)) != 0) {
145 debug_event(lgr_dbf
, 1, &lgr_info_cur
, sizeof(lgr_info_cur
));
146 lgr_info_last
= lgr_info_cur
;
148 spin_unlock_irqrestore(&lgr_info_lock
, flags
);
150 EXPORT_SYMBOL_GPL(lgr_info_log
);
152 static void lgr_timer_set(void);
157 static void lgr_timer_fn(struct timer_list
*unused
)
163 static struct timer_list lgr_timer
;
166 * Setup next LGR timer
168 static void lgr_timer_set(void)
170 mod_timer(&lgr_timer
, jiffies
+ LGR_TIMER_INTERVAL_SECS
* HZ
);
174 * Initialize LGR: Add s390dbf, write initial lgr_info and setup timer
176 static int __init
lgr_init(void)
178 lgr_dbf
= debug_register("lgr", 1, 1, sizeof(struct lgr_info
));
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 timer_setup(&lgr_timer
, lgr_timer_fn
, TIMER_DEFERRABLE
);
188 device_initcall(lgr_init
);