/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1#ifndef __ASM_S390_UAPI_FS3270_H2#define __ASM_S390_UAPI_FS3270_H34#include <linux/types.h>5#include <asm/ioctl.h>67/* ioctls for fullscreen 3270 */8#define TUBICMD _IO('3', 3) /* set ccw command for fs reads. */9#define TUBOCMD _IO('3', 4) /* set ccw command for fs writes. */10#define TUBGETI _IO('3', 7) /* get ccw command for fs reads. */11#define TUBGETO _IO('3', 8) /* get ccw command for fs writes. */12#define TUBGETMOD _IO('3', 13) /* get characteristics like model, cols, rows */1314/* For TUBGETMOD */15struct raw3270_iocb {16__u16 model;17__u16 line_cnt;18__u16 col_cnt;19__u16 pf_cnt;20__u16 re_cnt;21__u16 map;22};2324#endif /* __ASM_S390_UAPI_FS3270_H */252627