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
;
32 #else /* CONFIG_64BIT */
36 #endif /* CONFIG_64BIT */
37 : "+d" (reg3
) : "d" (reg2
) : "cc");
41 static int diag8_response(int cmdlen
, char *response
, int *rlen
)
43 register unsigned long reg2
asm ("2") = (addr_t
) cpcmd_buf
;
44 register unsigned long reg3
asm ("3") = (addr_t
) response
;
45 register unsigned long reg4
asm ("4") = cmdlen
| 0x40000000L
;
46 register unsigned long reg5
asm ("5") = *rlen
;
53 #else /* CONFIG_64BIT */
59 #endif /* CONFIG_64BIT */
61 : "+d" (reg4
), "+d" (reg5
)
62 : "d" (reg2
), "d" (reg3
), "d" (*rlen
) : "cc");
68 * __cpcmd has some restrictions over cpcmd
69 * - the response buffer must reside below 2GB (if any)
70 * - __cpcmd is unlocked and therefore not SMP-safe
72 int __cpcmd(const char *cmd
, char *response
, int rlen
, int *response_code
)
80 memcpy(cpcmd_buf
, cmd
, cmdlen
);
81 ASCEBC(cpcmd_buf
, cmdlen
);
84 memset(response
, 0, rlen
);
86 rc
= diag8_response(cmdlen
, response
, &rlen
);
87 EBCASC(response
, response_len
);
89 rc
= diag8_noresponse(cmdlen
);
95 EXPORT_SYMBOL(__cpcmd
);
97 int cpcmd(const char *cmd
, char *response
, int rlen
, int *response_code
)
103 if ((virt_to_phys(response
) != (unsigned long) response
) ||
104 (((unsigned long)response
+ rlen
) >> 31)) {
105 lowbuf
= kmalloc(rlen
, GFP_KERNEL
| GFP_DMA
);
107 pr_warning("The cpcmd kernel function failed to "
108 "allocate a response buffer\n");
111 spin_lock_irqsave(&cpcmd_lock
, flags
);
112 len
= __cpcmd(cmd
, lowbuf
, rlen
, response_code
);
113 spin_unlock_irqrestore(&cpcmd_lock
, flags
);
114 memcpy(response
, lowbuf
, rlen
);
117 spin_lock_irqsave(&cpcmd_lock
, flags
);
118 len
= __cpcmd(cmd
, response
, rlen
, response_code
);
119 spin_unlock_irqrestore(&cpcmd_lock
, flags
);
123 EXPORT_SYMBOL(cpcmd
);