/* SPDX-License-Identifier: GPL-2.0 */ /* * CP Assist for Cryptographic Functions (CPACF) * * Copyright IBM Corp. 2003, 2017 * Author(s): Thomas Spatzier * Jan Glauber * Harald Freudenberger (freude@de.ibm.com) * Martin Schwidefsky <schwidefsky@de.ibm.com> */ #ifndef _ASM_S390_CPACF_H #define _ASM_S390_CPACF_H #include <asm/facility.h> /* * Instruction opcodes for the CPACF instructions */ #define CPACF_KMAC 0xb91e /* MSA */ #define CPACF_KM 0xb92e /* MSA */ #define CPACF_KMC 0xb92f /* MSA */ #define CPACF_KIMD 0xb93e /* MSA */ #define CPACF_KLMD 0xb93f /* MSA */ #define CPACF_PCKMO 0xb928 /* MSA3 */ #define CPACF_KMF 0xb92a /* MSA4 */ #define CPACF_KMO 0xb92b /* MSA4 */ #define CPACF_PCC 0xb92c /* MSA4 */ #define CPACF_KMCTR 0xb92d /* MSA4 */ #define CPACF_PRNO 0xb93c /* MSA5 */ #define CPACF_KMA 0xb929 /* MSA8 */ #define CPACF_KDSA 0xb93a /* MSA9 */ /* * En/decryption modifier bits */ #define CPACF_ENCRYPT 0x00 #define CPACF_DECRYPT 0x80 /* * Function codes for the KM (CIPHER MESSAGE) instruction */ #define CPACF_KM_QUERY 0x00 #define CPACF_KM_DEA 0x01 #define CPACF_KM_TDEA_128 0x02 #define CPACF_KM_TDEA_192 0x03 #define CPACF_KM_AES_128 0x12 #define CPACF_KM_AES_192 0x13 #define CPACF_KM_AES_256 0x14 #define CPACF_KM_PAES_128 0x1a #define CPACF_KM_PAES_192 0x1b #define CPACF_KM_PAES_256 0x1c #define CPACF_KM_XTS_128 0x32 #define CPACF_KM_XTS_256 0x34 #define CPACF_KM_PXTS_128 0x3a #define CPACF_KM_PXTS_256 0x3c /* * Function codes for the KMC (CIPHER MESSAGE WITH CHAINING) * instruction */ #define CPACF_KMC_QUERY 0x00 #define CPACF_KMC_DEA 0x01 #define CPACF_KMC_TDEA_128 0x02 #define CPACF_KMC_TDEA_192 0x03 #define CPACF_KMC_AES_128 0x12 #define CPACF_KMC_AES_192 0x13 #define CPACF_KMC_AES_256 0x14 #define CPACF_KMC_PAES_128 0x1a #define CPACF_KMC_PAES_192 0x1b #define CPACF_KMC_PAES_256 0x1c #define CPACF_KMC_PRNG 0x43 /* * Function codes for the KMCTR (CIPHER MESSAGE WITH COUNTER) * instruction */ #define CPACF_KMCTR_QUERY 0x00 #define CPACF_KMCTR_DEA 0x01 #define CPACF_KMCTR_TDEA_128 0x02 #define CPACF_KMCTR_TDEA_192 0x03 #define CPACF_KMCTR_AES_128 0x12 #define CPACF_KMCTR_AES_192 0x13 #define CPACF_KMCTR_AES_256 0x14 #define CPACF_KMCTR_PAES_128 0x1a #define CPACF_KMCTR_PAES_192 0x1b #define CPACF_KMCTR_PAES_256 0x1c /* * Function codes for the KIMD (COMPUTE INTERMEDIATE MESSAGE DIGEST) * instruction */ #define CPACF_KIMD_QUERY 0x00 #define CPACF_KIMD_SHA_1 0x01 #define CPACF_KIMD_SHA_256 0x02 #define CPACF_KIMD_SHA_512 0x03 #define CPACF_KIMD_GHASH 0x41 /* * Function codes for the KLMD (COMPUTE LAST MESSAGE DIGEST) * instruction */ #define CPACF_KLMD_QUERY 0x00 #define CPACF_KLMD_SHA_1 0x01 #define CPACF_KLMD_SHA_256 0x02 #define CPACF_KLMD_SHA_512 0x03 /* * function codes for the KMAC (COMPUTE MESSAGE AUTHENTICATION CODE) * instruction */ #define CPACF_KMAC_QUERY 0x00 #define CPACF_KMAC_DEA 0x01 #define CPACF_KMAC_TDEA_128 0x02 #define CPACF_KMAC_TDEA_192 0x03 /* * Function codes for the PCKMO (PERFORM CRYPTOGRAPHIC KEY MANAGEMENT) * instruction */ #define CPACF_PCKMO_QUERY 0x00 #define CPACF_PCKMO_ENC_DES_KEY 0x01 #define CPACF_PCKMO_ENC_TDES_128_KEY 0x02 #define CPACF_PCKMO_ENC_TDES_192_KEY 0x03 #define CPACF_PCKMO_ENC_AES_128_KEY 0x12 #define CPACF_PCKMO_ENC_AES_192_KEY 0x13 #define CPACF_PCKMO_ENC_AES_256_KEY 0x14 /* * Function codes for the PRNO (PERFORM RANDOM NUMBER OPERATION) * instruction */ #define CPACF_PRNO_QUERY 0x00 #define CPACF_PRNO_SHA512_DRNG_GEN 0x03 #define CPACF_PRNO_SHA512_DRNG_SEED 0x83 #define CPACF_PRNO_TRNG_Q_R2C_RATIO 0x70 #define CPACF_PRNO_TRNG 0x72 /* * Function codes for the KMA (CIPHER MESSAGE WITH AUTHENTICATION) * instruction */ #define CPACF_KMA_QUERY 0x00 #define CPACF_KMA_GCM_AES_128 0x12 #define CPACF_KMA_GCM_AES_192 0x13 #define CPACF_KMA_GCM_AES_256 0x14 /* * Flags for the KMA (CIPHER MESSAGE WITH AUTHENTICATION) instruction */ #define CPACF_KMA_LPC 0x100 /* Last-Plaintext/Ciphertext */ #define CPACF_KMA_LAAD 0x200 /* Last-AAD */ #define CPACF_KMA_HS 0x400 /* Hash-subkey Supplied */ typedef struct { unsigned char bytes[16]; } cpacf_mask_t; /** * cpacf_query() - check if a specific CPACF function is available * @opcode: the opcode of the crypto instruction * @func: the function code to test for * * Executes the query function for the given crypto instruction @opcode * and checks if @func is available * * Returns 1 if @func is available for @opcode, 0 otherwise */ static inline void __cpacf_query(unsigned int opcode, cpacf_mask_t *mask) { register unsigned long r0 asm("0") = 0; /* query function */ register unsigned long r1 asm("1") = (unsigned long) mask; asm volatile( " spm 0\n" /* pckmo doesn't change the cc */ /* Parameter regs are ignored, but must be nonzero and unique */ "0: .insn rrf,%[opc] << 16,2,4,6,0\n" " brc 1,0b\n" /* handle partial completion */ : "=m" (*mask) : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (opcode) : "cc"); } static inline int __cpacf_check_opcode(unsigned int opcode) { switch (opcode) { case CPACF_KMAC: case CPACF_KM: case CPACF_KMC: case CPACF_KIMD: case CPACF_KLMD: return test_facility(17); /* check for MSA */ case CPACF_PCKMO: return test_facility(76); /* check for MSA3 */ case CPACF_KMF: case CPACF_KMO: case CPACF_PCC: case CPACF_KMCTR: return test_facility(77); /* check for MSA4 */ case CPACF_PRNO: return test_facility(57); /* check for MSA5 */ case CPACF_KMA: return test_facility(146); /* check for MSA8 */ default: BUG(); } } static inline int cpacf_query(unsigned int opcode, cpacf_mask_t *mask) { if (__cpacf_check_opcode(opcode)) { __cpacf_query(opcode, mask); return 1; } memset(mask, 0, sizeof(*mask)); return 0; } static inline int cpacf_test_func(cpacf_mask_t *mask, unsigned int func) { return (mask->bytes[func >> 3] & (0x80 >> (func & 7))) != 0; } static inline int cpacf_query_func(unsigned int opcode, unsigned int func) { cpacf_mask_t mask; if (cpacf_query(opcode, &mask)) return cpacf_test_func(&mask, func); return 0; } /** * cpacf_km() - executes the KM (CIPHER MESSAGE) instruction * @func: the function code passed to KM; see CPACF_KM_xxx defines * @param: address of parameter block; see POP for details on each func * @dest: address of destination memory area * @src: address of source memory area * @src_len: length of src operand in bytes * * Returns 0 for the query func, number of processed bytes for * encryption/decryption funcs */ static inline int cpacf_km(unsigned long func, void *param, u8 *dest, const u8 *src, long src_len) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; register unsigned long r2 asm("2") = (unsigned long) src; register unsigned long r3 asm("3") = (unsigned long) src_len; register unsigned long r4 asm("4") = (unsigned long) dest; asm volatile( "0: .insn rre,%[opc] << 16,%[dst],%[src]\n" " brc 1,0b\n" /* handle partial completion */ : [src] "+a" (r2), [len] "+d" (r3), [dst] "+a" (r4) : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (CPACF_KM) : "cc", "memory"); return src_len - r3; } /** * cpacf_kmc() - executes the KMC (CIPHER MESSAGE WITH CHAINING) instruction * @func: the function code passed to KM; see CPACF_KMC_xxx defines * @param: address of parameter block; see POP for details on each func * @dest: address of destination memory area * @src: address of source memory area * @src_len: length of src operand in bytes * * Returns 0 for the query func, number of processed bytes for * encryption/decryption funcs */ static inline int cpacf_kmc(unsigned long func, void *param, u8 *dest, const u8 *src, long src_len) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; register unsigned long r2 asm("2") = (unsigned long) src; register unsigned long r3 asm("3") = (unsigned long) src_len; register unsigned long r4 asm("4") = (unsigned long) dest; asm volatile( "0: .insn rre,%[opc] << 16,%[dst],%[src]\n" " brc 1,0b\n" /* handle partial completion */ : [src] "+a" (r2), [len] "+d" (r3), [dst] "+a" (r4) : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (CPACF_KMC) : "cc", "memory"); return src_len - r3; } /** * cpacf_kimd() - executes the KIMD (COMPUTE INTERMEDIATE MESSAGE DIGEST) * instruction * @func: the function code passed to KM; see CPACF_KIMD_xxx defines * @param: address of parameter block; see POP for details on each func * @src: address of source memory area * @src_len: length of src operand in bytes */ static inline void cpacf_kimd(unsigned long func, void *param, const u8 *src, long src_len) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; register unsigned long r2 asm("2") = (unsigned long) src; register unsigned long r3 asm("3") = (unsigned long) src_len; asm volatile( "0: .insn rre,%[opc] << 16,0,%[src]\n" " brc 1,0b\n" /* handle partial completion */ : [src] "+a" (r2), [len] "+d" (r3) : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (CPACF_KIMD) : "cc", "memory"); } /** * cpacf_klmd() - executes the KLMD (COMPUTE LAST MESSAGE DIGEST) instruction * @func: the function code passed to KM; see CPACF_KLMD_xxx defines * @param: address of parameter block; see POP for details on each func * @src: address of source memory area * @src_len: length of src operand in bytes */ static inline void cpacf_klmd(unsigned long func, void *param, const u8 *src, long src_len) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; register unsigned long r2 asm("2") = (unsigned long) src; register unsigned long r3 asm("3") = (unsigned long) src_len; asm volatile( "0: .insn rre,%[opc] << 16,0,%[src]\n" " brc 1,0b\n" /* handle partial completion */ : [src] "+a" (r2), [len] "+d" (r3) : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (CPACF_KLMD) : "cc", "memory"); } /** * cpacf_kmac() - executes the KMAC (COMPUTE MESSAGE AUTHENTICATION CODE) * instruction * @func: the function code passed to KM; see CPACF_KMAC_xxx defines * @param: address of parameter block; see POP for details on each func * @src: address of source memory area * @src_len: length of src operand in bytes * * Returns 0 for the query func, number of processed bytes for digest funcs */ static inline int cpacf_kmac(unsigned long func, void *param, const u8 *src, long src_len) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; register unsigned long r2 asm("2") = (unsigned long) src; register unsigned long r3 asm("3") = (unsigned long) src_len; asm volatile( "0: .insn rre,%[opc] << 16,0,%[src]\n" " brc 1,0b\n" /* handle partial completion */ : [src] "+a" (r2), [len] "+d" (r3) : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (CPACF_KMAC) : "cc", "memory"); return src_len - r3; } /** * cpacf_kmctr() - executes the KMCTR (CIPHER MESSAGE WITH COUNTER) instruction * @func: the function code passed to KMCTR; see CPACF_KMCTR_xxx defines * @param: address of parameter block; see POP for details on each func * @dest: address of destination memory area * @src: address of source memory area * @src_len: length of src operand in bytes * @counter: address of counter value * * Returns 0 for the query func, number of processed bytes for * encryption/decryption funcs */ static inline int cpacf_kmctr(unsigned long func, void *param, u8 *dest, const u8 *src, long src_len, u8 *counter) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; register unsigned long r2 asm("2") = (unsigned long) src; register unsigned long r3 asm("3") = (unsigned long) src_len; register unsigned long r4 asm("4") = (unsigned long) dest; register unsigned long r6 asm("6") = (unsigned long) counter; asm volatile( "0: .insn rrf,%[opc] << 16,%[dst],%[src],%[ctr],0\n" " brc 1,0b\n" /* handle partial completion */ : [src] "+a" (r2), [len] "+d" (r3), [dst] "+a" (r4), [ctr] "+a" (r6) : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (CPACF_KMCTR) : "cc", "memory"); return src_len - r3; } /** * cpacf_prno() - executes the PRNO (PERFORM RANDOM NUMBER OPERATION) * instruction * @func: the function code passed to PRNO; see CPACF_PRNO_xxx defines * @param: address of parameter block; see POP for details on each func * @dest: address of destination memory area * @dest_len: size of destination memory area in bytes * @seed: address of seed data * @seed_len: size of seed data in bytes */ static inline void cpacf_prno(unsigned long func, void *param, u8 *dest, unsigned long dest_len, const u8 *seed, unsigned long seed_len) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; register unsigned long r2 asm("2") = (unsigned long) dest; register unsigned long r3 asm("3") = (unsigned long) dest_len; register unsigned long r4 asm("4") = (unsigned long) seed; register unsigned long r5 asm("5") = (unsigned long) seed_len; asm volatile ( "0: .insn rre,%[opc] << 16,%[dst],%[seed]\n" " brc 1,0b\n" /* handle partial completion */ : [dst] "+a" (r2), [dlen] "+d" (r3) : [fc] "d" (r0), [pba] "a" (r1), [seed] "a" (r4), [slen] "d" (r5), [opc] "i" (CPACF_PRNO) : "cc", "memory"); } /** * cpacf_trng() - executes the TRNG subfunction of the PRNO instruction * @ucbuf: buffer for unconditioned data * @ucbuf_len: amount of unconditioned data to fetch in bytes * @cbuf: buffer for conditioned data * @cbuf_len: amount of conditioned data to fetch in bytes */ static inline void cpacf_trng(u8 *ucbuf, unsigned long ucbuf_len, u8 *cbuf, unsigned long cbuf_len) { register unsigned long r0 asm("0") = (unsigned long) CPACF_PRNO_TRNG; register unsigned long r2 asm("2") = (unsigned long) ucbuf; register unsigned long r3 asm("3") = (unsigned long) ucbuf_len; register unsigned long r4 asm("4") = (unsigned long) cbuf; register unsigned long r5 asm("5") = (unsigned long) cbuf_len; asm volatile ( "0: .insn rre,%[opc] << 16,%[ucbuf],%[cbuf]\n" " brc 1,0b\n" /* handle partial completion */ : [ucbuf] "+a" (r2), [ucbuflen] "+d" (r3), [cbuf] "+a" (r4), [cbuflen] "+d" (r5) : [fc] "d" (r0), [opc] "i" (CPACF_PRNO) : "cc", "memory"); } /** * cpacf_pcc() - executes the PCC (PERFORM CRYPTOGRAPHIC COMPUTATION) * instruction * @func: the function code passed to PCC; see CPACF_KM_xxx defines * @param: address of parameter block; see POP for details on each func */ static inline void cpacf_pcc(unsigned long func, void *param) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; asm volatile( "0: .insn rre,%[opc] << 16,0,0\n" /* PCC opcode */ " brc 1,0b\n" /* handle partial completion */ : : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (CPACF_PCC) : "cc", "memory"); } /** * cpacf_pckmo() - executes the PCKMO (PERFORM CRYPTOGRAPHIC KEY * MANAGEMENT) instruction * @func: the function code passed to PCKMO; see CPACF_PCKMO_xxx defines * @param: address of parameter block; see POP for details on each func * * Returns 0. */ static inline void cpacf_pckmo(long func, void *param) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; asm volatile( " .insn rre,%[opc] << 16,0,0\n" /* PCKMO opcode */ : : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (CPACF_PCKMO) : "cc", "memory"); } /** * cpacf_kma() - executes the KMA (CIPHER MESSAGE WITH AUTHENTICATION) * instruction * @func: the function code passed to KMA; see CPACF_KMA_xxx defines * @param: address of parameter block; see POP for details on each func * @dest: address of destination memory area * @src: address of source memory area * @src_len: length of src operand in bytes * @aad: address of additional authenticated data memory area * @aad_len: length of aad operand in bytes */ static inline void cpacf_kma(unsigned long func, void *param, u8 *dest, const u8 *src, unsigned long src_len, const u8 *aad, unsigned long aad_len) { register unsigned long r0 asm("0") = (unsigned long) func; register unsigned long r1 asm("1") = (unsigned long) param; register unsigned long r2 asm("2") = (unsigned long) src; register unsigned long r3 asm("3") = (unsigned long) src_len; register unsigned long r4 asm("4") = (unsigned long) aad; register unsigned long r5 asm("5") = (unsigned long) aad_len; register unsigned long r6 asm("6") = (unsigned long) dest; asm volatile( "0: .insn rrf,%[opc] << 16,%[dst],%[src],%[aad],0\n" " brc 1,0b\n" /* handle partial completion */ : [dst] "+a" (r6), [src] "+a" (r2), [slen] "+d" (r3), [aad] "+a" (r4), [alen] "+d" (r5) : [fc] "d" (r0), [pba] "a" (r1), [opc] "i" (CPACF_KMA) : "cc", "memory"); } #endif /* _ASM_S390_CPACF_H */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
fpu | Folder | 0755 |
|
|
trace | Folder | 0755 |
|
|
Kbuild | File | 557 B | 0644 |
|
airq.h | File | 3.02 KB | 0644 |
|
alternative-asm.h | File | 3.07 KB | 0644 |
|
alternative.h | File | 4.99 KB | 0644 |
|
ap.h | File | 9.9 KB | 0644 |
|
appldata.h | File | 1.54 KB | 0644 |
|
archrandom.h | File | 1.17 KB | 0644 |
|
asm-prototypes.h | File | 227 B | 0644 |
|
atomic.h | File | 5.1 KB | 0644 |
|
atomic_ops.h | File | 4.02 KB | 0644 |
|
barrier.h | File | 1.84 KB | 0644 |
|
bitops.h | File | 10.13 KB | 0644 |
|
bug.h | File | 1.49 KB | 0644 |
|
bugs.h | File | 441 B | 0644 |
|
cache.h | File | 387 B | 0644 |
|
ccwdev.h | File | 7.99 KB | 0644 |
|
ccwgroup.h | File | 2.53 KB | 0644 |
|
checksum.h | File | 3.24 KB | 0644 |
|
chpid.h | File | 974 B | 0644 |
|
cio.h | File | 8.01 KB | 0644 |
|
clp.h | File | 1.32 KB | 0644 |
|
cmb.h | File | 425 B | 0644 |
|
cmpxchg.h | File | 1.76 KB | 0644 |
|
compat.h | File | 7.9 KB | 0644 |
|
cpacf.h | File | 16.8 KB | 0644 |
|
cpcmd.h | File | 1.11 KB | 0644 |
|
cpu.h | File | 549 B | 0644 |
|
cpu_mf.h | File | 8.99 KB | 0644 |
|
cpufeature.h | File | 963 B | 0644 |
|
cputime.h | File | 805 B | 0644 |
|
crw.h | File | 1.86 KB | 0644 |
|
css_chars.h | File | 769 B | 0644 |
|
ctl_reg.h | File | 2.89 KB | 0644 |
|
current.h | File | 405 B | 0644 |
|
debug.h | File | 8.1 KB | 0644 |
|
delay.h | File | 721 B | 0644 |
|
diag.h | File | 5.94 KB | 0644 |
|
dis.h | File | 637 B | 0644 |
|
dma-mapping.h | File | 621 B | 0644 |
|
dma.h | File | 456 B | 0644 |
|
eadm.h | File | 2.03 KB | 0644 |
|
ebcdic.h | File | 1.41 KB | 0644 |
|
elf.h | File | 10.36 KB | 0644 |
|
exec.h | File | 269 B | 0644 |
|
extable.h | File | 875 B | 0644 |
|
extmem.h | File | 804 B | 0644 |
|
facility.h | File | 2.44 KB | 0644 |
|
fcx.h | File | 7.91 KB | 0644 |
|
ftrace.h | File | 1.66 KB | 0644 |
|
futex.h | File | 2.09 KB | 0644 |
|
gmap.h | File | 4.93 KB | 0644 |
|
hardirq.h | File | 670 B | 0644 |
|
hugetlb.h | File | 2.87 KB | 0644 |
|
hw_irq.h | File | 249 B | 0644 |
|
idals.h | File | 5.22 KB | 0644 |
|
idle.h | File | 709 B | 0644 |
|
io.h | File | 2.03 KB | 0644 |
|
ipl.h | File | 3.6 KB | 0644 |
|
irq.h | File | 2.55 KB | 0644 |
|
irqflags.h | File | 1.76 KB | 0644 |
|
isc.h | File | 1000 B | 0644 |
|
itcw.h | File | 950 B | 0644 |
|
jump_label.h | File | 1.36 KB | 0644 |
|
kdebug.h | File | 386 B | 0644 |
|
kexec.h | File | 1.32 KB | 0644 |
|
kprobes.h | File | 2.24 KB | 0644 |
|
kvm_host.h | File | 22.24 KB | 0644 |
|
kvm_para.h | File | 5.78 KB | 0644 |
|
linkage.h | File | 633 B | 0644 |
|
livepatch.h | File | 461 B | 0644 |
|
lowcore.h | File | 6.29 KB | 0644 |
|
mmu.h | File | 1.19 KB | 0644 |
|
mmu_context.h | File | 3.84 KB | 0644 |
|
mmzone.h | File | 316 B | 0644 |
|
module.h | File | 802 B | 0644 |
|
nmi.h | File | 3.44 KB | 0644 |
|
nospec-branch.h | File | 342 B | 0644 |
|
nospec-insn.h | File | 3.81 KB | 0644 |
|
numa.h | File | 730 B | 0644 |
|
os_info.h | File | 1.1 KB | 0644 |
|
page-states.h | File | 486 B | 0644 |
|
page.h | File | 5.12 KB | 0644 |
|
pci.h | File | 6.26 KB | 0644 |
|
pci_clp.h | File | 4.25 KB | 0644 |
|
pci_debug.h | File | 608 B | 0644 |
|
pci_dma.h | File | 5.7 KB | 0644 |
|
pci_insn.h | File | 2.59 KB | 0644 |
|
pci_io.h | File | 4.58 KB | 0644 |
|
percpu.h | File | 6.44 KB | 0644 |
|
perf_event.h | File | 2.71 KB | 0644 |
|
pgalloc.h | File | 4.32 KB | 0644 |
|
pgtable.h | File | 47.7 KB | 0644 |
|
pkey.h | File | 4.23 KB | 0644 |
|
preempt.h | File | 3.25 KB | 0644 |
|
processor.h | File | 10.42 KB | 0644 |
|
ptrace.h | File | 5.27 KB | 0644 |
|
qdio.h | File | 11.67 KB | 0644 |
|
reset.h | File | 471 B | 0644 |
|
runtime_instr.h | File | 1.76 KB | 0644 |
|
schid.h | File | 525 B | 0644 |
|
sclp.h | File | 3.38 KB | 0644 |
|
scsw.h | File | 24.1 KB | 0644 |
|
seccomp.h | File | 516 B | 0644 |
|
sections.h | File | 155 B | 0644 |
|
segment.h | File | 93 B | 0644 |
|
serial.h | File | 147 B | 0644 |
|
set_memory.h | File | 779 B | 0644 |
|
setup.h | File | 4.44 KB | 0644 |
|
shmparam.h | File | 285 B | 0644 |
|
signal.h | File | 644 B | 0644 |
|
sigp.h | File | 1.8 KB | 0644 |
|
smp.h | File | 2.45 KB | 0644 |
|
sparsemem.h | File | 214 B | 0644 |
|
spinlock.h | File | 3.53 KB | 0644 |
|
spinlock_types.h | File | 437 B | 0644 |
|
stp.h | File | 1.26 KB | 0644 |
|
string.h | File | 4.5 KB | 0644 |
|
switch_to.h | File | 1.37 KB | 0644 |
|
syscall.h | File | 2.63 KB | 0644 |
|
sysinfo.h | File | 4.22 KB | 0644 |
|
termios.h | File | 685 B | 0644 |
|
thread_info.h | File | 3.15 KB | 0644 |
|
timex.h | File | 6.15 KB | 0644 |
|
tlb.h | File | 5.71 KB | 0644 |
|
tlbflush.h | File | 3.52 KB | 0644 |
|
topology.h | File | 2.69 KB | 0644 |
|
uaccess.h | File | 6.57 KB | 0644 |
|
unistd.h | File | 1.03 KB | 0644 |
|
uprobes.h | File | 588 B | 0644 |
|
user.h | File | 3.3 KB | 0644 |
|
vdso.h | File | 1.8 KB | 0644 |
|
vga.h | File | 170 B | 0644 |
|
vtime.h | File | 182 B | 0644 |
|
vtimer.h | File | 866 B | 0644 |
|
vx-insn.h | File | 10.66 KB | 0644 |
|
xor.h | File | 454 B | 0644 |
|