3 * Copyright IBM Corp. 1999, 2007
4 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
5 * Christian Borntraeger (cborntra@de.ibm.com),
8 #define KMSG_COMPONENT "cpcmd"
9 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/spinlock.h>
15 #include <linux/stddef.h>
16 #include <linux/string.h>
17 #include <asm/ebcdic.h>
18 #include <asm/cpcmd.h>
21 static DEFINE_SPINLOCK(cpcmd_lock
);
22 static char cpcmd_buf
[241];
24 static int diag8_noresponse(int cmdlen
)
26 register unsigned long reg2
asm ("2") = (addr_t
) cpcmd_buf
;
27 register unsigned long reg3
asm ("3") = cmdlen
;
33 : "+d" (reg3
) : "d" (reg2
) : "cc");
37 static int diag8_response(int cmdlen
, char *response
, int *rlen
)
39 register unsigned long reg2
asm ("2") = (addr_t
) cpcmd_buf
;
40 register unsigned long reg3
asm ("3") = (addr_t
) response
;
41 register unsigned long reg4
asm ("4") = cmdlen
| 0x40000000L
;
42 register unsigned long reg5
asm ("5") = *rlen
;
51 : "+d" (reg4
), "+d" (reg5
)
52 : "d" (reg2
), "d" (reg3
), "d" (*rlen
) : "cc");
58 * __cpcmd has some restrictions over cpcmd
59 * - the response buffer must reside below 2GB (if any)
60 * - __cpcmd is unlocked and therefore not SMP-safe
62 int __cpcmd(const char *cmd
, char *response
, int rlen
, int *response_code
)
70 memcpy(cpcmd_buf
, cmd
, cmdlen
);
71 ASCEBC(cpcmd_buf
, cmdlen
);
74 memset(response
, 0, rlen
);
76 rc
= diag8_response(cmdlen
, response
, &rlen
);
77 EBCASC(response
, response_len
);
79 rc
= diag8_noresponse(cmdlen
);
85 EXPORT_SYMBOL(__cpcmd
);
87 int cpcmd(const char *cmd
, char *response
, int rlen
, int *response_code
)
93 if ((virt_to_phys(response
) != (unsigned long) response
) ||
94 (((unsigned long)response
+ rlen
) >> 31)) {
95 lowbuf
= kmalloc(rlen
, GFP_KERNEL
| GFP_DMA
);
97 pr_warning("The cpcmd kernel function failed to "
98 "allocate a response buffer\n");
101 spin_lock_irqsave(&cpcmd_lock
, flags
);
102 len
= __cpcmd(cmd
, lowbuf
, rlen
, response_code
);
103 spin_unlock_irqrestore(&cpcmd_lock
, flags
);
104 memcpy(response
, lowbuf
, rlen
);
107 spin_lock_irqsave(&cpcmd_lock
, flags
);
108 len
= __cpcmd(cmd
, response
, rlen
, response_code
);
109 spin_unlock_irqrestore(&cpcmd_lock
, flags
);
113 EXPORT_SYMBOL(cpcmd
);