ioasm.h 4.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef S390_CIO_IOASM_H
#define S390_CIO_IOASM_H

4 5
#include "schid.h"

L
Linus Torvalds 已提交
6 7 8 9
/*
 * TPI info structure
 */
struct tpi_info {
10
	struct subchannel_id schid;
L
Linus Torvalds 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24
	__u32 intparm;		 /* interruption parameter */
	__u32 adapter_IO : 1;
	__u32 reserved2	 : 1;
	__u32 isc	 : 3;
	__u32 reserved3	 : 12;
	__u32 int_type	 : 3;
	__u32 reserved4	 : 12;
} __attribute__ ((packed));


/*
 * Some S390 specific IO instructions as inline
 */

25 26
static inline int stsch(struct subchannel_id schid,
			    volatile struct schib *addr)
L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34 35
{
	int ccode;

	__asm__ __volatile__(
		"   lr	  1,%1\n"
		"   stsch 0(%2)\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
36
		: "d" (schid), "a" (addr), "m" (*addr)
L
Linus Torvalds 已提交
37 38 39 40
		: "cc", "1" );
	return ccode;
}

41 42 43 44 45 46 47 48 49 50 51 52
static inline int stsch_err(struct subchannel_id schid,
				volatile struct schib *addr)
{
	int ccode;

	__asm__ __volatile__(
		"    lhi  %0,%3\n"
		"    lr	  1,%1\n"
		"    stsch 0(%2)\n"
		"0:  ipm  %0\n"
		"    srl  %0,28\n"
		"1:\n"
53
#ifdef CONFIG_64BIT
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
		".section __ex_table,\"a\"\n"
		"   .align 8\n"
		"   .quad 0b,1b\n"
		".previous"
#else
		".section __ex_table,\"a\"\n"
		"   .align 4\n"
		"   .long 0b,1b\n"
		".previous"
#endif
		: "=&d" (ccode)
		: "d" (schid), "a" (addr), "K" (-EIO), "m" (*addr)
		: "cc", "1" );
	return ccode;
}

70 71
static inline int msch(struct subchannel_id schid,
			   volatile struct schib *addr)
L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79 80
{
	int ccode;

	__asm__ __volatile__(
		"   lr	  1,%1\n"
		"   msch  0(%2)\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
81
		: "d" (schid), "a" (addr), "m" (*addr)
L
Linus Torvalds 已提交
82 83 84 85
		: "cc", "1" );
	return ccode;
}

86 87
static inline int msch_err(struct subchannel_id schid,
			       volatile struct schib *addr)
L
Linus Torvalds 已提交
88 89 90 91 92 93 94 95 96 97
{
	int ccode;

	__asm__ __volatile__(
		"    lhi  %0,%3\n"
		"    lr	  1,%1\n"
		"    msch 0(%2)\n"
		"0:  ipm  %0\n"
		"    srl  %0,28\n"
		"1:\n"
98
#ifdef CONFIG_64BIT
L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106 107 108 109
		".section __ex_table,\"a\"\n"
		"   .align 8\n"
		"   .quad 0b,1b\n"
		".previous"
#else
		".section __ex_table,\"a\"\n"
		"   .align 4\n"
		"   .long 0b,1b\n"
		".previous"
#endif
		: "=&d" (ccode)
110
		: "d" (schid), "a" (addr), "K" (-EIO), "m" (*addr)
L
Linus Torvalds 已提交
111 112 113 114
		: "cc", "1" );
	return ccode;
}

115 116
static inline int tsch(struct subchannel_id schid,
			   volatile struct irb *addr)
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124 125
{
	int ccode;

	__asm__ __volatile__(
		"   lr	  1,%1\n"
		"   tsch  0(%2)\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
126
		: "d" (schid), "a" (addr), "m" (*addr)
L
Linus Torvalds 已提交
127 128 129 130
		: "cc", "1" );
	return ccode;
}

131
static inline int tpi( volatile struct tpi_info *addr)
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139
{
	int ccode;

	__asm__ __volatile__(
		"   tpi	  0(%1)\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
140
		: "a" (addr), "m" (*addr)
L
Linus Torvalds 已提交
141 142 143 144
		: "cc", "1" );
	return ccode;
}

145 146
static inline int ssch(struct subchannel_id schid,
			   volatile struct orb *addr)
L
Linus Torvalds 已提交
147 148 149 150 151 152 153 154 155
{
	int ccode;

	__asm__ __volatile__(
		"   lr	  1,%1\n"
		"   ssch  0(%2)\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
156
		: "d" (schid), "a" (addr), "m" (*addr)
L
Linus Torvalds 已提交
157 158 159 160
		: "cc", "1" );
	return ccode;
}

161
static inline int rsch(struct subchannel_id schid)
L
Linus Torvalds 已提交
162 163 164 165 166 167 168 169 170
{
	int ccode;

	__asm__ __volatile__(
		"   lr	  1,%1\n"
		"   rsch\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
171
		: "d" (schid)
L
Linus Torvalds 已提交
172 173 174 175
		: "cc", "1" );
	return ccode;
}

176
static inline int csch(struct subchannel_id schid)
L
Linus Torvalds 已提交
177 178 179 180 181 182 183 184 185
{
	int ccode;

	__asm__ __volatile__(
		"   lr	  1,%1\n"
		"   csch\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
186
		: "d" (schid)
L
Linus Torvalds 已提交
187 188 189 190
		: "cc", "1" );
	return ccode;
}

191
static inline int hsch(struct subchannel_id schid)
L
Linus Torvalds 已提交
192 193 194 195 196 197 198 199 200
{
	int ccode;

	__asm__ __volatile__(
		"   lr	  1,%1\n"
		"   hsch\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
201
		: "d" (schid)
L
Linus Torvalds 已提交
202 203 204 205
		: "cc", "1" );
	return ccode;
}

206
static inline int xsch(struct subchannel_id schid)
L
Linus Torvalds 已提交
207 208 209 210 211 212 213 214 215
{
	int ccode;

	__asm__ __volatile__(
		"   lr	  1,%1\n"
		"   .insn rre,0xb2760000,%1,0\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
216
		: "d" (schid)
L
Linus Torvalds 已提交
217 218 219 220
		: "cc", "1" );
	return ccode;
}

221
static inline int chsc(void *chsc_area)
L
Linus Torvalds 已提交
222
{
223
	typedef struct { char _[4096]; } addr_type;
L
Linus Torvalds 已提交
224 225 226
	int cc;

	__asm__ __volatile__ (
227
		".insn	rre,0xb25f0000,%2,0	\n\t"
L
Linus Torvalds 已提交
228 229
		"ipm	%0	\n\t"
		"srl	%0,28	\n\t"
230 231
		: "=d" (cc), "=m" (*(addr_type *) chsc_area)
		: "d" (chsc_area), "m" (*(addr_type *) chsc_area)
L
Linus Torvalds 已提交
232 233 234 235 236
		: "cc" );

	return cc;
}

237
static inline int iac( void)
L
Linus Torvalds 已提交
238 239 240 241 242 243 244 245 246 247 248
{
	int ccode;

	__asm__ __volatile__(
		"   iac	  1\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode) : : "cc", "1" );
	return ccode;
}

249
static inline int rchp(int chpid)
L
Linus Torvalds 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
{
	int ccode;

	__asm__ __volatile__(
		"   lr	  1,%1\n"
		"   rchp\n"
		"   ipm	  %0\n"
		"   srl	  %0,28"
		: "=d" (ccode)
		: "d" (chpid)
		: "cc", "1" );
	return ccode;
}

#endif