2005-04-16 22:20:36 +00:00
|
|
|
#ifndef S390_CIO_IOASM_H
|
|
|
|
#define S390_CIO_IOASM_H
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
#include "schid.h"
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* TPI info structure
|
|
|
|
*/
|
|
|
|
struct tpi_info {
|
2006-01-06 08:19:21 +00:00
|
|
|
struct subchannel_id schid;
|
2005-04-16 22:20:36 +00:00
|
|
|
__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
|
|
|
|
*/
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
static inline int stsch(struct subchannel_id schid,
|
|
|
|
volatile struct schib *addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" lr 1,%1\n"
|
|
|
|
" stsch 0(%2)\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "d" (schid), "a" (addr), "m" (*addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2006-01-06 08:19:25 +00:00
|
|
|
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"
|
2006-01-06 08:19:28 +00:00
|
|
|
#ifdef CONFIG_64BIT
|
2006-01-06 08:19:25 +00:00
|
|
|
".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;
|
|
|
|
}
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
static inline int msch(struct subchannel_id schid,
|
|
|
|
volatile struct schib *addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" lr 1,%1\n"
|
|
|
|
" msch 0(%2)\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "d" (schid), "a" (addr), "m" (*addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
static inline int msch_err(struct subchannel_id schid,
|
|
|
|
volatile struct schib *addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
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"
|
2006-01-06 08:19:28 +00:00
|
|
|
#ifdef CONFIG_64BIT
|
2005-04-16 22:20:36 +00:00
|
|
|
".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)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "d" (schid), "a" (addr), "K" (-EIO), "m" (*addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
static inline int tsch(struct subchannel_id schid,
|
|
|
|
volatile struct irb *addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" lr 1,%1\n"
|
|
|
|
" tsch 0(%2)\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "d" (schid), "a" (addr), "m" (*addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2005-09-03 22:58:01 +00:00
|
|
|
static inline int tpi( volatile struct tpi_info *addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" tpi 0(%1)\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "a" (addr), "m" (*addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
static inline int ssch(struct subchannel_id schid,
|
|
|
|
volatile struct orb *addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" lr 1,%1\n"
|
|
|
|
" ssch 0(%2)\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "d" (schid), "a" (addr), "m" (*addr)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
static inline int rsch(struct subchannel_id schid)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" lr 1,%1\n"
|
|
|
|
" rsch\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "d" (schid)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
static inline int csch(struct subchannel_id schid)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" lr 1,%1\n"
|
|
|
|
" csch\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "d" (schid)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
static inline int hsch(struct subchannel_id schid)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" lr 1,%1\n"
|
|
|
|
" hsch\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "d" (schid)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2006-01-06 08:19:21 +00:00
|
|
|
static inline int xsch(struct subchannel_id schid)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" lr 1,%1\n"
|
|
|
|
" .insn rre,0xb2760000,%1,0\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode)
|
2006-01-06 08:19:21 +00:00
|
|
|
: "d" (schid)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2005-09-03 22:58:01 +00:00
|
|
|
static inline int chsc(void *chsc_area)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-01-06 08:19:21 +00:00
|
|
|
typedef struct { char _[4096]; } addr_type;
|
2005-04-16 22:20:36 +00:00
|
|
|
int cc;
|
|
|
|
|
|
|
|
__asm__ __volatile__ (
|
2006-01-06 08:19:21 +00:00
|
|
|
".insn rre,0xb25f0000,%2,0 \n\t"
|
2005-04-16 22:20:36 +00:00
|
|
|
"ipm %0 \n\t"
|
|
|
|
"srl %0,28 \n\t"
|
2006-01-06 08:19:21 +00:00
|
|
|
: "=d" (cc), "=m" (*(addr_type *) chsc_area)
|
|
|
|
: "d" (chsc_area), "m" (*(addr_type *) chsc_area)
|
2005-04-16 22:20:36 +00:00
|
|
|
: "cc" );
|
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
2005-09-03 22:58:01 +00:00
|
|
|
static inline int iac( void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int ccode;
|
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
" iac 1\n"
|
|
|
|
" ipm %0\n"
|
|
|
|
" srl %0,28"
|
|
|
|
: "=d" (ccode) : : "cc", "1" );
|
|
|
|
return ccode;
|
|
|
|
}
|
|
|
|
|
2005-09-03 22:58:01 +00:00
|
|
|
static inline int rchp(int chpid)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
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
|