2005-04-17 02:20:36 +04:00
|
|
|
#ifndef S390_CIO_IOASM_H
|
|
|
|
#define S390_CIO_IOASM_H
|
|
|
|
|
2007-04-27 18:01:31 +04:00
|
|
|
#include <asm/chpid.h>
|
2008-07-14 11:59:05 +04:00
|
|
|
#include <asm/schid.h>
|
2015-12-18 14:59:32 +03:00
|
|
|
#include <asm/crw.h>
|
2011-03-15 19:08:24 +03:00
|
|
|
#include "orb.h"
|
|
|
|
#include "cio.h"
|
2015-12-18 14:59:36 +03:00
|
|
|
#include "trace.h"
|
2006-01-06 11:19:21 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
2015-12-18 14:59:40 +03:00
|
|
|
* Some S390 specific IO instructions
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
|
2015-12-18 14:59:40 +03:00
|
|
|
int stsch(struct subchannel_id schid, struct schib *addr);
|
|
|
|
int msch(struct subchannel_id schid, struct schib *addr);
|
|
|
|
int tsch(struct subchannel_id schid, struct irb *addr);
|
|
|
|
int ssch(struct subchannel_id schid, union orb *addr);
|
|
|
|
int csch(struct subchannel_id schid);
|
|
|
|
int tpi(struct tpi_info *addr);
|
|
|
|
int chsc(void *chsc_area);
|
|
|
|
int rchp(struct chp_id chpid);
|
|
|
|
int rsch(struct subchannel_id schid);
|
|
|
|
int hsch(struct subchannel_id schid);
|
|
|
|
int xsch(struct subchannel_id schid);
|
|
|
|
int stcrw(struct crw *crw);
|
2015-12-18 14:59:32 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|