2005-04-16 16:20:36 -06:00
|
|
|
#ifndef S390_CIO_IOASM_H
|
|
|
|
#define S390_CIO_IOASM_H
|
|
|
|
|
2007-04-27 08:01:31 -06:00
|
|
|
#include <asm/chpid.h>
|
2008-07-14 01:59:05 -06:00
|
|
|
#include <asm/schid.h>
|
2015-12-18 04:59:32 -07:00
|
|
|
#include <asm/crw.h>
|
2011-03-15 10:08:24 -06:00
|
|
|
#include "orb.h"
|
|
|
|
#include "cio.h"
|
2015-12-18 04:59:36 -07:00
|
|
|
#include "trace.h"
|
2006-01-06 01:19:21 -07:00
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
/*
|
2015-12-18 04:59:40 -07:00
|
|
|
* Some S390 specific IO instructions
|
2005-04-16 16:20:36 -06:00
|
|
|
*/
|
|
|
|
|
2015-12-18 04:59:40 -07: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 04:59:32 -07:00
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
#endif
|