blob: 4afbb5938726e568e3c23a88dd2bcaeaa0fe2c68 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Gerald Schaefer1f38d612006-09-20 15:59:26 +02002/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 2006
Gerald Schaefer1f38d612006-09-20 15:59:26 +02004 *
5 * Author(s): Melissa Howland <melissah@us.ibm.com>
6 */
7
8#ifndef _ASM_S390_APPLDATA_H
9#define _ASM_S390_APPLDATA_H
10
Martin Schwidefsky1ec27722015-08-20 17:28:44 +020011#include <asm/diag.h>
Gerald Schaefer1f38d612006-09-20 15:59:26 +020012#include <asm/io.h>
13
Gerald Schaefer1f38d612006-09-20 15:59:26 +020014#define APPLDATA_START_INTERVAL_REC 0x80
15#define APPLDATA_STOP_REC 0x81
16#define APPLDATA_GEN_EVENT_REC 0x82
17#define APPLDATA_START_CONFIG_REC 0x83
18
19/*
20 * Parameter list for DIAGNOSE X'DC'
21 */
22struct appldata_parameter_list {
23 u16 diag;
24 u8 function;
25 u8 parlist_length;
26 u32 unused01;
27 u16 reserved;
28 u16 buffer_length;
29 u32 unused02;
30 u64 product_id_addr;
31 u64 buffer_addr;
32} __attribute__ ((packed));
33
Gerald Schaefer1f38d612006-09-20 15:59:26 +020034struct appldata_product_id {
35 char prod_nr[7]; /* product number */
36 u16 prod_fn; /* product function */
37 u8 record_nr; /* record number */
38 u16 version_nr; /* version */
39 u16 release_nr; /* release */
40 u16 mod_lvl; /* modification level */
41} __attribute__ ((packed));
42
43static inline int appldata_asm(struct appldata_product_id *id,
44 unsigned short fn, void *buffer,
45 unsigned short length)
46{
47 struct appldata_parameter_list parm_list;
48 int ry;
49
50 if (!MACHINE_IS_VM)
Heiko Carstensa11b2ef2012-09-06 16:53:44 +020051 return -EOPNOTSUPP;
Gerald Schaefer1f38d612006-09-20 15:59:26 +020052 parm_list.diag = 0xdc;
53 parm_list.function = fn;
54 parm_list.parlist_length = sizeof(parm_list);
55 parm_list.buffer_length = length;
56 parm_list.product_id_addr = (unsigned long) id;
57 parm_list.buffer_addr = virt_to_phys(buffer);
Martin Schwidefsky1ec27722015-08-20 17:28:44 +020058 diag_stat_inc(DIAG_STAT_X0DC);
Gerald Schaefer1f38d612006-09-20 15:59:26 +020059 asm volatile(
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020060 " diag %1,%0,0xdc"
Gerald Schaefer1f38d612006-09-20 15:59:26 +020061 : "=d" (ry)
62 : "d" (&parm_list), "m" (parm_list), "m" (*id)
63 : "cc");
64 return ry;
65}
66
67#endif /* _ASM_S390_APPLDATA_H */