| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef S390_CIO_IOASM_H | 
 | 2 | #define S390_CIO_IOASM_H | 
 | 3 |  | 
| Peter Oberparleiter | e5854a5 | 2007-04-27 16:01:31 +0200 | [diff] [blame] | 4 | #include <asm/chpid.h> | 
| Cornelia Huck | 9d92a7e | 2008-07-14 09:59:05 +0200 | [diff] [blame] | 5 | #include <asm/schid.h> | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 6 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | /* | 
 | 8 |  * TPI info structure | 
 | 9 |  */ | 
 | 10 | struct tpi_info { | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 11 | 	struct subchannel_id schid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | 	__u32 intparm;		 /* interruption parameter */ | 
 | 13 | 	__u32 adapter_IO : 1; | 
 | 14 | 	__u32 reserved2	 : 1; | 
 | 15 | 	__u32 isc	 : 3; | 
 | 16 | 	__u32 reserved3	 : 12; | 
 | 17 | 	__u32 int_type	 : 3; | 
 | 18 | 	__u32 reserved4	 : 12; | 
 | 19 | } __attribute__ ((packed)); | 
 | 20 |  | 
 | 21 |  | 
 | 22 | /* | 
 | 23 |  * Some S390 specific IO instructions as inline | 
 | 24 |  */ | 
 | 25 |  | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 26 | static inline int stsch_err(struct subchannel_id schid, struct schib *addr) | 
| Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 27 | { | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 28 | 	register struct subchannel_id reg1 asm ("1") = schid; | 
 | 29 | 	int ccode = -EIO; | 
| Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 30 |  | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 31 | 	asm volatile( | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 32 | 		"	stsch	0(%3)\n" | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 33 | 		"0:	ipm	%0\n" | 
 | 34 | 		"	srl	%0,28\n" | 
| Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 35 | 		"1:\n" | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 36 | 		EX_TABLE(0b,1b) | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 37 | 		: "+d" (ccode), "=m" (*addr) | 
 | 38 | 		: "d" (reg1), "a" (addr) | 
 | 39 | 		: "cc"); | 
| Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 40 | 	return ccode; | 
 | 41 | } | 
 | 42 |  | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 43 | static inline int msch(struct subchannel_id schid, struct schib *addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | { | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 45 | 	register struct subchannel_id reg1 asm ("1") = schid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | 	int ccode; | 
 | 47 |  | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 48 | 	asm volatile( | 
 | 49 | 		"	msch	0(%2)\n" | 
 | 50 | 		"	ipm	%0\n" | 
 | 51 | 		"	srl	%0,28" | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 52 | 		: "=d" (ccode) | 
 | 53 | 		: "d" (reg1), "a" (addr), "m" (*addr) | 
 | 54 | 		: "cc"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | 	return ccode; | 
 | 56 | } | 
 | 57 |  | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 58 | static inline int msch_err(struct subchannel_id schid, struct schib *addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 60 | 	register struct subchannel_id reg1 asm ("1") = schid; | 
 | 61 | 	int ccode = -EIO; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 |  | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 63 | 	asm volatile( | 
 | 64 | 		"	msch	0(%2)\n" | 
 | 65 | 		"0:	ipm	%0\n" | 
 | 66 | 		"	srl	%0,28\n" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | 		"1:\n" | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 68 | 		EX_TABLE(0b,1b) | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 69 | 		: "+d" (ccode) | 
 | 70 | 		: "d" (reg1), "a" (addr), "m" (*addr) | 
 | 71 | 		: "cc"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | 	return ccode; | 
 | 73 | } | 
 | 74 |  | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 75 | static inline int tsch(struct subchannel_id schid, struct irb *addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | { | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 77 | 	register struct subchannel_id reg1 asm ("1") = schid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | 	int ccode; | 
 | 79 |  | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 80 | 	asm volatile( | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 81 | 		"	tsch	0(%3)\n" | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 82 | 		"	ipm	%0\n" | 
 | 83 | 		"	srl	%0,28" | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 84 | 		: "=d" (ccode), "=m" (*addr) | 
 | 85 | 		: "d" (reg1), "a" (addr) | 
 | 86 | 		: "cc"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | 	return ccode; | 
 | 88 | } | 
 | 89 |  | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 90 | static inline int tpi(struct tpi_info *addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | { | 
 | 92 | 	int ccode; | 
 | 93 |  | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 94 | 	asm volatile( | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 95 | 		"	tpi	0(%2)\n" | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 96 | 		"	ipm	%0\n" | 
 | 97 | 		"	srl	%0,28" | 
| Peter Oberparleiter | f9c9fe3 | 2008-10-10 21:33:15 +0200 | [diff] [blame] | 98 | 		: "=d" (ccode), "=m" (*addr) | 
 | 99 | 		: "a" (addr) | 
 | 100 | 		: "cc"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | 	return ccode; | 
 | 102 | } | 
 | 103 |  | 
| Cornelia Huck | 4c24da7 | 2005-09-03 15:58:01 -0700 | [diff] [blame] | 104 | static inline int chsc(void *chsc_area) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 106 | 	typedef struct { char _[4096]; } addr_type; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | 	int cc; | 
 | 108 |  | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 109 | 	asm volatile( | 
 | 110 | 		"	.insn	rre,0xb25f0000,%2,0\n" | 
 | 111 | 		"	ipm	%0\n" | 
 | 112 | 		"	srl	%0,28\n" | 
| Cornelia Huck | a8237fc | 2006-01-06 00:19:21 -0800 | [diff] [blame] | 113 | 		: "=d" (cc), "=m" (*(addr_type *) chsc_area) | 
 | 114 | 		: "d" (chsc_area), "m" (*(addr_type *) chsc_area) | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 115 | 		: "cc"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | 	return cc; | 
 | 117 | } | 
 | 118 |  | 
| Peter Oberparleiter | f86635f | 2007-04-27 16:01:26 +0200 | [diff] [blame] | 119 | static inline int rchp(struct chp_id chpid) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | { | 
| Peter Oberparleiter | f86635f | 2007-04-27 16:01:26 +0200 | [diff] [blame] | 121 | 	register struct chp_id reg1 asm ("1") = chpid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | 	int ccode; | 
 | 123 |  | 
| Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 124 | 	asm volatile( | 
 | 125 | 		"	lr	1,%1\n" | 
 | 126 | 		"	rchp\n" | 
 | 127 | 		"	ipm	%0\n" | 
 | 128 | 		"	srl	%0,28" | 
 | 129 | 		: "=d" (ccode) : "d" (reg1) : "cc"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | 	return ccode; | 
 | 131 | } | 
 | 132 |  | 
 | 133 | #endif |