mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
fcc6dd4b7b
Add support for format 3 channel path descriptors and use them to gather utility strings. Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com> Reviewed-by: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
44 lines
857 B
C
44 lines
857 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_CSS_CHARS_H
|
|
#define _ASM_CSS_CHARS_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct css_general_char {
|
|
u64 : 12;
|
|
u32 dynio : 1; /* bit 12 */
|
|
u32 : 4;
|
|
u32 eadm : 1; /* bit 17 */
|
|
u32 : 23;
|
|
u32 aif : 1; /* bit 41 */
|
|
u32 : 3;
|
|
u32 mcss : 1; /* bit 45 */
|
|
u32 fcs : 1; /* bit 46 */
|
|
u32 : 1;
|
|
u32 ext_mb : 1; /* bit 48 */
|
|
u32 : 7;
|
|
u32 aif_tdd : 1; /* bit 56 */
|
|
u32 : 1;
|
|
u32 qebsm : 1; /* bit 58 */
|
|
u32 : 2;
|
|
u32 aiv : 1; /* bit 61 */
|
|
u32 : 5;
|
|
u32 aif_osa : 1; /* bit 67 */
|
|
u32 : 12;
|
|
u32 eadm_rf : 1; /* bit 80 */
|
|
u32 : 1;
|
|
u32 cib : 1; /* bit 82 */
|
|
u32 : 5;
|
|
u32 fcx : 1; /* bit 88 */
|
|
u32 : 19;
|
|
u32 alt_ssi : 1; /* bit 108 */
|
|
u32 : 1;
|
|
u32 narf : 1; /* bit 110 */
|
|
u32 : 12;
|
|
u32 util_str : 1;/* bit 123 */
|
|
} __packed;
|
|
|
|
extern struct css_general_char css_general_characteristics;
|
|
|
|
#endif
|