123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306 |
- // SPDX-License-Identifier: GPL-2.0
- /*
- * Channel subsystem I/O instructions.
- */
- #include <linux/export.h>
- #include <asm/asm-extable.h>
- #include <asm/chpid.h>
- #include <asm/schid.h>
- #include <asm/crw.h>
- #include "ioasm.h"
- #include "orb.h"
- #include "cio.h"
- #include "cio_inject.h"
- static inline int __stsch(struct subchannel_id schid, struct schib *addr)
- {
- unsigned long r1 = *(unsigned int *)&schid;
- int ccode = -EIO;
- asm volatile(
- " lgr 1,%[r1]\n"
- " stsch %[addr]\n"
- "0: ipm %[cc]\n"
- " srl %[cc],28\n"
- "1:\n"
- EX_TABLE(0b, 1b)
- : [cc] "+&d" (ccode), [addr] "=Q" (*addr)
- : [r1] "d" (r1)
- : "cc", "1");
- return ccode;
- }
- int stsch(struct subchannel_id schid, struct schib *addr)
- {
- int ccode;
- ccode = __stsch(schid, addr);
- trace_s390_cio_stsch(schid, addr, ccode);
- return ccode;
- }
- EXPORT_SYMBOL(stsch);
- static inline int __msch(struct subchannel_id schid, struct schib *addr)
- {
- unsigned long r1 = *(unsigned int *)&schid;
- int ccode = -EIO;
- asm volatile(
- " lgr 1,%[r1]\n"
- " msch %[addr]\n"
- "0: ipm %[cc]\n"
- " srl %[cc],28\n"
- "1:\n"
- EX_TABLE(0b, 1b)
- : [cc] "+&d" (ccode)
- : [r1] "d" (r1), [addr] "Q" (*addr)
- : "cc", "1");
- return ccode;
- }
- int msch(struct subchannel_id schid, struct schib *addr)
- {
- int ccode;
- ccode = __msch(schid, addr);
- trace_s390_cio_msch(schid, addr, ccode);
- return ccode;
- }
- static inline int __tsch(struct subchannel_id schid, struct irb *addr)
- {
- unsigned long r1 = *(unsigned int *)&schid;
- int ccode;
- asm volatile(
- " lgr 1,%[r1]\n"
- " tsch %[addr]\n"
- " ipm %[cc]\n"
- " srl %[cc],28"
- : [cc] "=&d" (ccode), [addr] "=Q" (*addr)
- : [r1] "d" (r1)
- : "cc", "1");
- return ccode;
- }
- int tsch(struct subchannel_id schid, struct irb *addr)
- {
- int ccode;
- ccode = __tsch(schid, addr);
- trace_s390_cio_tsch(schid, addr, ccode);
- return ccode;
- }
- static inline int __ssch(struct subchannel_id schid, union orb *addr)
- {
- unsigned long r1 = *(unsigned int *)&schid;
- int ccode = -EIO;
- asm volatile(
- " lgr 1,%[r1]\n"
- " ssch %[addr]\n"
- "0: ipm %[cc]\n"
- " srl %[cc],28\n"
- "1:\n"
- EX_TABLE(0b, 1b)
- : [cc] "+&d" (ccode)
- : [r1] "d" (r1), [addr] "Q" (*addr)
- : "cc", "memory", "1");
- return ccode;
- }
- int ssch(struct subchannel_id schid, union orb *addr)
- {
- int ccode;
- ccode = __ssch(schid, addr);
- trace_s390_cio_ssch(schid, addr, ccode);
- return ccode;
- }
- EXPORT_SYMBOL(ssch);
- static inline int __csch(struct subchannel_id schid)
- {
- unsigned long r1 = *(unsigned int *)&schid;
- int ccode;
- asm volatile(
- " lgr 1,%[r1]\n"
- " csch\n"
- " ipm %[cc]\n"
- " srl %[cc],28\n"
- : [cc] "=&d" (ccode)
- : [r1] "d" (r1)
- : "cc", "1");
- return ccode;
- }
- int csch(struct subchannel_id schid)
- {
- int ccode;
- ccode = __csch(schid);
- trace_s390_cio_csch(schid, ccode);
- return ccode;
- }
- EXPORT_SYMBOL(csch);
- int tpi(struct tpi_info *addr)
- {
- int ccode;
- asm volatile(
- " tpi %[addr]\n"
- " ipm %[cc]\n"
- " srl %[cc],28"
- : [cc] "=&d" (ccode), [addr] "=Q" (*addr)
- :
- : "cc");
- trace_s390_cio_tpi(addr, ccode);
- return ccode;
- }
- int chsc(void *chsc_area)
- {
- typedef struct { char _[4096]; } addr_type;
- int cc = -EIO;
- asm volatile(
- " .insn rre,0xb25f0000,%[chsc_area],0\n"
- "0: ipm %[cc]\n"
- " srl %[cc],28\n"
- "1:\n"
- EX_TABLE(0b, 1b)
- : [cc] "+&d" (cc), "+m" (*(addr_type *)chsc_area)
- : [chsc_area] "d" (chsc_area)
- : "cc");
- trace_s390_cio_chsc(chsc_area, cc);
- return cc;
- }
- EXPORT_SYMBOL(chsc);
- static inline int __rsch(struct subchannel_id schid)
- {
- unsigned long r1 = *(unsigned int *)&schid;
- int ccode;
- asm volatile(
- " lgr 1,%[r1]\n"
- " rsch\n"
- " ipm %[cc]\n"
- " srl %[cc],28\n"
- : [cc] "=&d" (ccode)
- : [r1] "d" (r1)
- : "cc", "memory", "1");
- return ccode;
- }
- int rsch(struct subchannel_id schid)
- {
- int ccode;
- ccode = __rsch(schid);
- trace_s390_cio_rsch(schid, ccode);
- return ccode;
- }
- static inline int __hsch(struct subchannel_id schid)
- {
- unsigned long r1 = *(unsigned int *)&schid;
- int ccode;
- asm volatile(
- " lgr 1,%[r1]\n"
- " hsch\n"
- " ipm %[cc]\n"
- " srl %[cc],28\n"
- : [cc] "=&d" (ccode)
- : [r1] "d" (r1)
- : "cc", "1");
- return ccode;
- }
- int hsch(struct subchannel_id schid)
- {
- int ccode;
- ccode = __hsch(schid);
- trace_s390_cio_hsch(schid, ccode);
- return ccode;
- }
- EXPORT_SYMBOL(hsch);
- static inline int __xsch(struct subchannel_id schid)
- {
- unsigned long r1 = *(unsigned int *)&schid;
- int ccode;
- asm volatile(
- " lgr 1,%[r1]\n"
- " xsch\n"
- " ipm %[cc]\n"
- " srl %[cc],28\n"
- : [cc] "=&d" (ccode)
- : [r1] "d" (r1)
- : "cc", "1");
- return ccode;
- }
- int xsch(struct subchannel_id schid)
- {
- int ccode;
- ccode = __xsch(schid);
- trace_s390_cio_xsch(schid, ccode);
- return ccode;
- }
- static inline int __stcrw(struct crw *crw)
- {
- int ccode;
- asm volatile(
- " stcrw %[crw]\n"
- " ipm %[cc]\n"
- " srl %[cc],28\n"
- : [cc] "=&d" (ccode), [crw] "=Q" (*crw)
- :
- : "cc");
- return ccode;
- }
- static inline int _stcrw(struct crw *crw)
- {
- #ifdef CONFIG_CIO_INJECT
- if (static_branch_unlikely(&cio_inject_enabled)) {
- if (stcrw_get_injected(crw) == 0)
- return 0;
- }
- #endif
- return __stcrw(crw);
- }
- int stcrw(struct crw *crw)
- {
- int ccode;
- ccode = _stcrw(crw);
- trace_s390_cio_stcrw(crw, ccode);
- return ccode;
- }
|