Commit fcc6dd4b authored by Sebastian Ott's avatar Sebastian Ott Committed by Martin Schwidefsky

s390/chsc: query utility strings via fmt3 channel path descriptor

Add support for format 3 channel path descriptors and use them to
gather utility strings.
Signed-off-by: default avatarSebastian Ott <sebott@linux.vnet.ibm.com>
Reviewed-by: default avatarPeter Oberparleiter <oberpar@linux.vnet.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent ded27d8d
...@@ -32,8 +32,10 @@ struct css_general_char { ...@@ -32,8 +32,10 @@ struct css_general_char {
u32 fcx : 1; /* bit 88 */ u32 fcx : 1; /* bit 88 */
u32 : 19; u32 : 19;
u32 alt_ssi : 1; /* bit 108 */ u32 alt_ssi : 1; /* bit 108 */
u32:1; u32 : 1;
u32 narf:1; /* bit 110 */ u32 narf : 1; /* bit 110 */
u32 : 12;
u32 util_str : 1;/* bit 123 */
} __packed; } __packed;
extern struct css_general_char css_general_characteristics; extern struct css_general_char css_general_characteristics;
......
...@@ -431,6 +431,7 @@ int chp_update_desc(struct channel_path *chp) ...@@ -431,6 +431,7 @@ int chp_update_desc(struct channel_path *chp)
* hypervisors implement the required chsc commands. * hypervisors implement the required chsc commands.
*/ */
chsc_determine_fmt1_channel_path_desc(chp->chpid, &chp->desc_fmt1); chsc_determine_fmt1_channel_path_desc(chp->chpid, &chp->desc_fmt1);
chsc_determine_fmt3_channel_path_desc(chp->chpid, &chp->desc_fmt3);
chsc_get_channel_measurement_chars(chp); chsc_get_channel_measurement_chars(chp);
return 0; return 0;
......
...@@ -46,6 +46,7 @@ struct channel_path { ...@@ -46,6 +46,7 @@ struct channel_path {
int state; int state;
struct channel_path_desc_fmt0 desc; struct channel_path_desc_fmt0 desc;
struct channel_path_desc_fmt1 desc_fmt1; struct channel_path_desc_fmt1 desc_fmt1;
struct channel_path_desc_fmt3 desc_fmt3;
/* Channel-measurement related stuff: */ /* Channel-measurement related stuff: */
int cmg; int cmg;
int shared; int shared;
......
...@@ -915,6 +915,8 @@ int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt, ...@@ -915,6 +915,8 @@ int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt,
return -EINVAL; return -EINVAL;
if ((rfmt == 2) && !css_general_characteristics.cib) if ((rfmt == 2) && !css_general_characteristics.cib)
return -EINVAL; return -EINVAL;
if ((rfmt == 3) && !css_general_characteristics.util_str)
return -EINVAL;
memset(page, 0, PAGE_SIZE); memset(page, 0, PAGE_SIZE);
scpd_area = page; scpd_area = page;
...@@ -963,6 +965,7 @@ out: \ ...@@ -963,6 +965,7 @@ out: \
chsc_det_chp_desc(0, 0) chsc_det_chp_desc(0, 0)
chsc_det_chp_desc(1, 1) chsc_det_chp_desc(1, 1)
chsc_det_chp_desc(3, 0)
static void static void
chsc_initialize_cmg_chars(struct channel_path *chp, u8 cmcv, chsc_initialize_cmg_chars(struct channel_path *chp, u8 cmcv,
......
...@@ -40,6 +40,11 @@ struct channel_path_desc_fmt1 { ...@@ -40,6 +40,11 @@ struct channel_path_desc_fmt1 {
u32 zeros[2]; u32 zeros[2];
} __attribute__ ((packed)); } __attribute__ ((packed));
struct channel_path_desc_fmt3 {
struct channel_path_desc_fmt1 fmt1_desc;
u8 util_str[64];
};
struct channel_path; struct channel_path;
struct css_chsc_char { struct css_chsc_char {
...@@ -151,6 +156,8 @@ int chsc_determine_fmt0_channel_path_desc(struct chp_id chpid, ...@@ -151,6 +156,8 @@ int chsc_determine_fmt0_channel_path_desc(struct chp_id chpid,
struct channel_path_desc_fmt0 *desc); struct channel_path_desc_fmt0 *desc);
int chsc_determine_fmt1_channel_path_desc(struct chp_id chpid, int chsc_determine_fmt1_channel_path_desc(struct chp_id chpid,
struct channel_path_desc_fmt1 *desc); struct channel_path_desc_fmt1 *desc);
int chsc_determine_fmt3_channel_path_desc(struct chp_id chpid,
struct channel_path_desc_fmt3 *desc);
void chsc_chp_online(struct chp_id chpid); void chsc_chp_online(struct chp_id chpid);
void chsc_chp_offline(struct chp_id chpid); void chsc_chp_offline(struct chp_id chpid);
int chsc_get_channel_measurement_chars(struct channel_path *chp); int chsc_get_channel_measurement_chars(struct channel_path *chp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment