Symbol: u64
crypto/libecc/include/libecc/external_deps/time.h
21
ATTRIBUTE_WARN_UNUSED_RET int get_ms_time(u64 *time);
crypto/libecc/include/libecc/hash/bash.h
151
u64 bash_total;
crypto/libecc/include/libecc/hash/bash.h
153
u64 bash_state[BASH_SLICES_X * BASH_SLICES_Y];
crypto/libecc/include/libecc/hash/bash.h
155
u64 magic;
crypto/libecc/include/libecc/hash/bash.h
22
#define _BASH_ROTHI_(x, y) (((x) << (y)) | ((x) >> ((sizeof(u64) * 8) - (y))))
crypto/libecc/include/libecc/hash/bash.h
28
#define BASH_ROTHI(x, y) ((((y) < (sizeof(u64) * 8)) && ((y) > 0)) ? (_BASH_ROTHI_(x, y)) : (x))
crypto/libecc/include/libecc/hash/bash.h
42
u64 T0, T1, T2; \
crypto/libecc/include/libecc/hash/bash.h
58
u64 S_[BASH_SLICES_X * BASH_SLICES_Y]; \
crypto/libecc/include/libecc/hash/bash.h
68
static const u64 bash_rc[BASH_ROUNDS] =
crypto/libecc/include/libecc/hash/belt-hash.h
138
u64 belt_hash_total;
crypto/libecc/include/libecc/hash/belt-hash.h
49
(n) = ( ((u64) (b)[(i) ]) << 56 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
50
| ( ((u64) (b)[(i) + 1]) << 48 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
51
| ( ((u64) (b)[(i) + 2]) << 40 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
52
| ( ((u64) (b)[(i) + 3]) << 32 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
53
| ( ((u64) (b)[(i) + 4]) << 24 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
54
| ( ((u64) (b)[(i) + 5]) << 16 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
55
| ( ((u64) (b)[(i) + 6]) << 8 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
56
| ( ((u64) (b)[(i) + 7]) ); \
crypto/libecc/include/libecc/hash/belt-hash.h
77
(n) = ( ((u64) (b)[(i) + 7]) << 56 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
78
| ( ((u64) (b)[(i) + 6]) << 48 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
79
| ( ((u64) (b)[(i) + 5]) << 40 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
80
| ( ((u64) (b)[(i) + 4]) << 32 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
81
| ( ((u64) (b)[(i) + 3]) << 24 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
82
| ( ((u64) (b)[(i) + 2]) << 16 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
83
| ( ((u64) (b)[(i) + 1]) << 8 ) \
crypto/libecc/include/libecc/hash/belt-hash.h
84
| ( ((u64) (b)[(i) ]) ); \
crypto/libecc/include/libecc/hash/keccak.h
21
#define _KECCAK_ROTL_(x, y) (((x) << (y)) | ((x) >> ((sizeof(u64) * 8) - (y))))
crypto/libecc/include/libecc/hash/keccak.h
27
#define KECCAK_ROTL(x, y) ((((y) < (sizeof(u64) * 8)) && ((y) > 0)) ? (_KECCAK_ROTL_(x, y)) : (x))
crypto/libecc/include/libecc/hash/keccak.h
38
static const u64 keccak_rc[KECCAK_ROUNDS] =
crypto/libecc/include/libecc/hash/keccak.h
65
#define SWAP64_Idx(a) ((sizeof(u64) * ((u8)(a) / sizeof(u64))) + (sizeof(u64) - 1 - ((u8)(a) % sizeof(u64))))
crypto/libecc/include/libecc/hash/keccak.h
72
u64 tmp; \
crypto/libecc/include/libecc/hash/keccak.h
74
u64 BCD[KECCAK_SLICES * KECCAK_SLICES]; \
crypto/libecc/include/libecc/hash/ripemd160.h
56
u64 ripemd160_total;
crypto/libecc/include/libecc/hash/sha2.h
164
#define SHR_SHA512(x, n) (((u64)(x)) >> (n))
crypto/libecc/include/libecc/hash/sha2.h
165
#define ROTR_SHA512(x, n) ((((u64)(x)) >> (n)) | (((u64)(x)) << (64-(n))))
crypto/libecc/include/libecc/hash/sha2.h
171
SHA2CORE(a, b, c, d, e, f, g, h, w, k, u64, SHA512)
crypto/libecc/include/libecc/hash/sha2.h
173
static const u64 K_SHA512[] = {
crypto/libecc/include/libecc/hash/sha2.h
174
(u64)(0x428A2F98D728AE22), (u64)(0x7137449123EF65CD),
crypto/libecc/include/libecc/hash/sha2.h
175
(u64)(0xB5C0FBCFEC4D3B2F), (u64)(0xE9B5DBA58189DBBC),
crypto/libecc/include/libecc/hash/sha2.h
176
(u64)(0x3956C25BF348B538), (u64)(0x59F111F1B605D019),
crypto/libecc/include/libecc/hash/sha2.h
177
(u64)(0x923F82A4AF194F9B), (u64)(0xAB1C5ED5DA6D8118),
crypto/libecc/include/libecc/hash/sha2.h
178
(u64)(0xD807AA98A3030242), (u64)(0x12835B0145706FBE),
crypto/libecc/include/libecc/hash/sha2.h
179
(u64)(0x243185BE4EE4B28C), (u64)(0x550C7DC3D5FFB4E2),
crypto/libecc/include/libecc/hash/sha2.h
180
(u64)(0x72BE5D74F27B896F), (u64)(0x80DEB1FE3B1696B1),
crypto/libecc/include/libecc/hash/sha2.h
181
(u64)(0x9BDC06A725C71235), (u64)(0xC19BF174CF692694),
crypto/libecc/include/libecc/hash/sha2.h
182
(u64)(0xE49B69C19EF14AD2), (u64)(0xEFBE4786384F25E3),
crypto/libecc/include/libecc/hash/sha2.h
183
(u64)(0x0FC19DC68B8CD5B5), (u64)(0x240CA1CC77AC9C65),
crypto/libecc/include/libecc/hash/sha2.h
184
(u64)(0x2DE92C6F592B0275), (u64)(0x4A7484AA6EA6E483),
crypto/libecc/include/libecc/hash/sha2.h
185
(u64)(0x5CB0A9DCBD41FBD4), (u64)(0x76F988DA831153B5),
crypto/libecc/include/libecc/hash/sha2.h
186
(u64)(0x983E5152EE66DFAB), (u64)(0xA831C66D2DB43210),
crypto/libecc/include/libecc/hash/sha2.h
187
(u64)(0xB00327C898FB213F), (u64)(0xBF597FC7BEEF0EE4),
crypto/libecc/include/libecc/hash/sha2.h
188
(u64)(0xC6E00BF33DA88FC2), (u64)(0xD5A79147930AA725),
crypto/libecc/include/libecc/hash/sha2.h
189
(u64)(0x06CA6351E003826F), (u64)(0x142929670A0E6E70),
crypto/libecc/include/libecc/hash/sha2.h
190
(u64)(0x27B70A8546D22FFC), (u64)(0x2E1B21385C26C926),
crypto/libecc/include/libecc/hash/sha2.h
191
(u64)(0x4D2C6DFC5AC42AED), (u64)(0x53380D139D95B3DF),
crypto/libecc/include/libecc/hash/sha2.h
192
(u64)(0x650A73548BAF63DE), (u64)(0x766A0ABB3C77B2A8),
crypto/libecc/include/libecc/hash/sha2.h
193
(u64)(0x81C2C92E47EDAEE6), (u64)(0x92722C851482353B),
crypto/libecc/include/libecc/hash/sha2.h
194
(u64)(0xA2BFE8A14CF10364), (u64)(0xA81A664BBC423001),
crypto/libecc/include/libecc/hash/sha2.h
195
(u64)(0xC24B8B70D0F89791), (u64)(0xC76C51A30654BE30),
crypto/libecc/include/libecc/hash/sha2.h
196
(u64)(0xD192E819D6EF5218), (u64)(0xD69906245565A910),
crypto/libecc/include/libecc/hash/sha2.h
197
(u64)(0xF40E35855771202A), (u64)(0x106AA07032BBD1B8),
crypto/libecc/include/libecc/hash/sha2.h
198
(u64)(0x19A4C116B8D2D0C8), (u64)(0x1E376C085141AB53),
crypto/libecc/include/libecc/hash/sha2.h
199
(u64)(0x2748774CDF8EEB99), (u64)(0x34B0BCB5E19B48A8),
crypto/libecc/include/libecc/hash/sha2.h
200
(u64)(0x391C0CB3C5C95A63), (u64)(0x4ED8AA4AE3418ACB),
crypto/libecc/include/libecc/hash/sha2.h
201
(u64)(0x5B9CCA4F7763E373), (u64)(0x682E6FF3D6B2B8A3),
crypto/libecc/include/libecc/hash/sha2.h
202
(u64)(0x748F82EE5DEFB2FC), (u64)(0x78A5636F43172F60),
crypto/libecc/include/libecc/hash/sha2.h
203
(u64)(0x84C87814A1F0AB72), (u64)(0x8CC702081A6439EC),
crypto/libecc/include/libecc/hash/sha2.h
204
(u64)(0x90BEFFFA23631E28), (u64)(0xA4506CEBDE82BDE9),
crypto/libecc/include/libecc/hash/sha2.h
205
(u64)(0xBEF9A3F7B2C67915), (u64)(0xC67178F2E372532B),
crypto/libecc/include/libecc/hash/sha2.h
206
(u64)(0xCA273ECEEA26619C), (u64)(0xD186B8C721C0C207),
crypto/libecc/include/libecc/hash/sha2.h
207
(u64)(0xEADA7DD6CDE0EB1E), (u64)(0xF57D4F7FEE6ED178),
crypto/libecc/include/libecc/hash/sha2.h
208
(u64)(0x06F067AA72176FBA), (u64)(0x0A637DC5A2C898A6),
crypto/libecc/include/libecc/hash/sha2.h
209
(u64)(0x113F9804BEF90DAE), (u64)(0x1B710B35131C471B),
crypto/libecc/include/libecc/hash/sha2.h
210
(u64)(0x28DB77F523047D84), (u64)(0x32CAAB7B40C72493),
crypto/libecc/include/libecc/hash/sha2.h
211
(u64)(0x3C9EBE0A15C9BEBC), (u64)(0x431D67C49C100D4C),
crypto/libecc/include/libecc/hash/sha2.h
212
(u64)(0x4CC5D4BECB3E42B6), (u64)(0x597F299CFC657E2A),
crypto/libecc/include/libecc/hash/sha2.h
213
(u64)(0x5FCB6FAB3AD6FAEC), (u64)(0x6C44198C4A475817)
crypto/libecc/include/libecc/hash/sha2.h
43
u64 reslow, reshigh;\
crypto/libecc/include/libecc/hash/sha2.h
78
(n) = ( ((u64) (b)[(i) ]) << 56 ) \
crypto/libecc/include/libecc/hash/sha2.h
79
| ( ((u64) (b)[(i) + 1]) << 48 ) \
crypto/libecc/include/libecc/hash/sha2.h
80
| ( ((u64) (b)[(i) + 2]) << 40 ) \
crypto/libecc/include/libecc/hash/sha2.h
81
| ( ((u64) (b)[(i) + 3]) << 32 ) \
crypto/libecc/include/libecc/hash/sha2.h
82
| ( ((u64) (b)[(i) + 4]) << 24 ) \
crypto/libecc/include/libecc/hash/sha2.h
83
| ( ((u64) (b)[(i) + 5]) << 16 ) \
crypto/libecc/include/libecc/hash/sha2.h
84
| ( ((u64) (b)[(i) + 6]) << 8 ) \
crypto/libecc/include/libecc/hash/sha2.h
85
| ( ((u64) (b)[(i) + 7]) ); \
crypto/libecc/include/libecc/hash/sha224.h
62
u64 sha224_total;
crypto/libecc/include/libecc/hash/sha256.h
62
u64 sha256_total;
crypto/libecc/include/libecc/hash/sha3.h
34
u64 sha3_idx;
crypto/libecc/include/libecc/hash/sha3.h
36
u64 sha3_state[KECCAK_SLICES * KECCAK_SLICES];
crypto/libecc/include/libecc/hash/sha384.h
62
u64 sha384_total[2];
crypto/libecc/include/libecc/hash/sha384.h
64
u64 sha384_state[SHA384_STATE_SIZE];
crypto/libecc/include/libecc/hash/sha512_core.h
32
u64 sha512_total[2];
crypto/libecc/include/libecc/hash/sha512_core.h
34
u64 sha512_state[SHA512_CORE_STATE_SIZE];
crypto/libecc/include/libecc/hash/shake.h
29
u64 shake_idx;
crypto/libecc/include/libecc/hash/shake.h
31
u64 shake_state[KECCAK_SLICES * KECCAK_SLICES];
crypto/libecc/include/libecc/hash/sm3.h
56
u64 sm3_total;
crypto/libecc/include/libecc/hash/streebog.h
1208
#define B(x, i, j) ((u64)(((const u8*)&(x))[(i)]) << (8*(j)))
crypto/libecc/include/libecc/hash/streebog.h
1214
ATTRIBUTE_WARN_UNUSED_RET static inline u64 streebog_permute(const u64 in[STREEBOG_BLOCK_U64_SIZE], u8 i)
crypto/libecc/include/libecc/hash/streebog.h
1216
u64 t = 0;
crypto/libecc/include/libecc/hash/streebog.h
1226
static inline void streebog_transform(u64 out[STREEBOG_BLOCK_U64_SIZE],
crypto/libecc/include/libecc/hash/streebog.h
1227
const u64 a[STREEBOG_BLOCK_U64_SIZE],
crypto/libecc/include/libecc/hash/streebog.h
1228
const u64 b[STREEBOG_BLOCK_U64_SIZE])
crypto/libecc/include/libecc/hash/streebog.h
1230
u64 tmp[STREEBOG_BLOCK_U64_SIZE];
crypto/libecc/include/libecc/hash/streebog.h
1243
static inline void gN(u64 h[STREEBOG_BLOCK_U64_SIZE],
crypto/libecc/include/libecc/hash/streebog.h
1244
const u64 m[STREEBOG_BLOCK_U64_SIZE],
crypto/libecc/include/libecc/hash/streebog.h
1245
const u64 N[STREEBOG_BLOCK_U64_SIZE])
crypto/libecc/include/libecc/hash/streebog.h
1247
u64 K[STREEBOG_BLOCK_U64_SIZE];
crypto/libecc/include/libecc/hash/streebog.h
1248
u64 T[STREEBOG_BLOCK_U64_SIZE];
crypto/libecc/include/libecc/hash/streebog.h
1264
static inline void streebog_process(streebog_context *ctx, const u8 *in, u64 num)
crypto/libecc/include/libecc/hash/streebog.h
1266
u64 M[STREEBOG_BLOCK_U64_SIZE];
crypto/libecc/include/libecc/hash/streebog.h
1267
u64 l, CF;
crypto/libecc/include/libecc/hash/streebog.h
170
static const u64 PI[STREEBOG_BLOCK_U64_SIZE][256] = {
crypto/libecc/include/libecc/hash/streebog.h
79
u64 streebog_total;
crypto/libecc/include/libecc/hash/streebog.h
81
u64 h[STREEBOG_BLOCK_U64_SIZE];
crypto/libecc/include/libecc/hash/streebog.h
82
u64 N[STREEBOG_BLOCK_U64_SIZE];
crypto/libecc/include/libecc/hash/streebog.h
83
u64 Sigma[STREEBOG_BLOCK_U64_SIZE];
crypto/libecc/include/libecc/hash/streebog.h
92
static const u64 C_STREEBOG[12][STREEBOG_BLOCK_U64_SIZE] =
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
1174
u_params[i] = (u64)strtoull(rec, NULL, 10);
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
1179
u_params[i] = (u64)strtoll(rec, NULL, 10);
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
321
#define UINT_GENERIC_IN(num) ((u64)*((u64*)params[num]))
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
889
u64 u_params[MAX_PARAMS];
crypto/libecc/src/examples/basic/curve_basic_examples.c
111
u64 t1, t2;
crypto/libecc/src/examples/hash/gostr34_11_94.c
113
u64 C;
crypto/libecc/src/examples/hash/gostr34_11_94.c
115
U[j] = (u64)(U[j] ^ C);
crypto/libecc/src/examples/hash/gostr34_11_94.c
122
W[j] = (u64)(U[j] ^ V[j]);
crypto/libecc/src/examples/hash/gostr34_11_94.c
135
ATTRIBUTE_WARN_UNUSED_RET static inline int gostr34_11_94_block_encryption(const u64 K[GOSTR34_11_94_STATE_SIZE], const u64 P, u64 *E, const u8 sbox[8][16])
crypto/libecc/src/examples/hash/gostr34_11_94.c
191
ATTRIBUTE_WARN_UNUSED_RET static inline int gostr34_11_94_state_encryption(const u64 K[4][GOSTR34_11_94_STATE_SIZE], const u64 H[GOSTR34_11_94_STATE_SIZE], u64 S[GOSTR34_11_94_STATE_SIZE], const u8 sbox[8][16])
crypto/libecc/src/examples/hash/gostr34_11_94.c
220
u64 A[GOSTR34_11_94_STATE_SIZE];
crypto/libecc/src/examples/hash/gostr34_11_94.c
225
ATTRIBUTE_WARN_UNUSED_RET static inline int gostr34_11_94_state_psi(const u64 G[GOSTR34_11_94_STATE_SIZE], u64 G_[GOSTR34_11_94_STATE_SIZE])
crypto/libecc/src/examples/hash/gostr34_11_94.c
237
MUST_HAVE((sizeof(gostr34_11_94_union) == (sizeof(u64) * GOSTR34_11_94_STATE_SIZE)), ret, err);
crypto/libecc/src/examples/hash/gostr34_11_94.c
256
ATTRIBUTE_WARN_UNUSED_RET static inline int gostr34_11_94_state_output_transform(const u64 H[GOSTR34_11_94_STATE_SIZE], const u64 S[GOSTR34_11_94_STATE_SIZE], const u64 M[GOSTR34_11_94_STATE_SIZE], u64 H_[GOSTR34_11_94_STATE_SIZE])
crypto/libecc/src/examples/hash/gostr34_11_94.c
262
ret = local_memcpy(H_, S, GOSTR34_11_94_STATE_SIZE * sizeof(u64)); EG(ret, err);
crypto/libecc/src/examples/hash/gostr34_11_94.c
268
u64 m;
crypto/libecc/src/examples/hash/gostr34_11_94.c
275
H_[i] = (u64)(H_[i] ^ m);
crypto/libecc/src/examples/hash/gostr34_11_94.c
280
u64 h;
crypto/libecc/src/examples/hash/gostr34_11_94.c
287
H_[i] = (u64)(H_[i] ^ h);
crypto/libecc/src/examples/hash/gostr34_11_94.c
301
static inline void gostr34_11_94_256bit_sum(const u64 A[GOSTR34_11_94_STATE_SIZE], const u64 B[GOSTR34_11_94_STATE_SIZE], u64 C[GOSTR34_11_94_STATE_SIZE])
crypto/libecc/src/examples/hash/gostr34_11_94.c
304
u64 tmp, carry1, carry2, _carry;
crypto/libecc/src/examples/hash/gostr34_11_94.c
308
u64 a, b, c;
crypto/libecc/src/examples/hash/gostr34_11_94.c
312
tmp = (u64)(a + b);
crypto/libecc/src/examples/hash/gostr34_11_94.c
313
carry1 = (u64)(tmp < a);
crypto/libecc/src/examples/hash/gostr34_11_94.c
314
c = (u64)(tmp + _carry);
crypto/libecc/src/examples/hash/gostr34_11_94.c
315
carry2 = (u64)(c < tmp);
crypto/libecc/src/examples/hash/gostr34_11_94.c
316
_carry = (u64)(carry1 | carry2);
crypto/libecc/src/examples/hash/gostr34_11_94.c
329
u64 K[4][GOSTR34_11_94_STATE_SIZE];
crypto/libecc/src/examples/hash/gostr34_11_94.c
330
u64 H[GOSTR34_11_94_STATE_SIZE], S[GOSTR34_11_94_STATE_SIZE], M[GOSTR34_11_94_STATE_SIZE];
crypto/libecc/src/examples/hash/gostr34_11_94.c
348
ret = gostr34_11_94_state_encryption((const u64 (*)[4])K, H, S, gostr34_11_94_sbox_norm); EG(ret, err);
crypto/libecc/src/examples/hash/gostr34_11_94.c
352
ret = gostr34_11_94_state_encryption((const u64 (*)[4])K, H, S, gostr34_11_94_sbox_rfc4357); EG(ret, err);
crypto/libecc/src/examples/hash/gostr34_11_94.c
402
ATTRIBUTE_WARN_UNUSED_RET int gostr34_11_94_set_iv(gostr34_11_94_context *ctx, const u64 iv[GOSTR34_11_94_STATE_SIZE])
crypto/libecc/src/examples/hash/gostr34_11_94.c
49
static inline void gostr34_11_94_A(const u64 Y[GOSTR34_11_94_STATE_SIZE], u64 Y_[GOSTR34_11_94_STATE_SIZE])
crypto/libecc/src/examples/hash/gostr34_11_94.c
51
u64 y1, y2, y3, y4;
crypto/libecc/src/examples/hash/gostr34_11_94.c
66
static inline void gostr34_11_94_P(const u64 Y[GOSTR34_11_94_STATE_SIZE], u64 Y_[GOSTR34_11_94_STATE_SIZE])
crypto/libecc/src/examples/hash/gostr34_11_94.c
84
static const u64 gostr34_11_94_C[3][GOSTR34_11_94_STATE_SIZE] = {
crypto/libecc/src/examples/hash/gostr34_11_94.c
91
ATTRIBUTE_WARN_UNUSED_RET static inline int gostr34_11_94_key_generation(const u64 H[GOSTR34_11_94_STATE_SIZE], const u64 M[GOSTR34_11_94_STATE_SIZE], u64 K[4][GOSTR34_11_94_STATE_SIZE])
crypto/libecc/src/examples/hash/gostr34_11_94.c
94
u64 U[GOSTR34_11_94_STATE_SIZE], V[GOSTR34_11_94_STATE_SIZE], W[GOSTR34_11_94_STATE_SIZE];
crypto/libecc/src/examples/hash/gostr34_11_94.h
142
u64 gostr34_11_94_total;
crypto/libecc/src/examples/hash/gostr34_11_94.h
144
u64 gostr34_11_94_state[GOSTR34_11_94_STATE_SIZE];
crypto/libecc/src/examples/hash/gostr34_11_94.h
148
u64 gostr34_11_94_sum[GOSTR34_11_94_STATE_SIZE];
crypto/libecc/src/examples/hash/gostr34_11_94.h
158
ATTRIBUTE_WARN_UNUSED_RET int gostr34_11_94_set_iv(gostr34_11_94_context *ctx, const u64 iv[GOSTR34_11_94_STATE_SIZE]);
crypto/libecc/src/examples/hash/gostr34_11_94.h
67
(n) = ( ((u64) (b)[(i) ]) << 56 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
68
| ( ((u64) (b)[(i) + 1]) << 48 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
69
| ( ((u64) (b)[(i) + 2]) << 40 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
70
| ( ((u64) (b)[(i) + 3]) << 32 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
71
| ( ((u64) (b)[(i) + 4]) << 24 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
72
| ( ((u64) (b)[(i) + 5]) << 16 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
73
| ( ((u64) (b)[(i) + 6]) << 8 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
74
| ( ((u64) (b)[(i) + 7]) ); \
crypto/libecc/src/examples/hash/gostr34_11_94.h
81
(n) = ( ((u64) (b)[(i) + 7]) << 56 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
82
| ( ((u64) (b)[(i) + 6]) << 48 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
83
| ( ((u64) (b)[(i) + 5]) << 40 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
84
| ( ((u64) (b)[(i) + 4]) << 32 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
85
| ( ((u64) (b)[(i) + 3]) << 24 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
86
| ( ((u64) (b)[(i) + 2]) << 16 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
87
| ( ((u64) (b)[(i) + 1]) << 8 ) \
crypto/libecc/src/examples/hash/gostr34_11_94.h
88
| ( ((u64) (b)[(i) ]) ); \
crypto/libecc/src/examples/hash/md2.h
28
u64 md2_total;
crypto/libecc/src/examples/hash/md4.c
193
if (block_present > (MD4_BLOCK_SIZE - 1 - sizeof(u64))) {
crypto/libecc/src/examples/hash/md4.c
196
(2 * MD4_BLOCK_SIZE) - sizeof(u64));
crypto/libecc/src/examples/hash/md4.c
202
MD4_BLOCK_SIZE - sizeof(u64));
crypto/libecc/src/examples/hash/md4.h
104
u64 md4_total;
crypto/libecc/src/examples/hash/md5.c
194
if (block_present > (MD5_BLOCK_SIZE - 1 - sizeof(u64))) {
crypto/libecc/src/examples/hash/md5.c
197
(2 * MD5_BLOCK_SIZE) - sizeof(u64));
crypto/libecc/src/examples/hash/md5.c
203
MD5_BLOCK_SIZE - sizeof(u64));
crypto/libecc/src/examples/hash/md5.h
105
u64 md5_total;
crypto/libecc/src/examples/hash/mdc2.h
36
u64 mdc2_total;
crypto/libecc/src/examples/hash/sha0.c
192
if (block_present > (SHA0_BLOCK_SIZE - 1 - sizeof(u64))) {
crypto/libecc/src/examples/hash/sha0.c
195
(2 * SHA0_BLOCK_SIZE) - sizeof(u64));
crypto/libecc/src/examples/hash/sha0.c
201
SHA0_BLOCK_SIZE - sizeof(u64));
crypto/libecc/src/examples/hash/sha0.h
103
u64 sha0_total;
crypto/libecc/src/examples/hash/sha1.c
192
if (block_present > (SHA1_BLOCK_SIZE - 1 - sizeof(u64))) {
crypto/libecc/src/examples/hash/sha1.c
195
(2 * SHA1_BLOCK_SIZE) - sizeof(u64));
crypto/libecc/src/examples/hash/sha1.c
201
SHA1_BLOCK_SIZE - sizeof(u64));
crypto/libecc/src/examples/hash/sha1.h
103
u64 sha1_total;
crypto/libecc/src/examples/hash/tdes.c
236
static inline void des_round(u32 L[1], u32 R[1], u64 K)
crypto/libecc/src/examples/hash/tdes.c
323
ctx->sk[i] = (((u64)k2) << 32) | (u64)k1;
crypto/libecc/src/examples/hash/tdes.c
326
ctx->sk[15-i] = (((u64)k2) << 32) | (u64)k1;
crypto/libecc/src/examples/hash/tdes.h
26
u64 sk[16]; /* encryption/decryption subkeys */
crypto/libecc/src/examples/sig/rsa/rsa.c
787
u8 *mask, u64 masklen,
crypto/libecc/src/examples/sig/rsa/rsa.c
809
MUST_HAVE((masklen < ((u64)hlen * ((u64)0x1 << 32))), ret, err);
crypto/libecc/src/external_deps/time.c
24
int get_ms_time(u64 *time)
crypto/libecc/src/external_deps/time.c
40
(*time) = (u64)(((tv.tv_sec) * 1000) + ((tv.tv_usec) / 1000));
crypto/libecc/src/external_deps/time.c
51
int get_ms_time(u64 *time)
crypto/libecc/src/external_deps/time.c
62
(*time) = (u64)((((st.wMinute * 60) + st.wSecond) * 1000) + st.wMilliseconds);
crypto/libecc/src/hash/bash.c
43
ctx->bash_block_size = (u8)((BASH_SLICES_X * BASH_SLICES_Y * sizeof(u64)) - (u8)(2 * digest_size));
crypto/libecc/src/hash/bash.c
46
state[(BASH_SLICES_X * BASH_SLICES_Y * sizeof(u64)) - sizeof(u64)] = (u8)digest_size;
crypto/libecc/src/hash/belt-hash.c
286
u64 a0, a1, b, c;
crypto/libecc/src/hash/belt-hash.c
291
b = (u64)(len_bytes << 3);
crypto/libecc/src/hash/ripemd160.c
279
if (block_present > (RIPEMD160_BLOCK_SIZE - 1 - sizeof(u64))) {
crypto/libecc/src/hash/ripemd160.c
282
(2 * RIPEMD160_BLOCK_SIZE) - sizeof(u64));
crypto/libecc/src/hash/ripemd160.c
288
RIPEMD160_BLOCK_SIZE - sizeof(u64));
crypto/libecc/src/hash/sha224.c
169
if (block_present > (SHA224_BLOCK_SIZE - 1 - sizeof(u64))) {
crypto/libecc/src/hash/sha224.c
172
(2 * SHA224_BLOCK_SIZE) - sizeof(u64));
crypto/libecc/src/hash/sha224.c
178
SHA224_BLOCK_SIZE - sizeof(u64));
crypto/libecc/src/hash/sha256.c
169
if (block_present > (SHA256_BLOCK_SIZE - 1 - sizeof(u64))) {
crypto/libecc/src/hash/sha256.c
172
(2 * SHA256_BLOCK_SIZE) - sizeof(u64));
crypto/libecc/src/hash/sha256.c
178
SHA256_BLOCK_SIZE - sizeof(u64));
crypto/libecc/src/hash/sha3.c
40
ctx->sha3_block_size = (u8)((KECCAK_SLICES * KECCAK_SLICES * sizeof(u64)) - (u8)(2 * digest_size));
crypto/libecc/src/hash/sha3.c
61
u64 idx = (ctx->sha3_endian == SHA3_LITTLE) ? ctx->sha3_idx : SWAP64_Idx(ctx->sha3_idx);
crypto/libecc/src/hash/sha384.c
172
if (block_present > (SHA384_BLOCK_SIZE - 1 - (2 * sizeof(u64)))) {
crypto/libecc/src/hash/sha384.c
176
2 * (SHA384_BLOCK_SIZE - sizeof(u64)));
crypto/libecc/src/hash/sha384.c
183
SHA384_BLOCK_SIZE - (2 * sizeof(u64)));
crypto/libecc/src/hash/sha384.c
25
u64 a, b, c, d, e, f, g, h;
crypto/libecc/src/hash/sha384.c
26
u64 W[80];
crypto/libecc/src/hash/sha384.c
77
ctx->sha384_state[0] = (u64)(0xCBBB9D5DC1059ED8);
crypto/libecc/src/hash/sha384.c
78
ctx->sha384_state[1] = (u64)(0x629A292A367CD507);
crypto/libecc/src/hash/sha384.c
79
ctx->sha384_state[2] = (u64)(0x9159015A3070DD17);
crypto/libecc/src/hash/sha384.c
80
ctx->sha384_state[3] = (u64)(0x152FECD8F70E5939);
crypto/libecc/src/hash/sha384.c
81
ctx->sha384_state[4] = (u64)(0x67332667FFC00B31);
crypto/libecc/src/hash/sha384.c
82
ctx->sha384_state[5] = (u64)(0x8EB44A8768581511);
crypto/libecc/src/hash/sha384.c
83
ctx->sha384_state[6] = (u64)(0xDB0C2E0D64F98FA7);
crypto/libecc/src/hash/sha384.c
84
ctx->sha384_state[7] = (u64)(0x47B5481DBEFA4FA4);
crypto/libecc/src/hash/sha512-224.c
29
ctx->sha512_state[0] = (u64)(0x8C3D37C819544DA2);
crypto/libecc/src/hash/sha512-224.c
30
ctx->sha512_state[1] = (u64)(0x73E1996689DCD4D6);
crypto/libecc/src/hash/sha512-224.c
31
ctx->sha512_state[2] = (u64)(0x1DFAB7AE32FF9C82);
crypto/libecc/src/hash/sha512-224.c
32
ctx->sha512_state[3] = (u64)(0x679DD514582F9FCF);
crypto/libecc/src/hash/sha512-224.c
33
ctx->sha512_state[4] = (u64)(0x0F6D2B697BD44DA8);
crypto/libecc/src/hash/sha512-224.c
34
ctx->sha512_state[5] = (u64)(0x77E36F7304C48942);
crypto/libecc/src/hash/sha512-224.c
35
ctx->sha512_state[6] = (u64)(0x3F9D85A86A1D36C8);
crypto/libecc/src/hash/sha512-224.c
36
ctx->sha512_state[7] = (u64)(0x1112E6AD91D692A1);
crypto/libecc/src/hash/sha512-256.c
29
ctx->sha512_state[0] = (u64)(0x22312194FC2BF72C);
crypto/libecc/src/hash/sha512-256.c
30
ctx->sha512_state[1] = (u64)(0x9F555FA3C84C64C2);
crypto/libecc/src/hash/sha512-256.c
31
ctx->sha512_state[2] = (u64)(0x2393B86B6F53B151);
crypto/libecc/src/hash/sha512-256.c
32
ctx->sha512_state[3] = (u64)(0x963877195940EABD);
crypto/libecc/src/hash/sha512-256.c
33
ctx->sha512_state[4] = (u64)(0x96283EE2A88EFFE3);
crypto/libecc/src/hash/sha512-256.c
34
ctx->sha512_state[5] = (u64)(0xBE5E1E2553863992);
crypto/libecc/src/hash/sha512-256.c
35
ctx->sha512_state[6] = (u64)(0x2B0199FC2C85B8AA);
crypto/libecc/src/hash/sha512-256.c
36
ctx->sha512_state[7] = (u64)(0x0EB72DDC81C52CA2);
crypto/libecc/src/hash/sha512.c
29
ctx->sha512_state[0] = (u64)(0x6A09E667F3BCC908);
crypto/libecc/src/hash/sha512.c
30
ctx->sha512_state[1] = (u64)(0xBB67AE8584CAA73B);
crypto/libecc/src/hash/sha512.c
31
ctx->sha512_state[2] = (u64)(0x3C6EF372FE94F82B);
crypto/libecc/src/hash/sha512.c
32
ctx->sha512_state[3] = (u64)(0xA54FF53A5F1D36F1);
crypto/libecc/src/hash/sha512.c
33
ctx->sha512_state[4] = (u64)(0x510E527FADE682D1);
crypto/libecc/src/hash/sha512.c
34
ctx->sha512_state[5] = (u64)(0x9B05688C2B3E6C1F);
crypto/libecc/src/hash/sha512.c
35
ctx->sha512_state[6] = (u64)(0x1F83D9ABFB41BD6B);
crypto/libecc/src/hash/sha512.c
36
ctx->sha512_state[7] = (u64)(0x5BE0CD19137E2179);
crypto/libecc/src/hash/sha512_core.c
139
if (block_present > (SHA512_CORE_BLOCK_SIZE - 1 - (2 * sizeof(u64)))) {
crypto/libecc/src/hash/sha512_core.c
143
2 * (SHA512_CORE_BLOCK_SIZE - sizeof(u64)));
crypto/libecc/src/hash/sha512_core.c
150
SHA512_CORE_BLOCK_SIZE - (2 * sizeof(u64)));
crypto/libecc/src/hash/sha512_core.c
24
u64 a, b, c, d, e, f, g, h;
crypto/libecc/src/hash/sha512_core.c
25
u64 W[80];
crypto/libecc/src/hash/shake.c
48
u64 idx = (ctx->shake_endian == SHAKE_LITTLE) ? ctx->shake_idx : SWAP64_Idx(ctx->shake_idx);
crypto/libecc/src/hash/sm3.c
288
if (block_present > (SM3_BLOCK_SIZE - 1 - sizeof(u64))) {
crypto/libecc/src/hash/sm3.c
291
(2 * SM3_BLOCK_SIZE) - sizeof(u64));
crypto/libecc/src/hash/sm3.c
297
SM3_BLOCK_SIZE - sizeof(u64));
crypto/libecc/src/hash/streebog.c
107
u64 Z[STREEBOG_BLOCK_U64_SIZE];
crypto/libecc/src/sig/bip0340.c
1053
u64 expected_len;
crypto/libecc/src/sig/ecfsdsa.c
863
u64 expected_len;
crypto/libecc/src/sig/eddsa.c
2612
u64 expected_len;
crypto/libecc/src/tests/ec_self_tests_core.c
1617
u64 time1, time2, cumulated_time_sign, cumulated_time_verify, cumulated_time_batch_verify;
crypto/libecc/src/tests/ec_utils.c
502
if ((u64)size > (u64)(0xffffffff)) {
crypto/libecc/src/utils/utils_rand.c
17
static u64 seed = 0;
crypto/libecc/src/utils/utils_rand.c
21
u64 a, b;
crypto/libecc/src/utils/utils_rand.c
23
a = (u64)2862933555777941757;
crypto/libecc/src/utils/utils_rand.c
24
b = (u64)3037000493;
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c
47
u_int64_t u64;
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c
55
sshbuf_get_u64(p1, &u64);
crypto/openssl/crypto/aes/aes_core.c
236
static void SubLong(u64 *w)
crypto/openssl/crypto/aes/aes_core.c
238
u64 x, y, a1, a2, a3, a4, a5, a6;
crypto/openssl/crypto/aes/aes_core.c
330
static void InvSubLong(u64 *w)
crypto/openssl/crypto/aes/aes_core.c
332
u64 x, y, a1, a2, a3, a4, a5, a6;
crypto/openssl/crypto/aes/aes_core.c
425
static void ShiftRows(u64 *state)
crypto/openssl/crypto/aes/aes_core.c
444
static void InvShiftRows(u64 *state)
crypto/openssl/crypto/aes/aes_core.c
463
static void MixColumns(u64 *state)
crypto/openssl/crypto/aes/aes_core.c
491
static void InvMixColumns(u64 *state)
crypto/openssl/crypto/aes/aes_core.c
527
static void AddRoundKey(u64 *state, const u64 *w)
crypto/openssl/crypto/aes/aes_core.c
534
const u64 *w, int nr)
crypto/openssl/crypto/aes/aes_core.c
536
u64 state[2];
crypto/openssl/crypto/aes/aes_core.c
560
const u64 *w, int nr)
crypto/openssl/crypto/aes/aes_core.c
563
u64 state[2];
crypto/openssl/crypto/aes/aes_core.c
599
static void KeyExpansion(const unsigned char *key, u64 *w,
crypto/openssl/crypto/aes/aes_core.c
634
u64 *rk;
crypto/openssl/crypto/aes/aes_core.c
641
rk = (u64 *)key->rd_key;
crypto/openssl/crypto/aes/aes_core.c
66
u64 d;
crypto/openssl/crypto/aes/aes_core.c
670
const u64 *rk;
crypto/openssl/crypto/aes/aes_core.c
673
rk = (u64 *)key->rd_key;
crypto/openssl/crypto/aes/aes_core.c
685
const u64 *rk;
crypto/openssl/crypto/aes/aes_core.c
688
rk = (u64 *)key->rd_key;
crypto/openssl/crypto/aes/aes_core.c
86
static void XtimeLong(u64 *w)
crypto/openssl/crypto/aes/aes_core.c
88
u64 a, b;
crypto/openssl/crypto/aes/aes_x86core.c
115
#define Te0 (u32)((u64 *)((u8 *)Te + 0))
crypto/openssl/crypto/aes/aes_x86core.c
116
#define Te1 (u32)((u64 *)((u8 *)Te + 3))
crypto/openssl/crypto/aes/aes_x86core.c
117
#define Te2 (u32)((u64 *)((u8 *)Te + 2))
crypto/openssl/crypto/aes/aes_x86core.c
118
#define Te3 (u32)((u64 *)((u8 *)Te + 1))
crypto/openssl/crypto/aes/aes_x86core.c
127
#define Td0 (u32)((u64 *)((u8 *)Td + 0))
crypto/openssl/crypto/aes/aes_x86core.c
128
#define Td1 (u32)((u64 *)((u8 *)Td + 3))
crypto/openssl/crypto/aes/aes_x86core.c
129
#define Td2 (u32)((u64 *)((u8 *)Td + 2))
crypto/openssl/crypto/aes/aes_x86core.c
130
#define Td3 (u32)((u64 *)((u8 *)Td + 1))
crypto/openssl/crypto/aes/aes_x86core.c
132
static const u64 Te[256] = {
crypto/openssl/crypto/aes/aes_x86core.c
298
static const u64 Td[256] = {
crypto/openssl/crypto/ec/ecp_nistp224.c
1090
static void select_point(const u64 idx, unsigned int size,
crypto/openssl/crypto/ec/ecp_nistp224.c
1099
u64 mask = i ^ idx;
crypto/openssl/crypto/ec/ecp_nistp224.c
1135
u64 bits;
crypto/openssl/crypto/ec/ecp_nistp256.c
118
typedef u64 smallfelem[NLIMBS];
crypto/openssl/crypto/ec/ecp_nistp256.c
121
static const u64 kPrime[4] = {
crypto/openssl/crypto/ec/ecp_nistp256.c
1212
const u64 mask64 = mask;
crypto/openssl/crypto/ec/ecp_nistp256.c
124
static const u64 bottom63bits = 0x7ffffffffffffffful;
crypto/openssl/crypto/ec/ecp_nistp256.c
132
out[0] = *((u64 *)&in[0]);
crypto/openssl/crypto/ec/ecp_nistp256.c
133
out[1] = *((u64 *)&in[8]);
crypto/openssl/crypto/ec/ecp_nistp256.c
134
out[2] = *((u64 *)&in[16]);
crypto/openssl/crypto/ec/ecp_nistp256.c
135
out[3] = *((u64 *)&in[24]);
crypto/openssl/crypto/ec/ecp_nistp256.c
144
*((u64 *)&out[0]) = in[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
145
*((u64 *)&out[8]) = in[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
146
*((u64 *)&out[16]) = in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
147
*((u64 *)&out[24]) = in[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
1631
static void select_point(const u64 idx, unsigned int size,
crypto/openssl/crypto/ec/ecp_nistp256.c
1635
u64 *outlimbs = &out[0][0];
crypto/openssl/crypto/ec/ecp_nistp256.c
1640
const u64 *inlimbs = (u64 *)&pre_comp[i][0][0];
crypto/openssl/crypto/ec/ecp_nistp256.c
1641
u64 mask = i ^ idx;
crypto/openssl/crypto/ec/ecp_nistp256.c
1677
u64 bits;
crypto/openssl/crypto/ec/ecp_nistp256.c
225
static void felem_scalar(felem out, const u64 scalar)
crypto/openssl/crypto/ec/ecp_nistp256.c
234
static void longfelem_scalar(longfelem out, const u64 scalar)
crypto/openssl/crypto/ec/ecp_nistp256.c
379
u64 a, b, mask;
crypto/openssl/crypto/ec/ecp_nistp256.c
380
u64 high, low;
crypto/openssl/crypto/ec/ecp_nistp256.c
381
static const u64 kPrime3Test = 0x7fffffff00000001ul; /* 2^63 - 2^32 + 1 */
crypto/openssl/crypto/ec/ecp_nistp256.c
384
tmp[3] = zero110[3] + in[3] + ((u64)(in[2] >> 64));
crypto/openssl/crypto/ec/ecp_nistp256.c
387
tmp[2] = zero110[2] + (u64)in[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
397
tmp[3] = (u64)tmp[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
405
tmp[3] = (u64)tmp[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
421
high = (u64)(tmp[3] >> 64);
crypto/openssl/crypto/ec/ecp_nistp256.c
429
low = (u64)tmp[3];
crypto/openssl/crypto/ec/ecp_nistp256.c
453
tmp[1] += ((u64)(tmp[0] >> 64));
crypto/openssl/crypto/ec/ecp_nistp256.c
454
tmp[0] = (u64)tmp[0];
crypto/openssl/crypto/ec/ecp_nistp256.c
455
tmp[2] += ((u64)(tmp[1] >> 64));
crypto/openssl/crypto/ec/ecp_nistp256.c
456
tmp[1] = (u64)tmp[1];
crypto/openssl/crypto/ec/ecp_nistp256.c
457
tmp[3] += ((u64)(tmp[2] >> 64));
crypto/openssl/crypto/ec/ecp_nistp256.c
458
tmp[2] = (u64)tmp[2];
crypto/openssl/crypto/ec/ecp_nistp256.c
486
u64 high, low;
crypto/openssl/crypto/ec/ecp_nistp256.c
564
u64 small[4];
crypto/openssl/crypto/ec/ecp_nistp256.c
581
u64 high, low;
crypto/openssl/crypto/ec/ecp_nistp256.c
830
static void subtract_u64(u64 *result, u64 *carry, u64 v)
crypto/openssl/crypto/ec/ecp_nistp256.c
835
*result = (u64)r;
crypto/openssl/crypto/ec/ecp_nistp256.c
845
u64 all_equal_so_far = 0, result = 0, carry;
crypto/openssl/crypto/ec/ecp_nistp256.c
858
u64 equal;
crypto/openssl/crypto/ec/ecp_nistp256.c
864
result |= all_equal_so_far & ((u64)(a >> 64));
crypto/openssl/crypto/ec/ecp_nistp256.c
935
u64 is_p;
crypto/openssl/crypto/ec/ecp_nistp256.c
937
u64 is_zero = small[0] | small[1] | small[2] | small[3];
crypto/openssl/crypto/ec/ecp_nistp521.c
524
u64 overflow1, overflow2;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
154
u64 iv[2];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
168
u64 q[16];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c
177
u64 seqnum;
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
148
u64 iv[2];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
162
u64 q[16];
crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha256.c
171
u64 seqnum;
crypto/openssl/crypto/modes/ccm128.c
147
u64 u[2];
crypto/openssl/crypto/modes/ccm128.c
16
typedef u64 u64_a1 __attribute((__aligned__(1)));
crypto/openssl/crypto/modes/ccm128.c
173
u64 u[2];
crypto/openssl/crypto/modes/ccm128.c
18
typedef u64 u64_a1;
crypto/openssl/crypto/modes/ccm128.c
231
u64 u[2];
crypto/openssl/crypto/modes/ccm128.c
253
u64 u[2];
crypto/openssl/crypto/modes/ccm128.c
320
u64 u[2];
crypto/openssl/crypto/modes/ccm128.c
384
u64 u[2];
crypto/openssl/crypto/modes/gcm128.c
1002
u64 mlen = ctx->len.u[1];
crypto/openssl/crypto/modes/gcm128.c
1238
u64 mlen = ctx->len.u[1];
crypto/openssl/crypto/modes/gcm128.c
1392
u64 mlen = ctx->len.u[1];
crypto/openssl/crypto/modes/gcm128.c
1547
u64 alen = ctx->len.u[0] << 3;
crypto/openssl/crypto/modes/gcm128.c
1548
u64 clen = ctx->len.u[1] << 3;
crypto/openssl/crypto/modes/gcm128.c
1581
alen = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/gcm128.c
1582
clen = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/gcm128.c
168
static void gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16])
crypto/openssl/crypto/modes/gcm128.c
189
Z.hi ^= (u64)rem_4bit[rem] << 32;
crypto/openssl/crypto/modes/gcm128.c
207
Z.hi ^= (u64)rem_4bit[rem] << 32;
crypto/openssl/crypto/modes/gcm128.c
246
static void gcm_ghash_4bit(u64 Xi[2], const u128 Htable[16],
crypto/openssl/crypto/modes/gcm128.c
271
Z.hi ^= (u64)rem_4bit[rem] << 32;
crypto/openssl/crypto/modes/gcm128.c
290
Z.hi ^= (u64)rem_4bit[rem] << 32;
crypto/openssl/crypto/modes/gcm128.c
324
void gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
325
void gcm_ghash_4bit(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/crypto/modes/gcm128.c
344
void gcm_init_clmul(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
345
void gcm_gmult_clmul(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
346
void gcm_ghash_clmul(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/crypto/modes/gcm128.c
354
void gcm_init_avx(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
355
void gcm_gmult_avx(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
356
void gcm_ghash_avx(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/crypto/modes/gcm128.c
362
void gcm_gmult_4bit_mmx(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
363
void gcm_ghash_4bit_mmx(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/crypto/modes/gcm128.c
366
void gcm_gmult_4bit_x86(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
367
void gcm_ghash_4bit_x86(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/crypto/modes/gcm128.c
378
void gcm_init_neon(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
379
void gcm_gmult_neon(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
380
void gcm_ghash_neon(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/crypto/modes/gcm128.c
382
void gcm_init_v8(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
383
void gcm_gmult_v8(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
384
void gcm_ghash_v8(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/crypto/modes/gcm128.c
390
void gcm_init_vis3(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
391
void gcm_gmult_vis3(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
392
void gcm_ghash_vis3(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/crypto/modes/gcm128.c
397
void gcm_init_p8(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
398
void gcm_gmult_p8(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
399
void gcm_ghash_p8(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/crypto/modes/gcm128.c
40
u64 T = U64(0xe100000000000000) & (0 - (V.lo & 1)); \
crypto/openssl/crypto/modes/gcm128.c
405
void gcm_init_rv64i_zbc(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
406
void gcm_init_rv64i_zbc__zbb(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
407
void gcm_init_rv64i_zbc__zbkb(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
408
void gcm_gmult_rv64i_zbc(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
409
void gcm_gmult_rv64i_zbc__zbkb(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
410
void gcm_ghash_rv64i_zbc(u64 Xi[2], const u128 Htable[16],
crypto/openssl/crypto/modes/gcm128.c
412
void gcm_ghash_rv64i_zbc__zbkb(u64 Xi[2], const u128 Htable[16],
crypto/openssl/crypto/modes/gcm128.c
415
void gcm_init_rv64i_zvkb_zvbc(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
416
void gcm_gmult_rv64i_zvkb_zvbc(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
417
void gcm_ghash_rv64i_zvkb_zvbc(u64 Xi[2], const u128 Htable[16],
crypto/openssl/crypto/modes/gcm128.c
420
void gcm_init_rv64i_zvkg(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
421
void gcm_init_rv64i_zvkg_zvkb(u128 Htable[16], const u64 Xi[2]);
crypto/openssl/crypto/modes/gcm128.c
422
void gcm_gmult_rv64i_zvkg(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/crypto/modes/gcm128.c
423
void gcm_ghash_rv64i_zvkg(u64 Xi[2], const u128 Htable[16],
crypto/openssl/crypto/modes/gcm128.c
46
V.hi = (V.hi >> 1) ^ ((u64)T << 32); \
crypto/openssl/crypto/modes/gcm128.c
563
void ossl_gcm_init_4bit(u128 Htable[16], const u64 H[2])
crypto/openssl/crypto/modes/gcm128.c
571
void ossl_gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16])
crypto/openssl/crypto/modes/gcm128.c
579
void ossl_gcm_ghash_4bit(u64 Xi[2], const u128 Htable[16],
crypto/openssl/crypto/modes/gcm128.c
583
u64 tmp[2];
crypto/openssl/crypto/modes/gcm128.c
617
u64 hi, lo;
crypto/openssl/crypto/modes/gcm128.c
618
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/gcm128.c
619
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/gcm128.c
649
u64 len0 = len;
crypto/openssl/crypto/modes/gcm128.c
721
u64 alen = ctx->len.u[0];
crypto/openssl/crypto/modes/gcm128.c
777
u64 mlen = ctx->len.u[1];
crypto/openssl/crypto/modes/gcm128.c
88
static void gcm_init_4bit(u128 Htable[16], const u64 H[2])
crypto/openssl/crypto/modes/ocb128.c
20
static u32 ocb_ntz(u64 n)
crypto/openssl/crypto/modes/ocb128.c
266
u64 i, all_num_blocks;
crypto/openssl/crypto/modes/ocb128.c
328
u64 i, all_num_blocks;
crypto/openssl/crypto/modes/ocb128.c
423
u64 i, all_num_blocks;
crypto/openssl/crypto/modes/xts128.c
106
u64 u[2];
crypto/openssl/crypto/modes/xts128.c
17
typedef u64 u64_a1 __attribute((__aligned__(1)));
crypto/openssl/crypto/modes/xts128.c
19
typedef u64 u64_a1;
crypto/openssl/crypto/modes/xts128.c
30
u64 u[2];
crypto/openssl/crypto/modes/xts128gb.c
125
u64 u[2];
crypto/openssl/crypto/modes/xts128gb.c
131
u64 hi, lo;
crypto/openssl/crypto/modes/xts128gb.c
138
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
139
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/xts128gb.c
152
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
153
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/xts128gb.c
17
typedef u64 u64_a1 __attribute((__aligned__(1)));
crypto/openssl/crypto/modes/xts128gb.c
19
typedef u64 u64_a1;
crypto/openssl/crypto/modes/xts128gb.c
30
u64 u[2];
crypto/openssl/crypto/modes/xts128gb.c
73
u64 hi, lo;
crypto/openssl/crypto/modes/xts128gb.c
80
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
81
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/modes/xts128gb.c
94
hi = (u64)GETU32(p) << 32 | GETU32(p + 4);
crypto/openssl/crypto/modes/xts128gb.c
95
lo = (u64)GETU32(p + 8) << 32 | GETU32(p + 12);
crypto/openssl/crypto/params.c
1180
uint64_t u64;
crypto/openssl/crypto/params.c
1201
u64 = *(const uint64_t *)p->data;
crypto/openssl/crypto/params.c
1202
if ((u64 >> real_shift()) == 0) {
crypto/openssl/crypto/params.c
1203
*val = (double)u64;
crypto/openssl/crypto/params.c
1216
u64 = i64 < 0 ? -i64 : i64;
crypto/openssl/crypto/params.c
1217
if ((u64 >> real_shift()) == 0) {
crypto/openssl/crypto/params.c
427
uint64_t u64;
crypto/openssl/crypto/params.c
439
u64 = *(const uint64_t *)p->data;
crypto/openssl/crypto/params.c
440
if (u64 <= INT32_MAX) {
crypto/openssl/crypto/params.c
441
*val = (int32_t)u64;
crypto/openssl/crypto/params.c
560
uint64_t u64;
crypto/openssl/crypto/params.c
567
u64 = *(const uint64_t *)p->data;
crypto/openssl/crypto/params.c
568
if (u64 <= UINT32_MAX) {
crypto/openssl/crypto/params.c
569
*val = (uint32_t)u64;
crypto/openssl/crypto/params.c
730
uint64_t u64;
crypto/openssl/crypto/params.c
737
u64 = *(const uint64_t *)p->data;
crypto/openssl/crypto/params.c
738
if (u64 <= INT64_MAX) {
crypto/openssl/crypto/params.c
739
*val = (int64_t)u64;
crypto/openssl/crypto/params.c
829
uint64_t u64;
crypto/openssl/crypto/params.c
837
u64 = val < 0 ? -val : val;
crypto/openssl/crypto/params.c
838
if ((u64 >> real_shift()) == 0) {
crypto/openssl/crypto/poly1305/poly1305.c
100
u64 r[2];
crypto/openssl/crypto/poly1305/poly1305.c
104
static u64 U8TOU64(const unsigned char *p)
crypto/openssl/crypto/poly1305/poly1305.c
106
return (((u64)(p[0] & 0xff)) | ((u64)(p[1] & 0xff) << 8) | ((u64)(p[2] & 0xff) << 16) | ((u64)(p[3] & 0xff) << 24) | ((u64)(p[4] & 0xff) << 32) | ((u64)(p[5] & 0xff) << 40) | ((u64)(p[6] & 0xff) << 48) | ((u64)(p[7] & 0xff) << 56));
crypto/openssl/crypto/poly1305/poly1305.c
110
static void U64TO8(unsigned char *p, u64 v)
crypto/openssl/crypto/poly1305/poly1305.c
140
u64 r0, r1;
crypto/openssl/crypto/poly1305/poly1305.c
141
u64 s1;
crypto/openssl/crypto/poly1305/poly1305.c
142
u64 h0, h1, h2, c;
crypto/openssl/crypto/poly1305/poly1305.c
156
h0 = (u64)(d0 = (u128)h0 + U8TOU64(inp + 0));
crypto/openssl/crypto/poly1305/poly1305.c
157
h1 = (u64)(d1 = (u128)h1 + (d0 >> 64) + U8TOU64(inp + 8));
crypto/openssl/crypto/poly1305/poly1305.c
162
h2 += (u64)(d1 >> 64) + padbit;
crypto/openssl/crypto/poly1305/poly1305.c
171
h0 = (u64)d0;
crypto/openssl/crypto/poly1305/poly1305.c
172
h1 = (u64)(d1 += d0 >> 64);
crypto/openssl/crypto/poly1305/poly1305.c
173
h2 += (u64)(d1 >> 64);
crypto/openssl/crypto/poly1305/poly1305.c
203
u64 h0, h1, h2;
crypto/openssl/crypto/poly1305/poly1305.c
204
u64 g0, g1, g2;
crypto/openssl/crypto/poly1305/poly1305.c
206
u64 mask;
crypto/openssl/crypto/poly1305/poly1305.c
213
g0 = (u64)(t = (u128)h0 + 5);
crypto/openssl/crypto/poly1305/poly1305.c
214
g1 = (u64)(t = (u128)h1 + (t >> 64));
crypto/openssl/crypto/poly1305/poly1305.c
215
g2 = h2 + (u64)(t >> 64);
crypto/openssl/crypto/poly1305/poly1305.c
226
h0 = (u64)(t = (u128)h0 + nonce[0] + ((u64)nonce[1] << 32));
crypto/openssl/crypto/poly1305/poly1305.c
227
h1 = (u64)(t = (u128)h1 + nonce[2] + ((u64)nonce[3] << 32) + (t >> 64));
crypto/openssl/crypto/poly1305/poly1305.c
282
u64 d0, d1, d2, d3;
crypto/openssl/crypto/poly1305/poly1305.c
301
h0 = (u32)(d0 = (u64)h0 + U8TOU32(inp + 0));
crypto/openssl/crypto/poly1305/poly1305.c
302
h1 = (u32)(d1 = (u64)h1 + (d0 >> 32) + U8TOU32(inp + 4));
crypto/openssl/crypto/poly1305/poly1305.c
303
h2 = (u32)(d2 = (u64)h2 + (d1 >> 32) + U8TOU32(inp + 8));
crypto/openssl/crypto/poly1305/poly1305.c
304
h3 = (u32)(d3 = (u64)h3 + (d2 >> 32) + U8TOU32(inp + 12));
crypto/openssl/crypto/poly1305/poly1305.c
308
d0 = ((u64)h0 * r0) + ((u64)h1 * s3) + ((u64)h2 * s2) + ((u64)h3 * s1);
crypto/openssl/crypto/poly1305/poly1305.c
309
d1 = ((u64)h0 * r1) + ((u64)h1 * r0) + ((u64)h2 * s3) + ((u64)h3 * s2) + (h4 * s1);
crypto/openssl/crypto/poly1305/poly1305.c
310
d2 = ((u64)h0 * r2) + ((u64)h1 * r1) + ((u64)h2 * r0) + ((u64)h3 * s3) + (h4 * s2);
crypto/openssl/crypto/poly1305/poly1305.c
311
d3 = ((u64)h0 * r3) + ((u64)h1 * r2) + ((u64)h2 * r1) + ((u64)h3 * r0) + (h4 * s3);
crypto/openssl/crypto/poly1305/poly1305.c
356
u64 t;
crypto/openssl/crypto/poly1305/poly1305.c
366
g0 = (u32)(t = (u64)h0 + 5);
crypto/openssl/crypto/poly1305/poly1305.c
367
g1 = (u32)(t = (u64)h1 + (t >> 32));
crypto/openssl/crypto/poly1305/poly1305.c
368
g2 = (u32)(t = (u64)h2 + (t >> 32));
crypto/openssl/crypto/poly1305/poly1305.c
369
g3 = (u32)(t = (u64)h3 + (t >> 32));
crypto/openssl/crypto/poly1305/poly1305.c
385
h0 = (u32)(t = (u64)h0 + nonce[0]);
crypto/openssl/crypto/poly1305/poly1305.c
386
h1 = (u32)(t = (u64)h1 + (t >> 32) + nonce[1]);
crypto/openssl/crypto/poly1305/poly1305.c
387
h2 = (u32)(t = (u64)h2 + (t >> 32) + nonce[2]);
crypto/openssl/crypto/poly1305/poly1305.c
388
h3 = (u32)(t = (u64)h3 + (t >> 32) + nonce[3]);
crypto/openssl/crypto/poly1305/poly1305.c
99
u64 h[3];
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
112
h0 = (u64)d0 & 0x0fffffffffff;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
113
h1 = (u64)(d1 += (u64)(d0 >> 44)) & 0x0fffffffffff;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
114
h2 = (u64)(d2 += (u64)(d1 >> 44)) & 0x03ffffffffff; /* last 42 bits */
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
131
u64 h0, h1, h2;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
132
u64 g0, g1, g2;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
134
u64 mask;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
141
h0 = (u64)(t = (u128)h0 + (h1 << 44));
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
143
h1 = (u64)(t = (u128)h1 + (h2 << 24) + (t >> 64));
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
145
h2 += (u64)(t >> 64);
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
148
g0 = (u64)(t = (u128)h0 + 5);
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
149
g1 = (u64)(t = (u128)h1 + (t >> 64));
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
150
g2 = h2 + (u64)(t >> 64);
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
161
h0 = (u64)(t = (u128)h0 + nonce[0] + ((u64)nonce[1] << 32));
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
162
h1 = (u64)(t = (u128)h1 + nonce[2] + ((u64)nonce[3] << 32) + (t >> 64));
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
24
u64 h[3];
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
25
u64 s[2];
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
26
u64 r[3];
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
32
static u64 U8TOU64(const unsigned char *p)
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
34
return (((u64)(p[0] & 0xff)) | ((u64)(p[1] & 0xff) << 8) | ((u64)(p[2] & 0xff) << 16) | ((u64)(p[3] & 0xff) << 24) | ((u64)(p[4] & 0xff) << 32) | ((u64)(p[5] & 0xff) << 40) | ((u64)(p[6] & 0xff) << 48) | ((u64)(p[7] & 0xff) << 56));
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
38
static void U64TO8(unsigned char *p, u64 v)
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
53
u64 r0, r1;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
78
u64 r0, r1, r2;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
79
u64 s1, s2;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
80
u64 h0, h1, h2, c;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
82
u64 pad = (u64)padbit << 40;
crypto/openssl/crypto/poly1305/poly1305_base2_44.c
96
u64 m0, m1;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
101
static const u64 one = 1;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
105
static const u64 fsr = 1ULL << 30;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
150
u64 fsr_orig;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
224
u64 pad = (u64)padbit << 32;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
265
u64 fsr_orig;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
428
u64 h0, h1, h2, h3, h4;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
430
u64 t;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
478
g0 = (u32)(t = (u64)g0 + nonce[0]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
479
g1 = (u32)(t = (u64)g1 + (t >> 32) + nonce[1]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
480
g2 = (u32)(t = (u64)g2 + (t >> 32) + nonce[2]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
481
g3 = (u32)(t = (u64)g3 + (t >> 32) + nonce[3]);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
60
u64 u;
crypto/openssl/crypto/whrlpool/wp_block.c
117
#define ROTATE(a, n) ({ u64 ret; asm ("rolq %1,%0" \
crypto/openssl/crypto/whrlpool/wp_block.c
127
#define ROTATE(a, n) ({ u64 ret; asm ("rorq %1,%0" \
crypto/openssl/crypto/whrlpool/wp_block.c
132
#define ROTATE(a, n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \
crypto/openssl/crypto/whrlpool/wp_block.c
135
#define ROTATE(a, n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \
crypto/openssl/crypto/whrlpool/wp_block.c
213
#define C0(K, i) (((u64 *)(Cx.c + 0))[2 * K.c[(i) * 8 + 0]])
crypto/openssl/crypto/whrlpool/wp_block.c
224
u8 c[(256 * N + ROUNDS) * sizeof(u64)];
crypto/openssl/crypto/whrlpool/wp_block.c
225
u64 q[(256 * N + ROUNDS)];
crypto/openssl/crypto/whrlpool/wp_block.c
501
u64 q[8];
crypto/openssl/crypto/whrlpool/wp_block.c
510
u64 L[8];
crypto/openssl/crypto/whrlpool/wp_block.c
529
u64 L0, L1, L2, L3, L4, L5, L6, L7;
crypto/openssl/crypto/whrlpool/wp_block.c
72
typedef u64 u64_a1 __attribute((__aligned__(1)));
crypto/openssl/crypto/whrlpool/wp_block.c
74
typedef u64 u64_a1;
crypto/openssl/crypto/whrlpool/wp_block.c
79
typedef u64 u64_aX __attribute((__aligned__(1)));
crypto/openssl/crypto/whrlpool/wp_block.c
81
typedef u64 u64_aX;
crypto/openssl/include/crypto/aes_platform.h
154
unsigned char ivec[16], u64 *Xi);
crypto/openssl/include/crypto/aes_platform.h
156
unsigned char ivec[16], u64 *Xi);
crypto/openssl/include/crypto/aes_platform.h
157
void gcm_ghash_v8(u64 Xi[2], const u128 Htable[16], const u8 *inp, size_t len);
crypto/openssl/include/crypto/aes_platform.h
275
const void *key, unsigned char ivec[16], u64 *Xi);
crypto/openssl/include/crypto/aes_platform.h
277
const void *key, unsigned char ivec[16], u64 *Xi);
crypto/openssl/include/crypto/aes_platform.h
278
void gcm_ghash_avx(u64 Xi[2], const u128 Htable[16], const u8 *in, size_t len);
crypto/openssl/include/crypto/aes_platform.h
467
unsigned char ivec[16], u64 *Xi);
crypto/openssl/include/crypto/aes_platform.h
472
unsigned char ivec[16], u64 *Xi);
crypto/openssl/include/crypto/aes_platform.h
486
void gcm_ghash_rv64i_zvkg(u64 Xi[2], const u128 Htable[16], const u8 *inp,
crypto/openssl/include/crypto/aes_platform.h
87
u64 *Xi);
crypto/openssl/include/crypto/aes_platform.h
90
u64 *Xi);
crypto/openssl/include/crypto/aes_platform.h
92
void gcm_ghash_p8(u64 Xi[2], const u128 Htable[16], const u8 *inp, size_t len);
crypto/openssl/include/crypto/modes.h
102
u64 hi, lo;
crypto/openssl/include/crypto/modes.h
105
typedef void (*gcm_init_fn)(u128 Htable[16], const u64 H[2]);
crypto/openssl/include/crypto/modes.h
106
typedef void (*gcm_ghash_fn)(u64 Xi[2], const u128 Htable[16], const u8 *inp, size_t len);
crypto/openssl/include/crypto/modes.h
107
typedef void (*gcm_gmult_fn)(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/include/crypto/modes.h
117
u64 u[2];
crypto/openssl/include/crypto/modes.h
137
void ossl_gcm_init_4bit(u128 Htable[16], const u64 H[2]);
crypto/openssl/include/crypto/modes.h
138
void ossl_gcm_ghash_4bit(u64 Xi[2], const u128 Htable[16],
crypto/openssl/include/crypto/modes.h
140
void ossl_gcm_gmult_4bit(u64 Xi[2], const u128 Htable[16]);
crypto/openssl/include/crypto/modes.h
161
u64 u[2];
crypto/openssl/include/crypto/modes.h
164
u64 blocks;
crypto/openssl/include/crypto/modes.h
172
u64 a[2];
crypto/openssl/include/crypto/modes.h
200
u64 blocks_hashed;
crypto/openssl/include/crypto/modes.h
201
u64 blocks_processed;
crypto/openssl/include/crypto/modes.h
40
#define BSWAP8(x) ({ u64 ret_=(x); \
crypto/openssl/include/crypto/modes.h
47
#define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
crypto/openssl/include/crypto/modes.h
50
(u64)hi_<<32|lo_; })
crypto/openssl/include/crypto/modes.h
56
#define BSWAP8(x) ({ u64 ret_; \
crypto/openssl/include/crypto/modes.h
64
#define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
crypto/openssl/include/crypto/modes.h
67
(u64)hi_<<32|lo_; })
crypto/openssl/include/crypto/modes.h
73
#define BSWAP8(x) ({ u64 ret_=(x); \
crypto/openssl/include/crypto/modes.h
84
#define BSWAP8(x) _byteswap_uint64((u64)(x))
crypto/openssl/include/internal/ring_buf.h
43
OSSL_SAFE_MATH_UNSIGNED(u64, uint64_t)
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
115
u64 iv[2];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
132
u64 q[16];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha1_hw.c
142
u64 seqnum;
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
119
u64 iv[2];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
136
u64 q[16];
crypto/openssl/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha256_hw.c
146
u64 seqnum;
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
74
ossl_gcm_init_4bit(Htable, (u64 *)tmp);
crypto/openssl/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c
92
ossl_gcm_ghash_4bit((u64 *)out, Htable, (uint8_t *)tmp, 16);
crypto/openssl/ssl/quic/cc_newreno.c
5
OSSL_SAFE_MATH_UNSIGNED(u64, uint64_t)
crypto/openssl/test/byteorder_test.c
15
uint64_t u64;
crypto/openssl/test/byteorder_test.c
62
restin = OPENSSL_load_u64_le(&u64, in);
crypto/openssl/test/byteorder_test.c
63
restout = OPENSSL_store_u64_le(out, u64);
crypto/openssl/test/byteorder_test.c
64
if (!TEST_true(u64 == 0x0706050403020100ULL
crypto/openssl/test/byteorder_test.c
73
restin = OPENSSL_load_u64_be(&u64, in);
crypto/openssl/test/byteorder_test.c
74
restout = OPENSSL_store_u64_be(out, u64);
crypto/openssl/test/byteorder_test.c
75
if (!TEST_true(u64 == 0x0001020304050607ULL
crypto/openssl/test/json_test.c
559
#define GET_U64() (GET_WORD().u64)
crypto/openssl/test/json_test.c
60
uint64_t u64;
crypto/openssl/test/json_test.c
619
uint64_t u64;
crypto/openssl/test/json_test.c
625
u64 = GET_U64();
crypto/openssl/test/json_test.c
626
f(&h.j, p, (size_t)u64);
crypto/openssl/test/params_api_test.c
618
uint64_t u64;
crypto/openssl/test/params_api_test.c
630
params[n++] = OSSL_PARAM_construct_uint64("uint64", &u64);
crypto/openssl/test/params_api_test.c
675
|| !TEST_true(OSSL_PARAM_get_uint64(cp, &u64))
crypto/openssl/test/params_api_test.c
677
|| !TEST_size_t_eq((size_t)u64, 3 + j)) {
crypto/openssl/test/params_conversion_test.c
105
pc->u64 = (uint64_t)strtoumax(pp->value, &p, 10);
crypto/openssl/test/params_conversion_test.c
164
datum_u64 = ref_u64 = pc->u64;
crypto/openssl/test/params_conversion_test.c
189
uint64_t u64;
crypto/openssl/test/params_conversion_test.c
256
if (!TEST_false(OSSL_PARAM_get_uint64(pc->param, &u64))
crypto/openssl/test/params_conversion_test.c
262
if (!TEST_true(OSSL_PARAM_get_uint64(pc->param, &u64))
crypto/openssl/test/params_conversion_test.c
263
|| !TEST_true(u64 == pc->u64)) {
crypto/openssl/test/params_conversion_test.c
268
if (!TEST_true(OSSL_PARAM_set_uint64(pc->param, u64))
crypto/openssl/test/params_conversion_test.c
28
uint64_t u64;
lib/libc/gen/rand48.h
66
uint64_t u64; \
lib/libc/gen/rand48.h
79
u.u64 = ((x) & 0xffffffffffffULL); \
lib/libc/gen/rand48.h
80
if (u.u64 == 0) \
lib/libc/gen/rand48.h
82
u.u64 <<= 5; \
lib/libc/gen/rand48.h
83
for (s = 0; !(u.u64 & (1LL << 52)); s++, u.u64 <<= 1) \
lib/libefivar/uefi-dplib.h
519
#define SwapBytes64(u64) bswap64(u64)
lib/libnvmf/nvmf_host.c
377
*value = le64toh(rsp->value.u64);
lib/libnvmf/nvmf_host.c
398
cmd.value.u64 = htole64(value);
lib/libutil/quotafile.c
357
#define CLIP32(u64) ((u64) > UINT32_MAX ? UINT32_MAX : (uint32_t)(u64))
stand/ficl/math64.c
222
void u64Push(FICL_STACK *pStack, DPUNS u64)
stand/ficl/math64.c
224
stackPushINT(pStack, u64.lo);
stand/ficl/math64.c
225
stackPushINT(pStack, u64.hi);
stand/ficl/math64.h
59
void u64Push(FICL_STACK *pStack, DPUNS u64);
stand/ficl/math64.h
76
#define m64CastUI(u64) (*(DPINT *)(&(u64)))
stand/libsa/zfs/zfsimpl.c
2639
uint64_t *u64 = buf;
stand/libsa/zfs/zfsimpl.c
2646
*u64 = fzap_leaf_value(zl, zc);
sys/amd64/vmm/intel/vmcs.c
285
uint64_t u64;
sys/amd64/vmm/intel/vmcs.c
293
if ((error = vmread(base, &u64)) != 0)
sys/amd64/vmm/intel/vmcs.c
295
desc->base = u64;
sys/amd64/vmm/intel/vmcs.c
297
if ((error = vmread(limit, &u64)) != 0)
sys/amd64/vmm/intel/vmcs.c
299
desc->limit = u64;
sys/amd64/vmm/intel/vmcs.c
302
if ((error = vmread(access, &u64)) != 0)
sys/amd64/vmm/intel/vmcs.c
304
desc->access = u64;
sys/amd64/vmm/vmm_instruction_emul.c
2781
uint64_t u64;
sys/amd64/vmm/vmm_instruction_emul.c
2794
u.u64 = 0;
sys/amd64/vmm/vmm_instruction_emul.c
2802
vie->displacement = u.u64;
sys/compat/linuxkpi/common/include/asm/atomic.h
179
u64 u64[0]; \
sys/compat/linuxkpi/common/include/asm/atomic.h
210
while (!atomic_fcmpset_64((volatile u64 *)(ptr), \
sys/compat/linuxkpi/common/include/asm/atomic.h
211
__ret.u64, __new.u64[0]) && __ret.val == (old)) \
sys/compat/linuxkpi/common/include/asm/atomic.h
228
u64 u64[0]; \
sys/compat/linuxkpi/common/include/asm/atomic.h
260
__ret.u64[0] = atomic_swap_64((volatile u64 *)(ptr), \
sys/compat/linuxkpi/common/include/asm/atomic.h
261
__new.u64[0]); \
sys/compat/linuxkpi/common/include/linux/clocksource.h
34
#define CLOCKSOURCE_MASK(x) ((u64)(-1ULL >> ((-(x)) & 63)))
sys/compat/linuxkpi/common/include/linux/dma-mapping.h
116
dma_supported(struct device *dev, u64 dma_mask)
sys/compat/linuxkpi/common/include/linux/dma-mapping.h
124
dma_set_mask(struct device *dev, u64 dma_mask)
sys/compat/linuxkpi/common/include/linux/dma-mapping.h
134
dma_set_coherent_mask(struct device *dev, u64 dma_mask)
sys/compat/linuxkpi/common/include/linux/dma-mapping.h
144
dma_set_mask_and_coherent(struct device *dev, u64 dma_mask)
sys/compat/linuxkpi/common/include/linux/dma-mapping.h
87
int (*dma_supported)(struct device *dev, u64 mask);
sys/compat/linuxkpi/common/include/linux/dma-mapping.h
93
int linux_dma_tag_init(struct device *, u64);
sys/compat/linuxkpi/common/include/linux/dma-mapping.h
94
int linux_dma_tag_init_coherent(struct device *, u64);
sys/compat/linuxkpi/common/include/linux/fs.h
134
typedef int (*filldir_t)(void *, const char *, int, off_t, u64, unsigned);
sys/compat/linuxkpi/common/include/linux/hash.h
40
static inline u64
sys/compat/linuxkpi/common/include/linux/hash.h
41
hash_64(u64 val, u8 bits)
sys/compat/linuxkpi/common/include/linux/hash.h
43
u64 ret;
sys/compat/linuxkpi/common/include/linux/hash.h
49
u64 chunk = (val >> (8 * x)) & 0xFF;
sys/compat/linuxkpi/common/include/linux/ktime.h
269
static inline u64
sys/compat/linuxkpi/common/include/linux/ktime.h
39
#define KTIME_MAX ((s64)~((u64)1 << 63))
sys/compat/linuxkpi/common/include/linux/net_dim.h
338
u64 packets,
sys/compat/linuxkpi/common/include/linux/net_dim.h
339
u64 bytes,
sys/compat/linuxkpi/common/include/linux/net_dim.h
373
u64 packets, u64 bytes)
sys/compat/linuxkpi/common/include/linux/pfn.h
33
u64 val;
sys/compat/linuxkpi/common/include/linux/pfn_t.h
34
#define PFN_FLAGS_MASK (((u64)(PAGE_SIZE - 1)) << (64 - PAGE_SHIFT))
sys/compat/linuxkpi/common/include/linux/pfn_t.h
41
__pfn_to_pfn_t(unsigned long pfn, u64 flags)
sys/compat/linuxkpi/common/include/linux/siphash.h
18
#define SIPHASH_ALIGNMENT __alignof__(u64)
sys/compat/linuxkpi/common/include/linux/siphash.h
20
u64 key[2];
sys/compat/linuxkpi/common/include/linux/siphash.h
30
u64 __siphash_aligned(const void *data, size_t len, const siphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
31
u64 __siphash_unaligned(const void *data, size_t len, const siphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
33
u64 siphash_1u64(const u64 a, const siphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
34
u64 siphash_2u64(const u64 a, const u64 b, const siphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
35
u64 siphash_3u64(const u64 a, const u64 b, const u64 c,
sys/compat/linuxkpi/common/include/linux/siphash.h
37
u64 siphash_4u64(const u64 a, const u64 b, const u64 c, const u64 d,
sys/compat/linuxkpi/common/include/linux/siphash.h
39
u64 siphash_1u32(const u32 a, const siphash_key_t *key);
sys/compat/linuxkpi/common/include/linux/siphash.h
40
u64 siphash_3u32(const u32 a, const u32 b, const u32 c,
sys/compat/linuxkpi/common/include/linux/siphash.h
43
static inline u64 siphash_2u32(const u32 a, const u32 b,
sys/compat/linuxkpi/common/include/linux/siphash.h
46
return siphash_1u64((u64)b << 32 | a, key);
sys/compat/linuxkpi/common/include/linux/siphash.h
48
static inline u64 siphash_4u32(const u32 a, const u32 b, const u32 c,
sys/compat/linuxkpi/common/include/linux/siphash.h
51
return siphash_2u64((u64)b << 32 | a, (u64)d << 32 | c, key);
sys/compat/linuxkpi/common/include/linux/siphash.h
55
static inline u64 ___siphash_aligned(const __le64 *data, size_t len,
sys/compat/linuxkpi/common/include/linux/siphash.h
81
static inline u64 siphash(const void *data, size_t len,
sys/compat/linuxkpi/common/include/net/ipv6.h
75
*(__force u64 *)addr = ((__force u64)(wh) << 32 | (__force u64)(wl));
sys/compat/linuxkpi/common/include/net/ipv6.h
80
*(__force u64 *)addr = ((__force u64)(wl) << 32 | (__force u64)(wh));
sys/compat/linuxkpi/common/include/net/mac80211.h
1016
u64 (*prepare_multicast)(struct ieee80211_hw *, struct netdev_hw_addr_list *);
sys/compat/linuxkpi/common/include/net/mac80211.h
1045
void (*configure_filter)(struct ieee80211_hw *, unsigned int, unsigned int *, u64);
sys/compat/linuxkpi/common/include/net/mac80211.h
1048
void (*bss_info_changed)(struct ieee80211_hw *, struct ieee80211_vif *, struct ieee80211_bss_conf *, u64);
sys/compat/linuxkpi/common/include/net/mac80211.h
1049
void (*link_info_changed)(struct ieee80211_hw *, struct ieee80211_vif *, struct ieee80211_bss_conf *, u64);
sys/compat/linuxkpi/common/include/net/mac80211.h
1081
void (*get_et_stats)(struct ieee80211_hw *, struct ieee80211_vif *, struct ethtool_stats *, u64 *);
sys/compat/linuxkpi/common/include/net/mac80211.h
1096
void (*vif_cfg_changed)(struct ieee80211_hw *, struct ieee80211_vif *, u64);
sys/compat/linuxkpi/common/src/linux_80211.c
1932
u64 mc;
sys/compat/linuxkpi/common/src/linux_80211.h
456
u64 lkpi_80211_mo_prepare_multicast(struct ieee80211_hw *,
sys/compat/linuxkpi/common/src/linux_80211.h
459
unsigned int *, u64);
sys/compat/linuxkpi/common/src/linux_80211_macops.c
287
u64
sys/compat/linuxkpi/common/src/linux_80211_macops.c
292
u64 ptr;
sys/compat/linuxkpi/common/src/linux_80211_macops.c
305
unsigned int *total_flags, u64 mc_ptr)
sys/compat/linuxkpi/common/src/linux_pci.c
215
linux_dma_tag_init(struct device *dev, u64 dma_mask)
sys/compat/linuxkpi/common/src/linux_pci.c
246
linux_dma_tag_init_coherent(struct device *dev, u64 dma_mask)
sys/compat/linuxkpi/common/src/linux_siphash.c
102
case 7: b |= ((u64)end[6]) << 48; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
103
case 6: b |= ((u64)end[5]) << 40; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
104
case 5: b |= ((u64)end[4]) << 32; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
106
case 3: b |= ((u64)end[2]) << 16; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
120
u64 siphash_1u64(const u64 first, const siphash_key_t *key)
sys/compat/linuxkpi/common/src/linux_siphash.c
137
u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key)
sys/compat/linuxkpi/common/src/linux_siphash.c
159
u64 siphash_3u64(const u64 first, const u64 second, const u64 third,
sys/compat/linuxkpi/common/src/linux_siphash.c
187
u64 siphash_4u64(const u64 first, const u64 second, const u64 third,
sys/compat/linuxkpi/common/src/linux_siphash.c
188
const u64 forth, const siphash_key_t *key)
sys/compat/linuxkpi/common/src/linux_siphash.c
211
u64 siphash_1u32(const u32 first, const siphash_key_t *key)
sys/compat/linuxkpi/common/src/linux_siphash.c
219
u64 siphash_3u32(const u32 first, const u32 second, const u32 third,
sys/compat/linuxkpi/common/src/linux_siphash.c
222
u64 combined = (u64)second << 32 | first;
sys/compat/linuxkpi/common/src/linux_siphash.c
25
u64 v0 = SIPHASH_CONST_0; \
sys/compat/linuxkpi/common/src/linux_siphash.c
254
const u8 *end = data + len - (len % sizeof(u64));
sys/compat/linuxkpi/common/src/linux_siphash.c
255
const u8 left = len & (sizeof(u64) - 1);
sys/compat/linuxkpi/common/src/linux_siphash.c
256
u64 m;
sys/compat/linuxkpi/common/src/linux_siphash.c
258
for (; data != end; data += sizeof(u64)) {
sys/compat/linuxkpi/common/src/linux_siphash.c
26
u64 v1 = SIPHASH_CONST_1; \
sys/compat/linuxkpi/common/src/linux_siphash.c
27
u64 v2 = SIPHASH_CONST_2; \
sys/compat/linuxkpi/common/src/linux_siphash.c
270
case 7: b |= ((u64)end[6]) << 48; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
271
case 6: b |= ((u64)end[5]) << 40; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
272
case 5: b |= ((u64)end[4]) << 32; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
274
case 3: b |= ((u64)end[2]) << 16; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
28
u64 v3 = SIPHASH_CONST_3; \
sys/compat/linuxkpi/common/src/linux_siphash.c
288
const u8 *end = data + len - (len % sizeof(u64));
sys/compat/linuxkpi/common/src/linux_siphash.c
289
const u8 left = len & (sizeof(u64) - 1);
sys/compat/linuxkpi/common/src/linux_siphash.c
29
u64 b = ((u64)(len)) << 56; \
sys/compat/linuxkpi/common/src/linux_siphash.c
290
u64 m;
sys/compat/linuxkpi/common/src/linux_siphash.c
292
for (; data != end; data += sizeof(u64)) {
sys/compat/linuxkpi/common/src/linux_siphash.c
304
case 7: b |= ((u64)end[6]) << 48; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
305
case 6: b |= ((u64)end[5]) << 40; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
306
case 5: b |= ((u64)end[4]) << 32; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
308
case 3: b |= ((u64)end[2]) << 16; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
338
u64 combined = (u64)second << 32 | first;
sys/compat/linuxkpi/common/src/linux_siphash.c
357
u64 combined = (u64)second << 32 | first;
sys/compat/linuxkpi/common/src/linux_siphash.c
378
u64 combined = (u64)second << 32 | first;
sys/compat/linuxkpi/common/src/linux_siphash.c
383
combined = (u64)forth << 32 | third;
sys/compat/linuxkpi/common/src/linux_siphash.c
48
u64 __siphash_aligned(const void *_data, size_t len, const siphash_key_t *key)
sys/compat/linuxkpi/common/src/linux_siphash.c
51
const u8 *end = data + len - (len % sizeof(u64));
sys/compat/linuxkpi/common/src/linux_siphash.c
52
const u8 left = len & (sizeof(u64) - 1);
sys/compat/linuxkpi/common/src/linux_siphash.c
53
u64 m;
sys/compat/linuxkpi/common/src/linux_siphash.c
55
for (; data != end; data += sizeof(u64)) {
sys/compat/linuxkpi/common/src/linux_siphash.c
68
case 7: b |= ((u64)end[6]) << 48; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
69
case 6: b |= ((u64)end[5]) << 40; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
70
case 5: b |= ((u64)end[4]) << 32; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
72
case 3: b |= ((u64)end[2]) << 16; fallthrough;
sys/compat/linuxkpi/common/src/linux_siphash.c
82
u64 __siphash_unaligned(const void *_data, size_t len, const siphash_key_t *key)
sys/compat/linuxkpi/common/src/linux_siphash.c
85
const u8 *end = data + len - (len % sizeof(u64));
sys/compat/linuxkpi/common/src/linux_siphash.c
86
const u8 left = len & (sizeof(u64) - 1);
sys/compat/linuxkpi/common/src/linux_siphash.c
87
u64 m;
sys/compat/linuxkpi/common/src/linux_siphash.c
89
for (; data != end; data += sizeof(u64)) {
sys/dev/axgbe/xgbe-ptp.c
119
static u64 xgbe_cc_read(const struct cyclecounter *cc)
sys/dev/axgbe/xgbe-ptp.c
124
u64 nsec;
sys/dev/axgbe/xgbe-ptp.c
137
u64 adjust;
sys/dev/axgbe/xgbe-ptp.c
182
u64 nsec;
sys/dev/axgbe/xgbe-ptp.c
202
u64 nsec;
sys/dev/axgbe/xgbe-ptp.c
226
u64 dividend;
sys/dev/bce/if_bce.c
8008
((u64) stats->stat_IfHCInOctets_hi << 32) +
sys/dev/bce/if_bce.c
8009
(u64) stats->stat_IfHCInOctets_lo;
sys/dev/bce/if_bce.c
8012
((u64) stats->stat_IfHCInBadOctets_hi << 32) +
sys/dev/bce/if_bce.c
8013
(u64) stats->stat_IfHCInBadOctets_lo;
sys/dev/bce/if_bce.c
8016
((u64) stats->stat_IfHCOutOctets_hi << 32) +
sys/dev/bce/if_bce.c
8017
(u64) stats->stat_IfHCOutOctets_lo;
sys/dev/bce/if_bce.c
8020
((u64) stats->stat_IfHCOutBadOctets_hi << 32) +
sys/dev/bce/if_bce.c
8021
(u64) stats->stat_IfHCOutBadOctets_lo;
sys/dev/bce/if_bce.c
8024
((u64) stats->stat_IfHCInUcastPkts_hi << 32) +
sys/dev/bce/if_bce.c
8025
(u64) stats->stat_IfHCInUcastPkts_lo;
sys/dev/bce/if_bce.c
8028
((u64) stats->stat_IfHCInMulticastPkts_hi << 32) +
sys/dev/bce/if_bce.c
8029
(u64) stats->stat_IfHCInMulticastPkts_lo;
sys/dev/bce/if_bce.c
8032
((u64) stats->stat_IfHCInBroadcastPkts_hi << 32) +
sys/dev/bce/if_bce.c
8033
(u64) stats->stat_IfHCInBroadcastPkts_lo;
sys/dev/bce/if_bce.c
8036
((u64) stats->stat_IfHCOutUcastPkts_hi << 32) +
sys/dev/bce/if_bce.c
8037
(u64) stats->stat_IfHCOutUcastPkts_lo;
sys/dev/bce/if_bce.c
8040
((u64) stats->stat_IfHCOutMulticastPkts_hi << 32) +
sys/dev/bce/if_bce.c
8041
(u64) stats->stat_IfHCOutMulticastPkts_lo;
sys/dev/bce/if_bce.c
8044
((u64) stats->stat_IfHCOutBroadcastPkts_hi << 32) +
sys/dev/bce/if_bce.c
8045
(u64) stats->stat_IfHCOutBroadcastPkts_lo;
sys/dev/bce/if_bcereg.h
1082
#define BCE_ADDR_LO(y) ((u64) (y) & 0xFFFFFFFF)
sys/dev/bce/if_bcereg.h
1083
#define BCE_ADDR_HI(y) ((u64) (y) >> 32)
sys/dev/bce/if_bcereg.h
6554
u64 stat_IfHCInOctets;
sys/dev/bce/if_bcereg.h
6555
u64 stat_IfHCInBadOctets;
sys/dev/bce/if_bcereg.h
6556
u64 stat_IfHCOutOctets;
sys/dev/bce/if_bcereg.h
6557
u64 stat_IfHCOutBadOctets;
sys/dev/bce/if_bcereg.h
6558
u64 stat_IfHCInUcastPkts;
sys/dev/bce/if_bcereg.h
6559
u64 stat_IfHCInMulticastPkts;
sys/dev/bce/if_bcereg.h
6560
u64 stat_IfHCInBroadcastPkts;
sys/dev/bce/if_bcereg.h
6561
u64 stat_IfHCOutUcastPkts;
sys/dev/bce/if_bcereg.h
6562
u64 stat_IfHCOutMulticastPkts;
sys/dev/bce/if_bcereg.h
6563
u64 stat_IfHCOutBroadcastPkts;
sys/dev/bce/if_bcereg.h
6641
u64 interrupts_generated;
sys/dev/bce/if_bcereg.h
6642
u64 interrupts_handled;
sys/dev/bce/if_bcereg.h
6643
u64 interrupts_rx;
sys/dev/bce/if_bcereg.h
6644
u64 interrupts_tx;
sys/dev/bce/if_bcereg.h
6645
u64 phy_interrupts;
sys/dev/bce/if_bcereg.h
6651
u64 rx_empty_count;
sys/dev/bce/if_bcereg.h
6657
u64 pg_empty_count;
sys/dev/bce/if_bcereg.h
6663
u64 tx_full_count;
sys/dev/bce/if_bcereg.h
6666
u64 tso_frames_requested;
sys/dev/bce/if_bcereg.h
6669
u64 tso_frames_completed;
sys/dev/bce/if_bcereg.h
6672
u64 tso_frames_failed;
sys/dev/bce/if_bcereg.h
6675
u64 csum_offload_ip;
sys/dev/bce/if_bcereg.h
6678
u64 csum_offload_tcp_udp;
sys/dev/bce/if_bcereg.h
6681
u64 vlan_tagged_frames_rcvd;
sys/dev/bce/if_bcereg.h
6684
u64 vlan_tagged_frames_stripped;
sys/dev/bce/if_bcereg.h
6687
u64 split_header_frames_rcvd;
sys/dev/bce/if_bcereg.h
6690
u64 split_header_tcp_frames_rcvd;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1054
uint64_t u64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1080
intv.u64 = *(const uint8_t *)inp;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1088
intv.u64 = *(const uint16_t *)inp;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1096
intv.u64 = *(const uint32_t *)inp;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1104
intv.u64 = *(const uint64_t *)inp;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1154
intv.u64 = intv.i64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1158
if (intv.u64 > INT64_MAX) {
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1161
intv.u64, bhnd_nvram_type_name(otype));
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1166
intv.i64 = intv.u64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1178
if (intv.u64 == 0 || intv.u64 == 1) {
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1179
bval = intv.u64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1197
if (intv.u64 > UINT8_MAX)
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1202
*((uint8_t *)outp) = (uint8_t)intv.u64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1207
if (intv.u64 > UINT16_MAX)
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1212
*((uint16_t *)outp) = (uint16_t)intv.u64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1217
if (intv.u64 > UINT32_MAX)
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1222
*((uint32_t *)outp) = (uint32_t)intv.u64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1229
*((uint64_t *)outp) = intv.u64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1277
len = snprintf(outp, limit, "%" PRIu64, intv.u64);
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1853
NV_COPY_ARRRAY_INLINE(uint64_t, u64);
sys/dev/bhnd/nvram/bhnd_nvram_value.h
229
uint32_t u64[1]; /**< 64-bit unsigned data */
sys/dev/bhnd/nvram/bhnd_nvram_value_prf.c
623
uint64_t u64;
sys/dev/bnxt/bnxt_en/bnxt.h
603
u64 db_key64;
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
2037
u64 *rx_port_stats_ext = (u64 *)softc->hw_rx_port_stats_ext.idi_vaddr;
sys/dev/bnxt/bnxt_en/bnxt_hwrm.c
2038
u64 *tx_port_stats_ext = (u64 *)softc->hw_tx_port_stats_ext.idi_vaddr;
sys/dev/bnxt/bnxt_en/if_bnxt.c
1497
u64 db_msg = { 0 };
sys/dev/bnxt/bnxt_en/if_bnxt.c
1507
db_msg = DBR_PATH_L2 | ((u64)cpr->ring.phys_id << DBR_XID_SFT) | DBR_VALID |
sys/dev/bnxt/bnxt_en/if_bnxt.c
1528
u64 db_msg = { 0 };
sys/dev/bnxt/bnxt_en/if_bnxt.c
1535
db_msg = DBR_PATH_L2 | ((u64)cpr->ring.phys_id << DBR_XID_SFT) | DBR_VALID |
sys/dev/bnxt/bnxt_en/if_bnxt.c
1556
u64 db_msg = { 0 };
sys/dev/bnxt/bnxt_en/if_bnxt.c
1563
db_msg = DBR_PATH_L2 | ((u64)cpr->ring.phys_id << DBR_XID_SFT) | DBR_VALID |
sys/dev/bnxt/bnxt_re/bnxt_re.h
228
u64 wrid;
sys/dev/bnxt/bnxt_re/bnxt_re.h
279
u64 cnp_dscp_bv;
sys/dev/bnxt/bnxt_re/bnxt_re.h
280
u64 roce_dscp_bv;
sys/dev/bnxt/bnxt_re/bnxt_re.h
449
u64 fifo_occup_slab_1;
sys/dev/bnxt/bnxt_re/bnxt_re.h
450
u64 fifo_occup_slab_2;
sys/dev/bnxt/bnxt_re/bnxt_re.h
451
u64 fifo_occup_slab_3;
sys/dev/bnxt/bnxt_re/bnxt_re.h
452
u64 fifo_occup_slab_4;
sys/dev/bnxt/bnxt_re/bnxt_re.h
453
u64 fifo_occup_water_mark;
sys/dev/bnxt/bnxt_re/bnxt_re.h
454
u64 do_pacing_slab_1;
sys/dev/bnxt/bnxt_re/bnxt_re.h
455
u64 do_pacing_slab_2;
sys/dev/bnxt/bnxt_re/bnxt_re.h
456
u64 do_pacing_slab_3;
sys/dev/bnxt/bnxt_re/bnxt_re.h
457
u64 do_pacing_slab_4;
sys/dev/bnxt/bnxt_re/bnxt_re.h
458
u64 do_pacing_slab_5;
sys/dev/bnxt/bnxt_re/bnxt_re.h
459
u64 do_pacing_water_mark;
sys/dev/bnxt/bnxt_re/bnxt_re.h
469
u64 dbq_int_recv;
sys/dev/bnxt/bnxt_re/bnxt_re.h
470
u64 dbq_int_en;
sys/dev/bnxt/bnxt_re/bnxt_re.h
471
u64 dbq_pacing_resched;
sys/dev/bnxt/bnxt_re/bnxt_re.h
472
u64 dbq_pacing_complete;
sys/dev/bnxt/bnxt_re/bnxt_re.h
473
u64 dbq_pacing_alerts;
sys/dev/bnxt/bnxt_re/bnxt_re.h
474
u64 dbr_drop_recov_events;
sys/dev/bnxt/bnxt_re/bnxt_re.h
475
u64 dbr_drop_recov_timeouts;
sys/dev/bnxt/bnxt_re/bnxt_re.h
476
u64 dbr_drop_recov_timeout_users;
sys/dev/bnxt/bnxt_re/bnxt_re.h
477
u64 dbr_drop_recov_event_skips;
sys/dev/bnxt/bnxt_re/bnxt_re.h
567
u64 dbr_throttling_reg_off;
sys/dev/bnxt/bnxt_re/bnxt_re.h
568
u64 dbr_aeq_arm_reg_off;
sys/dev/bnxt/bnxt_re/bnxt_re.h
569
u64 dbr_db_fifo_reg_off;
sys/dev/bnxt/bnxt_re/bnxt_re.h
571
u64 dbr_bar_addr;
sys/dev/bnxt/bnxt_re/ib_verbs.c
1529
u64 avg_time = 0;
sys/dev/bnxt/bnxt_re/ib_verbs.c
1913
qp->qplib_qp.qp_handle = (u64)&qp->qplib_qp;
sys/dev/bnxt/bnxt_re/ib_verbs.c
2184
qplqp->qp_handle = (u64)qplqp;
sys/dev/bnxt/bnxt_re/ib_verbs.c
3749
free_page((u64)cq->uctx_cq_page);
sys/dev/bnxt/bnxt_re/ib_verbs.c
3848
qplcq->cq_handle = (u64)qplcq;
sys/dev/bnxt/bnxt_re/ib_verbs.c
3976
resp.dbr = (u64)uctx->dpi.umdbr;
sys/dev/bnxt/bnxt_re/ib_verbs.c
3996
resp.uctx_cq_page = (u64)cq->uctx_cq_page;
sys/dev/bnxt/bnxt_re/ib_verbs.c
4004
free_page((u64)cq->uctx_cq_page);
sys/dev/bnxt/bnxt_re/ib_verbs.c
4860
u64 pbl = 0;
sys/dev/bnxt/bnxt_re/ib_verbs.c
4942
static int bnxt_re_set_page(struct ib_mr *ib_mr, u64 addr)
sys/dev/bnxt/bnxt_re/ib_verbs.c
5001
mr->pages = kzalloc(sizeof(u64) * max_num_sg, GFP_KERNEL);
sys/dev/bnxt/bnxt_re/ib_verbs.c
5108
u64 va, u64 st, u64 cmask)
sys/dev/bnxt/bnxt_re/ib_verbs.c
5117
static int bnxt_re_get_num_pages(struct ib_umem *umem, u64 start, u64 length, int page_shift)
sys/dev/bnxt/bnxt_re/ib_verbs.c
5132
struct ib_mr *bnxt_re_reg_user_mr(struct ib_pd *ib_pd, u64 start, u64 length,
sys/dev/bnxt/bnxt_re/ib_verbs.c
5133
u64 virt_addr, int mr_access_flags,
sys/dev/bnxt/bnxt_re/ib_verbs.c
5241
bnxt_re_rereg_user_mr(struct ib_mr *ib_mr, int flags, u64 start, u64 length,
sys/dev/bnxt/bnxt_re/ib_verbs.c
5242
u64 virt_addr, int mr_access_flags,
sys/dev/bnxt/bnxt_re/ib_verbs.c
5440
free_page((u64)uctx->shpg);
sys/dev/bnxt/bnxt_re/ib_verbs.c
5455
free_page((u64)uctx->shpg);
sys/dev/bnxt/bnxt_re/ib_verbs.c
5481
u64 pg_off)
sys/dev/bnxt/bnxt_re/ib_verbs.c
5490
if (((u64)tmp_cq->uctx_cq_page >> PAGE_SHIFT) == pg_off) {
sys/dev/bnxt/bnxt_re/ib_verbs.c
5508
u64 pfn;
sys/dev/bnxt/bnxt_re/ib_verbs.c
5515
__func__, __LINE__, (u64) uctx->shpg, vtophys(uctx->shpg), pfn);
sys/dev/bnxt/bnxt_re/ib_verbs.c
605
wqe->bind.va = (u64)fence->va;
sys/dev/bnxt/bnxt_re/ib_verbs.c
657
u64 pbl_tbl;
sys/dev/bnxt/bnxt_re/ib_verbs.c
698
mr->qplib_mr.va = (u64)fence->va;
sys/dev/bnxt/bnxt_re/ib_verbs.c
868
resp.dbr = (u64)ucntx->dpi.umdbr;
sys/dev/bnxt/bnxt_re/ib_verbs.c
876
resp.dbr_bar_addr = (u64)rdev->dbr_bar_addr;
sys/dev/bnxt/bnxt_re/ib_verbs.h
241
u64 *pages;
sys/dev/bnxt/bnxt_re/ib_verbs.h
249
u64 *page_list;
sys/dev/bnxt/bnxt_re/ib_verbs.h
357
struct ib_mr *bnxt_re_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
sys/dev/bnxt/bnxt_re/ib_verbs.h
358
u64 virt_addr, int mr_access_flags,
sys/dev/bnxt/bnxt_re/ib_verbs.h
361
bnxt_re_rereg_user_mr(struct ib_mr *mr, int flags, u64 start, u64 length,
sys/dev/bnxt/bnxt_re/ib_verbs.h
362
u64 virt_addr, int mr_access_flags, struct ib_pd *pd,
sys/dev/bnxt/bnxt_re/main.c
1032
u64 timeout = 0;
sys/dev/bnxt/bnxt_re/main.c
1787
cctx->hwrm_intf_ver = (u64) le16_to_cpu(resp.hwrm_intf_major) << 48 |
sys/dev/bnxt/bnxt_re/main.c
1788
(u64) le16_to_cpu(resp.hwrm_intf_minor) << 32 |
sys/dev/bnxt/bnxt_re/main.c
1789
(u64) le16_to_cpu(resp.hwrm_intf_build) << 16 |
sys/dev/bnxt/bnxt_re/main.c
3375
free_page((u64)rdev->dbr_page);
sys/dev/bnxt/bnxt_re/main.c
3394
free_page((u64)rdev->dbr_page);
sys/dev/bnxt/bnxt_re/qplib_fp.c
1051
u64 fpsne, psn_pg;
sys/dev/bnxt/bnxt_re/qplib_fp.c
1057
fpsne = (u64)bnxt_qplib_get_qe(sq_hwq, sq_hwq->depth, &psn_pg);
sys/dev/bnxt/bnxt_re/qplib_fp.c
1061
sq_hwq->pad_pg = (u64 *)psn_pg;
sys/dev/bnxt/bnxt_re/qplib_fp.c
131
__clean_cq(qp->scq, (u64)(unsigned long)qp);
sys/dev/bnxt/bnxt_re/qplib_fp.c
136
__clean_cq(qp->rcq, (u64)(unsigned long)qp);
sys/dev/bnxt/bnxt_re/qplib_fp.c
1601
static void __clean_cq(struct bnxt_qplib_cq *cq, u64 qp)
sys/dev/bnxt/bnxt_re/qplib_fp.c
260
u64 q_handle;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2665
cqe->qp_handle = (u64)qp;
sys/dev/bnxt/bnxt_re/qplib_fp.c
2723
cqe->qp_handle = (u64)qp;
sys/dev/bnxt/bnxt_re/qplib_fp.c
287
q_handle |= (u64)le32_to_cpu(nqcne->cq_handle_high) << 32;
sys/dev/bnxt/bnxt_re/qplib_fp.c
288
if (q_handle == (u64)cq) {
sys/dev/bnxt/bnxt_re/qplib_fp.c
2966
cqe->qp_handle = (u64)qp;
sys/dev/bnxt/bnxt_re/qplib_fp.c
3076
cqe->qp_handle = (u64)(unsigned long)qp;
sys/dev/bnxt/bnxt_re/qplib_fp.c
3169
cqe->qp_handle = (u64)(unsigned long)qp;
sys/dev/bnxt/bnxt_re/qplib_fp.c
3278
cqe->qp_handle = (u64)(unsigned long)qp;
sys/dev/bnxt/bnxt_re/qplib_fp.c
3415
cqe->qp_handle = (u64)qp;
sys/dev/bnxt/bnxt_re/qplib_fp.c
343
u64 q_handle;
sys/dev/bnxt/bnxt_re/qplib_fp.c
366
q_handle |= (u64)le32_to_cpu(nqcne->cq_handle_high) << 32;
sys/dev/bnxt/bnxt_re/qplib_fp.c
394
q_handle |= (u64)le32_to_cpu(nqsrqe->srq_handle_high) << 32;
sys/dev/bnxt/bnxt_re/qplib_fp.c
49
static void __clean_cq(struct bnxt_qplib_cq *cq, u64 qp);
sys/dev/bnxt/bnxt_re/qplib_fp.c
532
nq_db->reg.len = _is_chip_gen_p5_p7(res->cctx) ? sizeof(u64) :
sys/dev/bnxt/bnxt_re/qplib_fp.h
100
u64 addr;
sys/dev/bnxt/bnxt_re/qplib_fp.h
169
u64 wr_id;
sys/dev/bnxt/bnxt_re/qplib_fp.h
186
u64 wr_id;
sys/dev/bnxt/bnxt_re/qplib_fp.h
237
u64 remote_va;
sys/dev/bnxt/bnxt_re/qplib_fp.h
243
u64 remote_va;
sys/dev/bnxt/bnxt_re/qplib_fp.h
245
u64 swap_data;
sys/dev/bnxt/bnxt_re/qplib_fp.h
246
u64 cmp_data;
sys/dev/bnxt/bnxt_re/qplib_fp.h
274
u64 *page_list;
sys/dev/bnxt/bnxt_re/qplib_fp.h
276
u64 va;
sys/dev/bnxt/bnxt_re/qplib_fp.h
291
u64 va;
sys/dev/bnxt/bnxt_re/qplib_fp.h
332
u64 qp_handle;
sys/dev/bnxt/bnxt_re/qplib_fp.h
341
u64 modify_flags;
sys/dev/bnxt/bnxt_re/qplib_fp.h
353
u64 wqe_cnt;
sys/dev/bnxt/bnxt_re/qplib_fp.h
429
u64 wr_id;
sys/dev/bnxt/bnxt_re/qplib_fp.h
434
u64 qp_handle;
sys/dev/bnxt/bnxt_re/qplib_fp.h
435
u64 mr_handle;
sys/dev/bnxt/bnxt_re/qplib_fp.h
464
u64 cq_handle;
sys/dev/bnxt/bnxt_re/qplib_fp.h
501
u64 num_dbqne_processed;
sys/dev/bnxt/bnxt_re/qplib_fp.h
502
u64 num_srqne_processed;
sys/dev/bnxt/bnxt_re/qplib_fp.h
503
u64 num_cqne_processed;
sys/dev/bnxt/bnxt_re/qplib_fp.h
504
u64 num_tasklet_resched;
sys/dev/bnxt/bnxt_re/qplib_fp.h
505
u64 num_nq_rearm;
sys/dev/bnxt/bnxt_re/qplib_fp.h
631
return cpu_to_le64((((u64)(st_idx) << SQ_MSN_SEARCH_START_IDX_SFT) &
sys/dev/bnxt/bnxt_re/qplib_fp.h
633
(((u64)(npsn) << SQ_MSN_SEARCH_NEXT_PSN_SFT) &
sys/dev/bnxt/bnxt_re/qplib_fp.h
85
u64 srq_handle;
sys/dev/bnxt/bnxt_re/qplib_rcfw.c
1086
rcfw->qp_create_stats = vzalloc(sizeof(u64) * RCFW_MAX_STAT_INDEX);
sys/dev/bnxt/bnxt_re/qplib_rcfw.c
1087
rcfw->qp_destroy_stats = vzalloc(sizeof(u64) * RCFW_MAX_STAT_INDEX);
sys/dev/bnxt/bnxt_re/qplib_rcfw.c
1088
rcfw->mr_create_stats = vzalloc(sizeof(u64) * RCFW_MAX_STAT_INDEX);
sys/dev/bnxt/bnxt_re/qplib_rcfw.c
1089
rcfw->mr_destroy_stats = vzalloc(sizeof(u64) * RCFW_MAX_STAT_INDEX);
sys/dev/bnxt/bnxt_re/qplib_rcfw.c
1090
rcfw->qp_modify_stats = vzalloc(sizeof(u64) * RCFW_MAX_STAT_INDEX);
sys/dev/bnxt/bnxt_re/qplib_rcfw.c
1256
creq_db->reg.len = _is_chip_gen_p5_p7(res->cctx) ? sizeof(u64) :
sys/dev/bnxt/bnxt_re/qplib_rcfw.c
624
u64 *dest_stats_ptr = NULL;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
253
u64 creq_arm_count;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
254
u64 creq_tasklet_schedule_count;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
255
u64 creq_qp_event_processed;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
256
u64 creq_func_event_processed;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
283
u64 *qp_create_stats;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
284
u64 *qp_destroy_stats;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
285
u64 *qp_modify_stats;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
286
u64 *mr_create_stats;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
287
u64 *mr_destroy_stats;
sys/dev/bnxt/bnxt_re/qplib_rcfw.h
294
u64 oos_prev;
sys/dev/bnxt/bnxt_re/qplib_res.c
108
u64 pmask, addr;
sys/dev/bnxt/bnxt_re/qplib_res.c
261
npages = (npages * (u64)pg_size) /
sys/dev/bnxt/bnxt_re/qplib_res.c
263
if ((hwq_attr->sginfo->npages * (u64)pg_size) %
sys/dev/bnxt/bnxt_re/qplib_res.c
443
hwq_attr.stride = sizeof(u64);
sys/dev/bnxt/bnxt_re/qplib_res.c
73
(void *)((u64)pbl->pg_arr[i] &
sys/dev/bnxt/bnxt_re/qplib_res.c
853
u64 umaddr;
sys/dev/bnxt/bnxt_re/qplib_res.h
100
u64 hwrm_intf_ver;
sys/dev/bnxt/bnxt_re/qplib_res.h
270
u64 *pad_pg;
sys/dev/bnxt/bnxt_re/qplib_res.h
285
u64 shadow_key;
sys/dev/bnxt/bnxt_re/qplib_res.h
286
u64 shadow_key_arm_ena;
sys/dev/bnxt/bnxt_re/qplib_res.h
327
u64 umdbr;
sys/dev/bnxt/bnxt_re/qplib_res.h
503
u32 indx, u64 *pg)
sys/dev/bnxt/bnxt_re/qplib_res.h
510
*pg = (u64)&hwq->pbl_ptr[pg_num];
sys/dev/bnxt/bnxt_re/qplib_res.h
561
static inline u64 _get_base_addr(struct bnxt_qplib_hwq *hwq)
sys/dev/bnxt/bnxt_re/qplib_res.h
657
(((u64)(((xid) & DBC_DBC_XID_MASK) | DBC_DBC_PATH_ROCE | \
sys/dev/bnxt/bnxt_re/qplib_res.h
662
u64 key, void __iomem *db,
sys/dev/bnxt/bnxt_re/qplib_res.h
663
u64 *shadow_key)
sys/dev/bnxt/bnxt_re/qplib_res.h
673
static inline void __replay_writeq(u64 key, void __iomem *db)
sys/dev/bnxt/bnxt_re/qplib_res.h
698
u64 key = 0;
sys/dev/bnxt/bnxt_re/qplib_res.h
717
u64 key = 0;
sys/dev/bnxt/bnxt_re/qplib_res.h
730
u64 key = 0;
sys/dev/bnxt/bnxt_re/qplib_res.h
743
u64 key = 0;
sys/dev/bnxt/bnxt_re/qplib_res.h
752
u64 key = 0;
sys/dev/bnxt/bnxt_re/qplib_sp.h
118
u64 va;
sys/dev/bnxt/bnxt_re/qplib_sp.h
119
u64 total_size;
sys/dev/bnxt/bnxt_re/qplib_sp.h
121
u64 mr_handle;
sys/dev/bnxt/bnxt_re/qplib_sp.h
128
u64 *ptes;
sys/dev/bnxt/bnxt_re/qplib_sp.h
138
u64 ext_mask;
sys/dev/bnxt/bnxt_re/qplib_sp.h
221
u64 to_retransmits;
sys/dev/bnxt/bnxt_re/qplib_sp.h
222
u64 seq_err_naks_rcvd;
sys/dev/bnxt/bnxt_re/qplib_sp.h
224
u64 max_retry_exceeded;
sys/dev/bnxt/bnxt_re/qplib_sp.h
226
u64 rnr_naks_rcvd;
sys/dev/bnxt/bnxt_re/qplib_sp.h
228
u64 missing_resp;
sys/dev/bnxt/bnxt_re/qplib_sp.h
229
u64 unrecoverable_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
231
u64 bad_resp_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
233
u64 local_qp_op_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
235
u64 local_protection_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
237
u64 mem_mgmt_op_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
239
u64 remote_invalid_req_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
241
u64 remote_access_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
243
u64 remote_op_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
245
u64 dup_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
247
u64 res_exceed_max;
sys/dev/bnxt/bnxt_re/qplib_sp.h
249
u64 res_length_mismatch;
sys/dev/bnxt/bnxt_re/qplib_sp.h
251
u64 res_exceeds_wqe;
sys/dev/bnxt/bnxt_re/qplib_sp.h
253
u64 res_opcode_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
255
u64 res_rx_invalid_rkey;
sys/dev/bnxt/bnxt_re/qplib_sp.h
257
u64 res_rx_domain_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
259
u64 res_rx_no_perm;
sys/dev/bnxt/bnxt_re/qplib_sp.h
261
u64 res_rx_range_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
263
u64 res_tx_invalid_rkey;
sys/dev/bnxt/bnxt_re/qplib_sp.h
265
u64 res_tx_domain_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
267
u64 res_tx_no_perm;
sys/dev/bnxt/bnxt_re/qplib_sp.h
269
u64 res_tx_range_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
271
u64 res_irrq_oflow;
sys/dev/bnxt/bnxt_re/qplib_sp.h
273
u64 res_unsup_opcode;
sys/dev/bnxt/bnxt_re/qplib_sp.h
275
u64 res_unaligned_atomic;
sys/dev/bnxt/bnxt_re/qplib_sp.h
277
u64 res_rem_inv_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
279
u64 res_mem_error;
sys/dev/bnxt/bnxt_re/qplib_sp.h
281
u64 res_srq_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
283
u64 res_cmp_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
285
u64 res_invalid_dup_rkey;
sys/dev/bnxt/bnxt_re/qplib_sp.h
287
u64 res_wqe_format_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
289
u64 res_cq_load_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
291
u64 res_srq_load_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
293
u64 res_tx_pci_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
295
u64 res_rx_pci_err;
sys/dev/bnxt/bnxt_re/qplib_sp.h
297
u64 res_oos_drop_count;
sys/dev/bnxt/bnxt_re/qplib_sp.h
299
u64 active_qp_count_p0;
sys/dev/bnxt/bnxt_re/qplib_sp.h
301
u64 active_qp_count_p1;
sys/dev/bnxt/bnxt_re/qplib_sp.h
303
u64 active_qp_count_p2;
sys/dev/bnxt/bnxt_re/qplib_sp.h
305
u64 active_qp_count_p3;
sys/dev/bnxt/bnxt_re/qplib_sp.h
310
u64 tx_atomic_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
311
u64 tx_read_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
312
u64 tx_read_res;
sys/dev/bnxt/bnxt_re/qplib_sp.h
313
u64 tx_write_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
314
u64 tx_send_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
315
u64 tx_roce_pkts;
sys/dev/bnxt/bnxt_re/qplib_sp.h
316
u64 tx_roce_bytes;
sys/dev/bnxt/bnxt_re/qplib_sp.h
317
u64 rx_atomic_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
318
u64 rx_read_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
319
u64 rx_read_res;
sys/dev/bnxt/bnxt_re/qplib_sp.h
320
u64 rx_write_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
321
u64 rx_send_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
322
u64 rx_roce_pkts;
sys/dev/bnxt/bnxt_re/qplib_sp.h
323
u64 rx_roce_bytes;
sys/dev/bnxt/bnxt_re/qplib_sp.h
324
u64 rx_roce_good_pkts;
sys/dev/bnxt/bnxt_re/qplib_sp.h
325
u64 rx_roce_good_bytes;
sys/dev/bnxt/bnxt_re/qplib_sp.h
326
u64 rx_out_of_buffer;
sys/dev/bnxt/bnxt_re/qplib_sp.h
327
u64 rx_out_of_sequence;
sys/dev/bnxt/bnxt_re/qplib_sp.h
328
u64 tx_cnp;
sys/dev/bnxt/bnxt_re/qplib_sp.h
329
u64 rx_cnp;
sys/dev/bnxt/bnxt_re/qplib_sp.h
330
u64 rx_ecn_marked;
sys/dev/bnxt/bnxt_re/qplib_sp.h
331
u64 seq_err_naks_rcvd;
sys/dev/bnxt/bnxt_re/qplib_sp.h
332
u64 rnr_naks_rcvd;
sys/dev/bnxt/bnxt_re/qplib_sp.h
333
u64 missing_resp;
sys/dev/bnxt/bnxt_re/qplib_sp.h
334
u64 to_retransmits;
sys/dev/bnxt/bnxt_re/qplib_sp.h
335
u64 dup_req;
sys/dev/bnxt/bnxt_re/qplib_sp.h
336
u64 rx_dcn_payload_cut;
sys/dev/bnxt/bnxt_re/qplib_sp.h
337
u64 te_bypassed;
sys/dev/bnxt/bnxt_re/qplib_sp.h
59
u64 max_mr_size;
sys/dev/bnxt/bnxt_re/qplib_sp.h
77
u64 page_size_cap;
sys/dev/bnxt/bnxt_re/stats.c
100
u64 pkts;
sys/dev/bnxt/bnxt_re/stats.c
162
u64 byte_mask, pkts_mask;
sys/dev/bnxt/bnxt_re/stats.c
163
u64 diff;
sys/dev/bnxt/bnxt_re/stats.c
99
u64 bytes;
sys/dev/bnxt/bnxt_re/stats.h
100
u64 rx_agg_bytes;
sys/dev/bnxt/bnxt_re/stats.h
101
u64 rx_agg_events;
sys/dev/bnxt/bnxt_re/stats.h
102
u64 rx_agg_aborts;
sys/dev/bnxt/bnxt_re/stats.h
112
u64 oob;
sys/dev/bnxt/bnxt_re/stats.h
113
u64 oos;
sys/dev/bnxt/bnxt_re/stats.h
114
u64 seq_err_naks_rcvd;
sys/dev/bnxt/bnxt_re/stats.h
115
u64 rnr_naks_rcvd;
sys/dev/bnxt/bnxt_re/stats.h
116
u64 missing_resp;
sys/dev/bnxt/bnxt_re/stats.h
117
u64 to_retransmits;
sys/dev/bnxt/bnxt_re/stats.h
118
u64 dup_req;
sys/dev/bnxt/bnxt_re/stats.h
168
static inline u64 bnxt_re_get_cfa_stat_mask(struct bnxt_qplib_chip_ctx *cctx,
sys/dev/bnxt/bnxt_re/stats.h
171
u64 mask;
sys/dev/bnxt/bnxt_re/stats.h
186
static inline u64 bnxt_re_stat_diff(u64 cur, u64 *prev, u64 mask)
sys/dev/bnxt/bnxt_re/stats.h
188
u64 diff;
sys/dev/bnxt/bnxt_re/stats.h
42
u64 cnp_tx_pkts;
sys/dev/bnxt/bnxt_re/stats.h
43
u64 cnp_tx_bytes;
sys/dev/bnxt/bnxt_re/stats.h
44
u64 cnp_rx_pkts;
sys/dev/bnxt/bnxt_re/stats.h
45
u64 cnp_rx_bytes;
sys/dev/bnxt/bnxt_re/stats.h
46
u64 ecn_marked;
sys/dev/bnxt/bnxt_re/stats.h
50
u64 tx_pkts;
sys/dev/bnxt/bnxt_re/stats.h
51
u64 tx_bytes;
sys/dev/bnxt/bnxt_re/stats.h
52
u64 rx_pkts;
sys/dev/bnxt/bnxt_re/stats.h
53
u64 rx_bytes;
sys/dev/bnxt/bnxt_re/stats.h
62
u64 atomic_req;
sys/dev/bnxt/bnxt_re/stats.h
63
u64 read_req;
sys/dev/bnxt/bnxt_re/stats.h
64
u64 read_resp;
sys/dev/bnxt/bnxt_re/stats.h
65
u64 write_req;
sys/dev/bnxt/bnxt_re/stats.h
66
u64 send_req;
sys/dev/bnxt/bnxt_re/stats.h
70
u64 rx_pkts;
sys/dev/bnxt/bnxt_re/stats.h
71
u64 rx_bytes;
sys/dev/bnxt/bnxt_re/stats.h
78
u64 rx_dcn_payload_cut;
sys/dev/bnxt/bnxt_re/stats.h
79
u64 te_bypassed;
sys/dev/bnxt/bnxt_re/stats.h
83
u64 tx_ucast_pkts;
sys/dev/bnxt/bnxt_re/stats.h
84
u64 tx_mcast_pkts;
sys/dev/bnxt/bnxt_re/stats.h
85
u64 tx_bcast_pkts;
sys/dev/bnxt/bnxt_re/stats.h
86
u64 tx_discard_pkts;
sys/dev/bnxt/bnxt_re/stats.h
87
u64 tx_error_pkts;
sys/dev/bnxt/bnxt_re/stats.h
88
u64 tx_ucast_bytes;
sys/dev/bnxt/bnxt_re/stats.h
89
u64 tx_mcast_bytes;
sys/dev/bnxt/bnxt_re/stats.h
90
u64 tx_bcast_bytes;
sys/dev/bnxt/bnxt_re/stats.h
91
u64 rx_ucast_pkts;
sys/dev/bnxt/bnxt_re/stats.h
92
u64 rx_mcast_pkts;
sys/dev/bnxt/bnxt_re/stats.h
93
u64 rx_bcast_pkts;
sys/dev/bnxt/bnxt_re/stats.h
94
u64 rx_discard_pkts;
sys/dev/bnxt/bnxt_re/stats.h
95
u64 rx_error_pkts;
sys/dev/bnxt/bnxt_re/stats.h
96
u64 rx_ucast_bytes;
sys/dev/bnxt/bnxt_re/stats.h
97
u64 rx_mcast_bytes;
sys/dev/bnxt/bnxt_re/stats.h
98
u64 rx_bcast_bytes;
sys/dev/bnxt/bnxt_re/stats.h
99
u64 rx_agg_pkts;
sys/dev/cxgb/common/cxgb_common.h
183
u64 tx_octets; /* total # of octets in good frames */
sys/dev/cxgb/common/cxgb_common.h
184
u64 tx_octets_bad; /* total # of octets in error frames */
sys/dev/cxgb/common/cxgb_common.h
185
u64 tx_frames; /* all good frames */
sys/dev/cxgb/common/cxgb_common.h
186
u64 tx_mcast_frames; /* good multicast frames */
sys/dev/cxgb/common/cxgb_common.h
187
u64 tx_bcast_frames; /* good broadcast frames */
sys/dev/cxgb/common/cxgb_common.h
188
u64 tx_pause; /* # of transmitted pause frames */
sys/dev/cxgb/common/cxgb_common.h
189
u64 tx_deferred; /* frames with deferred transmissions */
sys/dev/cxgb/common/cxgb_common.h
190
u64 tx_late_collisions; /* # of late collisions */
sys/dev/cxgb/common/cxgb_common.h
191
u64 tx_total_collisions; /* # of total collisions */
sys/dev/cxgb/common/cxgb_common.h
192
u64 tx_excess_collisions; /* frame errors from excessive collisions */
sys/dev/cxgb/common/cxgb_common.h
193
u64 tx_underrun; /* # of Tx FIFO underruns */
sys/dev/cxgb/common/cxgb_common.h
194
u64 tx_len_errs; /* # of Tx length errors */
sys/dev/cxgb/common/cxgb_common.h
195
u64 tx_mac_internal_errs; /* # of internal MAC errors on Tx */
sys/dev/cxgb/common/cxgb_common.h
196
u64 tx_excess_deferral; /* # of frames with excessive deferral */
sys/dev/cxgb/common/cxgb_common.h
197
u64 tx_fcs_errs; /* # of frames with bad FCS */
sys/dev/cxgb/common/cxgb_common.h
199
u64 tx_frames_64; /* # of Tx frames in a particular range */
sys/dev/cxgb/common/cxgb_common.h
200
u64 tx_frames_65_127;
sys/dev/cxgb/common/cxgb_common.h
201
u64 tx_frames_128_255;
sys/dev/cxgb/common/cxgb_common.h
202
u64 tx_frames_256_511;
sys/dev/cxgb/common/cxgb_common.h
203
u64 tx_frames_512_1023;
sys/dev/cxgb/common/cxgb_common.h
204
u64 tx_frames_1024_1518;
sys/dev/cxgb/common/cxgb_common.h
205
u64 tx_frames_1519_max;
sys/dev/cxgb/common/cxgb_common.h
207
u64 rx_octets; /* total # of octets in good frames */
sys/dev/cxgb/common/cxgb_common.h
208
u64 rx_octets_bad; /* total # of octets in error frames */
sys/dev/cxgb/common/cxgb_common.h
209
u64 rx_frames; /* all good frames */
sys/dev/cxgb/common/cxgb_common.h
210
u64 rx_mcast_frames; /* good multicast frames */
sys/dev/cxgb/common/cxgb_common.h
211
u64 rx_bcast_frames; /* good broadcast frames */
sys/dev/cxgb/common/cxgb_common.h
212
u64 rx_pause; /* # of received pause frames */
sys/dev/cxgb/common/cxgb_common.h
213
u64 rx_fcs_errs; /* # of received frames with bad FCS */
sys/dev/cxgb/common/cxgb_common.h
214
u64 rx_align_errs; /* alignment errors */
sys/dev/cxgb/common/cxgb_common.h
215
u64 rx_symbol_errs; /* symbol errors */
sys/dev/cxgb/common/cxgb_common.h
216
u64 rx_data_errs; /* data errors */
sys/dev/cxgb/common/cxgb_common.h
217
u64 rx_sequence_errs; /* sequence errors */
sys/dev/cxgb/common/cxgb_common.h
218
u64 rx_runt; /* # of runt frames */
sys/dev/cxgb/common/cxgb_common.h
219
u64 rx_jabber; /* # of jabber frames */
sys/dev/cxgb/common/cxgb_common.h
220
u64 rx_short; /* # of short frames */
sys/dev/cxgb/common/cxgb_common.h
221
u64 rx_too_long; /* # of oversized frames */
sys/dev/cxgb/common/cxgb_common.h
222
u64 rx_mac_internal_errs; /* # of internal MAC errors on Rx */
sys/dev/cxgb/common/cxgb_common.h
224
u64 rx_frames_64; /* # of Rx frames in a particular range */
sys/dev/cxgb/common/cxgb_common.h
225
u64 rx_frames_65_127;
sys/dev/cxgb/common/cxgb_common.h
226
u64 rx_frames_128_255;
sys/dev/cxgb/common/cxgb_common.h
227
u64 rx_frames_256_511;
sys/dev/cxgb/common/cxgb_common.h
228
u64 rx_frames_512_1023;
sys/dev/cxgb/common/cxgb_common.h
229
u64 rx_frames_1024_1518;
sys/dev/cxgb/common/cxgb_common.h
230
u64 rx_frames_1519_max;
sys/dev/cxgb/common/cxgb_common.h
232
u64 rx_cong_drops; /* # of Rx drops due to SGE congestion */
sys/dev/cxgb/common/cxgb_common.h
482
u64 tx_mcnt;
sys/dev/cxgb/common/cxgb_common.h
485
u64 rx_mcnt;
sys/dev/cxgb/common/cxgb_common.h
489
u64 rx_pause;
sys/dev/cxgb/common/cxgb_common.h
750
u64 *buf);
sys/dev/cxgb/common/cxgb_common.h
803
enum sge_context_type type, int respq, u64 base_addr,
sys/dev/cxgb/common/cxgb_common.h
807
u64 base_addr, unsigned int size, unsigned int esize,
sys/dev/cxgb/common/cxgb_common.h
810
u64 base_addr, unsigned int size,
sys/dev/cxgb/common/cxgb_common.h
812
int t3_sge_init_cqcntxt(adapter_t *adapter, unsigned int id, u64 base_addr,
sys/dev/cxgb/common/cxgb_t3_hw.c
142
u64 *buf)
sys/dev/cxgb/common/cxgb_t3_hw.c
156
u64 val64 = 0;
sys/dev/cxgb/common/cxgb_t3_hw.c
176
val64 |= (u64)val << 32;
sys/dev/cxgb/common/cxgb_t3_hw.c
180
val64 |= (u64)val << (step[mc7->width] * i);
sys/dev/cxgb/common/cxgb_t3_hw.c
2562
enum sge_context_type type, int respq, u64 base_addr,
sys/dev/cxgb/common/cxgb_t3_hw.c
2605
u64 base_addr, unsigned int size, unsigned int bsize,
sys/dev/cxgb/common/cxgb_t3_hw.c
2644
u64 base_addr, unsigned int size,
sys/dev/cxgb/common/cxgb_t3_hw.c
2686
int t3_sge_init_cqcntxt(adapter_t *adapter, unsigned int id, u64 base_addr,
sys/dev/cxgb/common/cxgb_vsc7323.c
287
u64 rx_ucast, tx_ucast;
sys/dev/cxgb/common/cxgb_vsc7323.c
305
rx_ucast += (u64)(stats0[6 - STATS0_START] - (u32)rx_ucast);
sys/dev/cxgb/common/cxgb_vsc7323.c
308
tx_ucast += (u64)(stats0[27 - STATS0_START] - (u32)tx_ucast);
sys/dev/cxgb/common/cxgb_vsc7323.c
311
mac->stats.name += (u64)((hw_stat) - (u32)(mac->stats.name))
sys/dev/cxgb/common/cxgb_xgmac.c
727
u64 tx_mcnt = s->tx_frames;
sys/dev/cxgb/common/cxgb_xgmac.c
802
(mac)->stats.name += (u64)RMON_READ(mac, A_XGM_STAT_##reg)
sys/dev/cxgb/common/cxgb_xgmac.c
805
((u64)RMON_READ(mac, A_XGM_STAT_##reg_hi) << 32)
sys/dev/cxgb/common/cxgb_xgmac.c
857
mac->stats.rx_cong_drops += (u64)(v - lo);
sys/dev/cxgb/cxgb_main.c
108
unsigned int, u64, u64);
sys/dev/cxgb/cxgb_main.c
110
unsigned int, u64, u64);
sys/dev/cxgb/cxgb_main.c
2777
u64 buf[32];
sys/dev/cxgb/cxgb_main.c
3264
((u64)f->pass << 35) | ((u64)!f->rss << 36));
sys/dev/cxgb/cxgb_main.c
3276
(u64)sc->rrss_map[f->qset] << 19);
sys/dev/cxgb/cxgb_main.c
3284
unsigned int word, u64 mask, u64 val)
sys/dev/cxgb/cxgb_main.c
3296
unsigned int word, u64 mask, u64 val)
sys/dev/cxgbe/common/common.h
103
u64 tx_octets; /* total # of octets in good frames */
sys/dev/cxgbe/common/common.h
104
u64 tx_frames; /* all good frames */
sys/dev/cxgbe/common/common.h
105
u64 tx_bcast_frames; /* all broadcast frames */
sys/dev/cxgbe/common/common.h
106
u64 tx_mcast_frames; /* all multicast frames */
sys/dev/cxgbe/common/common.h
1065
enum t4_bar2_qtype qtype, int user, u64 *pbar2_qoffset,
sys/dev/cxgbe/common/common.h
107
u64 tx_ucast_frames; /* all unicast frames */
sys/dev/cxgbe/common/common.h
108
u64 tx_error_frames; /* all error frames */
sys/dev/cxgbe/common/common.h
110
u64 tx_frames_64; /* # of Tx frames in a particular range */
sys/dev/cxgbe/common/common.h
111
u64 tx_frames_65_127;
sys/dev/cxgbe/common/common.h
112
u64 tx_frames_128_255;
sys/dev/cxgbe/common/common.h
113
u64 tx_frames_256_511;
sys/dev/cxgbe/common/common.h
114
u64 tx_frames_512_1023;
sys/dev/cxgbe/common/common.h
115
u64 tx_frames_1024_1518;
sys/dev/cxgbe/common/common.h
116
u64 tx_frames_1519_max;
sys/dev/cxgbe/common/common.h
118
u64 tx_drop; /* # of dropped Tx frames */
sys/dev/cxgbe/common/common.h
119
u64 tx_pause; /* # of transmitted pause frames */
sys/dev/cxgbe/common/common.h
120
u64 tx_ppp0; /* # of transmitted PPP prio 0 frames */
sys/dev/cxgbe/common/common.h
121
u64 tx_ppp1; /* # of transmitted PPP prio 1 frames */
sys/dev/cxgbe/common/common.h
122
u64 tx_ppp2; /* # of transmitted PPP prio 2 frames */
sys/dev/cxgbe/common/common.h
123
u64 tx_ppp3; /* # of transmitted PPP prio 3 frames */
sys/dev/cxgbe/common/common.h
124
u64 tx_ppp4; /* # of transmitted PPP prio 4 frames */
sys/dev/cxgbe/common/common.h
125
u64 tx_ppp5; /* # of transmitted PPP prio 5 frames */
sys/dev/cxgbe/common/common.h
126
u64 tx_ppp6; /* # of transmitted PPP prio 6 frames */
sys/dev/cxgbe/common/common.h
127
u64 tx_ppp7; /* # of transmitted PPP prio 7 frames */
sys/dev/cxgbe/common/common.h
129
u64 rx_octets; /* total # of octets in good frames */
sys/dev/cxgbe/common/common.h
130
u64 rx_frames; /* all good frames */
sys/dev/cxgbe/common/common.h
131
u64 rx_bcast_frames; /* all broadcast frames */
sys/dev/cxgbe/common/common.h
132
u64 rx_mcast_frames; /* all multicast frames */
sys/dev/cxgbe/common/common.h
133
u64 rx_ucast_frames; /* all unicast frames */
sys/dev/cxgbe/common/common.h
134
u64 rx_too_long; /* # of frames exceeding MTU */
sys/dev/cxgbe/common/common.h
135
u64 rx_jabber; /* # of jabber frames */
sys/dev/cxgbe/common/common.h
136
u64 rx_fcs_err; /* # of received frames with bad FCS */
sys/dev/cxgbe/common/common.h
137
u64 rx_len_err; /* # of received frames with length error */
sys/dev/cxgbe/common/common.h
138
u64 rx_symbol_err; /* symbol errors */
sys/dev/cxgbe/common/common.h
139
u64 rx_runt; /* # of short frames */
sys/dev/cxgbe/common/common.h
141
u64 rx_frames_64; /* # of Rx frames in a particular range */
sys/dev/cxgbe/common/common.h
142
u64 rx_frames_65_127;
sys/dev/cxgbe/common/common.h
143
u64 rx_frames_128_255;
sys/dev/cxgbe/common/common.h
144
u64 rx_frames_256_511;
sys/dev/cxgbe/common/common.h
145
u64 rx_frames_512_1023;
sys/dev/cxgbe/common/common.h
146
u64 rx_frames_1024_1518;
sys/dev/cxgbe/common/common.h
147
u64 rx_frames_1519_max;
sys/dev/cxgbe/common/common.h
149
u64 rx_pause; /* # of received pause frames */
sys/dev/cxgbe/common/common.h
150
u64 rx_ppp0; /* # of received PPP prio 0 frames */
sys/dev/cxgbe/common/common.h
151
u64 rx_ppp1; /* # of received PPP prio 1 frames */
sys/dev/cxgbe/common/common.h
152
u64 rx_ppp2; /* # of received PPP prio 2 frames */
sys/dev/cxgbe/common/common.h
153
u64 rx_ppp3; /* # of received PPP prio 3 frames */
sys/dev/cxgbe/common/common.h
154
u64 rx_ppp4; /* # of received PPP prio 4 frames */
sys/dev/cxgbe/common/common.h
155
u64 rx_ppp5; /* # of received PPP prio 5 frames */
sys/dev/cxgbe/common/common.h
156
u64 rx_ppp6; /* # of received PPP prio 6 frames */
sys/dev/cxgbe/common/common.h
157
u64 rx_ppp7; /* # of received PPP prio 7 frames */
sys/dev/cxgbe/common/common.h
159
u64 rx_ovflow0; /* drops due to buffer-group 0 overflows */
sys/dev/cxgbe/common/common.h
160
u64 rx_ovflow1; /* drops due to buffer-group 1 overflows */
sys/dev/cxgbe/common/common.h
161
u64 rx_ovflow2; /* drops due to buffer-group 2 overflows */
sys/dev/cxgbe/common/common.h
162
u64 rx_ovflow3; /* drops due to buffer-group 3 overflows */
sys/dev/cxgbe/common/common.h
163
u64 rx_trunc0; /* buffer-group 0 truncated packets */
sys/dev/cxgbe/common/common.h
164
u64 rx_trunc1; /* buffer-group 1 truncated packets */
sys/dev/cxgbe/common/common.h
165
u64 rx_trunc2; /* buffer-group 2 truncated packets */
sys/dev/cxgbe/common/common.h
166
u64 rx_trunc3; /* buffer-group 3 truncated packets */
sys/dev/cxgbe/common/common.h
170
u64 octets;
sys/dev/cxgbe/common/common.h
171
u64 frames;
sys/dev/cxgbe/common/common.h
172
u64 bcast_frames;
sys/dev/cxgbe/common/common.h
173
u64 mcast_frames;
sys/dev/cxgbe/common/common.h
174
u64 ucast_frames;
sys/dev/cxgbe/common/common.h
175
u64 error_frames;
sys/dev/cxgbe/common/common.h
177
u64 frames_64;
sys/dev/cxgbe/common/common.h
178
u64 frames_65_127;
sys/dev/cxgbe/common/common.h
179
u64 frames_128_255;
sys/dev/cxgbe/common/common.h
180
u64 frames_256_511;
sys/dev/cxgbe/common/common.h
181
u64 frames_512_1023;
sys/dev/cxgbe/common/common.h
182
u64 frames_1024_1518;
sys/dev/cxgbe/common/common.h
183
u64 frames_1519_max;
sys/dev/cxgbe/common/common.h
185
u64 drop;
sys/dev/cxgbe/common/common.h
187
u64 ovflow0;
sys/dev/cxgbe/common/common.h
188
u64 ovflow1;
sys/dev/cxgbe/common/common.h
189
u64 ovflow2;
sys/dev/cxgbe/common/common.h
190
u64 ovflow3;
sys/dev/cxgbe/common/common.h
191
u64 trunc0;
sys/dev/cxgbe/common/common.h
192
u64 trunc1;
sys/dev/cxgbe/common/common.h
193
u64 trunc2;
sys/dev/cxgbe/common/common.h
194
u64 trunc3;
sys/dev/cxgbe/common/common.h
199
u64 tcp_in_segs;
sys/dev/cxgbe/common/common.h
200
u64 tcp_out_segs;
sys/dev/cxgbe/common/common.h
201
u64 tcp_retrans_segs;
sys/dev/cxgbe/common/common.h
207
u64 octets;
sys/dev/cxgbe/common/common.h
220
u64 octets_ddp;
sys/dev/cxgbe/common/common.h
254
u64 bytes_in[MAX_NCHAN];
sys/dev/cxgbe/common/common.h
261
u64 bytes_out[MAX_NCHAN];
sys/dev/cxgbe/common/common.h
761
void t4_pmtx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]);
sys/dev/cxgbe/common/common.h
762
void t4_pmrx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]);
sys/dev/cxgbe/common/common.h
821
__be32 *data, u64 *parity);
sys/dev/cxgbe/common/common.h
822
int t4_edc_read(struct adapter *adap, int idx, u32 addr, __be32 *data, u64 *parity);
sys/dev/cxgbe/common/common.h
852
void t4_tp_read_la(struct adapter *adap, u64 *la_buf, unsigned int *wrptr);
sys/dev/cxgbe/common/common.h
880
void t4_get_chan_txrate(struct adapter *adap, u64 *nic_rate, u64 *ofld_rate);
sys/dev/cxgbe/common/common.h
886
u64 mask0, u64 mask1, unsigned int crc, bool enable);
sys/dev/cxgbe/common/common.h
931
u64 *hash, bool sleep_ok);
sys/dev/cxgbe/common/common.h
954
bool ucast, u64 vec, bool sleep_ok);
sys/dev/cxgbe/common/t4_hw.c
10041
const u8 **addr, u16 *idx, u64 *hash, bool sleep_ok)
sys/dev/cxgbe/common/t4_hw.c
10347
bool ucast, u64 vec, bool sleep_ok)
sys/dev/cxgbe/common/t4_hw.c
11295
u64 *pbar2_qoffset,
sys/dev/cxgbe/common/t4_hw.c
11299
u64 bar2_page_offset, bar2_qoffset;
sys/dev/cxgbe/common/t4_hw.c
11325
bar2_page_offset = ((u64)(qid >> qpp_shift) << page_shift);
sys/dev/cxgbe/common/t4_hw.c
11579
hash_mask |= (u64)v << 32;
sys/dev/cxgbe/common/t4_hw.c
12262
void t4_tp_read_la(struct adapter *adap, u64 *la_buf, unsigned int *wrptr)
sys/dev/cxgbe/common/t4_hw.c
378
u64 res;
sys/dev/cxgbe/common/t4_hw.c
604
int t4_mc_read(struct adapter *adap, int idx, u32 addr, __be32 *data, u64 *ecc)
sys/dev/cxgbe/common/t4_hw.c
660
int t4_edc_read(struct adapter *adap, int idx, u32 addr, __be32 *data, u64 *ecc)
sys/dev/cxgbe/common/t4_hw.c
7824
#define STAT64(x) (((u64)STAT(x##_HI) << 32) | STAT(x##_LO))
sys/dev/cxgbe/common/t4_hw.c
7982
st->octets_ddp = ((u64)val[0] << 32) | val[1];
sys/dev/cxgbe/common/t4_hw.c
8002
st->octets = ((u64)val[2] << 32) | val[3];
sys/dev/cxgbe/common/t4_hw.c
8286
static u64 chan_rate(struct adapter *adap, unsigned int bytes256)
sys/dev/cxgbe/common/t4_hw.c
8288
u64 v = (u64)bytes256 * adap->params.vpd.cclk;
sys/dev/cxgbe/common/t4_hw.c
8302
void t4_get_chan_txrate(struct adapter *adap, u64 *nic_rate, u64 *ofld_rate)
sys/dev/cxgbe/common/t4_hw.c
8498
void t4_pmtx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[])
sys/dev/cxgbe/common/t4_hw.c
8514
cycles[i] = (((u64)data[0] << 32) | data[1]);
sys/dev/cxgbe/common/t4_hw.c
8527
void t4_pmrx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[])
sys/dev/cxgbe/common/t4_hw.c
8541
cycles[i] = (((u64)data[0] << 32) | data[1]);
sys/dev/cxgbe/common/t4_hw.c
8687
u64 *s, *o;
sys/dev/cxgbe/common/t4_hw.c
8691
for (i = 0, s = (u64 *)stats, o = (u64 *)offset ;
sys/dev/cxgbe/common/t4_hw.c
8692
i < (sizeof(struct port_stats)/sizeof(u64)) ;
sys/dev/cxgbe/common/t4_hw.c
8914
u64 mask0, u64 mask1, unsigned int crc, bool enable)
sys/dev/cxgbe/crypto/t4_keyctx.c
314
uint64_t *u64;
sys/dev/cxgbe/crypto/t4_keyctx.c
318
u64 = (uint64_t *)dst;
sys/dev/cxgbe/crypto/t4_keyctx.c
338
u64[i] = htobe64(auth_ctx->sha384ctx.state[i]);
sys/dev/cxgbe/crypto/t4_keyctx.c
343
u64[i] = htobe64(auth_ctx->sha512ctx.state[i]);
sys/dev/cxgbe/cudbg/cudbg.h
324
u64 timestamp;
sys/dev/cxgbe/cudbg/cudbg.h
325
u64 time_res;
sys/dev/cxgbe/cudbg/cudbg.h
350
u64 time;
sys/dev/cxgbe/cudbg/cudbg_entity.h
169
u64 mask;
sys/dev/cxgbe/cudbg/cudbg_entity.h
205
u64 tx_cyc[T6_PM_NSTATS];
sys/dev/cxgbe/cudbg/cudbg_entity.h
206
u64 rx_cyc[T6_PM_NSTATS];
sys/dev/cxgbe/cudbg/cudbg_entity.h
374
u64 retransmit_min;
sys/dev/cxgbe/cudbg/cudbg_entity.h
375
u64 retransmit_max;
sys/dev/cxgbe/cudbg/cudbg_entity.h
376
u64 persist_timer_min;
sys/dev/cxgbe/cudbg/cudbg_entity.h
377
u64 persist_timer_max;
sys/dev/cxgbe/cudbg/cudbg_entity.h
378
u64 keepalive_idle_timer;
sys/dev/cxgbe/cudbg/cudbg_entity.h
379
u64 keepalive_interval;
sys/dev/cxgbe/cudbg/cudbg_entity.h
380
u64 initial_srtt;
sys/dev/cxgbe/cudbg/cudbg_entity.h
381
u64 finwait2_timer;
sys/dev/cxgbe/cudbg/cudbg_entity.h
696
u64 nrate[NCHAN];
sys/dev/cxgbe/cudbg/cudbg_entity.h
697
u64 orate[NCHAN];
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
142
int cudbg_write_flash(void *handle, u64 timestamp, void *data,
sys/dev/cxgbe/cudbg/cudbg_flash_utils.c
81
u64 timestamp, u32 cur_entity_hdr_offset,
sys/dev/cxgbe/cudbg/cudbg_lib.c
1207
u64 tp_tick_us;
sys/dev/cxgbe/cudbg/cudbg_lib.c
1356
size = sizeof(struct struct_tp_la) + TPLA_SIZE * sizeof(u64);
sys/dev/cxgbe/cudbg/cudbg_lib.c
1365
t4_tp_read_la(padap, (u64 *)tp_la_buff->data, NULL);
sys/dev/cxgbe/cudbg/cudbg_lib.c
152
u64 timestamp;
sys/dev/cxgbe/cudbg/cudbg_lib.c
3074
u64 flit;
sys/dev/cxgbe/cudbg/cudbg_lib.c
3472
static inline void cudbg_tcamxy2valmask(u64 x, u64 y, u8 *addr, u64 *mask)
sys/dev/cxgbe/cudbg/cudbg_lib.c
3475
y = (__force u64)cpu_to_be64(y);
sys/dev/cxgbe/cudbg/cudbg_lib.c
3515
u64 tcamy, tcamx, val;
sys/dev/cxgbe/cudbg/cudbg_lib_common.h
118
u64 max_timestamp;
sys/dev/cxgbe/cudbg/cudbg_lib_common.h
163
int cudbg_write_flash(void *handle, u64 timestamp, void *data,
sys/dev/cxgbe/iw_cxgbe/cq.c
107
u64 cq_bar2_qoffset = 0;
sys/dev/cxgbe/iw_cxgbe/cq.c
189
cq->bar2_va = (void __iomem *)((u64)rdev->bar2_kva +
sys/dev/cxgbe/iw_cxgbe/cq.c
216
cqe.bits_type_ts = cpu_to_be64(V_CQE_GENBIT((u64)cq->gen));
sys/dev/cxgbe/iw_cxgbe/cq.c
250
cqe.bits_type_ts = cpu_to_be64(V_CQE_GENBIT((u64)cq->gen));
sys/dev/cxgbe/iw_cxgbe/cq.c
492
u8 *cqe_flushed, u64 *cookie, u32 *credit)
sys/dev/cxgbe/iw_cxgbe/cq.c
722
u64 cookie = 0;
sys/dev/cxgbe/iw_cxgbe/device.c
229
iwsc->rdev.bar2_kva = (void __iomem *)((u64)iwsc->rdev.adap->udbs_base);
sys/dev/cxgbe/iw_cxgbe/ev.c
56
(long long)(((u64)ntohl(tpte->len_hi) << 32) | ntohl(tpte->len_lo)),
sys/dev/cxgbe/iw_cxgbe/ev.c
57
(long long)(((u64)ntohl(tpte->va_hi) << 32) | ntohl(tpte->va_lo_fbo)));
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
123
u64 total;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
124
u64 cur;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
125
u64 max;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
126
u64 fail;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
375
u64 len;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
376
u64 va_fbo;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
396
u64 kva;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
398
u64 *mpl;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
412
u64 kva;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
519
u64 addr;
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
939
struct ib_mr *c4iw_reg_user_mr(struct ib_pd *pd, u64 start, u64 length, u64
sys/dev/cxgbe/iw_cxgbe/mem.c
190
int bind_enabled, u32 zbva, u64 to,
sys/dev/cxgbe/iw_cxgbe/mem.c
191
u64 len, u8 page_size, u32 pbl_size, u32 pbl_addr)
sys/dev/cxgbe/iw_cxgbe/mem.c
389
struct ib_mr *c4iw_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
sys/dev/cxgbe/iw_cxgbe/mem.c
390
u64 virt, int acc, struct ib_udata *udata)
sys/dev/cxgbe/iw_cxgbe/mem.c
51
mr_exceeds_hw_limits(struct c4iw_dev *dev, u64 length)
sys/dev/cxgbe/iw_cxgbe/mem.c
558
int length = roundup(max_num_sg * sizeof(u64), 32);
sys/dev/cxgbe/iw_cxgbe/mem.c
620
static int c4iw_set_page(struct ib_mr *ibmr, u64 addr)
sys/dev/cxgbe/iw_cxgbe/mem.c
75
wait ? (u64)(unsigned long)&wr_wait : 0);
sys/dev/cxgbe/iw_cxgbe/provider.c
169
u64 addr = 0;
sys/dev/cxgbe/iw_cxgbe/qp.c
139
u64 sq_bar2_qoffset = 0, rq_bar2_qoffset = 0;
sys/dev/cxgbe/iw_cxgbe/qp.c
1873
sq_db_key_mm->addr = (u64)qhp->wq.sq.bar2_pa;
sys/dev/cxgbe/iw_cxgbe/qp.c
1880
rq_db_key_mm->addr = (u64)qhp->wq.rq.bar2_pa;
sys/dev/cxgbe/iw_cxgbe/qp.c
225
wq->sq.bar2_va = (void __iomem *)((u64)rdev->bar2_kva +
sys/dev/cxgbe/iw_cxgbe/qp.c
227
wq->rq.bar2_va = (void __iomem *)((u64)rdev->bar2_kva +
sys/dev/cxgbe/iw_cxgbe/qp.c
390
*flitp = cpu_to_be64(((u64)sg_list[i].lkey << 32) |
sys/dev/cxgbe/iw_cxgbe/qp.c
630
cqe.bits_type_ts = cpu_to_be64(V_CQE_GENBIT((u64)cq->gen));
sys/dev/cxgbe/iw_cxgbe/qp.c
660
cqe.bits_type_ts = cpu_to_be64(V_CQE_GENBIT((u64)cq->gen));
sys/dev/cxgbe/iw_cxgbe/qp.c
699
p[0] = cpu_to_be64((u64)mhp->mpl[0]);
sys/dev/cxgbe/iw_cxgbe/qp.c
700
p[1] = cpu_to_be64((u64)mhp->mpl[1]);
sys/dev/cxgbe/iw_cxgbe/qp.c
713
int pbllen = roundup(mhp->mpl_len * sizeof(u64), 32);
sys/dev/cxgbe/iw_cxgbe/qp.c
736
(__force u64)cpu_to_be64((u64)mhp->mpl[i]);
sys/dev/cxgbe/iw_cxgbe/qp.c
755
*p = cpu_to_be64((u64)mhp->mpl[i]);
sys/dev/cxgbe/iw_cxgbe/t4.h
100
#define T4_MAX_FR_IMMD_DEPTH (T4_MAX_FR_IMMD / sizeof(u64))
sys/dev/cxgbe/iw_cxgbe/t4.h
102
#define T4_MAX_FR_DSGL_DEPTH (T4_MAX_FR_DSGL / sizeof(u64))
sys/dev/cxgbe/iw_cxgbe/t4.h
104
#define T4_MAX_FR_FW_DSGL_DEPTH (T4_MAX_FR_FW_DSGL / sizeof(u64))
sys/dev/cxgbe/iw_cxgbe/t4.h
202
u64 drain_cookie;
sys/dev/cxgbe/iw_cxgbe/t4.h
286
u64 wr_id;
sys/dev/cxgbe/iw_cxgbe/t4.h
295
u64 sge_ts;
sys/dev/cxgbe/iw_cxgbe/t4.h
319
u64 bar2_pa;
sys/dev/cxgbe/iw_cxgbe/t4.h
334
u64 wr_id;
sys/dev/cxgbe/iw_cxgbe/t4.h
344
u64 bar2_pa;
sys/dev/cxgbe/iw_cxgbe/t4.h
468
static inline void pio_copy(u64 __iomem *dst, u64 *src)
sys/dev/cxgbe/iw_cxgbe/t4.h
489
pio_copy((u64 __iomem *)
sys/dev/cxgbe/iw_cxgbe/t4.h
490
((u64)wq->sq.bar2_va + SGE_UDB_WCDOORBELL),
sys/dev/cxgbe/iw_cxgbe/t4.h
491
(u64 *)wqe);
sys/dev/cxgbe/iw_cxgbe/t4.h
496
(void __iomem *)((u64)wq->sq.bar2_va +
sys/dev/cxgbe/iw_cxgbe/t4.h
514
pio_copy((u64 __iomem *)((u64)wq->rq.bar2_va +
sys/dev/cxgbe/iw_cxgbe/t4.h
515
SGE_UDB_WCDOORBELL), (u64 *)wqe);
sys/dev/cxgbe/iw_cxgbe/t4.h
520
(void __iomem *)((u64)wq->rq.bar2_va +
sys/dev/cxgbe/iw_cxgbe/t4.h
549
u64 bar2_pa;
sys/dev/cxgbe/iw_cxgbe/t4.h
571
(void __iomem *)((u64)cq->bar2_va + SGE_UDB_GTS));
sys/dev/cxgbe/iw_cxgbe/t4.h
587
(void __iomem *)((u64)cq->bar2_va + SGE_UDB_GTS));
sys/dev/cxgbe/iw_cxgbe/t4.h
592
(void __iomem *)((u64)cq->bar2_va + SGE_UDB_GTS));
sys/dev/cxgbe/iw_cxgbe/t4.h
711
u64 qp_start;
sys/dev/cxgbe/iw_cxgbe/t4.h
712
u64 qp_size;
sys/dev/cxgbe/iw_cxgbe/t4.h
713
u64 cq_start;
sys/dev/cxgbe/iw_cxgbe/t4.h
714
u64 cq_size;
sys/dev/cxgbe/t4_main.c
12040
u64 nrate[MAX_NCHAN], orate[MAX_NCHAN];
sys/dev/cxgbe/tom/t4_ddp.c
623
V_TCB_RX_DDP_BUF1_LEN((u64)M_TCB_RX_DDP_BUF1_LEN << 32),
sys/dev/cxgbe/tom/t4_ddp.c
625
V_TCB_RX_DDP_BUF1_LEN((u64)len << 32));
sys/dev/drm2/drm_fixed.h
38
#define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12)
sys/dev/drm2/drm_fixed.h
63
u64 tmp = ((u64)A.full << 13);
sys/dev/drm2/drm_ioc32.c
718
u64 data; /**< Pointer */
sys/dev/drm2/drm_irq.c
461
u64 dotclock;
sys/dev/drm2/drm_irq.c
464
dotclock = (u64) crtc->hwmode.clock * 1000;
sys/dev/drm2/drm_irq.c
479
linedur_ns = (s64) div64_u64(((u64) crtc->hwmode.crtc_htotal *
sys/dev/e1000/e1000_82575.h
108
u64 l4_config;
sys/dev/e1000/e1000_hw.h
428
#define __le64 u64
sys/dev/e1000/e1000_hw.h
573
u64 crcerrs;
sys/dev/e1000/e1000_hw.h
574
u64 algnerrc;
sys/dev/e1000/e1000_hw.h
575
u64 symerrs;
sys/dev/e1000/e1000_hw.h
576
u64 rxerrc;
sys/dev/e1000/e1000_hw.h
577
u64 mpc;
sys/dev/e1000/e1000_hw.h
578
u64 scc;
sys/dev/e1000/e1000_hw.h
579
u64 ecol;
sys/dev/e1000/e1000_hw.h
580
u64 mcc;
sys/dev/e1000/e1000_hw.h
581
u64 latecol;
sys/dev/e1000/e1000_hw.h
582
u64 colc;
sys/dev/e1000/e1000_hw.h
583
u64 dc;
sys/dev/e1000/e1000_hw.h
584
u64 tncrs;
sys/dev/e1000/e1000_hw.h
585
u64 sec;
sys/dev/e1000/e1000_hw.h
586
u64 cexterr;
sys/dev/e1000/e1000_hw.h
587
u64 rlec;
sys/dev/e1000/e1000_hw.h
588
u64 xonrxc;
sys/dev/e1000/e1000_hw.h
589
u64 xontxc;
sys/dev/e1000/e1000_hw.h
590
u64 xoffrxc;
sys/dev/e1000/e1000_hw.h
591
u64 xofftxc;
sys/dev/e1000/e1000_hw.h
592
u64 fcruc;
sys/dev/e1000/e1000_hw.h
593
u64 prc64;
sys/dev/e1000/e1000_hw.h
594
u64 prc127;
sys/dev/e1000/e1000_hw.h
595
u64 prc255;
sys/dev/e1000/e1000_hw.h
596
u64 prc511;
sys/dev/e1000/e1000_hw.h
597
u64 prc1023;
sys/dev/e1000/e1000_hw.h
598
u64 prc1522;
sys/dev/e1000/e1000_hw.h
599
u64 gprc;
sys/dev/e1000/e1000_hw.h
600
u64 bprc;
sys/dev/e1000/e1000_hw.h
601
u64 mprc;
sys/dev/e1000/e1000_hw.h
602
u64 gptc;
sys/dev/e1000/e1000_hw.h
603
u64 gorc;
sys/dev/e1000/e1000_hw.h
604
u64 gotc;
sys/dev/e1000/e1000_hw.h
605
u64 rnbc;
sys/dev/e1000/e1000_hw.h
606
u64 ruc;
sys/dev/e1000/e1000_hw.h
607
u64 rfc;
sys/dev/e1000/e1000_hw.h
608
u64 roc;
sys/dev/e1000/e1000_hw.h
609
u64 rjc;
sys/dev/e1000/e1000_hw.h
610
u64 mgprc;
sys/dev/e1000/e1000_hw.h
611
u64 mgpdc;
sys/dev/e1000/e1000_hw.h
612
u64 mgptc;
sys/dev/e1000/e1000_hw.h
613
u64 tor;
sys/dev/e1000/e1000_hw.h
614
u64 tot;
sys/dev/e1000/e1000_hw.h
615
u64 tpr;
sys/dev/e1000/e1000_hw.h
616
u64 tpt;
sys/dev/e1000/e1000_hw.h
617
u64 ptc64;
sys/dev/e1000/e1000_hw.h
618
u64 ptc127;
sys/dev/e1000/e1000_hw.h
619
u64 ptc255;
sys/dev/e1000/e1000_hw.h
620
u64 ptc511;
sys/dev/e1000/e1000_hw.h
621
u64 ptc1023;
sys/dev/e1000/e1000_hw.h
622
u64 ptc1522;
sys/dev/e1000/e1000_hw.h
623
u64 mptc;
sys/dev/e1000/e1000_hw.h
624
u64 bptc;
sys/dev/e1000/e1000_hw.h
625
u64 tsctc;
sys/dev/e1000/e1000_hw.h
626
u64 tsctfc;
sys/dev/e1000/e1000_hw.h
627
u64 iac;
sys/dev/e1000/e1000_hw.h
628
u64 icrxptc;
sys/dev/e1000/e1000_hw.h
629
u64 icrxatc;
sys/dev/e1000/e1000_hw.h
630
u64 ictxptc;
sys/dev/e1000/e1000_hw.h
631
u64 ictxatc;
sys/dev/e1000/e1000_hw.h
632
u64 ictxqec;
sys/dev/e1000/e1000_hw.h
633
u64 ictxqmtc;
sys/dev/e1000/e1000_hw.h
634
u64 icrxdmtc;
sys/dev/e1000/e1000_hw.h
635
u64 icrxoc;
sys/dev/e1000/e1000_hw.h
636
u64 cbtmpc;
sys/dev/e1000/e1000_hw.h
637
u64 htdpmc;
sys/dev/e1000/e1000_hw.h
638
u64 cbrdpc;
sys/dev/e1000/e1000_hw.h
639
u64 cbrmpc;
sys/dev/e1000/e1000_hw.h
640
u64 rpthc;
sys/dev/e1000/e1000_hw.h
641
u64 hgptc;
sys/dev/e1000/e1000_hw.h
642
u64 htcbdpc;
sys/dev/e1000/e1000_hw.h
643
u64 hgorc;
sys/dev/e1000/e1000_hw.h
644
u64 hgotc;
sys/dev/e1000/e1000_hw.h
645
u64 lenerrs;
sys/dev/e1000/e1000_hw.h
646
u64 scvpc;
sys/dev/e1000/e1000_hw.h
647
u64 hrmpc;
sys/dev/e1000/e1000_hw.h
648
u64 doosync;
sys/dev/e1000/e1000_hw.h
649
u64 o2bgptc;
sys/dev/e1000/e1000_hw.h
650
u64 o2bspc;
sys/dev/e1000/e1000_hw.h
651
u64 b2ospc;
sys/dev/e1000/e1000_hw.h
652
u64 b2ogprc;
sys/dev/e1000/e1000_hw.h
656
u64 base_gprc;
sys/dev/e1000/e1000_hw.h
657
u64 base_gptc;
sys/dev/e1000/e1000_hw.h
658
u64 base_gorc;
sys/dev/e1000/e1000_hw.h
659
u64 base_gotc;
sys/dev/e1000/e1000_hw.h
660
u64 base_mprc;
sys/dev/e1000/e1000_hw.h
661
u64 base_gotlbc;
sys/dev/e1000/e1000_hw.h
662
u64 base_gptlbc;
sys/dev/e1000/e1000_hw.h
663
u64 base_gorlbc;
sys/dev/e1000/e1000_hw.h
664
u64 base_gprlbc;
sys/dev/e1000/e1000_hw.h
676
u64 gprc;
sys/dev/e1000/e1000_hw.h
677
u64 gptc;
sys/dev/e1000/e1000_hw.h
678
u64 gorc;
sys/dev/e1000/e1000_hw.h
679
u64 gotc;
sys/dev/e1000/e1000_hw.h
680
u64 mprc;
sys/dev/e1000/e1000_hw.h
681
u64 gotlbc;
sys/dev/e1000/e1000_hw.h
682
u64 gptlbc;
sys/dev/e1000/e1000_hw.h
683
u64 gorlbc;
sys/dev/e1000/e1000_hw.h
684
u64 gprlbc;
sys/dev/e1000/e1000_ich8lan.c
1100
static u64 e1000_ltr2ns(u16 ltr)
sys/dev/e1000/e1000_osdep.h
133
#define __le64 u64
sys/dev/e1000/e1000_vf.h
122
u64 buffer_addr; /* Address of descriptor's data buf */
sys/dev/e1000/e1000_vf.h
127
u64 rsvd; /* Reserved */
sys/dev/e1000/e1000_vf.h
166
u64 base_gprc;
sys/dev/e1000/e1000_vf.h
167
u64 base_gptc;
sys/dev/e1000/e1000_vf.h
168
u64 base_gorc;
sys/dev/e1000/e1000_vf.h
169
u64 base_gotc;
sys/dev/e1000/e1000_vf.h
170
u64 base_mprc;
sys/dev/e1000/e1000_vf.h
171
u64 base_gotlbc;
sys/dev/e1000/e1000_vf.h
172
u64 base_gptlbc;
sys/dev/e1000/e1000_vf.h
173
u64 base_gorlbc;
sys/dev/e1000/e1000_vf.h
174
u64 base_gprlbc;
sys/dev/e1000/e1000_vf.h
186
u64 gprc;
sys/dev/e1000/e1000_vf.h
187
u64 gptc;
sys/dev/e1000/e1000_vf.h
188
u64 gorc;
sys/dev/e1000/e1000_vf.h
189
u64 gotc;
sys/dev/e1000/e1000_vf.h
190
u64 mprc;
sys/dev/e1000/e1000_vf.h
191
u64 gotlbc;
sys/dev/e1000/e1000_vf.h
192
u64 gptlbc;
sys/dev/e1000/e1000_vf.h
193
u64 gorlbc;
sys/dev/e1000/e1000_vf.h
194
u64 gprlbc;
sys/dev/e1000/e1000_vf.h
86
u64 pkt_addr; /* Packet buffer address */
sys/dev/e1000/e1000_vf.h
87
u64 hdr_addr; /* Header buffer address */
sys/dev/e1000/if_em.c
3633
u64 bus_addr;
sys/dev/e1000/if_em.c
3879
u64 bus_addr = rxr->rx_paddr;
sys/dev/e1000/if_em.c
3949
u64 bus_addr = rxr->rx_paddr;
sys/dev/e1000/if_em.c
4696
u64 prev_xoffrxc;
sys/dev/e1000/if_em.c
4747
((u64)E1000_READ_REG(&sc->hw, E1000_GORCH) << 32);
sys/dev/e1000/if_em.c
4749
((u64)E1000_READ_REG(&sc->hw, E1000_GOTCH) << 32);
sys/dev/e1000/if_em.h
468
u64 irqs;
sys/dev/e1000/if_em.h
543
u64 que_mask;
sys/dev/ena/ena.c
3475
len = supported_metrics_count * sizeof(u64);
sys/dev/ena/ena.c
4212
u64 bitmap, bit;
sys/dev/ena/ena.h
551
.stat_offset = offsetof(struct ena_stats_dev, stat) / sizeof(u64), \
sys/dev/ena/ena_sysctl.c
169
adapter->customer_metrics_array = malloc((sizeof(u64) * ENA_CUSTOMER_METRICS_ARRAY_SIZE),
sys/dev/ena/ena_sysctl.c
476
CTLFLAG_RD, (u64 *)srd_stats_ptr + cur_stat_strings.stat_offset,
sys/dev/ena/ena_sysctl.c
73
.stat_offset = offsetof(struct ena_admin_##stat_type, stat) / sizeof(u64), \
sys/dev/enic/enic.h
152
u64 args[VNIC_DEVCMD_NARGS];
sys/dev/enic/enic_res.c
143
u64 a0 = vlanid, a1 = 0;
sys/dev/enic/enic_res.c
156
u64 a0 = vlanid, a1 = 0;
sys/dev/enic/enic_res.c
172
u64 a0, a1;
sys/dev/enic/if_enic.c
343
u64 a0 = 0, a1 = 0;
sys/dev/enic/rq_enet_desc.h
30
u64 address, u8 type, u16 length)
sys/dev/enic/rq_enet_desc.h
38
u64 *address, u8 *type, u16 *length)
sys/dev/enic/vnic_cq.c
14
unsigned int interrupt_offset, u64 cq_message_addr)
sys/dev/enic/vnic_cq.c
16
u64 paddr;
sys/dev/enic/vnic_cq.c
18
paddr = (u64)cq->ring.base_addr | VNIC_PADDR_TARGET;
sys/dev/enic/vnic_cq.h
14
u64 ring_base; /* 0x00 */
sys/dev/enic/vnic_cq.h
46
u64 cq_message_addr; /* 0x58 */
sys/dev/enic/vnic_cq.h
80
unsigned int interrupt_offset, u64 message_addr);
sys/dev/enic/vnic_dev.c
1072
vdev->args[0] = (u64)vdev->devcmd2->results_ring.base_addr |
sys/dev/enic/vnic_dev.c
1114
u64 a0 = overlay;
sys/dev/enic/vnic_dev.c
1115
u64 a1 = config;
sys/dev/enic/vnic_dev.c
1124
u64 a1 = vxlan_udp_port_number;
sys/dev/enic/vnic_dev.c
1125
u64 a0 = overlay;
sys/dev/enic/vnic_dev.c
1133
u64 a0 = VIC_FEATURE_VXLAN;
sys/dev/enic/vnic_dev.c
1134
u64 a1 = 0;
sys/dev/enic/vnic_dev.c
1147
u64 a0 = 0;
sys/dev/enic/vnic_dev.c
1148
u64 a1 = 0;
sys/dev/enic/vnic_dev.c
1159
u64 a0 = idx;
sys/dev/enic/vnic_dev.c
1160
u64 a1 = 0;
sys/dev/enic/vnic_dev.c
1170
u64 a0 = idx;
sys/dev/enic/vnic_dev.c
1171
u64 a1 = reset ? 1 : 0;
sys/dev/enic/vnic_dev.c
316
u64 *args, int nargs, int wait)
sys/dev/enic/vnic_dev.c
354
enum vnic_devcmd_cmd cmd, u64 *args, int nargs, int wait)
sys/dev/enic/vnic_dev.c
373
u64 *a0, u64 *a1, int wait)
sys/dev/enic/vnic_dev.c
375
u64 args[2];
sys/dev/enic/vnic_dev.c
406
u64 *args, int nargs, int wait)
sys/dev/enic/vnic_dev.c
421
static int vnic_dev_advanced_filters_cap(struct vnic_dev *vdev, u64 *args,
sys/dev/enic/vnic_dev.c
432
u64 a0 = CMD_ADD_ADV_FILTER, a1 = 0;
sys/dev/enic/vnic_dev.c
455
u64 args[4];
sys/dev/enic/vnic_dev.c
499
u64 a0 = CMD_NIC_CFG, a1 = 0;
sys/dev/enic/vnic_dev.c
514
u64 a0 = (u32)cmd, a1 = 0;
sys/dev/enic/vnic_dev.c
526
u64 a0, a1;
sys/dev/enic/vnic_dev.c
546
*(u64 *)value = a0;
sys/dev/enic/vnic_dev.c
558
u64 a0 = 0, a1 = 0;
sys/dev/enic/vnic_dev.c
566
u64 a0, a1;
sys/dev/enic/vnic_dev.c
593
u64 args[3];
sys/dev/enic/vnic_dev.c
624
u64 a0 = 0, a1 = 0;
sys/dev/enic/vnic_dev.c
632
u64 a0 = 0, a1 = 0;
sys/dev/enic/vnic_dev.c
643
u64 a0 = 0, a1 = 0;
sys/dev/enic/vnic_dev.c
651
u64 a0 = (u32)arg, a1 = 0;
sys/dev/enic/vnic_dev.c
659
u64 a0 = 0, a1 = 0;
sys/dev/enic/vnic_dev.c
676
u64 a0 = 0, a1 = 0;
sys/dev/enic/vnic_dev.c
696
u64 a0, a1 = 0;
sys/dev/enic/vnic_dev.c
715
u64 a0 = 0, a1 = 0;
sys/dev/enic/vnic_dev.c
734
u64 a0 = 0, a1 = 0;
sys/dev/enic/vnic_dev.c
754
u64 a0 = ig_vlan_rewrite_mode, a1 = 0;
sys/dev/enic/vnic_dev.c
777
u64 a0, a1;
sys/dev/enic/vnic_dev.c
793
a0 = (u64)notify_pa;
sys/dev/enic/vnic_dev.c
794
a1 = ((u64)intr << 32) & 0x0000ffff00000000ULL;
sys/dev/enic/vnic_dev.c
830
u64 a0, a1;
sys/dev/enic/vnic_dev.c
887
u64 a0 = (u32)arg, a1 = 0;
sys/dev/enic/vnic_dev.h
152
int vnic_dev_int13(struct vnic_dev *vdev, u64 arg, u32 op);
sys/dev/enic/vnic_dev.h
153
int vnic_dev_perbi(struct vnic_dev *vdev, u64 arg, u32 op);
sys/dev/enic/vnic_dev.h
77
u64 *a0, u64 *a1, int wait);
sys/dev/enic/vnic_dev.h
79
u64 *args, int nargs, int wait);
sys/dev/enic/vnic_devcmd.h
1083
u64 args[VNIC_DEVCMD_NARGS]; /* RW cmd args (little-endian) */
sys/dev/enic/vnic_devcmd.h
1107
u64 args[VNIC_DEVCMD2_NARGS];
sys/dev/enic/vnic_devcmd.h
1112
u64 results[VNIC_DEVCMD2_NRESULTS];
sys/dev/enic/vnic_devcmd.h
1178
u64 vcc_packets;
sys/dev/enic/vnic_devcmd.h
1179
u64 vcc_bytes;
sys/dev/enic/vnic_enet.h
27
u64 mem_paddr;
sys/dev/enic/vnic_rq.c
15
u64 paddr;
sys/dev/enic/vnic_rq.c
18
paddr = (u64)rq->ring.base_addr | VNIC_PADDR_TARGET;
sys/dev/enic/vnic_rq.h
14
u64 ring_base; /* 0x00 */
sys/dev/enic/vnic_rss.h
15
u64 raw[8];
sys/dev/enic/vnic_rss.h
24
u64 raw[32];
sys/dev/enic/vnic_stats.h
11
u64 tx_frames_ok;
sys/dev/enic/vnic_stats.h
12
u64 tx_unicast_frames_ok;
sys/dev/enic/vnic_stats.h
13
u64 tx_multicast_frames_ok;
sys/dev/enic/vnic_stats.h
14
u64 tx_broadcast_frames_ok;
sys/dev/enic/vnic_stats.h
15
u64 tx_bytes_ok;
sys/dev/enic/vnic_stats.h
16
u64 tx_unicast_bytes_ok;
sys/dev/enic/vnic_stats.h
17
u64 tx_multicast_bytes_ok;
sys/dev/enic/vnic_stats.h
18
u64 tx_broadcast_bytes_ok;
sys/dev/enic/vnic_stats.h
19
u64 tx_drops;
sys/dev/enic/vnic_stats.h
20
u64 tx_errors;
sys/dev/enic/vnic_stats.h
21
u64 tx_tso;
sys/dev/enic/vnic_stats.h
22
u64 rsvd[16];
sys/dev/enic/vnic_stats.h
27
u64 rx_frames_ok;
sys/dev/enic/vnic_stats.h
28
u64 rx_frames_total;
sys/dev/enic/vnic_stats.h
29
u64 rx_unicast_frames_ok;
sys/dev/enic/vnic_stats.h
30
u64 rx_multicast_frames_ok;
sys/dev/enic/vnic_stats.h
31
u64 rx_broadcast_frames_ok;
sys/dev/enic/vnic_stats.h
32
u64 rx_bytes_ok;
sys/dev/enic/vnic_stats.h
33
u64 rx_unicast_bytes_ok;
sys/dev/enic/vnic_stats.h
34
u64 rx_multicast_bytes_ok;
sys/dev/enic/vnic_stats.h
35
u64 rx_broadcast_bytes_ok;
sys/dev/enic/vnic_stats.h
36
u64 rx_drop;
sys/dev/enic/vnic_stats.h
37
u64 rx_no_bufs;
sys/dev/enic/vnic_stats.h
38
u64 rx_errors;
sys/dev/enic/vnic_stats.h
39
u64 rx_rss;
sys/dev/enic/vnic_stats.h
40
u64 rx_crc_errors;
sys/dev/enic/vnic_stats.h
41
u64 rx_frames_64;
sys/dev/enic/vnic_stats.h
42
u64 rx_frames_127;
sys/dev/enic/vnic_stats.h
43
u64 rx_frames_255;
sys/dev/enic/vnic_stats.h
44
u64 rx_frames_511;
sys/dev/enic/vnic_stats.h
45
u64 rx_frames_1023;
sys/dev/enic/vnic_stats.h
46
u64 rx_frames_1518;
sys/dev/enic/vnic_stats.h
47
u64 rx_frames_to_max;
sys/dev/enic/vnic_stats.h
48
u64 rsvd[16];
sys/dev/enic/vnic_wq.c
111
u64 paddr;
sys/dev/enic/vnic_wq.c
114
paddr = (u64)wq->ring.base_addr | VNIC_PADDR_TARGET;
sys/dev/enic/vnic_wq.c
99
u64 a0 = 0, a1 = 0;
sys/dev/enic/vnic_wq.h
14
u64 ring_base; /* 0x00 */
sys/dev/enic/wq_enet_desc.h
40
u64 address, u16 length, u16 mss, u16 header_length,
sys/dev/enic/wq_enet_desc.h
59
u64 *address, u16 *length, u16 *mss, u16 *header_length,
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.c
42
#define HV_PARTITION_ID_SELF ((u64)-1)
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.c
51
arm_hv_set_vreg(u32 msr, u64 value)
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.c
82
u64
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.h
43
u64 low;
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.h
44
u64 high;
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.h
49
uint64_t hypercall_md(volatile void *hc_addr, u64 in_val,
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.h
50
u64 in_paddr, u64 out_paddr);
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.h
52
void arm_hv_set_vreg(u32 msr, u64 val);
sys/dev/hyperv/vmbus/aarch64/hyperv_machdep.h
54
u64 arm_hv_get_vreg(u32 msr);
sys/dev/iavf/iavf_adminq.h
72
u64 cookie;
sys/dev/iavf/iavf_alloc.h
54
u64 size, u32 alignment);
sys/dev/iavf/iavf_iflib.h
141
u64 tx_paddr;
sys/dev/iavf/iavf_iflib.h
160
u64 tx_bytes;
sys/dev/iavf/iavf_iflib.h
161
u64 tx_packets;
sys/dev/iavf/iavf_iflib.h
162
u64 mss_too_small;
sys/dev/iavf/iavf_iflib.h
187
u64 rx_packets;
sys/dev/iavf/iavf_iflib.h
188
u64 rx_bytes;
sys/dev/iavf/iavf_iflib.h
189
u64 desc_errs;
sys/dev/iavf/iavf_iflib.h
206
u64 irqs;
sys/dev/iavf/iavf_iflib.h
207
u64 tso;
sys/dev/iavf/iavf_iflib.h
225
u64 irqs;
sys/dev/iavf/iavf_iflib.h
264
u64 ipackets;
sys/dev/iavf/iavf_iflib.h
265
u64 ierrors;
sys/dev/iavf/iavf_iflib.h
266
u64 opackets;
sys/dev/iavf/iavf_iflib.h
267
u64 oerrors;
sys/dev/iavf/iavf_iflib.h
268
u64 ibytes;
sys/dev/iavf/iavf_iflib.h
269
u64 obytes;
sys/dev/iavf/iavf_iflib.h
270
u64 imcasts;
sys/dev/iavf/iavf_iflib.h
271
u64 omcasts;
sys/dev/iavf/iavf_iflib.h
272
u64 iqdrops;
sys/dev/iavf/iavf_iflib.h
273
u64 oqdrops;
sys/dev/iavf/iavf_iflib.h
274
u64 noproto;
sys/dev/iavf/iavf_iflib.h
277
u64 flags;
sys/dev/iavf/iavf_iflib.h
369
u64 admin_irq;
sys/dev/iavf/iavf_iflib.h
393
u64 iavf_max_vc_speed_to_value(u8 link_speeds);
sys/dev/iavf/iavf_lib.c
1046
u64
sys/dev/iavf/iavf_lib.c
1079
u64 set_hena = 0, hena;
sys/dev/iavf/iavf_lib.c
1102
set_hena |= ((u64)1 << IAVF_FILTER_PCTYPE_NONF_IPV4_OTHER);
sys/dev/iavf/iavf_lib.c
1104
set_hena |= ((u64)1 << IAVF_FILTER_PCTYPE_NONF_IPV4_TCP);
sys/dev/iavf/iavf_lib.c
1106
set_hena |= ((u64)1 << IAVF_FILTER_PCTYPE_NONF_IPV4_UDP);
sys/dev/iavf/iavf_lib.c
1108
set_hena |= ((u64)1 << IAVF_FILTER_PCTYPE_NONF_IPV6_OTHER);
sys/dev/iavf/iavf_lib.c
1110
set_hena |= ((u64)1 << IAVF_FILTER_PCTYPE_FRAG_IPV6);
sys/dev/iavf/iavf_lib.c
1112
set_hena |= ((u64)1 << IAVF_FILTER_PCTYPE_NONF_IPV6_TCP);
sys/dev/iavf/iavf_lib.c
1114
set_hena |= ((u64)1 << IAVF_FILTER_PCTYPE_NONF_IPV6_UDP);
sys/dev/iavf/iavf_lib.c
1115
hena = (u64)rd32(hw, IAVF_VFQF_HENA(0)) |
sys/dev/iavf/iavf_lib.c
1116
((u64)rd32(hw, IAVF_VFQF_HENA(1)) << 32);
sys/dev/iavf/iavf_lib.c
1400
u64
sys/dev/iavf/iavf_lib.h
113
#define IAVF_ADV_LINK_SPEED_SCALE ((u64)1000000)
sys/dev/iavf/iavf_lib.h
295
u64 *stat;
sys/dev/iavf/iavf_lib.h
460
u64 iavf_max_vc_speed_to_value(u8 link_speeds);
sys/dev/iavf/iavf_lib.h
472
u64 iavf_baudrate_from_link_speed(struct iavf_sc *sc);
sys/dev/iavf/iavf_osdep.c
118
enum iavf_memory_type type __unused, u64 size, u32 alignment)
sys/dev/iavf/iavf_osdep.h
168
#define __le64 u64
sys/dev/iavf/iavf_osdep.h
171
#define __be64 u64
sys/dev/iavf/iavf_osdep.h
206
u64 pa;
sys/dev/iavf/iavf_txrx_iflib.c
265
u64 type_cmd_tso_mss;
sys/dev/iavf/iavf_txrx_iflib.c
295
type_cmd_tso_mss = ((u64)type << IAVF_TXD_CTX_QW1_DTYPE_SHIFT) |
sys/dev/iavf/iavf_txrx_iflib.c
296
((u64)cmd << IAVF_TXD_CTX_QW1_CMD_SHIFT) |
sys/dev/iavf/iavf_txrx_iflib.c
297
((u64)tsolen << IAVF_TXD_CTX_QW1_TSO_LEN_SHIFT) |
sys/dev/iavf/iavf_txrx_iflib.c
298
((u64)mss << IAVF_TXD_CTX_QW1_MSS_SHIFT);
sys/dev/iavf/iavf_txrx_iflib.c
376
| ((u64)cmd << IAVF_TXD_QW1_CMD_SHIFT)
sys/dev/iavf/iavf_txrx_iflib.c
377
| ((u64)off << IAVF_TXD_QW1_OFFSET_SHIFT)
sys/dev/iavf/iavf_txrx_iflib.c
378
| ((u64)seglen << IAVF_TXD_QW1_TX_BUF_SZ_SHIFT)
sys/dev/iavf/iavf_txrx_iflib.c
379
| ((u64)htole16(pi->ipi_vtag) << IAVF_TXD_QW1_L2TAG1_SHIFT));
sys/dev/iavf/iavf_txrx_iflib.c
387
htole64(((u64)IAVF_TXD_CMD << IAVF_TXD_QW1_CMD_SHIFT));
sys/dev/iavf/iavf_txrx_iflib.c
628
u64 qword;
sys/dev/iavf/iavf_txrx_iflib.c
673
u64 qword;
sys/dev/iavf/iavf_type.h
374
u64 flags;
sys/dev/iavf/iavf_type.h
936
u64 rx_bytes; /* gorc */
sys/dev/iavf/iavf_type.h
937
u64 rx_unicast; /* uprc */
sys/dev/iavf/iavf_type.h
938
u64 rx_multicast; /* mprc */
sys/dev/iavf/iavf_type.h
939
u64 rx_broadcast; /* bprc */
sys/dev/iavf/iavf_type.h
940
u64 rx_discards; /* rdpc */
sys/dev/iavf/iavf_type.h
941
u64 rx_unknown_protocol; /* rupp */
sys/dev/iavf/iavf_type.h
942
u64 tx_bytes; /* gotc */
sys/dev/iavf/iavf_type.h
943
u64 tx_unicast; /* uptc */
sys/dev/iavf/iavf_type.h
944
u64 tx_multicast; /* mptc */
sys/dev/iavf/iavf_type.h
945
u64 tx_broadcast; /* bptc */
sys/dev/iavf/iavf_type.h
946
u64 tx_discards; /* tdpc */
sys/dev/iavf/iavf_type.h
947
u64 tx_errors; /* tepc */
sys/dev/iavf/if_iavf_iflib.c
1759
u64 baudrate;
sys/dev/iavf/virtchnl.h
315
u64 dma_ring_addr;
sys/dev/iavf/virtchnl.h
316
u64 dma_headwb_addr; /* deprecated with AVF 1.0 */
sys/dev/iavf/virtchnl.h
344
u64 dma_ring_addr;
sys/dev/iavf/virtchnl.h
516
u64 rx_bytes; /* received bytes */
sys/dev/iavf/virtchnl.h
517
u64 rx_unicast; /* received unicast pkts */
sys/dev/iavf/virtchnl.h
518
u64 rx_multicast; /* received multicast pkts */
sys/dev/iavf/virtchnl.h
519
u64 rx_broadcast; /* received broadcast pkts */
sys/dev/iavf/virtchnl.h
520
u64 rx_discards;
sys/dev/iavf/virtchnl.h
521
u64 rx_unknown_protocol;
sys/dev/iavf/virtchnl.h
522
u64 tx_bytes; /* transmitted bytes */
sys/dev/iavf/virtchnl.h
523
u64 tx_unicast; /* transmitted unicast pkts */
sys/dev/iavf/virtchnl.h
524
u64 tx_multicast; /* transmitted multicast pkts */
sys/dev/iavf/virtchnl.h
525
u64 tx_broadcast; /* transmitted broadcast pkts */
sys/dev/iavf/virtchnl.h
526
u64 tx_discards;
sys/dev/iavf/virtchnl.h
527
u64 tx_errors;
sys/dev/iavf/virtchnl.h
563
u64 hena;
sys/dev/iavf/virtchnl.h
586
u64 max_tx_rate;
sys/dev/ice/ice_common.c
134
ice_dump_phy_type(struct ice_hw *hw, u64 low, u64 high, const char *prefix)
sys/dev/ice/ice_common.c
2639
caps->wr_csr_prot |= (u64)logical_id << 32;
sys/dev/ice/ice_common.c
3430
ice_get_link_speed_based_on_phy_type(u64 phy_type_low, u64 phy_type_high)
sys/dev/ice/ice_common.c
3577
ice_update_phy_type(u64 *phy_type_low, u64 *phy_type_high,
sys/dev/ice/ice_common.c
3580
u64 pt_high;
sys/dev/ice/ice_common.c
3581
u64 pt_low;
sys/dev/ice/ice_common.c
436
ice_phy_maps_to_media(u64 phy_type_low, u64 phy_type_high,
sys/dev/ice/ice_common.c
437
u64 media_mask_low, u64 media_mask_high)
sys/dev/ice/ice_common.c
462
u64 phy_type_high, phy_type_low;
sys/dev/ice/ice_common.c
4994
u64 src_qword, mask;
sys/dev/ice/ice_common.c
5012
mask = (u64)~0;
sys/dev/ice/ice_common.c
5017
src_qword = *(u64 *)from;
sys/dev/ice/ice_common.c
5069
case sizeof(u64):
sys/dev/ice/ice_common.c
5272
u64 dest_qword, mask;
sys/dev/ice/ice_common.c
5287
mask = (u64)~0;
sys/dev/ice/ice_common.c
5904
u64 *prev_stat, u64 *cur_stat)
sys/dev/ice/ice_common.c
5906
u64 new_data = rd64(hw, reg) & (BIT_ULL(40) - 1);
sys/dev/ice/ice_common.c
5941
u64 *prev_stat, u64 *cur_stat)
sys/dev/ice/ice_common.c
6574
ldo->phy_type_low |= ((u64)buf << (i * 16));
sys/dev/ice/ice_common.c
6587
ldo->phy_type_high |= ((u64)buf << (i * 16));
sys/dev/ice/ice_common.h
200
ice_update_phy_type(u64 *phy_type_low, u64 *phy_type_high,
sys/dev/ice/ice_common.h
321
u64 *prev_stat, u64 *cur_stat);
sys/dev/ice/ice_common.h
324
u64 *prev_stat, u64 *cur_stat);
sys/dev/ice/ice_common_txrx.h
150
u64 type_cmd_tso_mss;
sys/dev/ice/ice_common_txrx.h
165
type_cmd_tso_mss = ((u64)type << ICE_TXD_CTX_QW1_DTYPE_S) |
sys/dev/ice/ice_common_txrx.h
166
((u64)cmd << ICE_TXD_CTX_QW1_CMD_S) |
sys/dev/ice/ice_common_txrx.h
167
((u64)tsolen << ICE_TXD_CTX_QW1_TSO_LEN_S) |
sys/dev/ice/ice_common_txrx.h
168
((u64)mss << ICE_TXD_CTX_QW1_MSS_S);
sys/dev/ice/ice_dcb.h
196
u64 remtablelastchangetime;
sys/dev/ice/ice_dcb.h
197
u64 remtableinserts;
sys/dev/ice/ice_dcb.h
198
u64 remtabledeletes;
sys/dev/ice/ice_dcb.h
199
u64 remtabledrops;
sys/dev/ice/ice_dcb.h
200
u64 remtableageouts;
sys/dev/ice/ice_dcb.h
201
u64 txframestotal;
sys/dev/ice/ice_dcb.h
202
u64 rxframesdiscarded;
sys/dev/ice/ice_dcb.h
203
u64 rxportframeerrors;
sys/dev/ice/ice_dcb.h
204
u64 rxportframestotal;
sys/dev/ice/ice_dcb.h
205
u64 rxporttlvsdiscardedtotal;
sys/dev/ice/ice_dcb.h
206
u64 rxporttlvsunrecognizedtotal;
sys/dev/ice/ice_dcb.h
207
u64 remtoomanyneighbors;
sys/dev/ice/ice_flex_pipe.c
2257
ice_has_prof_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig, u64 hdl)
sys/dev/ice/ice_flex_pipe.c
2545
ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id,
sys/dev/ice/ice_flex_pipe.c
2622
ice_search_prof_id(struct ice_hw *hw, enum ice_block blk, u64 id)
sys/dev/ice/ice_flex_pipe.c
2644
ice_set_prof_context(struct ice_hw *hw, enum ice_block blk, u64 id, u64 cntxt)
sys/dev/ice/ice_flex_pipe.c
2667
ice_get_prof_context(struct ice_hw *hw, enum ice_block blk, u64 id, u64 *cntxt)
sys/dev/ice/ice_flex_pipe.c
2818
ice_rem_prof_id_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig, u64 hdl,
sys/dev/ice/ice_flex_pipe.c
2852
ice_rem_flow_all(struct ice_hw *hw, enum ice_block blk, u64 id)
sys/dev/ice/ice_flex_pipe.c
2892
int ice_rem_prof(struct ice_hw *hw, enum ice_block blk, u64 id)
sys/dev/ice/ice_flex_pipe.c
2929
ice_get_prof(struct ice_hw *hw, enum ice_block blk, u64 hdl,
sys/dev/ice/ice_flex_pipe.c
3022
struct LIST_HEAD_TYPE *lst, u64 hdl)
sys/dev/ice/ice_flex_pipe.c
3269
ice_add_prof_id_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsig, u64 hdl,
sys/dev/ice/ice_flex_pipe.c
3375
ice_create_prof_id_vsig(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl,
sys/dev/ice/ice_flex_pipe.c
3462
ice_find_prof_vsig(struct ice_hw *hw, enum ice_block blk, u64 hdl, u16 *vsig)
sys/dev/ice/ice_flex_pipe.c
3538
ice_add_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl)
sys/dev/ice/ice_flex_pipe.c
3686
u64 id)
sys/dev/ice/ice_flex_pipe.c
3708
ice_rem_prof_from_list(struct ice_hw *hw, struct LIST_HEAD_TYPE *lst, u64 hdl)
sys/dev/ice/ice_flex_pipe.c
3734
ice_rem_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl)
sys/dev/ice/ice_flex_pipe.c
3869
u64 id)
sys/dev/ice/ice_flex_pipe.h
71
ice_add_prof(struct ice_hw *hw, enum ice_block blk, u64 id,
sys/dev/ice/ice_flex_pipe.h
74
ice_search_prof_id(struct ice_hw *hw, enum ice_block blk, u64 id);
sys/dev/ice/ice_flex_pipe.h
78
ice_add_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
sys/dev/ice/ice_flex_pipe.h
80
ice_rem_prof_id_flow(struct ice_hw *hw, enum ice_block blk, u16 vsi, u64 hdl);
sys/dev/ice/ice_flex_pipe.h
82
ice_set_prof_context(struct ice_hw *hw, enum ice_block blk, u64 id, u64 cntxt);
sys/dev/ice/ice_flex_pipe.h
84
ice_get_prof_context(struct ice_hw *hw, enum ice_block blk, u64 id, u64 *cntxt);
sys/dev/ice/ice_flex_pipe.h
91
u64 id);
sys/dev/ice/ice_flex_pipe.h
94
u64 id);
sys/dev/ice/ice_flex_pipe.h
96
ice_rem_prof(struct ice_hw *hw, enum ice_block blk, u64 id);
sys/dev/ice/ice_flex_type.h
302
u64 profile_cookie;
sys/dev/ice/ice_flex_type.h
303
u64 context;
sys/dev/ice/ice_flex_type.h
320
u64 profile_cookie;
sys/dev/ice/ice_flow.c
1098
u64 prof_id, struct ice_flow_seg_info *segs, u8 segs_cnt,
sys/dev/ice/ice_flow.c
1136
ice_flow_rem_prof(struct ice_hw *hw, enum ice_block blk, u64 prof_id)
sys/dev/ice/ice_flow.c
1282
u64 val;
sys/dev/ice/ice_flow.c
1317
val = (u64)(seg->hdrs & ICE_FLOW_RSS_SEG_HDR_L3_MASKS);
sys/dev/ice/ice_flow.c
1321
val = (u64)(seg->hdrs & ICE_FLOW_RSS_SEG_HDR_L4_MASKS);
sys/dev/ice/ice_flow.c
1443
u64 seg_match = 0;
sys/dev/ice/ice_flow.c
1484
u64 seg_match = 0;
sys/dev/ice/ice_flow.c
1534
((u64)(((u64)(hash) & ICE_FLOW_PROF_HASH_M) | \
sys/dev/ice/ice_flow.c
1535
(((u64)(hdr) << ICE_FLOW_PROF_HDR_S) & ICE_FLOW_PROF_HDR_M) | \
sys/dev/ice/ice_flow.c
1536
(((u64)(encap) << ICE_FLOW_PROF_ENCAP_S) & \
sys/dev/ice/ice_flow.c
1829
int ice_add_avf_rss_cfg(struct ice_hw *hw, u16 vsi_handle, u64 avf_hash)
sys/dev/ice/ice_flow.c
1833
u64 hash_flds;
sys/dev/ice/ice_flow.c
1855
u64 rss_hash = ICE_HASH_INVALID;
sys/dev/ice/ice_flow.c
1952
u64 ice_get_rss_cfg(struct ice_hw *hw, u16 vsi_handle, u32 hdrs)
sys/dev/ice/ice_flow.c
1954
u64 rss_hash = ICE_HASH_INVALID;
sys/dev/ice/ice_flow.c
834
u64
sys/dev/ice/ice_flow.c
853
ice_flow_find_prof_id(struct ice_hw *hw, enum ice_block blk, u64 prof_id)
sys/dev/ice/ice_flow.c
872
ice_flow_get_hw_prof(struct ice_hw *hw, enum ice_block blk, u64 prof_id,
sys/dev/ice/ice_flow.c
904
enum ice_flow_dir dir, u64 prof_id,
sys/dev/ice/ice_flow.h
205
u64 hash_flds; /* hash bit field (ICE_FLOW_HASH_*) to configure */
sys/dev/ice/ice_flow.h
273
#define ICE_FLOW_ENTRY_HNDL(e) ((u64)e)
sys/dev/ice/ice_flow.h
278
u64 id;
sys/dev/ice/ice_flow.h
330
u64
sys/dev/ice/ice_flow.h
337
ice_flow_get_hw_prof(struct ice_hw *hw, enum ice_block blk, u64 prof_id,
sys/dev/ice/ice_flow.h
345
ice_add_avf_rss_cfg(struct ice_hw *hw, u16 vsi_handle, u64 hashed_flds);
sys/dev/ice/ice_flow.h
353
u64 ice_get_rss_cfg(struct ice_hw *hw, u16 vsi_handle, u32 hdrs);
sys/dev/ice/ice_iflib_txrx.c
169
| ((u64)cmd << ICE_TXD_QW1_CMD_S)
sys/dev/ice/ice_iflib_txrx.c
170
| ((u64)off << ICE_TXD_QW1_OFFSET_S)
sys/dev/ice/ice_iflib_txrx.c
171
| ((u64)seglen << ICE_TXD_QW1_TX_BUF_SZ_S)
sys/dev/ice/ice_iflib_txrx.c
172
| ((u64)htole16(pi->ipi_vtag) << ICE_TXD_QW1_L2TAG1_S));
sys/dev/ice/ice_iflib_txrx.c
182
htole64(((u64)ICE_TXD_CMD << ICE_TXD_QW1_CMD_S));
sys/dev/ice/ice_lan_tx_rx.h
1036
u64 base; /* base is defined in 128-byte units */
sys/dev/ice/ice_lan_tx_rx.h
1094
u64 base;
sys/dev/ice/ice_lan_tx_rx.h
1134
u64 base;
sys/dev/ice/ice_lan_tx_rx.h
822
u64 base;
sys/dev/ice/ice_lib.c
114
u64* pfc_stat_location,
sys/dev/ice/ice_lib.c
133
static u16 ice_aq_phy_types_to_link_speeds(u64 phy_type_low,
sys/dev/ice/ice_lib.c
134
u64 phy_type_high);
sys/dev/ice/ice_lib.c
152
ice_sysctl_speeds_to_aq_phy_types(u16 sysctl_speeds, u64 *phy_type_low,
sys/dev/ice/ice_lib.c
153
u64 *phy_type_high);
sys/dev/ice/ice_lib.c
2570
ice_update_port_oversize(struct ice_softc *sc, u64 rx_errors)
sys/dev/ice/ice_lib.c
3130
ice_aq_phy_types_to_link_speeds(u64 phy_type_low, u64 phy_type_high)
sys/dev/ice/ice_lib.c
3160
ice_sysctl_speeds_to_aq_phy_types(u16 sysctl_speeds, u64 *phy_type_low,
sys/dev/ice/ice_lib.c
3161
u64 *phy_type_high)
sys/dev/ice/ice_lib.c
3197
u64 phy_low_orig; /* PHY low quad from report */
sys/dev/ice/ice_lib.c
3198
u64 phy_high_orig; /* PHY high quad from report */
sys/dev/ice/ice_lib.c
3199
u64 phy_low_intr; /* PHY low quad intersection with user speeds */
sys/dev/ice/ice_lib.c
3200
u64 phy_high_intr; /* PHY high quad intersection with user speeds */
sys/dev/ice/ice_lib.c
4805
u64 *stat;
sys/dev/ice/ice_lib.c
4868
u64 stat = 0;
sys/dev/ice/ice_lib.c
4899
u64 stat = 0;
sys/dev/ice/ice_lib.c
4931
u64 stat = 0;
sys/dev/ice/ice_lib.c
5114
u64* pfc_stat_location,
sys/dev/ice/ice_lib.c
8186
u64 pcie_speed, port_speed;
sys/dev/ice/ice_lib.c
85
static void ice_update_port_oversize(struct ice_softc *sc, u64 rx_errors);
sys/dev/ice/ice_lib.c
9563
u64 phy_low = 0, phy_high = 0;
sys/dev/ice/ice_lib.c
9744
u64 phy_low, phy_high;
sys/dev/ice/ice_lib.c
9963
u64 phy_low, phy_high;
sys/dev/ice/ice_lib.h
471
u64 tx_bytes;
sys/dev/ice/ice_lib.h
472
u64 tx_packets;
sys/dev/ice/ice_lib.h
473
u64 mss_too_small;
sys/dev/ice/ice_lib.h
474
u64 tso;
sys/dev/ice/ice_lib.h
475
u64 cso[ICE_CSO_STAT_TX_COUNT];
sys/dev/ice/ice_lib.h
486
u64 rx_packets;
sys/dev/ice/ice_lib.h
487
u64 rx_bytes;
sys/dev/ice/ice_lib.h
488
u64 desc_errs;
sys/dev/ice/ice_lib.h
489
u64 cso[ICE_CSO_STAT_RX_COUNT];
sys/dev/ice/ice_lib.h
533
u64 rx_roc_error; /* port oversize packet stats, error_cnt \
sys/dev/ice/ice_osdep.c
370
ice_alloc_dma_mem(struct ice_hw *hw, struct ice_dma_mem *mem, u64 size)
sys/dev/ice/ice_osdep.h
374
#define __le64 u64
sys/dev/ice/ice_osdep.h
377
#define __be64 u64
sys/dev/ice/ice_osdep.h
401
void * ice_alloc_dma_mem(struct ice_hw *hw, struct ice_dma_mem *mem, u64 size);
sys/dev/ice/ice_osdep.h
501
ice_ilog2(u64 n) {
sys/dev/ice/ice_osdep.h
519
ice_is_pow2(u64 n) {
sys/dev/ice/ice_sched.c
4028
u64 pow_result = BIT_ULL(i);
sys/dev/ice/ice_type.h
1080
u64 debug_mask; /* BITMAP for debug mask */
sys/dev/ice/ice_type.h
1208
u64 rx_bytes; /* gorc */
sys/dev/ice/ice_type.h
1209
u64 rx_unicast; /* uprc */
sys/dev/ice/ice_type.h
1210
u64 rx_multicast; /* mprc */
sys/dev/ice/ice_type.h
1211
u64 rx_broadcast; /* bprc */
sys/dev/ice/ice_type.h
1212
u64 rx_discards; /* rdpc */
sys/dev/ice/ice_type.h
1213
u64 rx_unknown_protocol; /* rupp */
sys/dev/ice/ice_type.h
1214
u64 tx_bytes; /* gotc */
sys/dev/ice/ice_type.h
1215
u64 tx_unicast; /* uptc */
sys/dev/ice/ice_type.h
1216
u64 tx_multicast; /* mptc */
sys/dev/ice/ice_type.h
1217
u64 tx_broadcast; /* bptc */
sys/dev/ice/ice_type.h
1218
u64 tx_discards; /* tdpc */
sys/dev/ice/ice_type.h
1219
u64 tx_errors; /* tepc */
sys/dev/ice/ice_type.h
1220
u64 rx_no_desc; /* repc */
sys/dev/ice/ice_type.h
1221
u64 rx_errors; /* repc */
sys/dev/ice/ice_type.h
1228
u64 up_rx_pkts[ICE_MAX_UP];
sys/dev/ice/ice_type.h
1229
u64 up_rx_bytes[ICE_MAX_UP];
sys/dev/ice/ice_type.h
1230
u64 up_tx_pkts[ICE_MAX_UP];
sys/dev/ice/ice_type.h
1231
u64 up_tx_bytes[ICE_MAX_UP];
sys/dev/ice/ice_type.h
1239
u64 tx_dropped_link_down; /* tdold */
sys/dev/ice/ice_type.h
1240
u64 crc_errors; /* crcerrs */
sys/dev/ice/ice_type.h
1241
u64 illegal_bytes; /* illerrc */
sys/dev/ice/ice_type.h
1242
u64 error_bytes; /* errbc */
sys/dev/ice/ice_type.h
1243
u64 mac_local_faults; /* mlfc */
sys/dev/ice/ice_type.h
1244
u64 mac_remote_faults; /* mrfc */
sys/dev/ice/ice_type.h
1245
u64 rx_len_errors; /* rlec */
sys/dev/ice/ice_type.h
1246
u64 link_xon_rx; /* lxonrxc */
sys/dev/ice/ice_type.h
1247
u64 link_xoff_rx; /* lxoffrxc */
sys/dev/ice/ice_type.h
1248
u64 link_xon_tx; /* lxontxc */
sys/dev/ice/ice_type.h
1249
u64 link_xoff_tx; /* lxofftxc */
sys/dev/ice/ice_type.h
1250
u64 priority_xon_rx[8]; /* pxonrxc[8] */
sys/dev/ice/ice_type.h
1251
u64 priority_xoff_rx[8]; /* pxoffrxc[8] */
sys/dev/ice/ice_type.h
1252
u64 priority_xon_tx[8]; /* pxontxc[8] */
sys/dev/ice/ice_type.h
1253
u64 priority_xoff_tx[8]; /* pxofftxc[8] */
sys/dev/ice/ice_type.h
1254
u64 priority_xon_2_xoff[8]; /* pxon2offc[8] */
sys/dev/ice/ice_type.h
1255
u64 rx_size_64; /* prc64 */
sys/dev/ice/ice_type.h
1256
u64 rx_size_127; /* prc127 */
sys/dev/ice/ice_type.h
1257
u64 rx_size_255; /* prc255 */
sys/dev/ice/ice_type.h
1258
u64 rx_size_511; /* prc511 */
sys/dev/ice/ice_type.h
1259
u64 rx_size_1023; /* prc1023 */
sys/dev/ice/ice_type.h
1260
u64 rx_size_1522; /* prc1522 */
sys/dev/ice/ice_type.h
1261
u64 rx_size_big; /* prc9522 */
sys/dev/ice/ice_type.h
1262
u64 rx_undersize; /* ruc */
sys/dev/ice/ice_type.h
1263
u64 rx_fragments; /* rfc */
sys/dev/ice/ice_type.h
1264
u64 rx_oversize; /* roc */
sys/dev/ice/ice_type.h
1265
u64 rx_jabber; /* rjc */
sys/dev/ice/ice_type.h
1266
u64 tx_size_64; /* ptc64 */
sys/dev/ice/ice_type.h
1267
u64 tx_size_127; /* ptc127 */
sys/dev/ice/ice_type.h
1268
u64 tx_size_255; /* ptc255 */
sys/dev/ice/ice_type.h
1269
u64 tx_size_511; /* ptc511 */
sys/dev/ice/ice_type.h
1270
u64 tx_size_1023; /* ptc1023 */
sys/dev/ice/ice_type.h
1271
u64 tx_size_1522; /* ptc1522 */
sys/dev/ice/ice_type.h
1272
u64 tx_size_big; /* ptc9522 */
sys/dev/ice/ice_type.h
1273
u64 mac_short_pkt_dropped; /* mspdc */
sys/dev/ice/ice_type.h
1277
u64 tx_lpi_count; /* etlpic */
sys/dev/ice/ice_type.h
1278
u64 rx_lpi_count; /* erlpic */
sys/dev/ice/ice_type.h
346
u64 phy_type_low;
sys/dev/ice/ice_type.h
347
u64 phy_type_high;
sys/dev/ice/ice_type.h
387
u64 phy_type_low;
sys/dev/ice/ice_type.h
388
u64 phy_type_high;
sys/dev/ice/ice_type.h
414
u64 wr_csr_prot;
sys/dev/ice/ice_type.h
718
u64 phy_type_low;
sys/dev/ice/ice_type.h
719
u64 phy_type_high;
sys/dev/ice/ice_type.h
78
static inline u64 DIV_U64(u64 dividend, u64 divisor)
sys/dev/ice/ice_type.h
83
static inline u64 round_up_64bit(u64 a, u32 b)
sys/dev/ice/virtchnl.h
1176
u64 rx_bytes; /* received bytes */
sys/dev/ice/virtchnl.h
1177
u64 rx_unicast; /* received unicast pkts */
sys/dev/ice/virtchnl.h
1178
u64 rx_multicast; /* received multicast pkts */
sys/dev/ice/virtchnl.h
1179
u64 rx_broadcast; /* received broadcast pkts */
sys/dev/ice/virtchnl.h
1180
u64 rx_discards;
sys/dev/ice/virtchnl.h
1181
u64 rx_unknown_protocol;
sys/dev/ice/virtchnl.h
1182
u64 tx_bytes; /* transmitted bytes */
sys/dev/ice/virtchnl.h
1183
u64 tx_unicast; /* transmitted unicast pkts */
sys/dev/ice/virtchnl.h
1184
u64 tx_multicast; /* transmitted multicast pkts */
sys/dev/ice/virtchnl.h
1185
u64 tx_broadcast; /* transmitted broadcast pkts */
sys/dev/ice/virtchnl.h
1186
u64 tx_discards;
sys/dev/ice/virtchnl.h
1187
u64 tx_errors;
sys/dev/ice/virtchnl.h
1264
u64 hena;
sys/dev/ice/virtchnl.h
1295
u64 max_tx_rate;
sys/dev/ice/virtchnl.h
2059
u64 tx_max;
sys/dev/ice/virtchnl.h
2060
u64 tx_share;
sys/dev/ice/virtchnl.h
495
u64 dma_ring_addr;
sys/dev/ice/virtchnl.h
496
u64 dma_headwb_addr; /* deprecated with AVF 1.0 */
sys/dev/ice/virtchnl.h
564
u64 dma_ring_addr;
sys/dev/igc/if_igc.c
2144
u64 bus_addr;
sys/dev/igc/if_igc.c
2285
u64 bus_addr = rxr->rx_paddr;
sys/dev/igc/if_igc.c
2503
u64 prev_xoffrxc = sc->stats.xoffrxc;
sys/dev/igc/if_igc.c
2544
((u64)IGC_READ_REG(&sc->hw, IGC_GORCH) << 32);
sys/dev/igc/if_igc.c
2546
((u64)IGC_READ_REG(&sc->hw, IGC_GOTCH) << 32);
sys/dev/igc/if_igc.h
292
u64 irqs;
sys/dev/igc/if_igc.h
356
u64 que_mask;
sys/dev/igc/igc_hw.h
123
#define __le64 u64
sys/dev/igc/igc_hw.h
268
u64 crcerrs;
sys/dev/igc/igc_hw.h
269
u64 algnerrc;
sys/dev/igc/igc_hw.h
270
u64 symerrs;
sys/dev/igc/igc_hw.h
271
u64 rxerrc;
sys/dev/igc/igc_hw.h
272
u64 mpc;
sys/dev/igc/igc_hw.h
273
u64 scc;
sys/dev/igc/igc_hw.h
274
u64 ecol;
sys/dev/igc/igc_hw.h
275
u64 mcc;
sys/dev/igc/igc_hw.h
276
u64 latecol;
sys/dev/igc/igc_hw.h
277
u64 colc;
sys/dev/igc/igc_hw.h
278
u64 dc;
sys/dev/igc/igc_hw.h
279
u64 tncrs;
sys/dev/igc/igc_hw.h
280
u64 sec;
sys/dev/igc/igc_hw.h
281
u64 rlec;
sys/dev/igc/igc_hw.h
282
u64 xonrxc;
sys/dev/igc/igc_hw.h
283
u64 xontxc;
sys/dev/igc/igc_hw.h
284
u64 xoffrxc;
sys/dev/igc/igc_hw.h
285
u64 xofftxc;
sys/dev/igc/igc_hw.h
286
u64 fcruc;
sys/dev/igc/igc_hw.h
287
u64 prc64;
sys/dev/igc/igc_hw.h
288
u64 prc127;
sys/dev/igc/igc_hw.h
289
u64 prc255;
sys/dev/igc/igc_hw.h
290
u64 prc511;
sys/dev/igc/igc_hw.h
291
u64 prc1023;
sys/dev/igc/igc_hw.h
292
u64 prc1522;
sys/dev/igc/igc_hw.h
293
u64 tlpic;
sys/dev/igc/igc_hw.h
294
u64 rlpic;
sys/dev/igc/igc_hw.h
295
u64 gprc;
sys/dev/igc/igc_hw.h
296
u64 bprc;
sys/dev/igc/igc_hw.h
297
u64 mprc;
sys/dev/igc/igc_hw.h
298
u64 gptc;
sys/dev/igc/igc_hw.h
299
u64 gorc;
sys/dev/igc/igc_hw.h
300
u64 gotc;
sys/dev/igc/igc_hw.h
301
u64 rnbc;
sys/dev/igc/igc_hw.h
302
u64 ruc;
sys/dev/igc/igc_hw.h
303
u64 rfc;
sys/dev/igc/igc_hw.h
304
u64 roc;
sys/dev/igc/igc_hw.h
305
u64 rjc;
sys/dev/igc/igc_hw.h
306
u64 mgprc;
sys/dev/igc/igc_hw.h
307
u64 mgpdc;
sys/dev/igc/igc_hw.h
308
u64 mgptc;
sys/dev/igc/igc_hw.h
309
u64 tor;
sys/dev/igc/igc_hw.h
310
u64 tot;
sys/dev/igc/igc_hw.h
311
u64 tpr;
sys/dev/igc/igc_hw.h
312
u64 tpt;
sys/dev/igc/igc_hw.h
313
u64 ptc64;
sys/dev/igc/igc_hw.h
314
u64 ptc127;
sys/dev/igc/igc_hw.h
315
u64 ptc255;
sys/dev/igc/igc_hw.h
316
u64 ptc511;
sys/dev/igc/igc_hw.h
317
u64 ptc1023;
sys/dev/igc/igc_hw.h
318
u64 ptc1522;
sys/dev/igc/igc_hw.h
319
u64 mptc;
sys/dev/igc/igc_hw.h
320
u64 bptc;
sys/dev/igc/igc_hw.h
321
u64 tsctc;
sys/dev/igc/igc_hw.h
322
u64 iac;
sys/dev/igc/igc_hw.h
323
u64 rxdmtc;
sys/dev/igc/igc_hw.h
324
u64 htdpmc;
sys/dev/igc/igc_hw.h
325
u64 rpthc;
sys/dev/igc/igc_hw.h
326
u64 hgptc;
sys/dev/igc/igc_hw.h
327
u64 hgorc;
sys/dev/igc/igc_hw.h
328
u64 hgotc;
sys/dev/igc/igc_hw.h
329
u64 lenerrs;
sys/dev/igc/igc_hw.h
330
u64 scvpc;
sys/dev/igc/igc_hw.h
331
u64 hrmpc;
sys/dev/igc/igc_hw.h
332
u64 doosync;
sys/dev/igc/igc_hw.h
333
u64 o2bgptc;
sys/dev/igc/igc_hw.h
334
u64 o2bspc;
sys/dev/igc/igc_hw.h
335
u64 b2ospc;
sys/dev/igc/igc_hw.h
336
u64 b2ogprc;
sys/dev/igc/igc_osdep.h
63
#define __le64 u64
sys/dev/irdma/fbsd_kcompat.c
1033
u64 *ll_ptr;
sys/dev/irdma/fbsd_kcompat.c
1060
ll_ptr = (u64 *)((uintptr_t)cm_core + irdma_cmcs_list[i].value);
sys/dev/irdma/fbsd_kcompat.c
1066
ll_ptr = (u64 *)((uintptr_t)ilq + irdma_ilqs_list[i].value);
sys/dev/irdma/fbsd_kcompat.c
1078
ll_ptr = (u64 *)((uintptr_t)ieq + irdma_ieqs_list[i].value);
sys/dev/irdma/fbsd_kcompat.c
1112
u64 size, u32 alignment)
sys/dev/irdma/fbsd_kcompat.c
77
inline u64
sys/dev/irdma/fbsd_kcompat.c
89
irdma_wr64(struct irdma_dev_ctx *dev_ctx, u32 reg, u64 value)
sys/dev/irdma/fbsd_kcompat.h
108
static inline u64 *irdma_next_pbl_addr(u64 *pbl, struct irdma_pble_info **pinfo,
sys/dev/irdma/fbsd_kcompat.h
204
int irdma_rereg_user_mr(struct ib_mr *ib_mr, int flags, u64 start, u64 len,
sys/dev/irdma/fbsd_kcompat.h
205
u64 virt, int new_access, struct ib_pd *new_pd,
sys/dev/irdma/fbsd_kcompat.h
216
struct ib_mr *irdma_reg_user_mr(struct ib_pd *pd, u64 start, u64 len,
sys/dev/irdma/fbsd_kcompat.h
217
u64 virt, int access,
sys/dev/irdma/fbsd_kcompat.h
223
struct ib_mr *irdma_rereg_mr_trans(struct irdma_mr *iwmr, u64 start, u64 len,
sys/dev/irdma/fbsd_kcompat.h
224
u64 virt, struct ib_udata *udata);
sys/dev/irdma/fbsd_kcompat.h
271
void irdma_copy_user_pgaddrs(struct irdma_mr *iwmr, u64 *pbl,
sys/dev/irdma/fbsd_kcompat.h
280
static inline size_t irdma_ib_umem_num_dma_blocks(struct ib_umem *umem, unsigned long pgsz, u64 iova)
sys/dev/irdma/icrdma_hw.c
288
irdma_check_tc_has_pfc(struct irdma_sc_vsi *vsi, u64 reg_offset, u16 traffic_class)
sys/dev/irdma/icrdma_hw.c
73
static u64 icrdma_masks[IRDMA_MAX_MASKS] = {
sys/dev/irdma/irdma.h
191
u64 feature_flags;
sys/dev/irdma/irdma.h
207
u64 max_hw_outbound_msg_size;
sys/dev/irdma/irdma.h
208
u64 max_hw_inbound_msg_size;
sys/dev/irdma/irdma.h
209
u64 max_mr_size;
sys/dev/irdma/irdma.h
210
u64 page_size_cap;
sys/dev/irdma/irdma_cm.c
3710
u64 tagged_offset;
sys/dev/irdma/irdma_cm.h
391
u64 stats_nodes_created;
sys/dev/irdma/irdma_cm.h
392
u64 stats_nodes_destroyed;
sys/dev/irdma/irdma_cm.h
393
u64 stats_listen_created;
sys/dev/irdma/irdma_cm.h
394
u64 stats_listen_destroyed;
sys/dev/irdma/irdma_cm.h
395
u64 stats_listen_nodes_created;
sys/dev/irdma/irdma_cm.h
396
u64 stats_listen_nodes_destroyed;
sys/dev/irdma/irdma_cm.h
397
u64 stats_lpbs;
sys/dev/irdma/irdma_cm.h
398
u64 stats_accepts;
sys/dev/irdma/irdma_cm.h
399
u64 stats_rejects;
sys/dev/irdma/irdma_cm.h
400
u64 stats_connect_errs;
sys/dev/irdma/irdma_cm.h
401
u64 stats_passive_errs;
sys/dev/irdma/irdma_cm.h
402
u64 stats_pkt_retrans;
sys/dev/irdma/irdma_cm.h
403
u64 stats_backlog_drops;
sys/dev/irdma/irdma_ctrl.c
1161
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
1165
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
1226
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
1229
u64 fbo;
sys/dev/irdma/irdma_ctrl.c
1231
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
1315
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
1317
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
1356
struct irdma_mw_alloc_info *info, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
1359
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
1401
u64 temp, hdr;
sys/dev/irdma/irdma_ctrl.c
1476
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
1523
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
1566
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
1580
(u64)0xabcd | FIELD_PREP(IRDMAQPSQ_VALID,
sys/dev/irdma/irdma_ctrl.c
2099
u64 scratch)
sys/dev/irdma/irdma_ctrl.c
2102
u64 temp;
sys/dev/irdma/irdma_ctrl.c
2141
struct irdma_up_info *info, u64 scratch)
sys/dev/irdma/irdma_ctrl.c
2144
u64 temp = 0;
sys/dev/irdma/irdma_ctrl.c
2152
temp |= (u64)info->map[i] << (i * 8);
sys/dev/irdma/irdma_ctrl.c
2185
enum irdma_ws_node_op node_op, u64 scratch)
sys/dev/irdma/irdma_ctrl.c
2188
u64 temp = 0;
sys/dev/irdma/irdma_ctrl.c
2227
struct irdma_qp_flush_info *info, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
2230
u64 temp = 0;
sys/dev/irdma/irdma_ctrl.c
2233
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
2301
struct irdma_gen_ae_info *info, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
2304
u64 temp;
sys/dev/irdma/irdma_ctrl.c
2307
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
2343
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
2347
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
2384
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
2387
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
2423
u64 scratch)
sys/dev/irdma/irdma_ctrl.c
2425
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
2454
u64 scratch)
sys/dev/irdma/irdma_ctrl.c
2456
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
2537
irdma_sc_cq_create(struct irdma_sc_cq *cq, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
2542
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
2613
irdma_sc_cq_destroy(struct irdma_sc_cq *cq, u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
2617
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
268
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
2682
struct irdma_modify_cq_info *info, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
2687
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
271
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
2743
u64 completed_ops = atomic64_read(&dev->cqp->completed_ops);
sys/dev/irdma/irdma_ctrl.c
2810
static u64 irdma_sc_decode_fpm_commit(struct irdma_sc_dev *dev, __le64 * buf,
sys/dev/irdma/irdma_ctrl.c
2813
u64 temp;
sys/dev/irdma/irdma_ctrl.c
2835
obj_info[rsrc_idx].base = (u64)RS_64_1(temp, IRDMA_COMMIT_FPM_BASE_S) * 512;
sys/dev/irdma/irdma_ctrl.c
2855
u64 size;
sys/dev/irdma/irdma_ctrl.c
2857
u64 max_base = 0;
sys/dev/irdma/irdma_ctrl.c
2934
static u64 irdma_sc_decode_fpm_query(__le64 * buf, u32 buf_idx,
sys/dev/irdma/irdma_ctrl.c
2937
u64 temp;
sys/dev/irdma/irdma_ctrl.c
2964
u64 temp;
sys/dev/irdma/irdma_ctrl.c
305
irdma_sc_del_arp_cache_entry(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
309
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
3190
u64 temp;
sys/dev/irdma/irdma_ctrl.c
3308
irdma_sc_cqp_get_next_send_wqe_idx(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
3373
u64 temp_val;
sys/dev/irdma/irdma_ctrl.c
340
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
3405
u64 qp_ctx, temp, temp1;
sys/dev/irdma/irdma_ctrl.c
343
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
3521
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
3524
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
3570
irdma_sc_commit_fpm_val(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
3576
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
3633
irdma_sc_query_fpm_val(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
3639
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
3725
irdma_sc_ceq_create(struct irdma_sc_ceq *ceq, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
3730
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
3825
irdma_sc_ceq_destroy(struct irdma_sc_ceq *ceq, u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
3829
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
3868
u64 temp;
sys/dev/irdma/irdma_ctrl.c
388
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
391
u64 qw1 = 0;
sys/dev/irdma/irdma_ctrl.c
392
u64 qw2 = 0;
sys/dev/irdma/irdma_ctrl.c
3926
u64 temp;
sys/dev/irdma/irdma_ctrl.c
393
u64 temp;
sys/dev/irdma/irdma_ctrl.c
3994
irdma_sc_aeq_create(struct irdma_sc_aeq *aeq, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
3999
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
4034
irdma_sc_aeq_destroy(struct irdma_sc_aeq *aeq, u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
4039
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
4076
u64 temp, compl_ctx;
sys/dev/irdma/irdma_ctrl.c
4319
irdma_sc_ccq_create(struct irdma_sc_cq *ccq, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
4345
irdma_sc_ccq_destroy(struct irdma_sc_cq *ccq, u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
4349
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
4448
set_64bit_val(buf, IRDMA_BYTE_0, (u64)obj_info[IRDMA_HMC_IW_QP].cnt);
sys/dev/irdma/irdma_ctrl.c
4449
set_64bit_val(buf, IRDMA_BYTE_8, (u64)obj_info[IRDMA_HMC_IW_CQ].cnt);
sys/dev/irdma/irdma_ctrl.c
4450
set_64bit_val(buf, IRDMA_BYTE_16, (u64)0); /* RSRVD */
sys/dev/irdma/irdma_ctrl.c
4451
set_64bit_val(buf, IRDMA_BYTE_24, (u64)obj_info[IRDMA_HMC_IW_HTE].cnt);
sys/dev/irdma/irdma_ctrl.c
4452
set_64bit_val(buf, IRDMA_BYTE_32, (u64)obj_info[IRDMA_HMC_IW_ARP].cnt);
sys/dev/irdma/irdma_ctrl.c
4453
set_64bit_val(buf, IRDMA_BYTE_40, (u64)0); /* RSVD */
sys/dev/irdma/irdma_ctrl.c
4454
set_64bit_val(buf, IRDMA_BYTE_48, (u64)obj_info[IRDMA_HMC_IW_MR].cnt);
sys/dev/irdma/irdma_ctrl.c
4455
set_64bit_val(buf, IRDMA_BYTE_56, (u64)obj_info[IRDMA_HMC_IW_XF].cnt);
sys/dev/irdma/irdma_ctrl.c
4456
set_64bit_val(buf, IRDMA_BYTE_64, (u64)obj_info[IRDMA_HMC_IW_XFFL].cnt);
sys/dev/irdma/irdma_ctrl.c
4457
set_64bit_val(buf, IRDMA_BYTE_72, (u64)obj_info[IRDMA_HMC_IW_Q1].cnt);
sys/dev/irdma/irdma_ctrl.c
4458
set_64bit_val(buf, IRDMA_BYTE_80, (u64)obj_info[IRDMA_HMC_IW_Q1FL].cnt);
sys/dev/irdma/irdma_ctrl.c
4460
(u64)obj_info[IRDMA_HMC_IW_TIMER].cnt);
sys/dev/irdma/irdma_ctrl.c
4462
(u64)obj_info[IRDMA_HMC_IW_FSIMC].cnt);
sys/dev/irdma/irdma_ctrl.c
4464
(u64)obj_info[IRDMA_HMC_IW_FSIAV].cnt);
sys/dev/irdma/irdma_ctrl.c
4466
(u64)obj_info[IRDMA_HMC_IW_PBLE].cnt);
sys/dev/irdma/irdma_ctrl.c
4467
set_64bit_val(buf, IRDMA_BYTE_120, (u64)0); /* RSVD */
sys/dev/irdma/irdma_ctrl.c
4468
set_64bit_val(buf, IRDMA_BYTE_128, (u64)obj_info[IRDMA_HMC_IW_RRF].cnt);
sys/dev/irdma/irdma_ctrl.c
4470
(u64)obj_info[IRDMA_HMC_IW_RRFFL].cnt);
sys/dev/irdma/irdma_ctrl.c
4471
set_64bit_val(buf, IRDMA_BYTE_144, (u64)obj_info[IRDMA_HMC_IW_HDR].cnt);
sys/dev/irdma/irdma_ctrl.c
4472
set_64bit_val(buf, IRDMA_BYTE_152, (u64)obj_info[IRDMA_HMC_IW_MD].cnt);
sys/dev/irdma/irdma_ctrl.c
4474
(u64)obj_info[IRDMA_HMC_IW_OOISC].cnt);
sys/dev/irdma/irdma_ctrl.c
4476
(u64)obj_info[IRDMA_HMC_IW_OOISCFFL].cnt);
sys/dev/irdma/irdma_ctrl.c
4503
struct irdma_update_sds_info *info, u64 scratch)
sys/dev/irdma/irdma_ctrl.c
4505
u64 data;
sys/dev/irdma/irdma_ctrl.c
4506
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
4510
u64 offset = 0;
sys/dev/irdma/irdma_ctrl.c
4524
data = (u64)sdbuf->pa + offset;
sys/dev/irdma/irdma_ctrl.c
4581
struct irdma_update_sds_info *info, u64 scratch)
sys/dev/irdma/irdma_ctrl.c
4626
irdma_sc_static_hmc_pages_allocated(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
4630
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
4685
u64 size = 0;
sys/dev/irdma/irdma_ctrl.c
4686
u64 sd;
sys/dev/irdma/irdma_ctrl.c
4717
struct irdma_dma_mem *buf, u64 scratch)
sys/dev/irdma/irdma_ctrl.c
4720
u64 temp;
sys/dev/irdma/irdma_ctrl.c
4764
u64 temp;
sys/dev/irdma/irdma_ctrl.c
541
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
545
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
5524
static inline u64 irdma_stat_val(const u64 *stats_val, u16 byteoff,
sys/dev/irdma/irdma_ctrl.c
5525
u8 bitoff, u64 bitmask){
sys/dev/irdma/irdma_ctrl.c
5537
static inline u64 irdma_stat_delta(u64 new_val, u64 old_val, u64 max_val) {
sys/dev/irdma/irdma_ctrl.c
5560
u64 *stats_val = hw_stats->stats_val;
sys/dev/irdma/irdma_ctrl.c
5564
u64 new_val = irdma_stat_val(gather_stats->val,
sys/dev/irdma/irdma_ctrl.c
5567
u64 last_val = irdma_stat_val(last_gather_stats->val,
sys/dev/irdma/irdma_ctrl.c
594
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
598
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
665
irdma_sc_qp_destroy(struct irdma_sc_qp *qp, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
670
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
861
irdma_sc_alloc_local_mac_entry(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
865
u64 hdr;
sys/dev/irdma/irdma_ctrl.c
897
u64 scratch, bool post_sq)
sys/dev/irdma/irdma_ctrl.c
900
u64 header;
sys/dev/irdma/irdma_ctrl.c
934
irdma_sc_del_local_mac_entry(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_ctrl.c
939
u64 header;
sys/dev/irdma/irdma_ctrl.c
978
u64 qw0, qw3, qw7 = 0, qw16 = 0;
sys/dev/irdma/irdma_ctrl.c
979
u64 mac = 0;
sys/dev/irdma/irdma_defs.h
1586
static inline void set_64bit_val(__le64 *wqe_words, u32 byte_index, u64 val)
sys/dev/irdma/irdma_defs.h
1608
static inline void get_64bit_val(__le64 *wqe_words, u32 byte_index, u64 *val)
sys/dev/irdma/irdma_defs.h
350
#define LS_64_1(val, bits) ((u64)(uintptr_t)(val) << (bits))
sys/dev/irdma/irdma_defs.h
351
#define RS_64_1(val, bits) ((u64)(uintptr_t)(val) >> (bits))
sys/dev/irdma/irdma_defs.h
362
#define FIELD_PREP(mask, val) (((u64)(val) << mask##_S) & (mask))
sys/dev/irdma/irdma_defs.h
367
(((u64)(val) << (dev)->hw_shifts[field ## _S]) & (dev)->hw_masks[field ## _M])
sys/dev/irdma/irdma_defs.h
369
((u64)((val) & (dev)->hw_masks[field ## _M]) >> (dev)->hw_shifts[field ## _S])
sys/dev/irdma/irdma_defs.h
373
((u64)((val) & (dev)->hw_masks[field ## _M]) >> (dev)->hw_shifts[field ## _S])
sys/dev/irdma/irdma_hmc.c
105
irdma_set_sd_entry(u64 pa, u32 idx, enum irdma_sd_entry_type type,
sys/dev/irdma/irdma_hmc.c
163
irdma_hmc_sd_one(struct irdma_sc_dev *dev, u16 hmc_fn_id, u64 pa, u32 sd_idx,
sys/dev/irdma/irdma_hmc.c
192
u64 pa;
sys/dev/irdma/irdma_hmc.c
525
enum irdma_sd_entry_type type, u64 direct_mode_sz)
sys/dev/irdma/irdma_hmc.c
529
u64 alloc_len;
sys/dev/irdma/irdma_hmc.c
59
u64 fpm_addr, fpm_limit;
sys/dev/irdma/irdma_hmc.c
601
u64 *pd_addr;
sys/dev/irdma/irdma_hmc.c
602
u64 page_desc;
sys/dev/irdma/irdma_hmc.c
671
u64 *pd_addr;
sys/dev/irdma/irdma_hmc.c
691
irdma_memset(pd_addr, 0, sizeof(u64));
sys/dev/irdma/irdma_hmc.c
87
u64 fpm_adr, fpm_limit;
sys/dev/irdma/irdma_hmc.h
139
u64 cmd;
sys/dev/irdma/irdma_hmc.h
140
u64 data;
sys/dev/irdma/irdma_hmc.h
177
struct irdma_dma_mem *src_mem, u64 src_offset, u64 size);
sys/dev/irdma/irdma_hmc.h
182
int irdma_hmc_sd_one(struct irdma_sc_dev *dev, u16 hmc_fn_id, u64 pa, u32 sd_idx,
sys/dev/irdma/irdma_hmc.h
189
enum irdma_sd_entry_type type, u64 direct_mode_sz);
sys/dev/irdma/irdma_hmc.h
84
u64 base;
sys/dev/irdma/irdma_hmc.h
87
u64 size;
sys/dev/irdma/irdma_kcompat.c
1171
irdma_copy_user_pgaddrs(struct irdma_mr *iwmr, u64 *pbl,
sys/dev/irdma/irdma_kcompat.c
1178
u64 pg_addr = 0;
sys/dev/irdma/irdma_kcompat.c
1270
irdma_reg_user_mr(struct ib_pd *pd, u64 start, u64 len,
sys/dev/irdma/irdma_kcompat.c
1271
u64 virt, int access,
sys/dev/irdma/irdma_kcompat.c
1346
irdma_rereg_user_mr(struct ib_mr *ib_mr, int flags, u64 start, u64 len,
sys/dev/irdma/irdma_kcompat.c
1347
u64 virt, int new_access, struct ib_pd *new_pd,
sys/dev/irdma/irdma_kcompat.c
1744
memcpy(&stats->value[0], hw_stats, sizeof(u64)* stats->num_counters);
sys/dev/irdma/irdma_kcompat.c
1934
u64
sys/dev/irdma/irdma_kcompat.c
1938
u64 u64_eth_add;
sys/dev/irdma/irdma_kcompat.c
211
u64 bar_off;
sys/dev/irdma/irdma_kcompat.c
474
u64 start = get_jiffies_64();
sys/dev/irdma/irdma_kcompat.c
475
u64 completed_ops = atomic64_read(&rf->sc_dev.cqp->completed_ops);
sys/dev/irdma/irdma_kcompat.c
478
const u64 timeout_jiffies =
sys/dev/irdma/irdma_kcompat.c
488
u64 tmp;
sys/dev/irdma/irdma_kcompat.c
489
u64 curr_jiffies;
sys/dev/irdma/irdma_kcompat.c
51
u64 fl = (u64)lqpn * rqpn;
sys/dev/irdma/irdma_main.h
200
u64 *scratch_array;
sys/dev/irdma/irdma_main.h
603
struct ib_mr *irdma_reg_phys_mr(struct ib_pd *ib_pd, u64 addr, u64 size,
sys/dev/irdma/irdma_main.h
604
int acc, u64 *iova_start, bool dma_mr);
sys/dev/irdma/irdma_pble.c
160
static u32 fpm_to_idx(struct irdma_hmc_pble_rsrc *pble_rsrc, u64 addr){
sys/dev/irdma/irdma_pble.c
161
u64 idx;
sys/dev/irdma/irdma_pble.c
200
mem.pa = (u64)chunk->dmainfo.dmaaddrs[i];
sys/dev/irdma/irdma_pble.c
255
u64 sd_reg_val = 0;
sys/dev/irdma/irdma_pble.c
382
u64 *addr;
sys/dev/irdma/irdma_pble.c
387
u64 fpm_addr;
sys/dev/irdma/irdma_pble.c
425
*addr = (u64)leaf->idx;
sys/dev/irdma/irdma_pble.c
449
u64 fpm_addr;
sys/dev/irdma/irdma_pble.h
107
u64 size;
sys/dev/irdma/irdma_pble.h
109
u64 fpm_addr;
sys/dev/irdma/irdma_pble.h
119
u64 total_pble_alloc;
sys/dev/irdma/irdma_pble.h
120
u64 free_pble_cnt;
sys/dev/irdma/irdma_pble.h
128
u64 fpm_base_addr;
sys/dev/irdma/irdma_pble.h
129
u64 next_fpm_addr;
sys/dev/irdma/irdma_pble.h
131
u64 allocdpbles;
sys/dev/irdma/irdma_pble.h
132
u64 freedpbles;
sys/dev/irdma/irdma_pble.h
135
u64 stats_alloc_ok;
sys/dev/irdma/irdma_pble.h
136
u64 stats_alloc_fail;
sys/dev/irdma/irdma_pble.h
137
u64 stats_alloc_freed;
sys/dev/irdma/irdma_pble.h
138
u64 stats_lvl1;
sys/dev/irdma/irdma_pble.h
139
u64 stats_lvl2;
sys/dev/irdma/irdma_pble.h
153
struct irdma_pble_chunkinfo *chunkinfo, u64 mem_size,
sys/dev/irdma/irdma_pble.h
154
u64 **vaddr, u64 *fpm_addr);
sys/dev/irdma/irdma_pble.h
60
u64 bit_idx;
sys/dev/irdma/irdma_pble.h
61
u64 bits_used;
sys/dev/irdma/irdma_pble.h
65
u64 *addr;
sys/dev/irdma/irdma_protos.h
103
u64 size, u32 alignment);
sys/dev/irdma/irdma_protos.h
109
int irdma_sc_static_hmc_pages_allocated(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_protos.h
131
u64 irdma_mac_to_u64(const u8 *eth_add);
sys/dev/irdma/irdma_protos.h
49
__le64 *irdma_sc_cqp_get_next_send_wqe(struct irdma_sc_cqp *cqp, u64 scratch);
sys/dev/irdma/irdma_puda.c
1165
rsrc->rq_wrid_array = (u64 *)((u8 *)vmem->va + pudasize + sqwridsize);
sys/dev/irdma/irdma_puda.c
123
u64 offset24 = 0;
sys/dev/irdma/irdma_puda.c
1239
u64 offset8, offset24;
sys/dev/irdma/irdma_puda.c
1753
(u64 *)qp->q2_buf, 128);
sys/dev/irdma/irdma_puda.c
255
u64 qword0, qword2, qword3, qword6;
sys/dev/irdma/irdma_puda.c
258
u64 qword7 = 0;
sys/dev/irdma/irdma_puda.c
259
u64 comp_ctx;
sys/dev/irdma/irdma_puda.c
469
u64 hdr[2];
sys/dev/irdma/irdma_puda.c
662
u64 hdr;
sys/dev/irdma/irdma_puda.c
779
u64 hdr;
sys/dev/irdma/irdma_puda.h
153
u64 *rq_wrid_array;
sys/dev/irdma/irdma_puda.h
168
u64 stats_buf_alloc_fail;
sys/dev/irdma/irdma_puda.h
169
u64 stats_pkt_rcvd;
sys/dev/irdma/irdma_puda.h
170
u64 stats_pkt_sent;
sys/dev/irdma/irdma_puda.h
171
u64 stats_rcvd_pkt_err;
sys/dev/irdma/irdma_puda.h
172
u64 stats_sent_pkt_q;
sys/dev/irdma/irdma_puda.h
173
u64 stats_bad_qp_id;
sys/dev/irdma/irdma_puda.h
175
u64 fpdu_processed;
sys/dev/irdma/irdma_puda.h
176
u64 bad_seq_num;
sys/dev/irdma/irdma_puda.h
177
u64 crc_err;
sys/dev/irdma/irdma_puda.h
178
u64 pmode_count;
sys/dev/irdma/irdma_puda.h
179
u64 partials_handled;
sys/dev/irdma/irdma_puda.h
78
u64 paddr; /* Physical address */
sys/dev/irdma/irdma_type.h
1001
u64 total_len;
sys/dev/irdma/irdma_type.h
1002
u64 first_pm_pbl_idx;
sys/dev/irdma/irdma_type.h
1024
u64 reg_addr_pa;
sys/dev/irdma/irdma_type.h
1025
u64 va;
sys/dev/irdma/irdma_type.h
1026
u64 total_len;
sys/dev/irdma/irdma_type.h
1041
u64 wr_id;
sys/dev/irdma/irdma_type.h
1042
u64 reg_addr_pa;
sys/dev/irdma/irdma_type.h
1043
u64 fbo;
sys/dev/irdma/irdma_type.h
1045
u64 total_len;
sys/dev/irdma/irdma_type.h
1072
u64 va;
sys/dev/irdma/irdma_type.h
1088
u64 sq_pa;
sys/dev/irdma/irdma_type.h
1089
u64 rq_pa;
sys/dev/irdma/irdma_type.h
1090
u64 host_ctx_pa;
sys/dev/irdma/irdma_type.h
1091
u64 q2_pa;
sys/dev/irdma/irdma_type.h
1092
u64 shadow_area_pa;
sys/dev/irdma/irdma_type.h
1104
u64 cq_base_pa;
sys/dev/irdma/irdma_type.h
1105
u64 shadow_area_pa;
sys/dev/irdma/irdma_type.h
1121
u64 buf_pa;
sys/dev/irdma/irdma_type.h
1187
u64 compl_cqp_cmds;
sys/dev/irdma/irdma_type.h
1200
int irdma_sc_ccq_create(struct irdma_sc_cq *ccq, u64 scratch,
sys/dev/irdma/irdma_type.h
1202
int irdma_sc_ccq_destroy(struct irdma_sc_cq *ccq, u64 scratch, bool post_sq);
sys/dev/irdma/irdma_type.h
1211
int irdma_sc_ceq_destroy(struct irdma_sc_ceq *ceq, u64 scratch, bool post_sq);
sys/dev/irdma/irdma_type.h
1236
struct irdma_create_qp_info *info, u64 scratch,
sys/dev/irdma/irdma_type.h
1238
int irdma_sc_qp_destroy(struct irdma_sc_qp *qp, u64 scratch,
sys/dev/irdma/irdma_type.h
1241
struct irdma_qp_flush_info *info, u64 scratch,
sys/dev/irdma/irdma_type.h
1245
struct irdma_modify_qp_info *info, u64 scratch,
sys/dev/irdma/irdma_type.h
1254
int irdma_sc_cq_destroy(struct irdma_sc_cq *cq, u64 scratch, bool post_sq);
sys/dev/irdma/irdma_type.h
1257
int irdma_sc_aeq_destroy(struct irdma_sc_aeq *aeq, u64 scratch, bool post_sq);
sys/dev/irdma/irdma_type.h
1258
int irdma_sc_static_hmc_pages_allocated(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_type.h
1268
u64 scratch;
sys/dev/irdma/irdma_type.h
1274
u64 scratch;
sys/dev/irdma/irdma_type.h
1279
u64 scratch;
sys/dev/irdma/irdma_type.h
1286
u64 scratch;
sys/dev/irdma/irdma_type.h
1293
u64 scratch;
sys/dev/irdma/irdma_type.h
1298
u64 scratch;
sys/dev/irdma/irdma_type.h
1304
u64 scratch;
sys/dev/irdma/irdma_type.h
1310
u64 scratch;
sys/dev/irdma/irdma_type.h
1316
u64 scratch;
sys/dev/irdma/irdma_type.h
1322
u64 scratch;
sys/dev/irdma/irdma_type.h
1328
u64 scratch;
sys/dev/irdma/irdma_type.h
1333
u64 scratch;
sys/dev/irdma/irdma_type.h
1340
u64 scratch;
sys/dev/irdma/irdma_type.h
1345
u64 scratch;
sys/dev/irdma/irdma_type.h
1352
u64 scratch;
sys/dev/irdma/irdma_type.h
1358
u64 scratch;
sys/dev/irdma/irdma_type.h
1364
u64 scratch;
sys/dev/irdma/irdma_type.h
1370
u64 scratch;
sys/dev/irdma/irdma_type.h
1375
u64 scratch;
sys/dev/irdma/irdma_type.h
1380
u64 scratch;
sys/dev/irdma/irdma_type.h
1385
u64 scratch;
sys/dev/irdma/irdma_type.h
1390
u64 scratch;
sys/dev/irdma/irdma_type.h
1396
u64 scratch;
sys/dev/irdma/irdma_type.h
1402
u64 scratch;
sys/dev/irdma/irdma_type.h
1408
u64 fpm_val_pa;
sys/dev/irdma/irdma_type.h
1410
u64 scratch;
sys/dev/irdma/irdma_type.h
1416
u64 fpm_val_pa;
sys/dev/irdma/irdma_type.h
1418
u64 scratch;
sys/dev/irdma/irdma_type.h
1424
u64 scratch;
sys/dev/irdma/irdma_type.h
1430
u64 scratch;
sys/dev/irdma/irdma_type.h
1436
u64 scratch;
sys/dev/irdma/irdma_type.h
1442
u64 scratch;
sys/dev/irdma/irdma_type.h
1448
u64 scratch;
sys/dev/irdma/irdma_type.h
1454
u64 scratch;
sys/dev/irdma/irdma_type.h
1460
u64 scratch;
sys/dev/irdma/irdma_type.h
1466
u64 scratch;
sys/dev/irdma/irdma_type.h
1472
u64 scratch;
sys/dev/irdma/irdma_type.h
1478
u64 scratch;
sys/dev/irdma/irdma_type.h
1484
u64 scratch;
sys/dev/irdma/irdma_type.h
1490
u64 scratch;
sys/dev/irdma/irdma_type.h
1496
u64 scratch;
sys/dev/irdma/irdma_type.h
1502
u64 scratch;
sys/dev/irdma/irdma_type.h
1516
__le64 *irdma_sc_cqp_get_next_send_wqe_idx(struct irdma_sc_cqp *cqp, u64 scratch,
sys/dev/irdma/irdma_type.h
1524
static inline __le64 *irdma_sc_cqp_get_next_send_wqe(struct irdma_sc_cqp *cqp, u64 scratch)
sys/dev/irdma/irdma_type.h
267
u64 cqp_compl_ctx;
sys/dev/irdma/irdma_type.h
268
u64 host_ctx_pa;
sys/dev/irdma/irdma_type.h
269
u64 sq_pa;
sys/dev/irdma/irdma_type.h
274
u64 *scratch_array;
sys/dev/irdma/irdma_type.h
318
u64 stats_val[IRDMA_GATHER_STATS_BUF_SIZE / sizeof(u64)];
sys/dev/irdma/irdma_type.h
322
u64 val[IRDMA_GATHER_STATS_BUF_SIZE / sizeof(u64)];
sys/dev/irdma/irdma_type.h
328
u64 bitmask;
sys/dev/irdma/irdma_type.h
367
u64 total_ieq_bufs;
sys/dev/irdma/irdma_type.h
368
u64 fpdu_processed;
sys/dev/irdma/irdma_type.h
369
u64 bad_seq_num;
sys/dev/irdma/irdma_type.h
370
u64 crc_err;
sys/dev/irdma/irdma_type.h
371
u64 no_tx_bufs;
sys/dev/irdma/irdma_type.h
372
u64 tx_err;
sys/dev/irdma/irdma_type.h
373
u64 out_of_order;
sys/dev/irdma/irdma_type.h
374
u64 pmode_count;
sys/dev/irdma/irdma_type.h
393
u64 sq_pa;
sys/dev/irdma/irdma_type.h
394
u64 host_ctx_pa;
sys/dev/irdma/irdma_type.h
404
u64 *scratch_array;
sys/dev/irdma/irdma_type.h
405
u64 requested_ops;
sys/dev/irdma/irdma_type.h
428
u64 aeq_elem_pa;
sys/dev/irdma/irdma_type.h
443
u64 ceq_elem_pa;
sys/dev/irdma/irdma_type.h
465
u64 cq_pa;
sys/dev/irdma/irdma_type.h
466
u64 shadow_area_pa;
sys/dev/irdma/irdma_type.h
486
u64 sq_pa;
sys/dev/irdma/irdma_type.h
487
u64 rq_pa;
sys/dev/irdma/irdma_type.h
488
u64 hw_host_ctx_pa;
sys/dev/irdma/irdma_type.h
489
u64 shadow_area_pa;
sys/dev/irdma/irdma_type.h
490
u64 q2_pa;
sys/dev/irdma/irdma_type.h
499
u64 qp_compl_ctx;
sys/dev/irdma/irdma_type.h
629
u64 fpm_query_buf_pa;
sys/dev/irdma/irdma_type.h
630
u64 fpm_commit_buf_pa;
sys/dev/irdma/irdma_type.h
641
u64 hw_masks[IRDMA_MAX_MASKS];
sys/dev/irdma/irdma_type.h
644
u64 feature_info[IRDMA_MAX_FEATURES];
sys/dev/irdma/irdma_type.h
645
u64 cqp_cmd_stats[IRDMA_MAX_CQP_OPS];
sys/dev/irdma/irdma_type.h
666
u64 cq_pa;
sys/dev/irdma/irdma_type.h
688
u64 rx_win0;
sys/dev/irdma/irdma_type.h
689
u64 rx_win1;
sys/dev/irdma/irdma_type.h
711
u64 scratch;
sys/dev/irdma/irdma_type.h
720
u64 tc_ctx;
sys/dev/irdma/irdma_type.h
762
u64 fpm_query_buf_pa;
sys/dev/irdma/irdma_type.h
763
u64 fpm_commit_buf_pa;
sys/dev/irdma/irdma_type.h
774
u64 ceqe_pa;
sys/dev/irdma/irdma_type.h
776
u64 *ceqe_base;
sys/dev/irdma/irdma_type.h
791
u64 aeq_elem_pa;
sys/dev/irdma/irdma_type.h
803
u64 cq_pa;
sys/dev/irdma/irdma_type.h
804
u64 shadow_area_pa;
sys/dev/irdma/irdma_type.h
958
u64 qp_compl_ctx;
sys/dev/irdma/irdma_type.h
978
u64 compl_ctx;
sys/dev/irdma/irdma_uda.c
127
memset(info->dma_mem_mc.va, 0, IRDMA_MAX_MGS_PER_CTX * sizeof(u64));
sys/dev/irdma/irdma_uda.c
133
ctx_idx * sizeof(u64),
sys/dev/irdma/irdma_uda.c
152
u64 scratch)
sys/dev/irdma/irdma_uda.c
52
u32 op, u64 scratch)
sys/dev/irdma/irdma_uda.c
55
u64 qw1, qw2;
sys/dev/irdma/irdma_uda.h
101
u64 scratch)
sys/dev/irdma/irdma_uda.h
109
u64 scratch)
sys/dev/irdma/irdma_uda.h
117
u64 scratch)
sys/dev/irdma/irdma_uda.h
75
u32 op, u64 scratch);
sys/dev/irdma/irdma_uda.h
78
u64 scratch);
sys/dev/irdma/irdma_uda.h
86
struct irdma_ah_info *info, u64 scratch)
sys/dev/irdma/irdma_uda.h
93
struct irdma_ah_info *info, u64 scratch)
sys/dev/irdma/irdma_uk.c
1041
u64 temp_val;
sys/dev/irdma/irdma_uk.c
1073
u64 temp_val;
sys/dev/irdma/irdma_uk.c
1130
u64 qword0, qword1, qword2, qword3;
sys/dev/irdma/irdma_uk.c
1178
u64 qword3;
sys/dev/irdma/irdma_uk.c
1200
u64 comp_ctx, qword0, qword2, qword3;
sys/dev/irdma/irdma_uk.c
1227
u64 qword6, qword7;
sys/dev/irdma/irdma_uk.c
1250
u64 qword4;
sys/dev/irdma/irdma_uk.c
1399
u64 wqe_qword;
sys/dev/irdma/irdma_uk.c
1518
u64 hw_quanta =
sys/dev/irdma/irdma_uk.c
1519
irdma_round_up_wq(((u64)sq_size << shift) + IRDMA_SQ_RSVD);
sys/dev/irdma/irdma_uk.c
1538
u64 hw_quanta =
sys/dev/irdma/irdma_uk.c
1539
irdma_round_up_wq(((u64)rq_size << shift) + IRDMA_RQ_RSVD);
sys/dev/irdma/irdma_uk.c
158
u64 temp;
sys/dev/irdma/irdma_uk.c
1752
u64 qword3, comp_ctx;
sys/dev/irdma/irdma_uk.c
369
u64 hdr;
sys/dev/irdma/irdma_uk.c
478
u64 hdr;
sys/dev/irdma/irdma_uk.c
560
u64 hdr;
sys/dev/irdma/irdma_uk.c
782
u64 hdr = 0;
sys/dev/irdma/irdma_uk.c
853
u64 hdr;
sys/dev/irdma/irdma_uk.c
92
static inline u64 irdma_nop_hdr(struct irdma_qp_uk *qp){
sys/dev/irdma/irdma_uk.c
928
u64 hdr;
sys/dev/irdma/irdma_uk.c
978
u64 hdr;
sys/dev/irdma/irdma_user.h
306
u64 wr_id;
sys/dev/irdma/irdma_user.h
325
u64 bind_len;
sys/dev/irdma/irdma_user.h
339
u64 wr_id;
sys/dev/irdma/irdma_user.h
363
u64 wr_id;
sys/dev/irdma/irdma_user.h
397
int irdma_uk_post_nop(struct irdma_qp_uk *qp, u64 wr_id, bool signaled,
sys/dev/irdma/irdma_user.h
439
u64 wrid;
sys/dev/irdma/irdma_user.h
457
u64 *rq_wrid_array;
sys/dev/irdma/irdma_user.h
49
#define irdma_tagged_offset u64
sys/dev/irdma/irdma_user.h
51
#define irdma_physical_fragment u64
sys/dev/irdma/irdma_user.h
52
#define irdma_address_list u64 *
sys/dev/irdma/irdma_user.h
520
u64 *rq_wrid_array;
sys/dev/irdma/irdma_user.h
555
int irdma_nop(struct irdma_qp_uk *qp, u64 wr_id, bool signaled, bool post_sq);
sys/dev/irdma/irdma_utils.c
2026
u64 sizeofbitmap;
sys/dev/irdma/irdma_utils.c
2031
sizeofbitmap = (u64)pchunk->size >> pprm->pble_shift;
sys/dev/irdma/irdma_utils.c
2055
struct irdma_pble_chunkinfo *chunkinfo, u64 mem_size,
sys/dev/irdma/irdma_utils.c
2056
u64 **vaddr, u64 *fpm_addr)
sys/dev/irdma/irdma_utils.c
2058
u64 bits_needed;
sys/dev/irdma/irdma_utils.c
2059
u64 bit_idx = PBLE_INVALID_IDX;
sys/dev/irdma/irdma_utils.c
2090
*vaddr = (u64 *)((u8 *)pchunk->vaddr + offset);
sys/dev/irdma/irdma_utils.c
2295
u64 tmp;
sys/dev/irdma/irdma_utils.c
2389
u64 qword3, comp_ctx;
sys/dev/irdma/irdma_utils.c
2500
u64 wqe_qword;
sys/dev/irdma/irdma_verbs.c
121
irdma_user_mmap_entry_insert(struct irdma_ucontext *ucontext, u64 bar_offset,
sys/dev/irdma/irdma_verbs.c
122
enum irdma_mmap_flag mmap_flag, u64 *mmap_offset)
sys/dev/irdma/irdma_verbs.c
155
u64 pfn;
sys/dev/irdma/irdma_verbs.c
1692
irdma_check_mem_contiguous(u64 *arr, u32 npages, u32 pg_size)
sys/dev/irdma/irdma_verbs.c
1697
if ((*arr + ((u64)pg_size * pg_idx)) != arr[pg_idx])
sys/dev/irdma/irdma_verbs.c
1715
u64 *arr = NULL;
sys/dev/irdma/irdma_verbs.c
1716
u64 *start_addr = NULL;
sys/dev/irdma/irdma_verbs.c
1754
u64 *pbl;
sys/dev/irdma/irdma_verbs.c
1798
u64 *arr = iwmr->pgaddrmem;
sys/dev/irdma/irdma_verbs.c
1948
irdma_set_page(struct ib_mr *ibmr, u64 addr)
sys/dev/irdma/irdma_verbs.c
1953
u64 *pbl;
sys/dev/irdma/irdma_verbs.c
2064
struct ib_pd *pd, u64 virt,
sys/dev/irdma/irdma_verbs.c
2285
irdma_rereg_mr_trans(struct irdma_mr *iwmr, u64 start, u64 len,
sys/dev/irdma/irdma_verbs.c
2286
u64 virt, struct ib_udata *udata)
sys/dev/irdma/irdma_verbs.c
2334
irdma_reg_phys_mr(struct ib_pd *pd, u64 addr, u64 size, int access,
sys/dev/irdma/irdma_verbs.c
2335
u64 *iova_start, bool dma_mr)
sys/dev/irdma/irdma_verbs.c
2390
u64 kva = 0;
sys/dev/irdma/irdma_verbs.c
293
static u64 irdma_compute_push_wqe_offset(struct irdma_device *iwdev, u32 page_idx){
sys/dev/irdma/irdma_verbs.c
294
u64 bar_off = (uintptr_t)iwdev->rf->sc_dev.hw_regs[IRDMA_DB_ADDR_OFFSET];
sys/dev/irdma/irdma_verbs.c
304
bar_off += (u64)page_idx * IRDMA_HW_PAGE_SIZE;
sys/dev/irdma/irdma_verbs.c
3090
dma_mem_mc->size = sizeof(u64)* IRDMA_MAX_MGS_PER_CTX;
sys/dev/irdma/irdma_verbs.c
325
u64 *push_wqe_mmap_key,
sys/dev/irdma/irdma_verbs.c
326
u64 *push_db_mmap_key)
sys/dev/irdma/irdma_verbs.c
329
u64 bar_off;
sys/dev/irdma/irdma_verbs.c
59
props->fw_ver = (u64)irdma_fw_major_ver(&rf->sc_dev) << 32 |
sys/dev/irdma/irdma_verbs.c
99
u64 pfn;
sys/dev/irdma/irdma_verbs.h
131
u64 user_base;
sys/dev/irdma/irdma_verbs.h
147
u64 page_size;
sys/dev/irdma/irdma_verbs.h
148
u64 page_msk;
sys/dev/irdma/irdma_verbs.h
151
u64 len;
sys/dev/irdma/irdma_verbs.h
152
u64 pgaddrmem[IRDMA_MAX_SAVED_PHY_PGADDR];
sys/dev/irdma/irdma_verbs.h
198
u64 *rq_wrid_mem;
sys/dev/irdma/irdma_verbs.h
282
u64 bar_offset;
sys/dev/irdma/irdma_verbs.h
383
irdma_user_mmap_entry_insert(struct irdma_ucontext *ucontext, u64 bar_offset,
sys/dev/irdma/irdma_verbs.h
384
enum irdma_mmap_flag mmap_flag, u64 *mmap_offset);
sys/dev/irdma/irdma_verbs.h
386
struct ib_pd *pd, u64 virt,
sys/dev/irdma/osdep.h
199
u64 pa;
sys/dev/irdma/osdep.h
220
u64 irdma_rd64(struct irdma_dev_ctx *dev_ctx, u32 reg);
sys/dev/irdma/osdep.h
221
void irdma_wr64(struct irdma_dev_ctx *dev_ctx, u32 reg, u64 value);
sys/dev/irdma/osdep.h
234
void irdma_unmap_vm_page_list(struct irdma_hw *hw, u64 *pg_arr, u32 pg_cnt);
sys/dev/irdma/osdep.h
236
u64 *pg_arr, u32 pg_cnt);
sys/dev/iser/icl_iser.c
93
u64 dma_addr;
sys/dev/iser/icl_iser.h
276
u64 dma_addr;
sys/dev/iser/icl_iser.h
283
sizeof(u64) + sizeof(struct ib_sge)))
sys/dev/iser/icl_iser.h
298
u64 dma_addr;
sys/dev/iser/icl_iser.h
443
u64 login_req_dma, login_resp_dma;
sys/dev/iser/iser_initiator.c
201
u64 dma_addr;
sys/dev/iser/iser_initiator.c
474
u64 rx_dma;
sys/dev/iser/iser_memory.c
63
u64 start_addr, end_addr;
sys/dev/iser/iser_verbs.c
67
u64 len = iser_conn->num_rx_descs * sizeof(*iser_conn->rx_descs);
sys/dev/ixgbe/if_ix.c
1670
u64 layer;
sys/dev/ixgbe/if_ix.c
1874
u64 total_missed_rx = 0;
sys/dev/ixgbe/if_ix.c
1897
((u64)IXGBE_READ_REG(hw, IXGBE_GORCH) << 32);
sys/dev/ixgbe/if_ix.c
1899
((u64)IXGBE_READ_REG(hw, IXGBE_GOTCH) << 32);
sys/dev/ixgbe/if_ix.c
1901
((u64)IXGBE_READ_REG(hw, IXGBE_TORH) << 32);
sys/dev/ixgbe/if_ix.c
4829
u64 queue = 1ULL << vector;
sys/dev/ixgbe/if_ix.c
4852
u64 queue = 1ULL << vector;
sys/dev/ixgbe/if_ix.c
781
u64 rdba = rxr->rx_paddr;
sys/dev/ixgbe/if_ix.c
866
u64 tdba = txr->tx_paddr;
sys/dev/ixgbe/if_ixv.c
1251
u64 tdba = txr->tx_paddr;
sys/dev/ixgbe/if_ixv.c
1432
u64 rdba = rxr->rx_paddr;
sys/dev/ixgbe/if_ixv.c
1764
(((u64)(IXGBE_READ_REG(hw, IXGBE_VFGORC_MSB))) << 32);
sys/dev/ixgbe/if_ixv.c
1769
(((u64)(IXGBE_READ_REG(hw, IXGBE_VFGOTC_MSB))) << 32);
sys/dev/ixgbe/if_ixv.c
1792
u64 cur_lsb = IXGBE_READ_REG(hw, lsb); \
sys/dev/ixgbe/if_ixv.c
1793
u64 cur_msb = IXGBE_READ_REG(hw, msb); \
sys/dev/ixgbe/if_ixv.c
1794
u64 current = ((cur_msb << 32) | cur_lsb); \
sys/dev/ixgbe/if_ixv.c
697
u64 queue = (u64)(1 << vector);
sys/dev/ixgbe/ixgbe.h
290
u64 tso_tx;
sys/dev/ixgbe/ixgbe.h
291
u64 total_packets;
sys/dev/ixgbe/ixgbe.h
313
u64 rx_irq;
sys/dev/ixgbe/ixgbe.h
314
u64 rx_copies;
sys/dev/ixgbe/ixgbe.h
315
u64 rx_packets;
sys/dev/ixgbe/ixgbe.h
316
u64 rx_bytes;
sys/dev/ixgbe/ixgbe.h
317
u64 rx_discarded;
sys/dev/ixgbe/ixgbe.h
318
u64 rsc_num;
sys/dev/ixgbe/ixgbe.h
321
u64 flm;
sys/dev/ixgbe/ixgbe.h
337
u64 irqs;
sys/dev/ixgbe/ixgbe.h
464
u64 ipackets;
sys/dev/ixgbe/ixgbe.h
465
u64 ierrors;
sys/dev/ixgbe/ixgbe.h
466
u64 opackets;
sys/dev/ixgbe/ixgbe.h
467
u64 oerrors;
sys/dev/ixgbe/ixgbe.h
468
u64 ibytes;
sys/dev/ixgbe/ixgbe.h
469
u64 obytes;
sys/dev/ixgbe/ixgbe.h
470
u64 imcasts;
sys/dev/ixgbe/ixgbe.h
471
u64 omcasts;
sys/dev/ixgbe/ixgbe.h
472
u64 iqdrops;
sys/dev/ixgbe/ixgbe.h
473
u64 noproto;
sys/dev/ixgbe/ixgbe_82598.c
1227
u64 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw)
sys/dev/ixgbe/ixgbe_82598.c
1229
u64 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
sys/dev/ixgbe/ixgbe_82598.h
49
u64 ixgbe_get_supported_physical_layer_82598(struct ixgbe_hw *hw);
sys/dev/ixgbe/ixgbe_82599.c
1567
u64 fdirhashcmd;
sys/dev/ixgbe/ixgbe_82599.c
1607
fdirhashcmd = (u64)fdircmd << 32;
sys/dev/ixgbe/ixgbe_82599.c
1608
fdirhashcmd |= (u64)ixgbe_atr_compute_sig_hash_82599(input, common);
sys/dev/ixgbe/ixgbe_82599.c
2213
u64 ixgbe_get_supported_physical_layer_82599(struct ixgbe_hw *hw)
sys/dev/ixgbe/ixgbe_82599.c
2215
u64 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
sys/dev/ixgbe/ixgbe_82599.h
61
u64 ixgbe_get_supported_physical_layer_82599(struct ixgbe_hw *hw);
sys/dev/ixgbe/ixgbe_api.c
1702
u64 ixgbe_get_supported_physical_layer(struct ixgbe_hw *hw)
sys/dev/ixgbe/ixgbe_api.h
149
u64 ixgbe_get_supported_physical_layer(struct ixgbe_hw *hw);
sys/dev/ixgbe/ixgbe_dcb_82599.c
66
(((u64)(IXGBE_READ_REG(hw, IXGBE_QBTC_H(tc)))) << 32);
sys/dev/ixgbe/ixgbe_dcb_82599.c
72
(((u64)(IXGBE_READ_REG(hw, IXGBE_QBRC_H(tc)))) << 32);
sys/dev/ixgbe/ixgbe_e610.c
4543
u64 phy_mask = 0;
sys/dev/ixgbe/ixgbe_e610.c
4569
phy_mask = (u64)((u64)1 << (i - 1));
sys/dev/ixgbe/ixgbe_e610.c
4582
phy_mask = (u64)((u64)1 << (i - 1));
sys/dev/ixgbe/ixgbe_e610.c
4608
u64 ixgbe_get_supported_physical_layer_E610(struct ixgbe_hw *hw)
sys/dev/ixgbe/ixgbe_e610.c
4610
u64 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
sys/dev/ixgbe/ixgbe_e610.c
4612
u64 phy_type;
sys/dev/ixgbe/ixgbe_e610.c
5293
u64 sup_phy_type_low, sup_phy_type_high;
sys/dev/ixgbe/ixgbe_e610.h
190
u64 ixgbe_get_supported_physical_layer_E610(struct ixgbe_hw *hw);
sys/dev/ixgbe/ixgbe_osdep.h
159
#define __le64 u64
sys/dev/ixgbe/ixgbe_osdep.h
162
#define __be64 u64
sys/dev/ixgbe/ixgbe_phy.c
1590
u64 ixgbe_get_supported_phy_sfp_layer_generic(struct ixgbe_hw *hw)
sys/dev/ixgbe/ixgbe_phy.c
1592
u64 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
sys/dev/ixgbe/ixgbe_phy.h
197
u64 ixgbe_get_supported_phy_sfp_layer_generic(struct ixgbe_hw *hw);
sys/dev/ixgbe/ixgbe_type.h
3044
#define __le64 u64
sys/dev/ixgbe/ixgbe_type.h
3051
#define __be64 u64
sys/dev/ixgbe/ixgbe_type.h
3366
u64 buffer_addr; /* Address of the descriptor's data buffer */
sys/dev/ixgbe/ixgbe_type.h
3532
typedef u64 ixgbe_physical_layer;
sys/dev/ixgbe/ixgbe_type.h
3936
u64 crcerrs;
sys/dev/ixgbe/ixgbe_type.h
3937
u64 illerrc;
sys/dev/ixgbe/ixgbe_type.h
3938
u64 errbc;
sys/dev/ixgbe/ixgbe_type.h
3939
u64 mspdc;
sys/dev/ixgbe/ixgbe_type.h
3940
u64 mpctotal;
sys/dev/ixgbe/ixgbe_type.h
3941
u64 mpc[8];
sys/dev/ixgbe/ixgbe_type.h
3942
u64 mlfc;
sys/dev/ixgbe/ixgbe_type.h
3943
u64 mrfc;
sys/dev/ixgbe/ixgbe_type.h
3944
u64 rlec;
sys/dev/ixgbe/ixgbe_type.h
3945
u64 lxontxc;
sys/dev/ixgbe/ixgbe_type.h
3946
u64 lxonrxc;
sys/dev/ixgbe/ixgbe_type.h
3947
u64 lxofftxc;
sys/dev/ixgbe/ixgbe_type.h
3948
u64 lxoffrxc;
sys/dev/ixgbe/ixgbe_type.h
3949
u64 pxontxc[8];
sys/dev/ixgbe/ixgbe_type.h
3950
u64 pxonrxc[8];
sys/dev/ixgbe/ixgbe_type.h
3951
u64 pxofftxc[8];
sys/dev/ixgbe/ixgbe_type.h
3952
u64 pxoffrxc[8];
sys/dev/ixgbe/ixgbe_type.h
3953
u64 prc64;
sys/dev/ixgbe/ixgbe_type.h
3954
u64 prc127;
sys/dev/ixgbe/ixgbe_type.h
3955
u64 prc255;
sys/dev/ixgbe/ixgbe_type.h
3956
u64 prc511;
sys/dev/ixgbe/ixgbe_type.h
3957
u64 prc1023;
sys/dev/ixgbe/ixgbe_type.h
3958
u64 prc1522;
sys/dev/ixgbe/ixgbe_type.h
3959
u64 gprc;
sys/dev/ixgbe/ixgbe_type.h
3960
u64 bprc;
sys/dev/ixgbe/ixgbe_type.h
3961
u64 mprc;
sys/dev/ixgbe/ixgbe_type.h
3962
u64 gptc;
sys/dev/ixgbe/ixgbe_type.h
3963
u64 gorc;
sys/dev/ixgbe/ixgbe_type.h
3964
u64 gotc;
sys/dev/ixgbe/ixgbe_type.h
3965
u64 rnbc[8];
sys/dev/ixgbe/ixgbe_type.h
3966
u64 ruc;
sys/dev/ixgbe/ixgbe_type.h
3967
u64 rfc;
sys/dev/ixgbe/ixgbe_type.h
3968
u64 roc;
sys/dev/ixgbe/ixgbe_type.h
3969
u64 rjc;
sys/dev/ixgbe/ixgbe_type.h
3970
u64 mngprc;
sys/dev/ixgbe/ixgbe_type.h
3971
u64 mngpdc;
sys/dev/ixgbe/ixgbe_type.h
3972
u64 mngptc;
sys/dev/ixgbe/ixgbe_type.h
3973
u64 tor;
sys/dev/ixgbe/ixgbe_type.h
3974
u64 tpr;
sys/dev/ixgbe/ixgbe_type.h
3975
u64 tpt;
sys/dev/ixgbe/ixgbe_type.h
3976
u64 ptc64;
sys/dev/ixgbe/ixgbe_type.h
3977
u64 ptc127;
sys/dev/ixgbe/ixgbe_type.h
3978
u64 ptc255;
sys/dev/ixgbe/ixgbe_type.h
3979
u64 ptc511;
sys/dev/ixgbe/ixgbe_type.h
3980
u64 ptc1023;
sys/dev/ixgbe/ixgbe_type.h
3981
u64 ptc1522;
sys/dev/ixgbe/ixgbe_type.h
3982
u64 mptc;
sys/dev/ixgbe/ixgbe_type.h
3983
u64 bptc;
sys/dev/ixgbe/ixgbe_type.h
3984
u64 xec;
sys/dev/ixgbe/ixgbe_type.h
3985
u64 qprc[16];
sys/dev/ixgbe/ixgbe_type.h
3986
u64 qptc[16];
sys/dev/ixgbe/ixgbe_type.h
3987
u64 qbrc[16];
sys/dev/ixgbe/ixgbe_type.h
3988
u64 qbtc[16];
sys/dev/ixgbe/ixgbe_type.h
3989
u64 qprdc[16];
sys/dev/ixgbe/ixgbe_type.h
3990
u64 pxon2offc[8];
sys/dev/ixgbe/ixgbe_type.h
3991
u64 fdirustat_add;
sys/dev/ixgbe/ixgbe_type.h
3992
u64 fdirustat_remove;
sys/dev/ixgbe/ixgbe_type.h
3993
u64 fdirfstat_fadd;
sys/dev/ixgbe/ixgbe_type.h
3994
u64 fdirfstat_fremove;
sys/dev/ixgbe/ixgbe_type.h
3995
u64 fdirmatch;
sys/dev/ixgbe/ixgbe_type.h
3996
u64 fdirmiss;
sys/dev/ixgbe/ixgbe_type.h
3997
u64 fccrc;
sys/dev/ixgbe/ixgbe_type.h
3998
u64 fclast;
sys/dev/ixgbe/ixgbe_type.h
3999
u64 fcoerpdc;
sys/dev/ixgbe/ixgbe_type.h
4000
u64 fcoeprc;
sys/dev/ixgbe/ixgbe_type.h
4001
u64 fcoeptc;
sys/dev/ixgbe/ixgbe_type.h
4002
u64 fcoedwrc;
sys/dev/ixgbe/ixgbe_type.h
4003
u64 fcoedwtc;
sys/dev/ixgbe/ixgbe_type.h
4004
u64 fcoe_noddp;
sys/dev/ixgbe/ixgbe_type.h
4005
u64 fcoe_noddp_ext_buff;
sys/dev/ixgbe/ixgbe_type.h
4006
u64 ldpcec;
sys/dev/ixgbe/ixgbe_type.h
4007
u64 pcrc8ec;
sys/dev/ixgbe/ixgbe_type.h
4008
u64 b2ospc;
sys/dev/ixgbe/ixgbe_type.h
4009
u64 b2ogprc;
sys/dev/ixgbe/ixgbe_type.h
4010
u64 o2bgptc;
sys/dev/ixgbe/ixgbe_type.h
4011
u64 o2bspc;
sys/dev/ixgbe/ixgbe_type.h
4041
u64 (*get_supported_physical_layer)(struct ixgbe_hw *);
sys/dev/ixgbe/ixgbe_type.h
4265
u64 phy_type_low;
sys/dev/ixgbe/ixgbe_type.h
4266
u64 phy_type_high;
sys/dev/ixgbe/ixgbe_type_e610.h
2042
u64 phy_type_low;
sys/dev/ixgbe/ixgbe_type_e610.h
2043
u64 phy_type_high;
sys/dev/ixgbe/ixgbe_type_e610.h
2065
u64 wr_csr_prot;
sys/dev/ixgbe/ixgbe_vf.h
100
u64 last_vfgptc;
sys/dev/ixgbe/ixgbe_vf.h
101
u64 last_vfgorc;
sys/dev/ixgbe/ixgbe_vf.h
102
u64 last_vfgotc;
sys/dev/ixgbe/ixgbe_vf.h
103
u64 last_vfmprc;
sys/dev/ixgbe/ixgbe_vf.h
105
u64 vfgprc;
sys/dev/ixgbe/ixgbe_vf.h
106
u64 vfgptc;
sys/dev/ixgbe/ixgbe_vf.h
107
u64 vfgorc;
sys/dev/ixgbe/ixgbe_vf.h
108
u64 vfgotc;
sys/dev/ixgbe/ixgbe_vf.h
109
u64 vfmprc;
sys/dev/ixgbe/ixgbe_vf.h
111
u64 saved_reset_vfgprc;
sys/dev/ixgbe/ixgbe_vf.h
112
u64 saved_reset_vfgptc;
sys/dev/ixgbe/ixgbe_vf.h
113
u64 saved_reset_vfgorc;
sys/dev/ixgbe/ixgbe_vf.h
114
u64 saved_reset_vfgotc;
sys/dev/ixgbe/ixgbe_vf.h
115
u64 saved_reset_vfmprc;
sys/dev/ixgbe/ixgbe_vf.h
93
u64 base_vfgprc;
sys/dev/ixgbe/ixgbe_vf.h
94
u64 base_vfgptc;
sys/dev/ixgbe/ixgbe_vf.h
95
u64 base_vfgorc;
sys/dev/ixgbe/ixgbe_vf.h
96
u64 base_vfgotc;
sys/dev/ixgbe/ixgbe_vf.h
97
u64 base_vfmprc;
sys/dev/ixgbe/ixgbe_vf.h
99
u64 last_vfgprc;
sys/dev/ixgbe/ixgbe_x540.c
339
u64 ixgbe_get_supported_physical_layer_X540(struct ixgbe_hw *hw)
sys/dev/ixgbe/ixgbe_x540.c
341
u64 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
sys/dev/ixgbe/ixgbe_x540.h
47
u64 ixgbe_get_supported_physical_layer_X540(struct ixgbe_hw *hw);
sys/dev/ixgbe/ixgbe_x550.c
1046
u64 pfflp;
sys/dev/ixgbe/ixgbe_x550.c
1052
pfflp = (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPL);
sys/dev/ixgbe/ixgbe_x550.c
1053
pfflp |= (u64)IXGBE_READ_REG(hw, IXGBE_PFFLPH) << 32;
sys/dev/ixgbe/ixgbe_x550.c
3573
u64 ixgbe_get_supported_physical_layer_X550em(struct ixgbe_hw *hw)
sys/dev/ixgbe/ixgbe_x550.c
3575
u64 physical_layer = IXGBE_PHYSICAL_LAYER_UNKNOWN;
sys/dev/ixgbe/ixgbe_x550.h
87
u64 ixgbe_get_supported_physical_layer_X550em(struct ixgbe_hw *hw);
sys/dev/ixl/i40e_adminq.h
74
u64 cookie;
sys/dev/ixl/i40e_alloc.h
56
u64 size, u32 alignment);
sys/dev/ixl/i40e_common.c
1715
((u64)abilities->phy_type_ext << 32);
sys/dev/ixl/i40e_common.c
2036
hw->phy.phy_types |= ((u64)resp->link_type_ext << 32);
sys/dev/ixl/i40e_common.c
2087
u64 *advt_reg,
sys/dev/ixl/i40e_common.c
2103
*advt_reg = (u64)(LE16_TO_CPU(resp->local_an_reg1)) << 32;
sys/dev/ixl/i40e_common.c
2119
u64 advt_reg,
sys/dev/ixl/i40e_common.c
2147
u64 *advt_reg,
sys/dev/ixl/i40e_common.c
2163
*advt_reg = (u64)(LE16_TO_CPU(resp->local_an_reg1)) << 32;
sys/dev/ixl/i40e_common.c
3417
u32 reg_addr, u64 *reg_val,
sys/dev/ixl/i40e_common.c
3435
*reg_val = ((u64)LE32_TO_CPU(cmd_resp->value_high) << 32) |
sys/dev/ixl/i40e_common.c
3436
(u64)LE32_TO_CPU(cmd_resp->value_low);
sys/dev/ixl/i40e_common.c
3452
u32 reg_addr, u64 reg_val,
sys/dev/ixl/i40e_common.c
3485
u8 sdp_number, u64 *timeout,
sys/dev/ixl/i40e_common.c
4051
p->wr_csr_prot = (u64)number;
sys/dev/ixl/i40e_common.c
4052
p->wr_csr_prot |= (u64)logical_id << 32;
sys/dev/ixl/i40e_common.c
4097
u64 port_cfg = 0;
sys/dev/ixl/i40e_common.c
4341
cmd->address_high = CPU_TO_LE32(I40E_HI_DWORD((u64)buff));
sys/dev/ixl/i40e_common.c
4342
cmd->address_low = CPU_TO_LE32(I40E_LO_DWORD((u64)buff));
sys/dev/ixl/i40e_common.c
7076
u64 *tx_duration, u64 *rx_duration)
sys/dev/ixl/i40e_common.c
7134
bool offset_loaded, u64 *tx_offset,
sys/dev/ixl/i40e_common.c
7135
u64 *tx_stat, u64 *rx_offset,
sys/dev/ixl/i40e_common.c
7136
u64 *rx_stat)
sys/dev/ixl/i40e_common.c
7575
CPU_TO_LE32(I40E_HI_DWORD((u64)proxy_config));
sys/dev/ixl/i40e_common.c
7577
CPU_TO_LE32(I40E_LO_DWORD((u64)proxy_config));
sys/dev/ixl/i40e_common.c
7612
CPU_TO_LE32(I40E_HI_DWORD((u64)ns_proxy_table_entry));
sys/dev/ixl/i40e_common.c
7614
CPU_TO_LE32(I40E_LO_DWORD((u64)ns_proxy_table_entry));
sys/dev/ixl/i40e_common.c
7683
cmd->address_high = CPU_TO_LE32(I40E_HI_DWORD((u64)filter));
sys/dev/ixl/i40e_common.c
7684
cmd->address_low = CPU_TO_LE32(I40E_LO_DWORD((u64)filter));
sys/dev/ixl/i40e_dcb.h
193
u64 remtablelastchangetime;
sys/dev/ixl/i40e_dcb.h
194
u64 remtableinserts;
sys/dev/ixl/i40e_dcb.h
195
u64 remtabledeletes;
sys/dev/ixl/i40e_dcb.h
196
u64 remtabledrops;
sys/dev/ixl/i40e_dcb.h
197
u64 remtableageouts;
sys/dev/ixl/i40e_dcb.h
198
u64 txframestotal;
sys/dev/ixl/i40e_dcb.h
199
u64 rxframesdiscarded;
sys/dev/ixl/i40e_dcb.h
200
u64 rxportframeerrors;
sys/dev/ixl/i40e_dcb.h
201
u64 rxportframestotal;
sys/dev/ixl/i40e_dcb.h
202
u64 rxporttlvsdiscardedtotal;
sys/dev/ixl/i40e_dcb.h
203
u64 rxporttlvsunrecognizedtotal;
sys/dev/ixl/i40e_dcb.h
204
u64 remtoomanyneighbors;
sys/dev/ixl/i40e_hmc.c
153
u64 *pd_addr;
sys/dev/ixl/i40e_hmc.c
154
u64 page_desc;
sys/dev/ixl/i40e_hmc.c
192
pd_addr = (u64 *)pd_table->pd_page_addr.va;
sys/dev/ixl/i40e_hmc.c
196
i40e_memcpy(pd_addr, &page_desc, sizeof(u64),
sys/dev/ixl/i40e_hmc.c
232
u64 *pd_addr;
sys/dev/ixl/i40e_hmc.c
258
pd_addr = (u64 *)pd_table->pd_page_addr.va;
sys/dev/ixl/i40e_hmc.c
260
i40e_memset(pd_addr, 0, sizeof(u64), I40E_DMA_MEM);
sys/dev/ixl/i40e_hmc.c
53
u64 direct_mode_sz)
sys/dev/ixl/i40e_hmc.c
60
u64 alloc_len;
sys/dev/ixl/i40e_hmc.h
188
u64 fpm_addr, fpm_limit; \
sys/dev/ixl/i40e_hmc.h
212
u64 fpm_adr, fpm_limit; \
sys/dev/ixl/i40e_hmc.h
225
u64 direct_mode_sz);
sys/dev/ixl/i40e_hmc.h
50
u64 base; /* base addr in FPM */
sys/dev/ixl/i40e_hmc.h
53
u64 size; /* size in bytes of one object */
sys/dev/ixl/i40e_lan_hmc.c
1090
u64 dest_qword, mask;
sys/dev/ixl/i40e_lan_hmc.c
1105
mask = ~(u64)0;
sys/dev/ixl/i40e_lan_hmc.c
112
u64 l2fpm_size;
sys/dev/ixl/i40e_lan_hmc.c
1244
u64 obj_offset_in_fpm;
sys/dev/ixl/i40e_lan_hmc.c
322
u64 sd_size;
sys/dev/ixl/i40e_lan_hmc.c
49
static u64 i40e_align_l2obj_base(u64 offset)
sys/dev/ixl/i40e_lan_hmc.c
51
u64 aligned_offset = offset;
sys/dev/ixl/i40e_lan_hmc.c
70
u64 i40e_calculate_l2fpm_size(u32 txq_num, u32 rxq_num,
sys/dev/ixl/i40e_lan_hmc.c
73
u64 fpm_size = 0;
sys/dev/ixl/i40e_lan_hmc.c
904
u64 src_qword, mask;
sys/dev/ixl/i40e_lan_hmc.c
922
mask = ~(u64)0;
sys/dev/ixl/i40e_lan_hmc.c
927
src_qword = *(u64 *)from;
sys/dev/ixl/i40e_lan_hmc.h
160
u64 direct_mode_sz;
sys/dev/ixl/i40e_lan_hmc.h
177
u64 i40e_calculate_l2fpm_size(u32 txq_num, u32 rxq_num,
sys/dev/ixl/i40e_lan_hmc.h
52
u64 base;
sys/dev/ixl/i40e_lan_hmc.h
85
u64 base;
sys/dev/ixl/i40e_lan_hmc.h
97
u64 head_wb_addr;
sys/dev/ixl/i40e_nvm.c
91
u64 gtime, timeout;
sys/dev/ixl/i40e_nvm.c
92
u64 time_left = 0;
sys/dev/ixl/i40e_osdep.c
68
enum i40e_memory_type type __unused, u64 size, u32 alignment)
sys/dev/ixl/i40e_osdep.h
126
#define __le64 u64
sys/dev/ixl/i40e_osdep.h
129
#define __be64 u64
sys/dev/ixl/i40e_osdep.h
159
u64 pa;
sys/dev/ixl/i40e_prototype.h
111
bool offset_loaded, u64 *tx_offset,
sys/dev/ixl/i40e_prototype.h
112
u64 *tx_stat, u64 *rx_offset,
sys/dev/ixl/i40e_prototype.h
113
u64 *rx_stat);
sys/dev/ixl/i40e_prototype.h
116
u64 *tx_duration, u64 *rx_duration);
sys/dev/ixl/i40e_prototype.h
125
u32 reg_addr, u64 reg_val,
sys/dev/ixl/i40e_prototype.h
128
u32 reg_addr, u64 *reg_val,
sys/dev/ixl/i40e_prototype.h
152
u64 *advt_reg,
sys/dev/ixl/i40e_prototype.h
155
u64 *advt_reg,
sys/dev/ixl/i40e_prototype.h
168
u64 advt_reg,
sys/dev/ixl/i40e_prototype.h
249
u8 sdp_number, u64 *timeout,
sys/dev/ixl/i40e_type.h
1421
u64 rx_bytes; /* gorc */
sys/dev/ixl/i40e_type.h
1422
u64 rx_unicast; /* uprc */
sys/dev/ixl/i40e_type.h
1423
u64 rx_multicast; /* mprc */
sys/dev/ixl/i40e_type.h
1424
u64 rx_broadcast; /* bprc */
sys/dev/ixl/i40e_type.h
1425
u64 rx_discards; /* rdpc */
sys/dev/ixl/i40e_type.h
1426
u64 rx_unknown_protocol; /* rupp */
sys/dev/ixl/i40e_type.h
1427
u64 tx_bytes; /* gotc */
sys/dev/ixl/i40e_type.h
1428
u64 tx_unicast; /* uptc */
sys/dev/ixl/i40e_type.h
1429
u64 tx_multicast; /* mptc */
sys/dev/ixl/i40e_type.h
1430
u64 tx_broadcast; /* bptc */
sys/dev/ixl/i40e_type.h
1431
u64 tx_discards; /* tdpc */
sys/dev/ixl/i40e_type.h
1432
u64 tx_errors; /* tepc */
sys/dev/ixl/i40e_type.h
1437
u64 tc_rx_packets[I40E_MAX_TRAFFIC_CLASS];
sys/dev/ixl/i40e_type.h
1438
u64 tc_rx_bytes[I40E_MAX_TRAFFIC_CLASS];
sys/dev/ixl/i40e_type.h
1439
u64 tc_tx_packets[I40E_MAX_TRAFFIC_CLASS];
sys/dev/ixl/i40e_type.h
1440
u64 tc_tx_bytes[I40E_MAX_TRAFFIC_CLASS];
sys/dev/ixl/i40e_type.h
1449
u64 tx_dropped_link_down; /* tdold */
sys/dev/ixl/i40e_type.h
1450
u64 crc_errors; /* crcerrs */
sys/dev/ixl/i40e_type.h
1451
u64 illegal_bytes; /* illerrc */
sys/dev/ixl/i40e_type.h
1452
u64 error_bytes; /* errbc */
sys/dev/ixl/i40e_type.h
1453
u64 mac_local_faults; /* mlfc */
sys/dev/ixl/i40e_type.h
1454
u64 mac_remote_faults; /* mrfc */
sys/dev/ixl/i40e_type.h
1455
u64 rx_length_errors; /* rlec */
sys/dev/ixl/i40e_type.h
1456
u64 link_xon_rx; /* lxonrxc */
sys/dev/ixl/i40e_type.h
1457
u64 link_xoff_rx; /* lxoffrxc */
sys/dev/ixl/i40e_type.h
1458
u64 priority_xon_rx[8]; /* pxonrxc[8] */
sys/dev/ixl/i40e_type.h
1459
u64 priority_xoff_rx[8]; /* pxoffrxc[8] */
sys/dev/ixl/i40e_type.h
1460
u64 link_xon_tx; /* lxontxc */
sys/dev/ixl/i40e_type.h
1461
u64 link_xoff_tx; /* lxofftxc */
sys/dev/ixl/i40e_type.h
1462
u64 priority_xon_tx[8]; /* pxontxc[8] */
sys/dev/ixl/i40e_type.h
1463
u64 priority_xoff_tx[8]; /* pxofftxc[8] */
sys/dev/ixl/i40e_type.h
1464
u64 priority_xon_2_xoff[8]; /* pxon2offc[8] */
sys/dev/ixl/i40e_type.h
1465
u64 rx_size_64; /* prc64 */
sys/dev/ixl/i40e_type.h
1466
u64 rx_size_127; /* prc127 */
sys/dev/ixl/i40e_type.h
1467
u64 rx_size_255; /* prc255 */
sys/dev/ixl/i40e_type.h
1468
u64 rx_size_511; /* prc511 */
sys/dev/ixl/i40e_type.h
1469
u64 rx_size_1023; /* prc1023 */
sys/dev/ixl/i40e_type.h
1470
u64 rx_size_1522; /* prc1522 */
sys/dev/ixl/i40e_type.h
1471
u64 rx_size_big; /* prc9522 */
sys/dev/ixl/i40e_type.h
1472
u64 rx_undersize; /* ruc */
sys/dev/ixl/i40e_type.h
1473
u64 rx_fragments; /* rfc */
sys/dev/ixl/i40e_type.h
1474
u64 rx_oversize; /* roc */
sys/dev/ixl/i40e_type.h
1475
u64 rx_err1; /* rxerr1 */
sys/dev/ixl/i40e_type.h
1476
u64 rx_jabber; /* rjc */
sys/dev/ixl/i40e_type.h
1477
u64 tx_size_64; /* ptc64 */
sys/dev/ixl/i40e_type.h
1478
u64 tx_size_127; /* ptc127 */
sys/dev/ixl/i40e_type.h
1479
u64 tx_size_255; /* ptc255 */
sys/dev/ixl/i40e_type.h
1480
u64 tx_size_511; /* ptc511 */
sys/dev/ixl/i40e_type.h
1481
u64 tx_size_1023; /* ptc1023 */
sys/dev/ixl/i40e_type.h
1482
u64 tx_size_1522; /* ptc1522 */
sys/dev/ixl/i40e_type.h
1483
u64 tx_size_big; /* ptc9522 */
sys/dev/ixl/i40e_type.h
1484
u64 mac_short_packet_dropped; /* mspdc */
sys/dev/ixl/i40e_type.h
1485
u64 checksum_error; /* xec */
sys/dev/ixl/i40e_type.h
1487
u64 fd_atr_match;
sys/dev/ixl/i40e_type.h
1488
u64 fd_sb_match;
sys/dev/ixl/i40e_type.h
1489
u64 fd_atr_tunnel_match;
sys/dev/ixl/i40e_type.h
1495
u64 tx_lpi_count; /* etlpic */
sys/dev/ixl/i40e_type.h
1496
u64 rx_lpi_count; /* erlpic */
sys/dev/ixl/i40e_type.h
1497
u64 tx_lpi_duration;
sys/dev/ixl/i40e_type.h
1498
u64 rx_lpi_duration;
sys/dev/ixl/i40e_type.h
297
u64 phy_types;
sys/dev/ixl/i40e_type.h
440
u64 wr_csr_prot;
sys/dev/ixl/i40e_type.h
466
u64 hw_semaphore_timeout; /* usec global time (GTIME resolution) */
sys/dev/ixl/i40e_type.h
759
u64 flags;
sys/dev/ixl/if_ixl.c
1349
u64 baudrate;
sys/dev/ixl/ixl.h
329
u64 tx_paddr;
sys/dev/ixl/ixl.h
347
u64 tx_bytes;
sys/dev/ixl/ixl.h
348
u64 tx_packets;
sys/dev/ixl/ixl.h
349
u64 mss_too_small;
sys/dev/ixl/ixl.h
372
u64 rx_packets;
sys/dev/ixl/ixl.h
373
u64 rx_bytes;
sys/dev/ixl/ixl.h
374
u64 desc_errs;
sys/dev/ixl/ixl.h
375
u64 csum_errs;
sys/dev/ixl/ixl.h
387
u64 irqs;
sys/dev/ixl/ixl.h
388
u64 tso;
sys/dev/ixl/ixl.h
397
u64 irqs;
sys/dev/ixl/ixl.h
436
u64 num_hw_filters;
sys/dev/ixl/ixl.h
450
u64 ipackets;
sys/dev/ixl/ixl.h
451
u64 ierrors;
sys/dev/ixl/ixl.h
452
u64 opackets;
sys/dev/ixl/ixl.h
453
u64 oerrors;
sys/dev/ixl/ixl.h
454
u64 ibytes;
sys/dev/ixl/ixl.h
455
u64 obytes;
sys/dev/ixl/ixl.h
456
u64 imcasts;
sys/dev/ixl/ixl.h
457
u64 omcasts;
sys/dev/ixl/ixl.h
458
u64 iqdrops;
sys/dev/ixl/ixl.h
459
u64 oqdrops;
sys/dev/ixl/ixl.h
460
u64 noproto;
sys/dev/ixl/ixl.h
463
u64 flags;
sys/dev/ixl/ixl.h
509
u64 *stat;
sys/dev/ixl/ixl.h
524
u64 ixl_max_vc_speed_to_value(u8 link_speeds);
sys/dev/ixl/ixl_pf.h
156
u64 admin_irq;
sys/dev/ixl/ixl_pf.h
322
u64 *, u64 *);
sys/dev/ixl/ixl_pf.h
324
u64 *, u64 *);
sys/dev/ixl/ixl_pf.h
326
u64 *, u64 *);
sys/dev/ixl/ixl_pf.h
402
void ixl_add_ifmedia(struct ifmedia *, u64);
sys/dev/ixl/ixl_pf.h
445
u64 ixl_max_aq_speed_to_value(u8);
sys/dev/ixl/ixl_pf_main.c
1129
u64 set_hena = 0, hena;
sys/dev/ixl/ixl_pf_main.c
1135
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_OTHER);
sys/dev/ixl/ixl_pf_main.c
1137
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_TCP);
sys/dev/ixl/ixl_pf_main.c
1139
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV4_UDP);
sys/dev/ixl/ixl_pf_main.c
1141
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_OTHER);
sys/dev/ixl/ixl_pf_main.c
1143
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_FRAG_IPV6);
sys/dev/ixl/ixl_pf_main.c
1145
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_TCP);
sys/dev/ixl/ixl_pf_main.c
1147
set_hena |= ((u64)1 << I40E_FILTER_PCTYPE_NONF_IPV6_UDP);
sys/dev/ixl/ixl_pf_main.c
1148
hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
sys/dev/ixl/ixl_pf_main.c
1149
((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
sys/dev/ixl/ixl_pf_main.c
2091
u64 prev_link_xoff_rx = pf->stats.link_xoff_rx;
sys/dev/ixl/ixl_pf_main.c
2229
u64 rx_roc;
sys/dev/ixl/ixl_pf_main.c
2242
u64 rx_err1;
sys/dev/ixl/ixl_pf_main.c
2330
u64 tx_discards, csum_errs;
sys/dev/ixl/ixl_pf_main.c
2402
bool offset_loaded, u64 mask, u64 *offset, u64 *stat)
sys/dev/ixl/ixl_pf_main.c
2404
u64 new_data = rd64(hw, reg);
sys/dev/ixl/ixl_pf_main.c
2420
bool offset_loaded, u64 *offset, u64 *stat)
sys/dev/ixl/ixl_pf_main.c
2435
bool offset_loaded, u64 *offset, u64 *stat)
sys/dev/ixl/ixl_pf_main.c
2450
bool offset_loaded, u64 *offset, u64 *stat)
sys/dev/ixl/ixl_pf_main.c
2460
*stat = (u32)((new_data + ((u64)1 << 32)) - *offset);
sys/dev/ixl/ixl_pf_main.c
3033
u64
sys/dev/ixl/ixl_pf_main.c
3068
u64 max_speed;
sys/dev/ixl/ixl_pf_main.c
4192
u64 hena;
sys/dev/ixl/ixl_pf_main.c
4194
hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
sys/dev/ixl/ixl_pf_main.c
4195
((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
sys/dev/ixl/ixl_pf_main.c
816
ixl_add_ifmedia(struct ifmedia *media, u64 phy_types)
sys/dev/ixl/ixl_txrx.c
286
u64 type_cmd_tso_mss;
sys/dev/ixl/ixl_txrx.c
316
type_cmd_tso_mss = ((u64)type << I40E_TXD_CTX_QW1_DTYPE_SHIFT) |
sys/dev/ixl/ixl_txrx.c
317
((u64)cmd << I40E_TXD_CTX_QW1_CMD_SHIFT) |
sys/dev/ixl/ixl_txrx.c
318
((u64)tsolen << I40E_TXD_CTX_QW1_TSO_LEN_SHIFT) |
sys/dev/ixl/ixl_txrx.c
319
((u64)mss << I40E_TXD_CTX_QW1_MSS_SHIFT);
sys/dev/ixl/ixl_txrx.c
389
| ((u64)cmd << I40E_TXD_QW1_CMD_SHIFT)
sys/dev/ixl/ixl_txrx.c
390
| ((u64)off << I40E_TXD_QW1_OFFSET_SHIFT)
sys/dev/ixl/ixl_txrx.c
391
| ((u64)seglen << I40E_TXD_QW1_TX_BUF_SZ_SHIFT)
sys/dev/ixl/ixl_txrx.c
392
| ((u64)htole16(pi->ipi_vtag) << I40E_TXD_QW1_L2TAG1_SHIFT));
sys/dev/ixl/ixl_txrx.c
400
htole64(((u64)IXL_TXD_CMD << I40E_TXD_QW1_CMD_SHIFT));
sys/dev/ixl/ixl_txrx.c
583
u64 qword;
sys/dev/ixl/ixl_txrx.c
666
u64 qword;
sys/dev/ixl/ixl_txrx.c
825
u64
sys/dev/ixl/virtchnl.h
292
u64 dma_ring_addr;
sys/dev/ixl/virtchnl.h
293
u64 dma_headwb_addr; /* deprecated with AVF 1.0 */
sys/dev/ixl/virtchnl.h
314
u64 dma_ring_addr;
sys/dev/ixl/virtchnl.h
507
u64 hena;
sys/dev/mlx4/cmd.h
268
int __mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
sys/dev/mlx4/cmd.h
273
static inline int mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u32 in_modifier,
sys/dev/mlx4/cmd.h
282
static inline int mlx4_cmd_box(struct mlx4_dev *dev, u64 in_param, u64 out_param,
sys/dev/mlx4/cmd.h
295
static inline int mlx4_cmd_imm(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
sys/dev/mlx4/cmd.h
309
int mlx4_set_vf_mac(struct mlx4_dev *dev, int port, int vf, u64 mac);
sys/dev/mlx4/device.h
1097
u64 mlx4_mtt_addr(struct mlx4_dev *dev, struct mlx4_mtt *mtt);
sys/dev/mlx4/device.h
1099
int mlx4_mr_alloc(struct mlx4_dev *dev, u32 pd, u64 iova, u64 size, u32 access,
sys/dev/mlx4/device.h
1108
int start_index, int npages, u64 *page_list);
sys/dev/mlx4/device.h
1122
struct mlx4_uar *uar, u64 db_rec, struct mlx4_cq *cq,
sys/dev/mlx4/device.h
1134
struct mlx4_mtt *mtt, u64 db_rec, struct mlx4_srq *srq);
sys/dev/mlx4/device.h
1148
enum mlx4_protocol protocol, u64 *reg_id);
sys/dev/mlx4/device.h
1150
enum mlx4_protocol protocol, u64 reg_id);
sys/dev/mlx4/device.h
1373
int mlx4_SET_MCAST_FLTR(struct mlx4_dev *dev, u8 port, u64 mac, u64 clear, u8 mode);
sys/dev/mlx4/device.h
1375
int mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
sys/dev/mlx4/device.h
1376
void mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
sys/dev/mlx4/device.h
1378
int __mlx4_replace_mac(struct mlx4_dev *dev, u8 port, int qpn, u64 new_mac);
sys/dev/mlx4/device.h
1391
int mlx4_find_cached_mac(struct mlx4_dev *dev, u8 port, u64 mac, int *idx);
sys/dev/mlx4/device.h
1396
int mlx4_map_phys_fmr(struct mlx4_dev *dev, struct mlx4_fmr *fmr, u64 *page_list,
sys/dev/mlx4/device.h
1397
int npages, u64 iova, u32 *lkey, u32 *rkey);
sys/dev/mlx4/device.h
1419
int mlx4_wol_read(struct mlx4_dev *dev, u64 *config, int port);
sys/dev/mlx4/device.h
1420
int mlx4_wol_write(struct mlx4_dev *dev, u64 config, int port);
sys/dev/mlx4/device.h
1431
struct mlx4_net_trans_rule *rule, u64 *reg_id);
sys/dev/mlx4/device.h
1432
int mlx4_flow_detach(struct mlx4_dev *dev, u64 reg_id);
sys/dev/mlx4/device.h
1440
int port, int qpn, u16 prio, u64 *reg_id);
sys/dev/mlx4/device.h
1518
u64 iova, u64 size, int npages,
sys/dev/mlx4/device.h
472
u64 sl64;
sys/dev/mlx4/device.h
510
static inline u64 mlx4_fw_ver(u64 major, u64 minor, u64 subminor)
sys/dev/mlx4/device.h
525
u64 fw_ver;
sys/dev/mlx4/device.h
531
u64 def_mac[MLX4_MAX_PORTS + 1];
sys/dev/mlx4/device.h
538
u64 trans_code[MLX4_MAX_PORTS + 1];
sys/dev/mlx4/device.h
590
u64 flags;
sys/dev/mlx4/device.h
591
u64 flags2;
sys/dev/mlx4/device.h
618
u64 phys_port_id[MLX4_MAX_PORTS + 1];
sys/dev/mlx4/device.h
683
u64 iova;
sys/dev/mlx4/device.h
684
u64 size;
sys/dev/mlx4/device.h
877
u64 regid_promisc_array[MLX4_MAX_PORTS + 1];
sys/dev/mlx4/device.h
878
u64 regid_allmulti_array[MLX4_MAX_PORTS + 1];
sys/dev/mlx4/device.h
886
u64 offset;
sys/dev/mlx4/device.h
983
u64 guid0;
sys/dev/mlx4/device.h
984
u64 node_guid;
sys/dev/mlx4/device.h
985
u64 si_guid;
sys/dev/mlx4/doorbell.h
58
__raw_writeq(*(u64 *) val, dest);
sys/dev/mlx4/driver.h
92
static inline u64 mlx4_mac_to_u64(const u8 *addr)
sys/dev/mlx4/driver.h
94
u64 mac = 0;
sys/dev/mlx4/mlx4_core/fw.h
124
u64 max_icm_sz;
sys/dev/mlx4/mlx4_core/fw.h
156
u64 phys_port_id;
sys/dev/mlx4/mlx4_core/fw.h
176
u64 qpc_base;
sys/dev/mlx4/mlx4_core/fw.h
177
u64 rdmarc_base;
sys/dev/mlx4/mlx4_core/fw.h
178
u64 auxc_base;
sys/dev/mlx4/mlx4_core/fw.h
179
u64 altc_base;
sys/dev/mlx4/mlx4_core/fw.h
180
u64 srqc_base;
sys/dev/mlx4/mlx4_core/fw.h
181
u64 cqc_base;
sys/dev/mlx4/mlx4_core/fw.h
182
u64 eqc_base;
sys/dev/mlx4/mlx4_core/fw.h
183
u64 mc_base;
sys/dev/mlx4/mlx4_core/fw.h
184
u64 dmpt_base;
sys/dev/mlx4/mlx4_core/fw.h
185
u64 cmpt_base;
sys/dev/mlx4/mlx4_core/fw.h
186
u64 mtt_base;
sys/dev/mlx4/mlx4_core/fw.h
187
u64 global_caps;
sys/dev/mlx4/mlx4_core/fw.h
204
u64 dev_cap_enabled;
sys/dev/mlx4/mlx4_core/fw.h
218
u64 guid0;
sys/dev/mlx4/mlx4_core/fw.h
220
u64 node_guid;
sys/dev/mlx4/mlx4_core/fw.h
222
u64 si_guid;
sys/dev/mlx4/mlx4_core/fw.h
228
u64 si_guid;
sys/dev/mlx4/mlx4_core/fw.h
251
int mlx4_map_cmd(struct mlx4_dev *dev, u16 op, struct mlx4_icm *icm, u64 virt);
sys/dev/mlx4/mlx4_core/fw.h
252
int mlx4_SET_ICM_SIZE(struct mlx4_dev *dev, u64 icm_size, u64 *aux_pages);
sys/dev/mlx4/mlx4_core/fw.h
59
u64 def_mac;
sys/dev/mlx4/mlx4_core/fw.h
64
u64 trans_code;
sys/dev/mlx4/mlx4_core/fw.h
93
u64 flags;
sys/dev/mlx4/mlx4_core/fw.h
94
u64 flags2;
sys/dev/mlx4/mlx4_core/icm.h
81
u64 virt, int obj_size, u32 nobj, int reserved,
sys/dev/mlx4/mlx4_core/mlx4.h
1013
int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
sys/dev/mlx4/mlx4_core/mlx4.h
1014
void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
sys/dev/mlx4/mlx4_core/mlx4.h
1016
int start_index, int npages, u64 *page_list);
sys/dev/mlx4/mlx4_core/mlx4.h
1037
u64 mlx4_make_profile(struct mlx4_dev *dev,
sys/dev/mlx4/mlx4_core/mlx4.h
1195
void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param);
sys/dev/mlx4/mlx4_core/mlx4.h
1240
u64 resource_id, int *slave);
sys/dev/mlx4/mlx4_core/mlx4.h
1308
enum mlx4_protocol prot, u64 *reg_id);
sys/dev/mlx4/mlx4_core/mlx4.h
1355
static inline void set_param_l(u64 *arg, u32 val)
sys/dev/mlx4/mlx4_core/mlx4.h
1357
*arg = (*arg & 0xffffffff00000000ULL) | (u64) val;
sys/dev/mlx4/mlx4_core/mlx4.h
1360
static inline void set_param_h(u64 *arg, u32 val)
sys/dev/mlx4/mlx4_core/mlx4.h
1362
*arg = (*arg & 0xffffffff) | ((u64) val << 32);
sys/dev/mlx4/mlx4_core/mlx4.h
1365
static inline u32 get_param_l(u64 *arg)
sys/dev/mlx4/mlx4_core/mlx4.h
1370
static inline u32 get_param_h(u64 *arg)
sys/dev/mlx4/mlx4_core/mlx4.h
176
u64 in_param;
sys/dev/mlx4/mlx4_core/mlx4.h
177
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4.h
263
u64 virt;
sys/dev/mlx4/mlx4_core/mlx4.h
423
u64 clr_int_base;
sys/dev/mlx4/mlx4_core/mlx4.h
424
u64 catas_offset;
sys/dev/mlx4/mlx4_core/mlx4.h
425
u64 comm_base;
sys/dev/mlx4/mlx4_core/mlx4.h
426
u64 clock_offset;
sys/dev/mlx4/mlx4_core/mlx4.h
456
u64 addr;
sys/dev/mlx4/mlx4_core/mlx4.h
501
u64 mac;
sys/dev/mlx4/mlx4_core/mlx4.h
664
u64 mtt_base;
sys/dev/mlx4/mlx4_core/mlx4.h
665
u64 mpt_base;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1054
u64 in_param;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1055
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1058
in_param = cmd->has_inbox ? (u64) inbox->dma : vhcr->in_param;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1059
out_param = cmd->has_outbox ? (u64) outbox->dma : vhcr->out_param;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
130
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1684
u64 in_param;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1685
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1782
in_param = cmd->has_inbox ? (u64) inbox->dma :
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
1784
out_param = cmd->has_outbox ? (u64) outbox->dma :
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
2147
slave_state[slave].vhcr_dma = ((u64) param) << 48;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
2153
slave_state[slave].vhcr_dma |= ((u64) param) << 32;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
2158
slave_state[slave].vhcr_dma |= ((u64) param) << 16;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
2971
int mlx4_set_vf_mac(struct mlx4_dev *dev, int port, int vf, u64 mac)
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
432
static int mlx4_cmd_post(struct mlx4_dev *dev, u64 in_param, u64 out_param,
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
517
static int mlx4_slave_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
582
static int mlx4_cmd_poll(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
643
(u64) be32_to_cpu((__force __be32)
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
645
(u64) be32_to_cpu((__force __be32)
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
666
void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param)
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
683
static int mlx4_cmd_wait(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
780
int __mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
818
static int mlx4_ACCESS_MEM(struct mlx4_dev *dev, u64 master_addr,
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
819
int slave, u64 slave_addr,
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
822
u64 in_param;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
823
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
835
in_param = (u64) slave | slave_addr;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
836
out_param = (u64) dev->caps.function | master_addr;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
838
in_param = (u64) dev->caps.function | master_addr;
sys/dev/mlx4/mlx4_core/mlx4_cmd.c
839
out_param = (u64) slave | slave_addr;
sys/dev/mlx4/mlx4_core/mlx4_cq.c
144
u64 mtt_addr;
sys/dev/mlx4/mlx4_core/mlx4_cq.c
194
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_cq.c
223
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_cq.c
238
struct mlx4_mtt *mtt, struct mlx4_uar *uar, u64 db_rec,
sys/dev/mlx4/mlx4_core/mlx4_cq.c
246
u64 mtt_addr;
sys/dev/mlx4/mlx4_core/mlx4_eq.c
86
static u64 get_async_ev_mask(struct mlx4_dev *dev)
sys/dev/mlx4/mlx4_core/mlx4_eq.c
871
u64 in_param = vhcr->in_param;
sys/dev/mlx4/mlx4_core/mlx4_eq.c
88
u64 async_ev_mask = MLX4_ASYNC_EVENT_MASK;
sys/dev/mlx4/mlx4_core/mlx4_eq.c
887
static int mlx4_MAP_EQ(struct mlx4_dev *dev, u64 event_mask, int unmap,
sys/dev/mlx4/mlx4_core/mlx4_eq.c
961
u64 *dma_list = NULL;
sys/dev/mlx4/mlx4_core/mlx4_eq.c
963
u64 mtt_addr;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1262
u64 flags;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
130
static void dump_dev_cap_flags2(struct mlx4_dev *dev, u64 flags)
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1397
u64 def_mac;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1501
int mlx4_map_cmd(struct mlx4_dev *dev, u16 op, struct mlx4_icm *icm, u64 virt)
sys/dev/mlx4/mlx4_core/mlx4_fw.c
1607
u64 fw_ver;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2542
int mlx4_SET_ICM_SIZE(struct mlx4_dev *dev, u64 icm_size, u64 *aux_pages)
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2634
dev->caps.phys_port_id[port] = (u64)guid_lo |
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2635
(u64)guid_hi << 32;
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2643
int mlx4_wol_read(struct mlx4_dev *dev, u64 *config, int port)
sys/dev/mlx4/mlx4_core/mlx4_fw.c
2653
int mlx4_wol_write(struct mlx4_dev *dev, u64 config, int port)
sys/dev/mlx4/mlx4_core/mlx4_fw.c
63
typedef struct { u64 value; } __packed u64_p_t; \
sys/dev/mlx4/mlx4_core/mlx4_fw.c
64
u64 val; \
sys/dev/mlx4/mlx4_core/mlx4_fw.c
87
static void dump_dev_cap_flags(struct mlx4_dev *dev, u64 flags)
sys/dev/mlx4/mlx4_core/mlx4_fw.c
930
dev_cap->flags = flags | (u64)ext_flags << 32;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
228
static int mlx4_MAP_ICM(struct mlx4_dev *dev, struct mlx4_icm *icm, u64 virt)
sys/dev/mlx4/mlx4_core/mlx4_icm.c
233
static int mlx4_UNMAP_ICM(struct mlx4_dev *dev, u64 virt, u32 page_count)
sys/dev/mlx4/mlx4_core/mlx4_icm.c
273
(u64) i * MLX4_TABLE_CHUNK_SIZE)) {
sys/dev/mlx4/mlx4_core/mlx4_icm.c
290
u64 offset;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
297
offset = (u64) i * MLX4_TABLE_CHUNK_SIZE;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
311
u64 idx;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
321
idx = (u64) (obj & (table->num_obj - 1)) * table->obj_size;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
388
u64 virt, int obj_size, u32 nobj, int reserved,
sys/dev/mlx4/mlx4_core/mlx4_icm.c
395
u64 size;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
411
size = (u64) nobj * obj_size;
sys/dev/mlx4/mlx4_core/mlx4_icm.c
414
if ((u64) (i + 1) * MLX4_TABLE_CHUNK_SIZE > size)
sys/dev/mlx4/mlx4_core/mlx4_main.c
1504
static int mlx4_init_cmpt_table(struct mlx4_dev *dev, u64 cmpt_base,
sys/dev/mlx4/mlx4_core/mlx4_main.c
1513
((u64) (MLX4_CMPT_TYPE_QP *
sys/dev/mlx4/mlx4_core/mlx4_main.c
1523
((u64) (MLX4_CMPT_TYPE_SRQ *
sys/dev/mlx4/mlx4_core/mlx4_main.c
1532
((u64) (MLX4_CMPT_TYPE_CQ *
sys/dev/mlx4/mlx4_core/mlx4_main.c
1542
((u64) (MLX4_CMPT_TYPE_EQ *
sys/dev/mlx4/mlx4_core/mlx4_main.c
1564
struct mlx4_init_hca_param *init_hca, u64 icm_size)
sys/dev/mlx4/mlx4_core/mlx4_main.c
1567
u64 aux_pages;
sys/dev/mlx4/mlx4_core/mlx4_main.c
1846
cycles = (u64) clockhi << 32 | (u64) clocklo;
sys/dev/mlx4/mlx4_core/mlx4_main.c
1968
u64 dma = (u64) priv->mfunc.vhcr_dma;
sys/dev/mlx4/mlx4_core/mlx4_main.c
2221
u64 icm_size;
sys/dev/mlx4/mlx4_core/mlx4_main.c
2509
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_main.c
2560
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_main.c
3105
static u64 mlx4_enable_sriov(struct mlx4_dev *dev, struct pci_dev *pdev,
sys/dev/mlx4/mlx4_core/mlx4_main.c
3108
u64 dev_flags = dev->flags;
sys/dev/mlx4/mlx4_core/mlx4_main.c
3332
u64 dev_flags = mlx4_enable_sriov(dev, pdev,
sys/dev/mlx4/mlx4_core/mlx4_main.c
3391
u64 dev_flags = mlx4_enable_sriov(dev, pdev, total_vfs,
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1037
int mlx4_flow_detach(struct mlx4_dev *dev, u64 reg_id)
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1050
int port, int qpn, u16 prio, u64 *reg_id)
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1091
u64 in_param;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1093
in_param = ((u64) min_range_qpn) << 32;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1094
in_param |= ((u64) max_range_qpn) & 0xFFFFFFFF;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
110
u64 imm;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1371
enum mlx4_protocol prot, u64 *reg_id)
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1410
enum mlx4_protocol prot, u64 *reg_id)
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1439
enum mlx4_protocol prot, u64 reg_id)
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1474
u64 *regid_p;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1504
u64 *regid_p;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
1583
return mlx4_cmd(dev, (u64) qpn | (u64) port << 62, (u32) steer, add,
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
56
u64 *reg_id)
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
58
u64 imm;
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
71
static int mlx4_QP_FLOW_STEERING_DETACH(struct mlx4_dev *dev, u64 regid)
sys/dev/mlx4/mlx4_core/mlx4_mcg.c
984
struct mlx4_net_trans_rule *rule, u64 *reg_id)
sys/dev/mlx4/mlx4_core/mlx4_mr.c
1002
int mlx4_map_phys_fmr(struct mlx4_dev *dev, struct mlx4_fmr *fmr, u64 *page_list,
sys/dev/mlx4/mlx4_core/mlx4_mr.c
1003
int npages, u64 iova, u32 *lkey, u32 *rkey)
sys/dev/mlx4/mlx4_core/mlx4_mr.c
1024
npages * sizeof(u64), DMA_TO_DEVICE);
sys/dev/mlx4/mlx4_core/mlx4_mr.c
1030
npages * sizeof(u64), DMA_TO_DEVICE);
sys/dev/mlx4/mlx4_core/mlx4_mr.c
182
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_mr.c
183
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_mr.c
239
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_mr.c
266
u64 mlx4_mtt_addr(struct mlx4_dev *dev, struct mlx4_mtt *mtt)
sys/dev/mlx4/mlx4_core/mlx4_mr.c
268
return (u64) mtt->offset * dev->caps.mtt_entry_sz;
sys/dev/mlx4/mlx4_core/mlx4_mr.c
423
u64 iova, u64 size, u32 access, int npages,
sys/dev/mlx4/mlx4_core/mlx4_mr.c
453
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_mr.c
474
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_mr.c
497
u64 param = 0;
sys/dev/mlx4/mlx4_core/mlx4_mr.c
518
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_mr.c
532
int mlx4_mr_alloc(struct mlx4_dev *dev, u32 pd, u64 iova, u64 size, u32 access,
sys/dev/mlx4/mlx4_core/mlx4_mr.c
595
u64 iova, u64 size, int npages,
sys/dev/mlx4/mlx4_core/mlx4_mr.c
698
int start_index, int npages, u64 *page_list)
sys/dev/mlx4/mlx4_core/mlx4_mr.c
712
npages * sizeof (u64), DMA_TO_DEVICE);
sys/dev/mlx4/mlx4_core/mlx4_mr.c
718
npages * sizeof (u64), DMA_TO_DEVICE);
sys/dev/mlx4/mlx4_core/mlx4_mr.c
724
int start_index, int npages, u64 *page_list)
sys/dev/mlx4/mlx4_core/mlx4_mr.c
732
mtts_per_page = PAGE_SIZE / sizeof(u64);
sys/dev/mlx4/mlx4_core/mlx4_mr.c
752
int start_index, int npages, u64 *page_list)
sys/dev/mlx4/mlx4_core/mlx4_mr.c
770
chunk = min_t(int, MLX4_MAILBOX_SIZE / sizeof(u64) - 2,
sys/dev/mlx4/mlx4_core/mlx4_mr.c
798
u64 *page_list;
sys/dev/mlx4/mlx4_core/mlx4_mr.c
975
static inline int mlx4_check_fmr(struct mlx4_fmr *fmr, u64 *page_list,
sys/dev/mlx4/mlx4_core/mlx4_mr.c
976
int npages, u64 iova)
sys/dev/mlx4/mlx4_core/mlx4_pd.c
103
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_pd.c
78
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_port.c
113
struct mlx4_mac_table *table, u64 mac)
sys/dev/mlx4/mlx4_core/mlx4_port.c
150
int mlx4_find_cached_mac(struct mlx4_dev *dev, u8 port, u64 mac, int *idx)
sys/dev/mlx4/mlx4_core/mlx4_port.c
1717
u64 mac, u64 clear, u8 mode)
sys/dev/mlx4/mlx4_core/mlx4_port.c
182
int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac)
sys/dev/mlx4/mlx4_core/mlx4_port.c
267
u64 dup_mac = MLX4_MAC_MASK & be64_to_cpu(dup_table->entries[i]);
sys/dev/mlx4/mlx4_core/mlx4_port.c
342
int mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac)
sys/dev/mlx4/mlx4_core/mlx4_port.c
344
u64 out_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_port.c
379
void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac)
sys/dev/mlx4/mlx4_core/mlx4_port.c
450
void mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac)
sys/dev/mlx4/mlx4_core/mlx4_port.c
452
u64 out_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_port.c
474
int __mlx4_replace_mac(struct mlx4_dev *dev, u8 port, int qpn, u64 new_mac)
sys/dev/mlx4/mlx4_core/mlx4_port.c
742
u64 out_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_port.c
828
u64 out_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_profile.c
121
profile[i].size = max(profile[i].size, (u64) PAGE_SIZE);
sys/dev/mlx4/mlx4_core/mlx4_profile.c
69
u64 mlx4_make_profile(struct mlx4_dev *dev,
sys/dev/mlx4/mlx4_core/mlx4_profile.c
76
u64 size;
sys/dev/mlx4/mlx4_core/mlx4_profile.c
77
u64 start;
sys/dev/mlx4/mlx4_core/mlx4_profile.c
83
u64 total_size = 0;
sys/dev/mlx4/mlx4_core/mlx4_qp.c
165
u64 mtt_addr = mlx4_mtt_addr(dev, mtt);
sys/dev/mlx4/mlx4_core/mlx4_qp.c
251
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_qp.c
252
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_qp.c
287
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_qp.c
351
u64 param = 0;
sys/dev/mlx4/mlx4_core/mlx4_qp.c
376
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_qp.c
428
u64 pri_addr_path_mask = 0;
sys/dev/mlx4/mlx4_core/mlx4_qp.c
429
u64 qp_mask = 0;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1119
static struct res_common *alloc_fs_rule_tr(u64 id, int qpn)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1133
static struct res_common *alloc_tr(u64 id, enum mlx4_resource type, int slave,
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1225
static int add_res_range(struct mlx4_dev *dev, int slave, u64 base, int count,
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1412
static int rem_res_range(struct mlx4_dev *dev, int slave, u64 base, int count,
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1415
u64 i;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1734
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1801
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1834
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1883
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1918
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1953
u8 smac_index, u64 *mac)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
1970
static int mac_add_to_slave(struct mlx4_dev *dev, int slave, u64 mac, int port, u8 smac_index)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2002
static void mac_del_from_slave(struct mlx4_dev *dev, int slave, u64 mac,
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2043
u64 in_param, u64 *out_param, int in_port)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2047
u64 mac;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2152
u64 in_param, u64 *out_param, int in_port)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2190
u64 in_param, u64 *out_param, int port)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2220
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
230
u64 mirr_rule_id;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2307
u64 in_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
233
static void *res_tracker_lookup(struct rb_root *root, u64 res_id)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2347
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2367
u64 in_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2409
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2434
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2459
u64 in_param, u64 *out_param, int in_port)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2485
u64 in_param, u64 *out_param, int port)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2514
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
2537
u64 in_param, u64 *out_param)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3214
u64 *pg_list = (u64 *)page_list;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3236
((u64 *)page_list + 2));
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3748
u64 mac;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
3975
enum mlx4_steer_type steer, u64 reg_id)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4003
enum mlx4_steer_type steer, u64 *reg_id)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4025
enum mlx4_steer_type type, u64 *reg_id)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4052
enum mlx4_steer_type type, u64 reg_id)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4095
u64 reg_id = 0;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4253
u64 mac;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4255
u64 pri_addr_path_mask;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4473
u64 mirr_reg_id;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4633
u64 in_param;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4706
u64 in_param;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4772
u64 in_param;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4835
u64 in_param;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
4950
u64 reg_id;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
5040
u64 base;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
5248
u64 qp_path_mask_vlan_ctrl =
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
5256
u64 qp_path_mask = ((1ULL << MLX4_UPD_QP_PATH_MASK_VLAN_INDEX) |
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
56
u64 mac;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
73
u64 res_id;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
839
static void *find_res(struct mlx4_dev *dev, u64 res_id,
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
848
static int get_res(struct mlx4_dev *dev, int slave, u64 res_id,
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
885
u64 res_id, int *slave)
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
90
u64 reg_id;
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
906
static void put_res(struct mlx4_dev *dev, int slave, u64 res_id,
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
919
u64 in_param, u64 *out_param, int port);
sys/dev/mlx4/mlx4_core/mlx4_resource_tracker.c
953
u64 counter_idx = MLX4_SINK_COUNTER_INDEX(dev);
sys/dev/mlx4/mlx4_core/mlx4_sense.c
44
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_srq.c
122
u64 out_param;
sys/dev/mlx4/mlx4_core/mlx4_srq.c
149
u64 in_param = 0;
sys/dev/mlx4/mlx4_core/mlx4_srq.c
163
struct mlx4_mtt *mtt, u64 db_rec, struct mlx4_srq *srq)
sys/dev/mlx4/mlx4_core/mlx4_srq.c
168
u64 mtt_addr;
sys/dev/mlx4/mlx4_en/en.h
299
u64 bytes;
sys/dev/mlx4/mlx4_en/en.h
300
u64 packets;
sys/dev/mlx4/mlx4_en/en.h
301
u64 tx_csum;
sys/dev/mlx4/mlx4_en/en.h
302
u64 queue_stopped;
sys/dev/mlx4/mlx4_en/en.h
303
u64 oversized_packets;
sys/dev/mlx4/mlx4_en/en.h
304
u64 wake_queue;
sys/dev/mlx4/mlx4_en/en.h
305
u64 tso_packets;
sys/dev/mlx4/mlx4_en/en.h
306
u64 defrag_attempts;
sys/dev/mlx4/mlx4_en/en.h
312
u64 watchdog_time;
sys/dev/mlx4/mlx4_en/en.h
351
u64 errors;
sys/dev/mlx4/mlx4_en/en.h
352
u64 bytes;
sys/dev/mlx4/mlx4_en/en.h
353
u64 packets;
sys/dev/mlx4/mlx4_en/en.h
355
u64 yields;
sys/dev/mlx4/mlx4_en/en.h
356
u64 misses;
sys/dev/mlx4/mlx4_en/en.h
357
u64 cleaned;
sys/dev/mlx4/mlx4_en/en.h
359
u64 csum_ok;
sys/dev/mlx4/mlx4_en/en.h
360
u64 csum_none;
sys/dev/mlx4/mlx4_en/en.h
503
u64 reg_id;
sys/dev/mlx4/mlx4_en/en.h
504
u64 tunnel_reg_id;
sys/dev/mlx4/mlx4_en/en.h
581
u64 mac;
sys/dev/mlx4/mlx4_en/en.h
618
u64 broadcast_id;
sys/dev/mlx4/mlx4_en/en.h
646
u64 tunnel_reg_id;
sys/dev/mlx4/mlx4_en/en.h
649
u64 if_counters_rx_errors;
sys/dev/mlx4/mlx4_en/en.h
650
u64 if_counters_rx_no_buffer;
sys/dev/mlx4/mlx4_en/en.h
661
u64 reg_id;
sys/dev/mlx4/mlx4_en/en.h
880
void mlx4_en_ex_selftest(if_t dev, u32 *flags, u64 *buf);
sys/dev/mlx4/mlx4_en/en.h
889
u64 mlx4_en_get_cqe_ts(struct mlx4_cqe *cqe);
sys/dev/mlx4/mlx4_en/en.h
894
u64 *data);
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
108
u64 reg_id; /* Flow steering API id */
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
457
int qpn, u64 *reg_id)
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
476
unsigned char *mac, int *qpn, u64 *reg_id)
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
528
unsigned char *mac, int qpn, u64 reg_id)
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
561
u64 mac = mlx4_mac_to_u64(if_getlladdr(priv->dev));
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
597
u64 mac = mlx4_mac_to_u64(if_getlladdr(priv->dev));
sys/dev/mlx4/mlx4_en/mlx4_en_netdev.c
851
u64 mcast_addr = 0;
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
137
static u64 en_stats_adder(__be64 *start, __be64 *next, int num)
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
140
u64 ret = 0;
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
156
u64 packets, bytes;
sys/dev/mlx4/mlx4_en/mlx4_en_port.c
194
u64 in_mod = reset << 8 | port;
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
158
u64 id;
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
159
u64 mirror;
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
169
u64 *wrid;
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
278
u64 smac;
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
281
u64 candidate_smac;
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
327
u64 reg_id;
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
339
u64 *wrid;
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
382
u64 time_to_run;
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
721
struct ib_mr *mlx4_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
722
u64 virt_addr, int access_flags,
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
785
int mlx4_ib_map_phys_fmr(struct ib_fmr *ibfmr, u64 *page_list, int npages,
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
786
u64 iova);
sys/dev/mlx4/mlx4_ib/mlx4_ib.h
881
u64 start, u64 length, u64 virt_addr,
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
193
u64 guid_indexes;
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
458
u64 cur_admin_val;
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
467
*(u64 *)&dev->sriov.alias_guid.ports_guid[port - 1].
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
697
u64 low_record_time = 0;
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
714
u64 curr_time = ktime_get_ns();
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
80
u64 guid_indexes;
sys/dev/mlx4/mlx4_ib/mlx4_ib_cq.c
141
struct ib_umem **umem, u64 buf_addr, int cqe)
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1292
recv_wr.wr_id = (u64) index | MLX4_TUN_WRID_RECV |
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
1408
wr.wr.wr_id = ((u64) wire_tx_ix) | MLX4_TUN_SET_WRID_QPN(src_qpnum);
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
53
#define MLX4_TUN_WRID_RECV (((u64) 1) << MLX4_TUN_SEND_WRID_SHIFT)
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
54
#define MLX4_TUN_SET_WRID_QPN(a) (((u64) ((a) & 0x3)) << MLX4_TUN_QPN_SHIFT)
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
620
wr.wr.wr_id = ((u64) tun_tx_ix) | MLX4_TUN_SET_WRID_QPN(dest_qpt);
sys/dev/mlx4/mlx4_ib/mlx4_ib_mad.c
96
#define NODE_GUID_HI ((u64) (((u64)IB_OPENIB_OUI) << 40))
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1472
u64 *reg_id)
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1552
static int __mlx4_ib_destroy_flow(struct mlx4_dev *dev, u64 reg_id)
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
1565
u64 *reg_id)
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
2193
#define MLX4_IB_INVALID_MAC ((u64)-1)
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
2198
u64 new_smac = 0;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
2199
u64 release_mac = MLX4_IB_INVALID_MAC;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
2214
u64 old_smac;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
3043
u64 sl2vl;
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
848
static int mlx4_ib_query_sl2vl(struct ib_device *ibdev, u8 port, u64 *sl2vl_tbl)
sys/dev/mlx4/mlx4_ib/mlx4_ib_main.c
891
u64 sl2vl;
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
103
pages = (u64 *) __get_free_page(GFP_KERNEL);
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
118
if (i == PAGE_SIZE / sizeof (u64)) {
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
137
struct ib_mr *mlx4_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
138
u64 virt_addr, int access_flags,
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
193
u64 start, u64 length, u64 virt_addr,
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
290
mr->page_map_size = roundup(max_pages * sizeof(u64),
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
464
int mlx4_ib_map_phys_fmr(struct ib_fmr *ibfmr, u64 *page_list,
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
465
int npages, u64 iova)
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
523
static int mlx4_set_page(struct ib_mr *ibmr, u64 addr)
sys/dev/mlx4/mlx4_ib/mlx4_ib_mr.c
96
u64 *pages;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1395
u64 smac, u16 vlan_tag, struct mlx4_qp_path *path,
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
1552
u64 u64_mac;
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
2740
u64 remote_addr, u32 rkey)
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
822
qp->sq.wrid = kmalloc_array(qp->sq.wqe_cnt, sizeof(u64),
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
825
qp->sq.wrid = __vmalloc(qp->sq.wqe_cnt * sizeof(u64),
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
827
qp->rq.wrid = kmalloc_array(qp->rq.wqe_cnt, sizeof(u64),
sys/dev/mlx4/mlx4_ib/mlx4_ib_qp.c
830
qp->rq.wrid = __vmalloc(qp->rq.wqe_cnt * sizeof(u64),
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
168
srq->wrid = kmalloc_array(srq->msrq.max, sizeof(u64),
sys/dev/mlx4/mlx4_ib/mlx4_ib_srq.c
171
srq->wrid = __vmalloc(srq->msrq.max * sizeof(u64),
sys/dev/mlx4/qp.h
243
u64 reserved1;
sys/dev/mlx4/qp.h
245
u64 reserved2[58];
sys/dev/mlx4/qp.h
416
u64 reserved1;
sys/dev/mlx4/qp.h
419
u64 reserved3[2];
sys/dev/mlx4/stats.h
100
u64 rx_alloc_failed;
sys/dev/mlx4/stats.h
101
u64 rx_chksum_good;
sys/dev/mlx4/stats.h
102
u64 rx_chksum_none;
sys/dev/mlx4/stats.h
103
u64 tx_chksum_offload;
sys/dev/mlx4/stats.h
104
u64 defrag_attempts;
sys/dev/mlx4/stats.h
109
u64 tx_pktsz_avg;
sys/dev/mlx4/stats.h
119
u64 rx_pause;
sys/dev/mlx4/stats.h
120
u64 rx_pause_duration;
sys/dev/mlx4/stats.h
121
u64 rx_pause_transition;
sys/dev/mlx4/stats.h
125
u64 tx_pause;
sys/dev/mlx4/stats.h
126
u64 tx_pause_duration;
sys/dev/mlx4/stats.h
127
u64 tx_pause_transition;
sys/dev/mlx4/stats.h
40
u64 rx_packets;
sys/dev/mlx4/stats.h
41
u64 rx_bytes;
sys/dev/mlx4/stats.h
42
u64 rx_multicast_packets;
sys/dev/mlx4/stats.h
43
u64 rx_broadcast_packets;
sys/dev/mlx4/stats.h
44
u64 rx_errors;
sys/dev/mlx4/stats.h
45
u64 rx_dropped;
sys/dev/mlx4/stats.h
46
u64 rx_length_errors;
sys/dev/mlx4/stats.h
47
u64 rx_over_errors;
sys/dev/mlx4/stats.h
48
u64 rx_crc_errors;
sys/dev/mlx4/stats.h
49
u64 rx_jabbers;
sys/dev/mlx4/stats.h
50
u64 rx_in_range_length_error;
sys/dev/mlx4/stats.h
51
u64 rx_out_range_length_error;
sys/dev/mlx4/stats.h
52
u64 rx_lt_64_bytes_packets;
sys/dev/mlx4/stats.h
53
u64 rx_127_bytes_packets;
sys/dev/mlx4/stats.h
54
u64 rx_255_bytes_packets;
sys/dev/mlx4/stats.h
55
u64 rx_511_bytes_packets;
sys/dev/mlx4/stats.h
56
u64 rx_1023_bytes_packets;
sys/dev/mlx4/stats.h
57
u64 rx_1518_bytes_packets;
sys/dev/mlx4/stats.h
58
u64 rx_1522_bytes_packets;
sys/dev/mlx4/stats.h
59
u64 rx_1548_bytes_packets;
sys/dev/mlx4/stats.h
60
u64 rx_gt_1548_bytes_packets;
sys/dev/mlx4/stats.h
61
u64 tx_packets;
sys/dev/mlx4/stats.h
62
u64 tx_bytes;
sys/dev/mlx4/stats.h
63
u64 tx_multicast_packets;
sys/dev/mlx4/stats.h
64
u64 tx_broadcast_packets;
sys/dev/mlx4/stats.h
65
u64 tx_errors;
sys/dev/mlx4/stats.h
66
u64 tx_dropped;
sys/dev/mlx4/stats.h
67
u64 tx_lt_64_bytes_packets;
sys/dev/mlx4/stats.h
68
u64 tx_127_bytes_packets;
sys/dev/mlx4/stats.h
69
u64 tx_255_bytes_packets;
sys/dev/mlx4/stats.h
70
u64 tx_511_bytes_packets;
sys/dev/mlx4/stats.h
71
u64 tx_1023_bytes_packets;
sys/dev/mlx4/stats.h
72
u64 tx_1518_bytes_packets;
sys/dev/mlx4/stats.h
73
u64 tx_1522_bytes_packets;
sys/dev/mlx4/stats.h
74
u64 tx_1548_bytes_packets;
sys/dev/mlx4/stats.h
75
u64 tx_gt_1548_bytes_packets;
sys/dev/mlx4/stats.h
76
u64 rx_prio[NUM_PRIORITIES][NUM_PRIORITY_STATS];
sys/dev/mlx4/stats.h
77
u64 tx_prio[NUM_PRIORITIES][NUM_PRIORITY_STATS];
sys/dev/mlx4/stats.h
81
u64 rx_frames;
sys/dev/mlx4/stats.h
82
u64 rx_bytes;
sys/dev/mlx4/stats.h
83
u64 tx_frames;
sys/dev/mlx4/stats.h
84
u64 tx_bytes;
sys/dev/mlx4/stats.h
88
u64 rx_frames;
sys/dev/mlx4/stats.h
89
u64 rx_bytes;
sys/dev/mlx4/stats.h
90
u64 tx_frames;
sys/dev/mlx4/stats.h
91
u64 tx_bytes;
sys/dev/mlx4/stats.h
95
u64 tso_packets;
sys/dev/mlx4/stats.h
96
u64 queue_stopped;
sys/dev/mlx4/stats.h
97
u64 wake_queue;
sys/dev/mlx4/stats.h
98
u64 tx_timeout;
sys/dev/mlx4/stats.h
99
u64 oversized_packets;
sys/dev/mlx5/cmd.h
32
u64 ptr;
sys/dev/mlx5/device.h
144
case sizeof(u64): \
sys/dev/mlx5/device.h
243
MLX5_EN_RD = (u64)1,
sys/dev/mlx5/device.h
244
MLX5_EN_WR = (u64)2
sys/dev/mlx5/diagnostics.h
120
u64 array[MLX5_CORE_GENERAL_DIAGNOSTICS_NUM];
sys/dev/mlx5/diagnostics.h
122
u64 MLX5_CORE_GENERAL_DIAGNOSTICS(
sys/dev/mlx5/diagnostics.h
57
u64 array[MLX5_CORE_PCI_DIAGNOSTICS_NUM];
sys/dev/mlx5/diagnostics.h
59
u64 MLX5_CORE_PCI_DIAGNOSTICS(
sys/dev/mlx5/doorbell.h
45
__raw_writeq(*(u64 *)val, dest);
sys/dev/mlx5/driver.h
1073
u64 mlx5_fwp_get_dma(struct mlx5_fw_page *fwp, size_t offset);
sys/dev/mlx5/driver.h
1093
void mlx5_cmd_comp_handler(struct mlx5_core_dev *dev, u64 vector, enum mlx5_cmd_mode mode);
sys/dev/mlx5/driver.h
1096
int nent, u64 mask);
sys/dev/mlx5/driver.h
1104
u64 addr);
sys/dev/mlx5/driver.h
1194
MLX5_PROF_MASK_QP_SIZE = (u64)1 << 0,
sys/dev/mlx5/driver.h
1195
MLX5_PROF_MASK_MR_CACHE = (u64)1 << 1,
sys/dev/mlx5/driver.h
1222
u64 mask;
sys/dev/mlx5/driver.h
1235
MLX5_TRIGGERED_CMD_COMP = (u64)1 << 32,
sys/dev/mlx5/driver.h
269
u64 packets;
sys/dev/mlx5/driver.h
270
u64 octets;
sys/dev/mlx5/driver.h
309
u64 sum;
sys/dev/mlx5/driver.h
310
u64 n;
sys/dev/mlx5/driver.h
368
u64 *page_list;
sys/dev/mlx5/driver.h
391
u64 mask;
sys/dev/mlx5/driver.h
425
u64 iova;
sys/dev/mlx5/driver.h
426
u64 size;
sys/dev/mlx5/driver.h
583
u64 status_counters[MLX5_MODULE_STATUS_NUM];
sys/dev/mlx5/driver.h
584
u64 error_counters[MLX5_MODULE_EVENT_ERROR_NUM];
sys/dev/mlx5/driver.h
791
u64 packets;
sys/dev/mlx5/driver.h
792
u64 octets;
sys/dev/mlx5/driver.h
888
u64 ts1;
sys/dev/mlx5/driver.h
889
u64 ts2;
sys/dev/mlx5/driver.h
897
u64 pa;
sys/dev/mlx5/fs.h
418
u64 mlx5_fc_query_lastuse(struct mlx5_fc *counter);
sys/dev/mlx5/fs.h
420
u64 *bytes, u64 *packets, u64 *lastuse);
sys/dev/mlx5/fs.h
422
u64 *packets, u64 *bytes);
sys/dev/mlx5/mlx5_accel/ipsec.h
49
u64 seq_iv;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec.c
508
void *priv, u64 *bytes, u64 *packets)
sys/dev/mlx5/mlx5_accel/mlx5_ipsec.c
522
u64 packets_in, packets_out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec.c
523
u64 bytes_in, bytes_out;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec.c
65
u64 *packets, u64 *bytes)
sys/dev/mlx5/mlx5_accel/mlx5_ipsec.c
87
u64 bytes, bytes1, packets1, packets;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
295
u64 modify_field_select = 0;
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_offload.c
296
u64 general_obj_types;
sys/dev/mlx5/mlx5_core/fs_cmd.h
111
u64 *packets, u64 *bytes);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1133
u64 dma = mlx5_fwp_get_dma(msg, (i + 1) * MLX5_CMD_MBOX_SIZE);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1204
void mlx5_cmd_comp_handler(struct mlx5_core_dev *dev, u64 vector_flags,
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1614
cmd_h = (u32)((u64)(cmd->dma) >> 32);
sys/dev/mlx5/mlx5_core/mlx5_crypto.c
41
u64 general_obj_types;
sys/dev/mlx5/mlx5_core/mlx5_diag_cnt.c
155
u64 temp;
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
198
u64 counter_value = MLX5_GET64(
sys/dev/mlx5/mlx5_core/mlx5_diagnostics.c
69
u64 *array, int size, u16 counter_id, u64 value)
sys/dev/mlx5/mlx5_core/mlx5_eq.c
432
int nent, u64 mask)
sys/dev/mlx5/mlx5_core/mlx5_eq.c
554
u64 async_event_mask = MLX5_ASYNC_EVENT_MASK;
sys/dev/mlx5/mlx5_core/mlx5_eq.c
73
u64 mask;
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
1163
static void node_guid_gen_from_mac(u64 *node_guid, u8 mac[ETH_ALEN])
sys/dev/mlx5/mlx5_core/mlx5_eswitch.c
1179
u64 node_guid;
sys/dev/mlx5/mlx5_core/mlx5_fs_cmd.c
722
u64 *packets, u64 *bytes)
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1797
static u64 matched_fgs_get_version(struct list_head *match_head)
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1800
u64 version = 0;
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1803
version += (u64)atomic_read(&iter->g->node.version);
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
1857
u64 version = 0;
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
159
u64 packets = MLX5_GET64(traffic_counter, stats, packets);
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
160
u64 bytes = MLX5_GET64(traffic_counter, stats, octets);
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
45
u64 packets;
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
46
u64 bytes;
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
47
u64 lastuse;
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
477
u64 *packets, u64 *bytes)
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
483
u64 mlx5_fc_query_lastuse(struct mlx5_fc *counter)
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
489
u64 *bytes, u64 *packets, u64 *lastuse)
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
58
u64 lastpackets;
sys/dev/mlx5/mlx5_core/mlx5_fs_counters.c
59
u64 lastbytes;
sys/dev/mlx5/mlx5_core/mlx5_fw.c
354
u64 addr)
sys/dev/mlx5/mlx5_core/mlx5_health.c
146
u64 vector;
sys/dev/mlx5/mlx5_core/mlx5_main.c
1384
m(+1, u64, power_budget_exceeded, "power_budget", "Module Power Budget Exceeded") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1385
m(+1, u64, long_range, "long_range", "Module Long Range for non MLNX cable/module") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1386
m(+1, u64, bus_stuck, "bus_stuck", "Module Bus stuck(I2C or data shorted)") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1387
m(+1, u64, no_eeprom, "no_eeprom", "No EEPROM/retry timeout") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1388
m(+1, u64, enforce_part_number, "enforce_part_number", "Module Enforce part number list") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1389
m(+1, u64, unknown_id, "unknown_id", "Module Unknown identifier") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1390
m(+1, u64, high_temp, "high_temp", "Module High Temperature") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1391
m(+1, u64, cable_shorted, "cable_shorted", "Module Cable is shorted") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1392
m(+1, u64, pmd_type_not_enabled, "pmd_type_not_enabled", "PMD type is not enabled") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1393
m(+1, u64, laster_tec_failure, "laster_tec_failure", "Laster TEC failure") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1394
m(+1, u64, high_current, "high_current", "High current") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1395
m(+1, u64, high_voltage, "high_voltage", "High voltage") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1396
m(+1, u64, pcie_sys_power_slot_exceeded, "pcie_sys_power_slot_exceeded", "PCIe system power slot Exceeded") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1397
m(+1, u64, high_power, "high_power", "High power") \
sys/dev/mlx5/mlx5_core/mlx5_main.c
1398
m(+1, u64, module_state_machine_fault, "module_state_machine_fault", "Module State Machine fault")
sys/dev/mlx5/mlx5_core/mlx5_main.c
384
#define CAP_MASK(pos, size) ((u64)((1 << (size)) - 1) << (pos))
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
188
u64
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
254
alloc_4k(struct mlx5_core_dev *dev, u64 *addr, u16 func_id)
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
282
free_4k(struct mlx5_core_dev *dev, u64 addr)
sys/dev/mlx5/mlx5_core/mlx5_pagealloc.c
324
u64 addr;
sys/dev/mlx5/mlx5_core/mlx5_srq.c
142
return rq_num_pas * sizeof(u64);
sys/dev/mlx5/mlx5_core/mlx5_uar.c
68
static u64 uar2pfn(struct mlx5_core_dev *mdev, u32 index)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1072
u64 *system_image_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1095
int mlx5_query_hca_vport_node_guid(struct mlx5_core_dev *mdev, u64 *node_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1119
u64 *port_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1747
u64 *sys_image_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1764
int mlx5_query_vport_node_guid(struct mlx5_core_dev *dev, u64 *node_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
1779
int mlx5_query_vport_port_guid(struct mlx5_core_dev *dev, u64 *port_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
337
u64 *system_image_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
359
int mlx5_query_nic_vport_node_guid(struct mlx5_core_dev *mdev, u64 *node_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
383
u64 *port_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
509
u32 vport, u64 node_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
548
u32 vport, u64 port_guid)
sys/dev/mlx5/mlx5_core/mlx5_vport.c
635
u64 *addr_list, size_t addr_list_len)
sys/dev/mlx5/mlx5_en/en.h
1275
const char **, unsigned, u64 *);
sys/dev/mlx5/mlx5_en/en.h
1312
void mlx5e_iq_load_memory_single(struct mlx5e_iq *, u16, void *, size_t, u64 *, u32);
sys/dev/mlx5/mlx5_en/en.h
170
m(+1, u64, rx_packets, "rx_packets", "Received packets") \
sys/dev/mlx5/mlx5_en/en.h
171
m(+1, u64, rx_bytes, "rx_bytes", "Received bytes") \
sys/dev/mlx5/mlx5_en/en.h
172
m(+1, u64, tx_packets, "tx_packets", "Transmitted packets") \
sys/dev/mlx5/mlx5_en/en.h
173
m(+1, u64, tx_bytes, "tx_bytes", "Transmitted bytes") \
sys/dev/mlx5/mlx5_en/en.h
174
m(+1, u64, rx_error_packets, "rx_error_packets", "Received error packets") \
sys/dev/mlx5/mlx5_en/en.h
175
m(+1, u64, rx_error_bytes, "rx_error_bytes", "Received error bytes") \
sys/dev/mlx5/mlx5_en/en.h
176
m(+1, u64, tx_error_packets, "tx_error_packets", "Transmitted error packets") \
sys/dev/mlx5/mlx5_en/en.h
177
m(+1, u64, tx_error_bytes, "tx_error_bytes", "Transmitted error bytes") \
sys/dev/mlx5/mlx5_en/en.h
178
m(+1, u64, rx_unicast_packets, "rx_unicast_packets", "Received unicast packets") \
sys/dev/mlx5/mlx5_en/en.h
179
m(+1, u64, rx_unicast_bytes, "rx_unicast_bytes", "Received unicast bytes") \
sys/dev/mlx5/mlx5_en/en.h
180
m(+1, u64, tx_unicast_packets, "tx_unicast_packets", "Transmitted unicast packets") \
sys/dev/mlx5/mlx5_en/en.h
181
m(+1, u64, tx_unicast_bytes, "tx_unicast_bytes", "Transmitted unicast bytes") \
sys/dev/mlx5/mlx5_en/en.h
182
m(+1, u64, rx_multicast_packets, "rx_multicast_packets", "Received multicast packets") \
sys/dev/mlx5/mlx5_en/en.h
183
m(+1, u64, rx_multicast_bytes, "rx_multicast_bytes", "Received multicast bytes") \
sys/dev/mlx5/mlx5_en/en.h
184
m(+1, u64, tx_multicast_packets, "tx_multicast_packets", "Transmitted multicast packets") \
sys/dev/mlx5/mlx5_en/en.h
185
m(+1, u64, tx_multicast_bytes, "tx_multicast_bytes", "Transmitted multicast bytes") \
sys/dev/mlx5/mlx5_en/en.h
186
m(+1, u64, rx_broadcast_packets, "rx_broadcast_packets", "Received broadcast packets") \
sys/dev/mlx5/mlx5_en/en.h
187
m(+1, u64, rx_broadcast_bytes, "rx_broadcast_bytes", "Received broadcast bytes") \
sys/dev/mlx5/mlx5_en/en.h
188
m(+1, u64, tx_broadcast_packets, "tx_broadcast_packets", "Transmitted broadcast packets") \
sys/dev/mlx5/mlx5_en/en.h
189
m(+1, u64, tx_broadcast_bytes, "tx_broadcast_bytes", "Transmitted broadcast bytes") \
sys/dev/mlx5/mlx5_en/en.h
190
m(+1, u64, rx_out_of_buffer, "rx_out_of_buffer", "Receive out of buffer, no recv wqes events") \
sys/dev/mlx5/mlx5_en/en.h
192
m(+1, u64, tso_packets, "tso_packets", "Transmitted TSO packets") \
sys/dev/mlx5/mlx5_en/en.h
193
m(+1, u64, tso_bytes, "tso_bytes", "Transmitted TSO bytes") \
sys/dev/mlx5/mlx5_en/en.h
194
m(+1, u64, lro_packets, "lro_packets", "Received LRO packets") \
sys/dev/mlx5/mlx5_en/en.h
195
m(+1, u64, lro_bytes, "lro_bytes", "Received LRO bytes") \
sys/dev/mlx5/mlx5_en/en.h
196
m(+1, u64, sw_lro_queued, "sw_lro_queued", "Packets queued for SW LRO") \
sys/dev/mlx5/mlx5_en/en.h
197
m(+1, u64, sw_lro_flushed, "sw_lro_flushed", "Packets flushed from SW LRO") \
sys/dev/mlx5/mlx5_en/en.h
198
m(+1, u64, rx_csum_good, "rx_csum_good", "Received checksum valid packets") \
sys/dev/mlx5/mlx5_en/en.h
199
m(+1, u64, rx_csum_none, "rx_csum_none", "Received no checksum packets") \
sys/dev/mlx5/mlx5_en/en.h
200
m(+1, u64, tx_csum_offload, "tx_csum_offload", "Transmit checksum offload packets") \
sys/dev/mlx5/mlx5_en/en.h
201
m(+1, u64, tx_queue_dropped, "tx_queue_dropped", "Transmit queue dropped") \
sys/dev/mlx5/mlx5_en/en.h
202
m(+1, u64, tx_defragged, "tx_defragged", "Transmit queue defragged") \
sys/dev/mlx5/mlx5_en/en.h
203
m(+1, u64, rx_wqe_err, "rx_wqe_err", "Receive WQE errors") \
sys/dev/mlx5/mlx5_en/en.h
204
m(+1, u64, tx_jumbo_packets, "tx_jumbo_packets", "TX packets greater than 1518 octets") \
sys/dev/mlx5/mlx5_en/en.h
205
m(+1, u64, rx_steer_missed_packets, "rx_steer_missed_packets", "RX packets dropped by steering rule(s)") \
sys/dev/mlx5/mlx5_en/en.h
206
m(+1, u64, rx_decrypted_ok_packets, "rx_decrypted_ok_packets", "RX packets successfully decrypted by steering rule(s)") \
sys/dev/mlx5/mlx5_en/en.h
207
m(+1, u64, rx_decrypted_error_packets, "rx_decrypted_error_packets", "RX packets not decrypted by steering rule(s)")
sys/dev/mlx5/mlx5_en/en.h
213
u64 arg [0];
sys/dev/mlx5/mlx5_en/en.h
218
m(+1, u64, frames_tx, "frames_tx", "Frames transmitted") \
sys/dev/mlx5/mlx5_en/en.h
219
m(+1, u64, frames_rx, "frames_rx", "Frames received") \
sys/dev/mlx5/mlx5_en/en.h
220
m(+1, u64, check_seq_err, "check_seq_err", "Sequence errors") \
sys/dev/mlx5/mlx5_en/en.h
221
m(+1, u64, alignment_err, "alignment_err", "Alignment errors") \
sys/dev/mlx5/mlx5_en/en.h
222
m(+1, u64, octets_tx, "octets_tx", "Bytes transmitted") \
sys/dev/mlx5/mlx5_en/en.h
223
m(+1, u64, octets_received, "octets_received", "Bytes received") \
sys/dev/mlx5/mlx5_en/en.h
224
m(+1, u64, multicast_xmitted, "multicast_xmitted", "Multicast transmitted") \
sys/dev/mlx5/mlx5_en/en.h
225
m(+1, u64, broadcast_xmitted, "broadcast_xmitted", "Broadcast transmitted") \
sys/dev/mlx5/mlx5_en/en.h
226
m(+1, u64, multicast_rx, "multicast_rx", "Multicast received") \
sys/dev/mlx5/mlx5_en/en.h
227
m(+1, u64, broadcast_rx, "broadcast_rx", "Broadcast received") \
sys/dev/mlx5/mlx5_en/en.h
228
m(+1, u64, in_range_len_errors, "in_range_len_errors", "In range length errors") \
sys/dev/mlx5/mlx5_en/en.h
229
m(+1, u64, out_of_range_len, "out_of_range_len", "Out of range length errors") \
sys/dev/mlx5/mlx5_en/en.h
230
m(+1, u64, too_long_errors, "too_long_errors", "Too long errors") \
sys/dev/mlx5/mlx5_en/en.h
231
m(+1, u64, symbol_err, "symbol_err", "Symbol errors") \
sys/dev/mlx5/mlx5_en/en.h
232
m(+1, u64, mac_control_tx, "mac_control_tx", "MAC control transmitted") \
sys/dev/mlx5/mlx5_en/en.h
233
m(+1, u64, mac_control_rx, "mac_control_rx", "MAC control received") \
sys/dev/mlx5/mlx5_en/en.h
234
m(+1, u64, unsupported_op_rx, "unsupported_op_rx", "Unsupported operation received") \
sys/dev/mlx5/mlx5_en/en.h
235
m(+1, u64, pause_ctrl_rx, "pause_ctrl_rx", "Pause control received") \
sys/dev/mlx5/mlx5_en/en.h
236
m(+1, u64, pause_ctrl_tx, "pause_ctrl_tx", "Pause control transmitted")
sys/dev/mlx5/mlx5_en/en.h
239
m(+1, u64, drop_events, "drop_events", "Dropped events") \
sys/dev/mlx5/mlx5_en/en.h
240
m(+1, u64, octets, "octets", "Octets") \
sys/dev/mlx5/mlx5_en/en.h
241
m(+1, u64, pkts, "pkts", "Packets") \
sys/dev/mlx5/mlx5_en/en.h
242
m(+1, u64, broadcast_pkts, "broadcast_pkts", "Broadcast packets") \
sys/dev/mlx5/mlx5_en/en.h
243
m(+1, u64, multicast_pkts, "multicast_pkts", "Multicast packets") \
sys/dev/mlx5/mlx5_en/en.h
244
m(+1, u64, crc_align_errors, "crc_align_errors", "CRC alignment errors") \
sys/dev/mlx5/mlx5_en/en.h
245
m(+1, u64, undersize_pkts, "undersize_pkts", "Undersized packets") \
sys/dev/mlx5/mlx5_en/en.h
246
m(+1, u64, oversize_pkts, "oversize_pkts", "Oversized packets") \
sys/dev/mlx5/mlx5_en/en.h
247
m(+1, u64, fragments, "fragments", "Fragments") \
sys/dev/mlx5/mlx5_en/en.h
248
m(+1, u64, jabbers, "jabbers", "Jabbers") \
sys/dev/mlx5/mlx5_en/en.h
249
m(+1, u64, collisions, "collisions", "Collisions")
sys/dev/mlx5/mlx5_en/en.h
252
m(+1, u64, p64octets, "p64octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
253
m(+1, u64, p65to127octets, "p65to127octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
254
m(+1, u64, p128to255octets, "p128to255octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
255
m(+1, u64, p256to511octets, "p256to511octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
256
m(+1, u64, p512to1023octets, "p512to1023octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
257
m(+1, u64, p1024to1518octets, "p1024to1518octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
258
m(+1, u64, p1519to2047octets, "p1519to2047octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
259
m(+1, u64, p2048to4095octets, "p2048to4095octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
260
m(+1, u64, p4096to8191octets, "p4096to8191octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
261
m(+1, u64, p8192to10239octets, "p8192to10239octets", "Bytes")
sys/dev/mlx5/mlx5_en/en.h
264
m(+1, u64, in_octets, "in_octets", "In octets") \
sys/dev/mlx5/mlx5_en/en.h
265
m(+1, u64, in_ucast_pkts, "in_ucast_pkts", "In unicast packets") \
sys/dev/mlx5/mlx5_en/en.h
266
m(+1, u64, in_discards, "in_discards", "In discards") \
sys/dev/mlx5/mlx5_en/en.h
267
m(+1, u64, in_errors, "in_errors", "In errors") \
sys/dev/mlx5/mlx5_en/en.h
268
m(+1, u64, in_unknown_protos, "in_unknown_protos", "In unknown protocols") \
sys/dev/mlx5/mlx5_en/en.h
269
m(+1, u64, out_octets, "out_octets", "Out octets") \
sys/dev/mlx5/mlx5_en/en.h
270
m(+1, u64, out_ucast_pkts, "out_ucast_pkts", "Out unicast packets") \
sys/dev/mlx5/mlx5_en/en.h
271
m(+1, u64, out_discards, "out_discards", "Out discards") \
sys/dev/mlx5/mlx5_en/en.h
272
m(+1, u64, out_errors, "out_errors", "Out errors") \
sys/dev/mlx5/mlx5_en/en.h
273
m(+1, u64, in_multicast_pkts, "in_multicast_pkts", "In multicast packets") \
sys/dev/mlx5/mlx5_en/en.h
274
m(+1, u64, in_broadcast_pkts, "in_broadcast_pkts", "In broadcast packets") \
sys/dev/mlx5/mlx5_en/en.h
275
m(+1, u64, out_multicast_pkts, "out_multicast_pkts", "Out multicast packets") \
sys/dev/mlx5/mlx5_en/en.h
276
m(+1, u64, out_broadcast_pkts, "out_broadcast_pkts", "Out broadcast packets")
sys/dev/mlx5/mlx5_en/en.h
279
m(+1, u64, port_transmit_wait, "port_transmit_wait", "Port transmit wait") \
sys/dev/mlx5/mlx5_en/en.h
280
m(+1, u64, ecn_marked, "ecn_marked", "ECN marked") \
sys/dev/mlx5/mlx5_en/en.h
281
m(+1, u64, no_buffer_discard_mc, "no_buffer_discard_mc", "No buffer discard mc") \
sys/dev/mlx5/mlx5_en/en.h
282
m(+1, u64, rx_ebp, "rx_ebp", "RX EBP") \
sys/dev/mlx5/mlx5_en/en.h
283
m(+1, u64, tx_ebp, "tx_ebp", "TX EBP") \
sys/dev/mlx5/mlx5_en/en.h
284
m(+1, u64, rx_buffer_almost_full, "rx_buffer_almost_full", "RX buffer almost full") \
sys/dev/mlx5/mlx5_en/en.h
285
m(+1, u64, rx_buffer_full, "rx_buffer_full", "RX buffer full") \
sys/dev/mlx5/mlx5_en/en.h
286
m(+1, u64, rx_icrc_encapsulated, "rx_icrc_encapsulated", "RX ICRC encapsulated") \
sys/dev/mlx5/mlx5_en/en.h
287
m(+1, u64, ex_reserved_0, "ex_reserved_0", "Reserved") \
sys/dev/mlx5/mlx5_en/en.h
288
m(+1, u64, ex_reserved_1, "ex_reserved_1", "Reserved") \
sys/dev/mlx5/mlx5_en/en.h
289
m(+1, u64, tx_stat_p64octets, "tx_stat_p64octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
290
m(+1, u64, tx_stat_p65to127octets, "tx_stat_p65to127octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
291
m(+1, u64, tx_stat_p128to255octets, "tx_stat_p128to255octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
292
m(+1, u64, tx_stat_p256to511octets, "tx_stat_p256to511octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
293
m(+1, u64, tx_stat_p512to1023octets, "tx_stat_p512to1023octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
294
m(+1, u64, tx_stat_p1024to1518octets, "tx_stat_p1024to1518octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
295
m(+1, u64, tx_stat_p1519to2047octets, "tx_stat_p1519to2047octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
296
m(+1, u64, tx_stat_p2048to4095octets, "tx_stat_p2048to4095octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
297
m(+1, u64, tx_stat_p4096to8191octets, "tx_stat_p4096to8191octets", "Bytes") \
sys/dev/mlx5/mlx5_en/en.h
298
m(+1, u64, tx_stat_p8192to10239octets, "tx_stat_p8192to10239octets", "Bytes")
sys/dev/mlx5/mlx5_en/en.h
301
m(+1, u64, phy_time_since_last_clear, "phy_time_since_last_clear", \
sys/dev/mlx5/mlx5_en/en.h
303
m(+1, u64, phy_received_bits, "phy_received_bits", \
sys/dev/mlx5/mlx5_en/en.h
305
m(+1, u64, phy_symbol_errors, "phy_symbol_errors", \
sys/dev/mlx5/mlx5_en/en.h
307
m(+1, u64, phy_corrected_bits, "phy_corrected_bits", \
sys/dev/mlx5/mlx5_en/en.h
309
m(+1, u64, phy_corrected_bits_lane0, "phy_corrected_bits_lane0", \
sys/dev/mlx5/mlx5_en/en.h
311
m(+1, u64, phy_corrected_bits_lane1, "phy_corrected_bits_lane1", \
sys/dev/mlx5/mlx5_en/en.h
313
m(+1, u64, phy_corrected_bits_lane2, "phy_corrected_bits_lane2", \
sys/dev/mlx5/mlx5_en/en.h
315
m(+1, u64, phy_corrected_bits_lane3, "phy_corrected_bits_lane3", \
sys/dev/mlx5/mlx5_en/en.h
319
m(+1, u64, time_since_last_clear, "time_since_last_clear", \
sys/dev/mlx5/mlx5_en/en.h
321
m(+1, u64, symbol_errors, "symbol_errors", "Symbol errors") \
sys/dev/mlx5/mlx5_en/en.h
322
m(+1, u64, sync_headers_errors, "sync_headers_errors", \
sys/dev/mlx5/mlx5_en/en.h
324
m(+1, u64, bip_errors_lane0, "edpl_bip_errors_lane0", \
sys/dev/mlx5/mlx5_en/en.h
326
m(+1, u64, bip_errors_lane1, "edpl_bip_errors_lane1", \
sys/dev/mlx5/mlx5_en/en.h
328
m(+1, u64, bip_errors_lane2, "edpl_bip_errors_lane2", \
sys/dev/mlx5/mlx5_en/en.h
330
m(+1, u64, bip_errors_lane3, "edpl_bip_errors_lane3", \
sys/dev/mlx5/mlx5_en/en.h
332
m(+1, u64, fc_corrected_blocks_lane0, "fc_corrected_blocks_lane0", \
sys/dev/mlx5/mlx5_en/en.h
334
m(+1, u64, fc_corrected_blocks_lane1, "fc_corrected_blocks_lane1", \
sys/dev/mlx5/mlx5_en/en.h
336
m(+1, u64, fc_corrected_blocks_lane2, "fc_corrected_blocks_lane2", \
sys/dev/mlx5/mlx5_en/en.h
338
m(+1, u64, fc_corrected_blocks_lane3, "fc_corrected_blocks_lane3", \
sys/dev/mlx5/mlx5_en/en.h
340
m(+1, u64, rs_corrected_blocks, "rs_corrected_blocks", \
sys/dev/mlx5/mlx5_en/en.h
342
m(+1, u64, rs_uncorrectable_blocks, "rs_uncorrectable_blocks", \
sys/dev/mlx5/mlx5_en/en.h
344
m(+1, u64, rs_no_errors_blocks, "rs_no_errors_blocks", \
sys/dev/mlx5/mlx5_en/en.h
346
m(+1, u64, rs_single_error_blocks, "rs_single_error_blocks", \
sys/dev/mlx5/mlx5_en/en.h
349
m(+1, u64, rs_corrected_symbols_total, "rs_corrected_symbols_total", \
sys/dev/mlx5/mlx5_en/en.h
351
m(+1, u64, rs_corrected_symbols_lane0, "rs_corrected_symbols_lane0", \
sys/dev/mlx5/mlx5_en/en.h
353
m(+1, u64, rs_corrected_symbols_lane1, "rs_corrected_symbols_lane1", \
sys/dev/mlx5/mlx5_en/en.h
355
m(+1, u64, rs_corrected_symbols_lane2, "rs_corrected_symbols_lane2", \
sys/dev/mlx5/mlx5_en/en.h
357
m(+1, u64, rs_corrected_symbols_lane3, "rs_corrected_symbols_lane3", \
sys/dev/mlx5/mlx5_en/en.h
362
m(n, p, +1, u64, rx_octets, "rx_octets", "Received octets") \
sys/dev/mlx5/mlx5_en/en.h
363
m(n, p, +1, u64, rx_uc_frames, "rx_uc_frames", "Received unicast frames") \
sys/dev/mlx5/mlx5_en/en.h
364
m(n, p, +1, u64, rx_mc_frames, "rx_mc_frames", "Received multicast frames") \
sys/dev/mlx5/mlx5_en/en.h
365
m(n, p, +1, u64, rx_bc_frames, "rx_bc_frames", "Received broadcast frames") \
sys/dev/mlx5/mlx5_en/en.h
366
m(n, p, +1, u64, rx_frames, "rx_frames", "Received frames") \
sys/dev/mlx5/mlx5_en/en.h
367
m(n, p, +1, u64, tx_octets, "tx_octets", "Transmitted octets") \
sys/dev/mlx5/mlx5_en/en.h
368
m(n, p, +1, u64, tx_uc_frames, "tx_uc_frames", "Transmitted unicast frames") \
sys/dev/mlx5/mlx5_en/en.h
369
m(n, p, +1, u64, tx_mc_frames, "tx_mc_frames", "Transmitted multicast frames") \
sys/dev/mlx5/mlx5_en/en.h
370
m(n, p, +1, u64, tx_bc_frames, "tx_bc_frames", "Transmitted broadcast frames") \
sys/dev/mlx5/mlx5_en/en.h
371
m(n, p, +1, u64, tx_frames, "tx_frames", "Transmitted frames") \
sys/dev/mlx5/mlx5_en/en.h
372
m(n, p, +1, u64, rx_pause, "rx_pause", "Received pause frames") \
sys/dev/mlx5/mlx5_en/en.h
373
m(n, p, +1, u64, rx_pause_duration, "rx_pause_duration", \
sys/dev/mlx5/mlx5_en/en.h
375
m(n, p, +1, u64, tx_pause, "tx_pause", "Transmitted pause frames") \
sys/dev/mlx5/mlx5_en/en.h
376
m(n, p, +1, u64, tx_pause_duration, "tx_pause_duration", \
sys/dev/mlx5/mlx5_en/en.h
378
m(n, p, +1, u64, rx_pause_transition, "rx_pause_transition", \
sys/dev/mlx5/mlx5_en/en.h
380
m(n, p, +1, u64, rx_discards, "rx_discards", "Discarded received frames") \
sys/dev/mlx5/mlx5_en/en.h
381
m(n, p, +1, u64, device_stall_minor_watermark, \
sys/dev/mlx5/mlx5_en/en.h
383
m(n, p, +1, u64, device_stall_critical_watermark, \
sys/dev/mlx5/mlx5_en/en.h
402
m(+1, u64, life_time_counter_high, "life_time_counter", \
sys/dev/mlx5/mlx5_en/en.h
404
m(+1, u64, tx_overflow_buffer_pkt, "tx_overflow_buffer_pkt", \
sys/dev/mlx5/mlx5_en/en.h
408
m(+1, u64, tx_overflow_buffer_marked_pkt, \
sys/dev/mlx5/mlx5_en/en.h
415
m(+1, u64, rx_errors, "rx_errors", \
sys/dev/mlx5/mlx5_en/en.h
418
m(+1, u64, tx_errors, "tx_errors", "Number of transitions " \
sys/dev/mlx5/mlx5_en/en.h
420
m(+1, u64, l0_to_recovery_eieos, "l0_to_recovery_eieos", "Number of " \
sys/dev/mlx5/mlx5_en/en.h
422
m(+1, u64, l0_to_recovery_ts, "l0_to_recovery_ts", "Number of " \
sys/dev/mlx5/mlx5_en/en.h
424
m(+1, u64, l0_to_recovery_framing, "l0_to_recovery_framing", "Number "\
sys/dev/mlx5/mlx5_en/en.h
427
m(+1, u64, l0_to_recovery_retrain, "l0_to_recovery_retrain", \
sys/dev/mlx5/mlx5_en/en.h
430
m(+1, u64, crc_error_dllp, "crc_error_dllp", "Number of transitions " \
sys/dev/mlx5/mlx5_en/en.h
433
m(+1, u64, crc_error_tlp, "crc_error_tlp", "Number of transitions to "\
sys/dev/mlx5/mlx5_en/en.h
435
m(+1, u64, outbound_stalled_reads, "outbound_stalled_reads", \
sys/dev/mlx5/mlx5_en/en.h
440
m(+1, u64, outbound_stalled_writes, "outbound_stalled_writes", \
sys/dev/mlx5/mlx5_en/en.h
445
m(+1, u64, outbound_stalled_reads_events, \
sys/dev/mlx5/mlx5_en/en.h
449
m(+1, u64, outbound_stalled_writes_events, \
sys/dev/mlx5/mlx5_en/en.h
455
m(+1, u64, time_to_boot_image_start, "time_to_boot_image_start", \
sys/dev/mlx5/mlx5_en/en.h
458
m(+1, u64, time_to_link_image, "time_to_link_image", \
sys/dev/mlx5/mlx5_en/en.h
461
m(+1, u64, calibration_time, "calibration_time", \
sys/dev/mlx5/mlx5_en/en.h
464
m(+1, u64, time_to_first_perst, "time_to_first_perst", \
sys/dev/mlx5/mlx5_en/en.h
467
m(+1, u64, time_to_detect_state, "time_to_detect_state", \
sys/dev/mlx5/mlx5_en/en.h
470
m(+1, u64, time_to_l0, "time_to_l0", \
sys/dev/mlx5/mlx5_en/en.h
473
m(+1, u64, time_to_crs_en, "time_to_crs_en", \
sys/dev/mlx5/mlx5_en/en.h
476
m(+1, u64, time_to_plastic_image_start, "time_to_plastic_image_start",\
sys/dev/mlx5/mlx5_en/en.h
479
m(+1, u64, time_to_iron_image_start, "time_to_iron_image_start", \
sys/dev/mlx5/mlx5_en/en.h
482
m(+1, u64, perst_handler, "perst_handler", \
sys/dev/mlx5/mlx5_en/en.h
484
m(+1, u64, times_in_l1, "times_in_l1", \
sys/dev/mlx5/mlx5_en/en.h
486
m(+1, u64, times_in_l23, "times_in_l23", \
sys/dev/mlx5/mlx5_en/en.h
488
m(+1, u64, dl_down, "dl_down", \
sys/dev/mlx5/mlx5_en/en.h
490
m(+1, u64, config_cycle1usec, "config_cycle1usec", \
sys/dev/mlx5/mlx5_en/en.h
493
m(+1, u64, config_cycle2to7usec, "config_cycle2to7usec", \
sys/dev/mlx5/mlx5_en/en.h
496
m(+1, u64, config_cycle8to15usec, "config_cycle8to15usec", \
sys/dev/mlx5/mlx5_en/en.h
499
m(+1, u64, config_cycle16to63usec, "config_cycle16to63usec", \
sys/dev/mlx5/mlx5_en/en.h
502
m(+1, u64, config_cycle64usec, "config_cycle64usec", \
sys/dev/mlx5/mlx5_en/en.h
505
m(+1, u64, correctable_err_msg_sent, "correctable_err_msg_sent", \
sys/dev/mlx5/mlx5_en/en.h
507
m(+1, u64, non_fatal_err_msg_sent, "non_fatal_err_msg_sent", \
sys/dev/mlx5/mlx5_en/en.h
509
m(+1, u64, fatal_err_msg_sent, "fatal_err_msg_sent", \
sys/dev/mlx5/mlx5_en/en.h
513
m(+1, u64, error_counter_lane0, "error_counter_lane0", \
sys/dev/mlx5/mlx5_en/en.h
515
m(+1, u64, error_counter_lane1, "error_counter_lane1", \
sys/dev/mlx5/mlx5_en/en.h
517
m(+1, u64, error_counter_lane2, "error_counter_lane2", \
sys/dev/mlx5/mlx5_en/en.h
519
m(+1, u64, error_counter_lane3, "error_counter_lane3", \
sys/dev/mlx5/mlx5_en/en.h
521
m(+1, u64, error_counter_lane4, "error_counter_lane4", \
sys/dev/mlx5/mlx5_en/en.h
523
m(+1, u64, error_counter_lane5, "error_counter_lane5", \
sys/dev/mlx5/mlx5_en/en.h
525
m(+1, u64, error_counter_lane6, "error_counter_lane6", \
sys/dev/mlx5/mlx5_en/en.h
527
m(+1, u64, error_counter_lane7, "error_counter_lane7", \
sys/dev/mlx5/mlx5_en/en.h
529
m(+1, u64, error_counter_lane8, "error_counter_lane8", \
sys/dev/mlx5/mlx5_en/en.h
531
m(+1, u64, error_counter_lane9, "error_counter_lane9", \
sys/dev/mlx5/mlx5_en/en.h
533
m(+1, u64, error_counter_lane10, "error_counter_lane10", \
sys/dev/mlx5/mlx5_en/en.h
535
m(+1, u64, error_counter_lane11, "error_counter_lane11", \
sys/dev/mlx5/mlx5_en/en.h
537
m(+1, u64, error_counter_lane12, "error_counter_lane12", \
sys/dev/mlx5/mlx5_en/en.h
539
m(+1, u64, error_counter_lane13, "error_counter_lane13", \
sys/dev/mlx5/mlx5_en/en.h
541
m(+1, u64, error_counter_lane14, "error_counter_lane14", \
sys/dev/mlx5/mlx5_en/en.h
543
m(+1, u64, error_counter_lane15, "error_counter_lane15", \
sys/dev/mlx5/mlx5_en/en.h
590
u64 arg [0];
sys/dev/mlx5/mlx5_en/en.h
596
u64 arg [0];
sys/dev/mlx5/mlx5_en/en.h
601
m(+1, u64, packets, "packets", "Received packets") \
sys/dev/mlx5/mlx5_en/en.h
602
m(+1, u64, bytes, "bytes", "Received bytes") \
sys/dev/mlx5/mlx5_en/en.h
603
m(+1, u64, csum_none, "csum_none", "Received packets") \
sys/dev/mlx5/mlx5_en/en.h
604
m(+1, u64, lro_packets, "lro_packets", "Received LRO packets") \
sys/dev/mlx5/mlx5_en/en.h
605
m(+1, u64, lro_bytes, "lro_bytes", "Received LRO bytes") \
sys/dev/mlx5/mlx5_en/en.h
606
m(+1, u64, sw_lro_queued, "sw_lro_queued", "Packets queued for SW LRO") \
sys/dev/mlx5/mlx5_en/en.h
607
m(+1, u64, sw_lro_flushed, "sw_lro_flushed", "Packets flushed from SW LRO") \
sys/dev/mlx5/mlx5_en/en.h
608
m(+1, u64, wqe_err, "wqe_err", "Received packets") \
sys/dev/mlx5/mlx5_en/en.h
609
m(+1, u64, decrypted_ok_packets, "decrypted_ok_packets", "Received packets successfully decrypted by steering rule(s)") \
sys/dev/mlx5/mlx5_en/en.h
610
m(+1, u64, decrypted_error_packets, "decrypted_error_packets", "Received packets not decrypted by steering rule(s)")
sys/dev/mlx5/mlx5_en/en.h
616
u64 arg [0];
sys/dev/mlx5/mlx5_en/en.h
621
m(+1, u64, packets, "packets", "Transmitted packets") \
sys/dev/mlx5/mlx5_en/en.h
622
m(+1, u64, bytes, "bytes", "Transmitted bytes") \
sys/dev/mlx5/mlx5_en/en.h
623
m(+1, u64, tso_packets, "tso_packets", "Transmitted packets") \
sys/dev/mlx5/mlx5_en/en.h
624
m(+1, u64, tso_bytes, "tso_bytes", "Transmitted bytes") \
sys/dev/mlx5/mlx5_en/en.h
625
m(+1, u64, csum_offload_none, "csum_offload_none", "Transmitted packets") \
sys/dev/mlx5/mlx5_en/en.h
626
m(+1, u64, defragged, "defragged", "Transmitted packets") \
sys/dev/mlx5/mlx5_en/en.h
627
m(+1, u64, dropped, "dropped", "Transmitted packets") \
sys/dev/mlx5/mlx5_en/en.h
628
m(+1, u64, enobuf, "enobuf", "Transmitted packets") \
sys/dev/mlx5/mlx5_en/en.h
629
m(+1, u64, cqe_err, "cqe_err", "Transmit CQE errors") \
sys/dev/mlx5/mlx5_en/en.h
630
m(+1, u64, nop, "nop", "Transmitted packets")
sys/dev/mlx5/mlx5_en/en.h
636
u64 arg [0];
sys/dev/mlx5/mlx5_en/en.h
687
m(+1, u64, tx_queue_size_max, "tx_queue_size_max", "Max send queue size") \
sys/dev/mlx5/mlx5_en/en.h
688
m(+1, u64, rx_queue_size_max, "rx_queue_size_max", "Max receive queue size") \
sys/dev/mlx5/mlx5_en/en.h
689
m(+1, u64, tx_queue_size, "tx_queue_size", "Default send queue size") \
sys/dev/mlx5/mlx5_en/en.h
690
m(+1, u64, rx_queue_size, "rx_queue_size", "Default receive queue size") \
sys/dev/mlx5/mlx5_en/en.h
691
m(+1, u64, channels, "channels", "Default number of channels") \
sys/dev/mlx5/mlx5_en/en.h
692
m(+1, u64, channels_rsss, "channels_rsss", "Default channels receive side scaling stride") \
sys/dev/mlx5/mlx5_en/en.h
693
m(+1, u64, coalesce_usecs_max, "coalesce_usecs_max", "Maximum usecs for joining packets") \
sys/dev/mlx5/mlx5_en/en.h
694
m(+1, u64, coalesce_pkts_max, "coalesce_pkts_max", "Maximum packets to join") \
sys/dev/mlx5/mlx5_en/en.h
695
m(+1, u64, rx_coalesce_usecs, "rx_coalesce_usecs", "Limit in usec for joining rx packets") \
sys/dev/mlx5/mlx5_en/en.h
696
m(+1, u64, rx_coalesce_pkts, "rx_coalesce_pkts", "Maximum number of rx packets to join") \
sys/dev/mlx5/mlx5_en/en.h
697
m(+1, u64, rx_coalesce_mode, "rx_coalesce_mode", "0: EQE fixed mode 1: CQE fixed mode 2: EQE auto mode 3: CQE auto mode") \
sys/dev/mlx5/mlx5_en/en.h
698
m(+1, u64, tx_coalesce_usecs, "tx_coalesce_usecs", "Limit in usec for joining tx packets") \
sys/dev/mlx5/mlx5_en/en.h
699
m(+1, u64, tx_coalesce_pkts, "tx_coalesce_pkts", "Maximum number of tx packets to join") \
sys/dev/mlx5/mlx5_en/en.h
700
m(+1, u64, tx_coalesce_mode, "tx_coalesce_mode", "0: EQE mode 1: CQE mode") \
sys/dev/mlx5/mlx5_en/en.h
701
m(+1, u64, tx_completion_fact, "tx_completion_fact", "1..MAX: Completion event ratio") \
sys/dev/mlx5/mlx5_en/en.h
702
m(+1, u64, tx_completion_fact_max, "tx_completion_fact_max", "Maximum completion event ratio") \
sys/dev/mlx5/mlx5_en/en.h
703
m(+1, u64, hw_lro, "hw_lro", "set to enable hw_lro") \
sys/dev/mlx5/mlx5_en/en.h
704
m(+1, u64, cqe_zipping, "cqe_zipping", "0 : CQE zipping disabled") \
sys/dev/mlx5/mlx5_en/en.h
705
m(+1, u64, modify_tx_dma, "modify_tx_dma", "0: Enable TX 1: Disable TX") \
sys/dev/mlx5/mlx5_en/en.h
706
m(+1, u64, modify_rx_dma, "modify_rx_dma", "0: Enable RX 1: Disable RX") \
sys/dev/mlx5/mlx5_en/en.h
707
m(+1, u64, diag_pci_enable, "diag_pci_enable", "0: Disabled 1: Enabled") \
sys/dev/mlx5/mlx5_en/en.h
708
m(+1, u64, diag_general_enable, "diag_general_enable", "0: Disabled 1: Enabled") \
sys/dev/mlx5/mlx5_en/en.h
709
m(+1, u64, hw_mtu, "hw_mtu", "Current hardware MTU value") \
sys/dev/mlx5/mlx5_en/en.h
710
m(+1, u64, mc_local_lb, "mc_local_lb", "0: Local multicast loopback enabled 1: Disabled") \
sys/dev/mlx5/mlx5_en/en.h
711
m(+1, u64, uc_local_lb, "uc_local_lb", "0: Local unicast loopback enabled 1: Disabled") \
sys/dev/mlx5/mlx5_en/en.h
718
u64 arg [0];
sys/dev/mlx5/mlx5_en/en.h
720
u64 max_bw_value[IEEE_8021QAZ_MAX_TCS];
sys/dev/mlx5/mlx5_en/en.h
812
u64 d64;
sys/dev/mlx5/mlx5_en/en.h
870
u64 d64;
sys/dev/mlx5/mlx5_en/en_hw_tls.h
67
m(+1, u64, tx_packets, "tx_packets", "Transmitted packets") \
sys/dev/mlx5/mlx5_en/en_hw_tls.h
68
m(+1, u64, tx_bytes, "tx_bytes", "Transmitted bytes") \
sys/dev/mlx5/mlx5_en/en_hw_tls.h
69
m(+1, u64, tx_packets_ooo, "tx_packets_ooo", "Transmitted packets out of order") \
sys/dev/mlx5/mlx5_en/en_hw_tls.h
70
m(+1, u64, tx_bytes_ooo, "tx_bytes_ooo", "Transmitted bytes out of order") \
sys/dev/mlx5/mlx5_en/en_hw_tls.h
71
m(+1, u64, tx_error, "tx_error", "Transmitted packets with error")
sys/dev/mlx5/mlx5_en/en_hw_tls_rx.h
119
m(+1, u64, rx_resync_ok, "rx_resync_ok", "Successful resync requests")\
sys/dev/mlx5/mlx5_en/en_hw_tls_rx.h
120
m(+1, u64, rx_resync_err, "rx_resync_err", "Failed resync requests")\
sys/dev/mlx5/mlx5_en/en_hw_tls_rx.h
121
m(+1, u64, rx_error, "rx_error", "Other errors")
sys/dev/mlx5/mlx5_en/en_rl.h
113
u64 arg [0];
sys/dev/mlx5/mlx5_en/en_rl.h
118
u64 arg [0];
sys/dev/mlx5/mlx5_en/en_rl.h
120
u64 table_arg [0];
sys/dev/mlx5/mlx5_en/en_rl.h
60
m(+1, u64, tx_queue_size, "tx_queue_size", "Default send queue size") \
sys/dev/mlx5/mlx5_en/en_rl.h
61
m(+1, u64, tx_coalesce_usecs, "tx_coalesce_usecs", "Limit in usec for joining TX packets") \
sys/dev/mlx5/mlx5_en/en_rl.h
62
m(+1, u64, tx_coalesce_pkts, "tx_coalesce_pkts", "Maximum number of TX packets to join") \
sys/dev/mlx5/mlx5_en/en_rl.h
63
m(+1, u64, tx_coalesce_mode, "tx_coalesce_mode", "0: EQE mode 1: CQE mode") \
sys/dev/mlx5/mlx5_en/en_rl.h
64
m(+1, u64, tx_completion_fact, "tx_completion_fact", "1..MAX: Completion event ratio") \
sys/dev/mlx5/mlx5_en/en_rl.h
65
m(+1, u64, tx_completion_fact_max, "tx_completion_fact_max", "Maximum completion event ratio") \
sys/dev/mlx5/mlx5_en/en_rl.h
66
m(+1, u64, tx_worker_threads_max, "tx_worker_threads_max", "Max number of TX worker threads") \
sys/dev/mlx5/mlx5_en/en_rl.h
67
m(+1, u64, tx_worker_threads_def, "tx_worker_threads_def", "Default number of TX worker threads") \
sys/dev/mlx5/mlx5_en/en_rl.h
68
m(+1, u64, tx_channels_per_worker_max, "tx_channels_per_worker_max", "Max number of TX channels per worker") \
sys/dev/mlx5/mlx5_en/en_rl.h
69
m(+1, u64, tx_channels_per_worker_def, "tx_channels_per_worker_def", "Default number of TX channels per worker") \
sys/dev/mlx5/mlx5_en/en_rl.h
70
m(+1, u64, tx_rates_max, "tx_rates_max", "Max number of TX rates") \
sys/dev/mlx5/mlx5_en/en_rl.h
71
m(+1, u64, tx_rates_def, "tx_rates_def", "Default number of TX rates") \
sys/dev/mlx5/mlx5_en/en_rl.h
72
m(+1, u64, tx_limit_min, "tx_limit_min", "Minimum TX rate in bits/s") \
sys/dev/mlx5/mlx5_en/en_rl.h
73
m(+1, u64, tx_limit_max, "tx_limit_max", "Maximum TX rate in bits/s") \
sys/dev/mlx5/mlx5_en/en_rl.h
74
m(+1, u64, tx_burst_size, "tx_burst_size", "Current burst size in number of packets. A value of zero means use firmware default.") \
sys/dev/mlx5/mlx5_en/en_rl.h
75
m(+1, u64, tx_burst_size_max, "tx_burst_size_max", "Maximum burst size in number of packets") \
sys/dev/mlx5/mlx5_en/en_rl.h
76
m(+1, u64, tx_burst_size_min, "tx_burst_size_min", "Minimum burst size in number of packets")
sys/dev/mlx5/mlx5_en/en_rl.h
81
m(+1, u64, tx_allocate_resource_failure, "tx_allocate_resource_failure", "Number of times firmware resource allocation failed") \
sys/dev/mlx5/mlx5_en/en_rl.h
82
m(+1, u64, tx_add_new_rate_failure, "tx_add_new_rate_failure", "Number of times adding a new firmware rate failed") \
sys/dev/mlx5/mlx5_en/en_rl.h
83
m(+1, u64, tx_modify_rate_failure, "tx_modify_rate_failure", "Number of times modifying a firmware rate failed") \
sys/dev/mlx5/mlx5_en/en_rl.h
84
m(+1, u64, tx_active_connections, "tx_active_connections", "Number of active connections") \
sys/dev/mlx5/mlx5_en/en_rl.h
85
m(+1, u64, tx_open_queues, "tx_open_queues", "Number of open TX queues") \
sys/dev/mlx5/mlx5_en/en_rl.h
86
m(+1, u64, tx_available_resource_failure, "tx_available_resource_failure", "Number of times TX resources were not available")
sys/dev/mlx5/mlx5_en/en_rl.h
91
m(+1, u64, tx_limit_add, "tx_limit_add", "Add TX rate limit in bits/s to empty slot") \
sys/dev/mlx5/mlx5_en/en_rl.h
92
m(+1, u64, tx_limit_clr, "tx_limit_clr", "Clear all TX rates in table") \
sys/dev/mlx5/mlx5_en/en_rl.h
93
m(+1, u64, tx_allowed_deviation, "tx_allowed_deviation", "Relative rate deviation allowed in 1/1000") \
sys/dev/mlx5/mlx5_en/en_rl.h
94
m(+1, u64, tx_allowed_deviation_min, "tx_allowed_deviation_min", "Minimum allowed rate deviation in 1/1000") \
sys/dev/mlx5/mlx5_en/en_rl.h
95
m(+1, u64, tx_allowed_deviation_max, "tx_allowed_deviation_max", "Maximum allowed rate deviation in 1/1000")
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
1068
(u64) priv->mdev->priv.eq_table.num_comp_vectors) {
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
1070
(u64) priv->mdev->priv.eq_table.num_comp_vectors;
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
193
u64 *new_bw_value, u8 *max_bw_value, u8 *max_bw_unit)
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
195
const u64 upper_limit_mbps = 255 * MLX5E_100MB;
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
196
const u64 upper_limit_gbps = 255 * MLX5E_1GB;
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
197
u64 temp;
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
228
u64 new_bw_value[IEEE_8021QAZ_MAX_TCS];
sys/dev/mlx5/mlx5_en/mlx5_en_ethtool.c
35
const char **desc, unsigned num, u64 * arg)
sys/dev/mlx5/mlx5_en/mlx5_en_hw_tls.c
805
u64 rcd_sn;
sys/dev/mlx5/mlx5_en/mlx5_en_hw_tls_rx.c
357
u64 dma_address;
sys/dev/mlx5/mlx5_en/mlx5_en_iq.c
246
sizeof(u64) * iq->wq_ctrl.buf.npages;
sys/dev/mlx5/mlx5_en/mlx5_en_iq.c
501
u64 *pdma_address = arg;
sys/dev/mlx5/mlx5_en/mlx5_en_iq.c
514
u64 *pdma_address, u32 dma_sync)
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1344
sizeof(u64) * rq->wq_ctrl.buf.npages;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
1747
sizeof(u64) * sq->wq_ctrl.buf.npages;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
2043
sizeof(u64) * cq->wq_ctrl.buf.npages;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
3371
u64 retval;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
57
u64 baudrate;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
684
const u64 *ptr;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
811
u64 tso_packets = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
812
u64 tso_bytes = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
813
u64 tx_queue_dropped = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
814
u64 tx_defragged = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
815
u64 tx_offload_none = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
816
u64 lro_packets = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
817
u64 lro_bytes = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
818
u64 sw_lro_queued = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
819
u64 sw_lro_flushed = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
820
u64 rx_csum_none = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
821
u64 rx_wqe_err = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
822
u64 rx_packets = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
823
u64 rx_bytes = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
824
u64 rx_decrypted_error = 0;
sys/dev/mlx5/mlx5_en/mlx5_en_main.c
825
u64 rx_decrypted_ok = 0;
sys/dev/mlx5/mlx5_fpga/cmd.h
45
u64 rx_ack_packets;
sys/dev/mlx5/mlx5_fpga/cmd.h
46
u64 rx_send_packets;
sys/dev/mlx5/mlx5_fpga/cmd.h
47
u64 tx_ack_packets;
sys/dev/mlx5/mlx5_fpga/cmd.h
48
u64 tx_send_packets;
sys/dev/mlx5/mlx5_fpga/cmd.h
49
u64 rx_total_drop;
sys/dev/mlx5/mlx5_fpga/cmd.h
53
u64 ddr_read_requests;
sys/dev/mlx5/mlx5_fpga/cmd.h
54
u64 ddr_write_requests;
sys/dev/mlx5/mlx5_fpga/cmd.h
55
u64 ddr_read_bytes;
sys/dev/mlx5/mlx5_fpga/cmd.h
56
u64 ddr_write_bytes;
sys/dev/mlx5/mlx5_fpga/cmd.h
64
int mlx5_fpga_access_reg(struct mlx5_core_dev *dev, u8 size, u64 addr,
sys/dev/mlx5/mlx5_fpga/ipsec.h
46
int mlx5_fpga_ipsec_counters_read(struct mlx5_core_dev *mdev, u64 *counters,
sys/dev/mlx5/mlx5_fpga/ipsec.h
77
u64 *counters)
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
43
int mlx5_fpga_access_reg(struct mlx5_core_dev *dev, u8 size, u64 addr,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_cmd.c
96
u64 addr = MLX5_CAP64_FPGA(dev, sandbox_extended_caps_addr);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_conn.c
455
sizeof(u64) * conn->cq.wq_ctrl.frag_buf.npages;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
272
int mlx5_fpga_ipsec_counters_read(struct mlx5_core_dev *mdev, u64 *counters,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
279
u64 addr;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
285
addr = (u64)MLX5_GET(ipsec_extended_cap, fdev->ipsec->caps,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
287
((u64)MLX5_GET(ipsec_extended_cap, fdev->ipsec->caps,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
298
ret = mlx5_fpga_mem_read(fdev, count * sizeof(u64), addr, data,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
312
counters[i] = (u64)ntohl(data[i * 2]) |
sys/dev/mlx5/mlx5_fpga/mlx5fpga_ipsec.c
313
((u64)ntohl(data[i * 2 + 1]) << 32);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
131
u64 addr, u8 *buf)
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
163
u64 addr, u8 *buf)
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
193
int mlx5_fpga_mem_read(struct mlx5_fpga_device *fdev, size_t size, u64 addr,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
226
int mlx5_fpga_mem_write(struct mlx5_fpga_device *fdev, size_t size, u64 addr,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
265
u64 mlx5_fpga_ddr_size_get(struct mlx5_fpga_device *fdev)
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
267
return (u64)MLX5_CAP_FPGA(fdev->mdev, fpga_ddr_size) << 10;
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
271
u64 mlx5_fpga_ddr_base_get(struct mlx5_fpga_device *fdev)
sys/dev/mlx5/mlx5_fpga/mlx5fpga_sdk.c
99
static int mem_transaction(struct mlx5_fpga_device *fdev, size_t size, u64 addr,
sys/dev/mlx5/mlx5_fpga/mlx5fpga_trans.c
144
static int trans_validate(struct mlx5_fpga_device *fdev, u64 addr, size_t size)
sys/dev/mlx5/mlx5_fpga/mlx5fpga_xfer.c
195
u64 base = mlx5_fpga_ddr_base_get(xfer->conn->fdev);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_xfer.c
196
u64 size = mlx5_fpga_ddr_size_get(xfer->conn->fdev);
sys/dev/mlx5/mlx5_fpga/mlx5fpga_xfer.c
73
u64 pos_addr, ddr_base;
sys/dev/mlx5/mlx5_fpga/sdk.h
258
int mlx5_fpga_mem_read(struct mlx5_fpga_device *fdev, size_t size, u64 addr,
sys/dev/mlx5/mlx5_fpga/sdk.h
276
int mlx5_fpga_mem_write(struct mlx5_fpga_device *fdev, size_t size, u64 addr,
sys/dev/mlx5/mlx5_fpga/sdk.h
300
u64 mlx5_fpga_ddr_size_get(struct mlx5_fpga_device *fdev);
sys/dev/mlx5/mlx5_fpga/sdk.h
308
u64 mlx5_fpga_ddr_base_get(struct mlx5_fpga_device *fdev);
sys/dev/mlx5/mlx5_fpga/trans.h
53
u64 addr;
sys/dev/mlx5/mlx5_fpga_tools/mlx5fpga_tools_char.c
67
u64 address, enum mlx5_fpga_access_type access_type, size_t *retcnt)
sys/dev/mlx5/mlx5_fpga_tools/mlx5fpga_tools_char.c
88
u64 address, enum mlx5_fpga_access_type access_type, size_t *retcnt)
sys/dev/mlx5/mlx5_fpga_tools/tools.h
57
void *buf, size_t count, u64 address,
sys/dev/mlx5/mlx5_fpga_tools/tools.h
60
size_t count, u64 address,
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
1051
u64 guid, int type);
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
140
u64 lib_caps;
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
224
u64 *wrid;
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
307
u64 buf_addr;
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
445
u64 virt_addr;
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
446
u64 offset;
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
500
u64 *wrid;
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
527
u64 address;
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
655
m(+1, u64, rp_clamp_tgt_rate, "rp_clamp_tgt_rate", "If set, whenever a CNP is processed, the target rate is updated to be the current rate") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
656
m(+1, u64, rp_clamp_tgt_rate_ati, "rp_clamp_tgt_rate_ati", "If set, when receiving a CNP, the target rate should be updated if the transission rate was increased due to the timer, and not only due to the byte counter") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
657
m(+1, u64, rp_time_reset, "rp_time_reset", "Time in microseconds between rate increases if no CNPs are received") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
658
m(+1, u64, rp_byte_reset, "rp_byte_reset", "Transmitted data in bytes between rate increases if no CNP's are received. A value of zero means disabled.") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
659
m(+1, u64, rp_threshold, "rp_threshold", "The number of times rpByteStage or rpTimeStage can count before the RP rate control state machine advances states") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
660
m(+1, u64, rp_ai_rate, "rp_ai_rate", "The rate, in Mbits per second, used to increase rpTargetRate in the active increase state") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
661
m(+1, u64, rp_hai_rate, "rp_hai_rate", "The rate, in Mbits per second, used to increase rpTargetRate in the hyper increase state") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
662
m(+1, u64, rp_min_dec_fac, "rp_min_dec_fac", "The minimum factor by which the current transmit rate can be changed when processing a CNP. Value is given as a percentage, [1 .. 100]") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
663
m(+1, u64, rp_min_rate, "rp_min_rate", "The minimum value, in Mbps per second, for rate to limit") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
664
m(+1, u64, rp_rate_to_set_on_first_cnp, "rp_rate_to_set_on_first_cnp", "The rate that is set for the flow when a rate limiter is allocated to it upon first CNP received, in Mbps. A value of zero means use full port speed") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
665
m(+1, u64, rp_dce_tcp_g, "rp_dce_tcp_g", "Used to update the congestion estimator, alpha, once every dce_tcp_rtt once every dce_tcp_rtt microseconds") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
666
m(+1, u64, rp_dce_tcp_rtt, "rp_dce_tcp_rtt", "The time between updates of the aolpha value, in microseconds") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
667
m(+1, u64, rp_rate_reduce_monitor_period, "rp_rate_reduce_monitor_period", "The minimum time between two consecutive rate reductions for a single flow") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
668
m(+1, u64, rp_initial_alpha_value, "rp_initial_alpha_value", "The initial value of alpha to use when receiving the first CNP for a flow") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
669
m(+1, u64, rp_gd, "rp_gd", "If a CNP is received, the flow rate is reduced at the beginning of the next rate_reduce_monitor_period interval") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
671
m(+1, u64, np_cnp_dscp, "np_cnp_dscp", "The DiffServ Code Point of the generated CNP for this port") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
672
m(+1, u64, np_cnp_prio_mode, "np_cnp_prio_mode", "The 802.1p priority value of the generated CNP for this port") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
673
m(+1, u64, np_cnp_prio, "np_cnp_prio", "The 802.1p priority value of the generated CNP for this port")
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
678
m(+1, u64, syndrome, "syndrome", "Syndrome number") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
679
m(+1, u64, rp_cur_flows, "rp_cur_flows", "Number of flows limited") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
680
m(+1, u64, sum_flows, "sum_flows", "Sum of the number of flows limited over time") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
681
m(+1, u64, rp_cnp_ignored, "rp_cnp_ignored", "Number of CNPs and CNMs ignored") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
682
m(+1, u64, rp_cnp_handled, "rp_cnp_handled", "Number of CNPs and CNMs successfully handled") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
683
m(+1, u64, time_stamp, "time_stamp", "Time stamp in microseconds") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
684
m(+1, u64, accumulators_period, "accumulators_period", "The value of X variable for accumulating counters") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
685
m(+1, u64, np_ecn_marked_roce_packets, "np_ecn_marked_roce_packets", "Number of ECN marked packets seen") \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
686
m(+1, u64, np_cnp_sent, "np_cnp_sent", "Number of CNPs sent")
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
692
m(+1, u64, rp_0_enable, "rp_0_enable", "Enable reaction point, priority 0", MLX5_IB_RROCE_ECN_RP, 0, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
693
m(+1, u64, rp_1_enable, "rp_1_enable", "Enable reaction point, priority 1", MLX5_IB_RROCE_ECN_RP, 1, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
694
m(+1, u64, rp_2_enable, "rp_2_enable", "Enable reaction point, priority 2", MLX5_IB_RROCE_ECN_RP, 2, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
695
m(+1, u64, rp_3_enable, "rp_3_enable", "Enable reaction point, priority 3", MLX5_IB_RROCE_ECN_RP, 3, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
696
m(+1, u64, rp_4_enable, "rp_4_enable", "Enable reaction point, priority 4", MLX5_IB_RROCE_ECN_RP, 4, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
697
m(+1, u64, rp_5_enable, "rp_5_enable", "Enable reaction point, priority 5", MLX5_IB_RROCE_ECN_RP, 5, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
698
m(+1, u64, rp_6_enable, "rp_6_enable", "Enable reaction point, priority 6", MLX5_IB_RROCE_ECN_RP, 6, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
699
m(+1, u64, rp_7_enable, "rp_7_enable", "Enable reaction point, priority 7", MLX5_IB_RROCE_ECN_RP, 7, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
700
m(+1, u64, rp_8_enable, "rp_8_enable", "Enable reaction point, priority 8", MLX5_IB_RROCE_ECN_RP, 8, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
701
m(+1, u64, rp_9_enable, "rp_9_enable", "Enable reaction point, priority 9", MLX5_IB_RROCE_ECN_RP, 9, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
702
m(+1, u64, rp_10_enable, "rp_10_enable", "Enable reaction point, priority 10", MLX5_IB_RROCE_ECN_RP, 10, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
703
m(+1, u64, rp_11_enable, "rp_11_enable", "Enable reaction point, priority 11", MLX5_IB_RROCE_ECN_RP, 11, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
704
m(+1, u64, rp_12_enable, "rp_12_enable", "Enable reaction point, priority 12", MLX5_IB_RROCE_ECN_RP, 12, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
705
m(+1, u64, rp_13_enable, "rp_13_enable", "Enable reaction point, priority 13", MLX5_IB_RROCE_ECN_RP, 13, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
706
m(+1, u64, rp_14_enable, "rp_14_enable", "Enable reaction point, priority 14", MLX5_IB_RROCE_ECN_RP, 14, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
707
m(+1, u64, rp_15_enable, "rp_15_enable", "Enable reaction point, priority 15", MLX5_IB_RROCE_ECN_RP, 15, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
709
m(+1, u64, np_0_enable, "np_0_enable", "Enable notification point, priority 0", MLX5_IB_RROCE_ECN_NP, 0, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
710
m(+1, u64, np_1_enable, "np_1_enable", "Enable notification point, priority 1", MLX5_IB_RROCE_ECN_NP, 1, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
711
m(+1, u64, np_2_enable, "np_2_enable", "Enable notification point, priority 2", MLX5_IB_RROCE_ECN_NP, 2, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
712
m(+1, u64, np_3_enable, "np_3_enable", "Enable notification point, priority 3", MLX5_IB_RROCE_ECN_NP, 3, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
713
m(+1, u64, np_4_enable, "np_4_enable", "Enable notification point, priority 4", MLX5_IB_RROCE_ECN_NP, 4, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
714
m(+1, u64, np_5_enable, "np_5_enable", "Enable notification point, priority 5", MLX5_IB_RROCE_ECN_NP, 5, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
715
m(+1, u64, np_6_enable, "np_6_enable", "Enable notification point, priority 6", MLX5_IB_RROCE_ECN_NP, 6, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
716
m(+1, u64, np_7_enable, "np_7_enable", "Enable notification point, priority 7", MLX5_IB_RROCE_ECN_NP, 7, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
717
m(+1, u64, np_8_enable, "np_8_enable", "Enable notification point, priority 8", MLX5_IB_RROCE_ECN_NP, 8, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
718
m(+1, u64, np_9_enable, "np_9_enable", "Enable notification point, priority 9", MLX5_IB_RROCE_ECN_NP, 9, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
719
m(+1, u64, np_10_enable, "np_10_enable", "Enable notification point, priority 10", MLX5_IB_RROCE_ECN_NP, 10, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
720
m(+1, u64, np_11_enable, "np_11_enable", "Enable notification point, priority 11", MLX5_IB_RROCE_ECN_NP, 11, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
721
m(+1, u64, np_12_enable, "np_12_enable", "Enable notification point, priority 12", MLX5_IB_RROCE_ECN_NP, 12, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
722
m(+1, u64, np_13_enable, "np_13_enable", "Enable notification point, priority 13", MLX5_IB_RROCE_ECN_NP, 13, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
723
m(+1, u64, np_14_enable, "np_14_enable", "Enable notification point, priority 14", MLX5_IB_RROCE_ECN_NP, 14, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
724
m(+1, u64, np_15_enable, "np_15_enable", "Enable notification point, priority 15", MLX5_IB_RROCE_ECN_NP, 15, enable) \
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
733
u64 arg[1];
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
940
struct ib_mr *mlx5_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
941
u64 virt_addr, int access_flags,
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
946
int mlx5_ib_update_mtt(struct mlx5_ib_mr *mr, u64 start_page_index,
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
948
int mlx5_ib_rereg_user_mr(struct ib_mr *ib_mr, int flags, u64 start,
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
949
u64 length, u64 virt_addr, int access_flags,
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
964
int mlx5_ib_get_buf_offset(u64 addr, int page_shift, u32 *offset);
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
986
void mlx5_ib_cont_pages(struct ib_umem *umem, u64 addr,
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
995
void mlx5_ib_copy_pas(u64 *old, u64 *new, int step, int num);
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
999
int mlx5_mr_ib_cont_pages(struct ib_umem *umem, u64 addr, int *count, int *shift);
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
161
u64 var, u32 *attr_mask)
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
289
mlx5_ib_set_cc_params(struct mlx5_ib_dev *dev, u32 index, u64 var)
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
325
u64 value;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
378
u64 value;
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
420
(((u64)MLX5_GET(t,p,f##_high) << 32) | MLX5_GET(t,p,f##_low))
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
46
__offsetof(struct mlx5_ib_congestion, arg[0])) / sizeof(u64))
sys/dev/mlx5/mlx5_ib/mlx5_ib_cong.c
95
static u64
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
103
u64 cookie;
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
124
u64 obj_id;
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
1925
u64 cookie = 0;
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2088
u64 addr;
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2707
UVERBS_ATTR_TYPE(u64),
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2710
UVERBS_ATTR_TYPE(u64),
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2828
UVERBS_ATTR_TYPE(u64),
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2846
UVERBS_ATTR_TYPE(u64),
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
365
static u32 get_dec_obj_id(u64 obj_id)
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
375
static u64 get_enc_obj_id(u32 opcode, u32 obj_id)
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
377
return ((u64)opcode << 32) | obj_id;
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
380
static u64 devx_get_obj_id(const void *in)
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
383
u64 obj_id;
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
606
u64 obj_id = devx_get_obj_id(in);
sys/dev/mlx5/mlx5_ib/mlx5_ib_gsi.c
97
u64 wr_id;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
1114
static void print_lib_caps(struct mlx5_ib_dev *dev, u64 caps)
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3312
stats->value[i] = (u64)be32_to_cpu(val);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
526
u64 tmp;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
595
u64 tmp;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
648
u64 min_page_size = 1ull << MLX5_CAP_GEN(mdev, log_pg_sz);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
651
u64 max_tso;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
676
props->fw_ver = ((u64)fw_rev_maj(dev->mdev) << 32) |
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
100
static u64 umem_dma_to_mtt(dma_addr_t umem_dma)
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
102
u64 mtt_entry = umem_dma & ODP_DMA_ADDR_MASK;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
134
u64 cur = 0;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
135
u64 base;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
182
int mlx5_ib_get_buf_offset(u64 addr, int page_shift, u32 *offset)
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
184
u64 page_size;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
185
u64 page_mask;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
186
u64 off_size;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
187
u64 off_mask;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
188
u64 buf_off;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
190
page_size = (u64)1 << page_shift;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
42
void mlx5_ib_cont_pages(struct ib_umem *umem, u64 addr,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
49
u64 base = ~0, p = 0;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mem.c
50
u64 len, pfn;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1057
static int rereg_umr(struct ib_pd *pd, struct mlx5_ib_mr *mr, u64 virt_addr,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1058
u64 length, int npages, int page_shift, int order,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1125
int mlx5_ib_rereg_user_mr(struct ib_mr *ib_mr, int flags, u64 start,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1126
u64 length, u64 virt_addr, int new_access_flags,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1135
u64 addr = (flags & IB_MR_REREG_TRANS) ? virt_addr : mr->umem->address;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1136
u64 len = (flags & IB_MR_REREG_TRANS) ? length : mr->umem->length;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1378
ndescs, sizeof(u64));
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1382
mr->desc_size = sizeof(u64);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
1618
static int mlx5_set_page(struct ib_mr *ibmr, u64 addr)
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
531
static int get_octo_len(u64 addr, u64 len, int page_size)
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
533
u64 offset;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
558
*size = ALIGN(sizeof(u64) * npages, MLX5_UMR_MTT_ALIGNMENT);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
566
memset(pas + npages, 0, *size - npages * sizeof(u64));
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
578
struct ib_sge *sg, u64 dma, int n, u32 key,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
584
sg->length = ALIGN(sizeof(u64) * n, 64);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
602
struct ib_sge *sg, u64 dma, int n, u32 key,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
603
int page_shift, u64 virt_addr, u64 len,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
624
static struct ib_umem *mr_umem_get(struct ib_pd *pd, u64 start, u64 length,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
666
u64 virt_addr, u64 len, int npages,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
74
static bool use_umr_mtt_update(struct mlx5_ib_mr *mr, u64 start, u64 length)
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
744
int mlx5_ib_update_mtt(struct mlx5_ib_mr *mr, u64 start_page_index, int npages,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
759
const int page_index_alignment = MLX5_UMR_MTT_ALIGNMENT / sizeof(u64);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
76
return ((u64)1 << mr->order) * MLX5_ADAPTER_PAGE_SIZE >=
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
778
size = sizeof(u64) * pages_to_map;
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
792
pages_iter = size / sizeof(u64);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
815
memset(pas + npages, 0, size - npages * sizeof(u64));
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
826
sg.length = ALIGN(npages * sizeof(u64),
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
835
wr.npages = sg.length / sizeof(u64);
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
871
u64 virt_addr, u64 length,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
947
int npages, u64 length, int access_flags)
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
957
struct ib_mr *mlx5_ib_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
sys/dev/mlx5/mlx5_ib/mlx5_ib_mr.c
958
u64 virt_addr, int access_flags,
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
1105
inlen = MLX5_ST_SZ_BYTES(create_sq_in) + sizeof(u64) * ncont;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
1170
return rq_num_pas * sizeof(u64);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3052
u64 remote_addr, u32 rkey)
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3077
u64 left, leftlen, copysz;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3090
copysz = min_t(u64, leftlen, left);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3134
u64 result;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3154
u64 result;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3198
u64 result;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3217
u64 result;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3226
u64 result;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3235
u64 result;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3248
u64 result;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3262
u64 result;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3562
u64 data_va = wr->wr.sg_list->addr;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3604
u64 prot_va = wr->prot->addr;
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
3874
u8 size, unsigned idx, u64 wr_id,
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
4703
inlen = MLX5_ST_SZ_BYTES(create_rq_in) + sizeof(u64) * rwq->rq_num_pas;
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
193
srq->wrid = kmalloc(srq->msrq.max * sizeof(u64), GFP_KERNEL);
sys/dev/mlx5/mlx5_ib/mlx5_ib_virt.c
52
u64 guid, int type)
sys/dev/mlx5/mlx5_lib/mlx5_aso.c
184
sizeof(u64) * sq->wq_ctrl.buf.npages;
sys/dev/mlx5/mlx5_lib/mlx5_aso.c
88
sizeof(u64) * cq->wq_ctrl.buf.npages;
sys/dev/mlx5/qp.h
472
u64 rdma_va;
sys/dev/mlx5/srq.h
50
u64 db_record;
sys/dev/mlx5/srq.h
51
u64 *pas;
sys/dev/mlx5/vport.h
100
u64 *addr_list, size_t addr_list_len);
sys/dev/mlx5/vport.h
129
u64 *system_image_guid);
sys/dev/mlx5/vport.h
131
u64 *sys_image_guid);
sys/dev/mlx5/vport.h
132
int mlx5_query_vport_node_guid(struct mlx5_core_dev *dev, u64 *node_guid);
sys/dev/mlx5/vport.h
133
int mlx5_query_vport_port_guid(struct mlx5_core_dev *dev, u64 *port_guid);
sys/dev/mlx5/vport.h
135
int mlx5_query_nic_vport_node_guid(struct mlx5_core_dev *mdev, u64 *node_guid);
sys/dev/mlx5/vport.h
138
int mlx5_query_hca_vport_node_guid(struct mlx5_core_dev *mdev, u64 *node_guid);
sys/dev/mlx5/vport.h
140
u64 *system_image_guid);
sys/dev/mlx5/vport.h
94
u32 vport, u64 port_guid);
sys/dev/mlx5/vport.h
96
u32 vport, u64 node_guid);
sys/dev/mlxfw/mlxfw_mfa2.c
247
(uintmax_t)((u64) be32_to_cpu(cdesc->cb_offset_h) << 32)
sys/dev/mlxfw/mlxfw_mfa2.c
575
cb_offset = (u64) be32_to_cpu(comp->cb_offset_h) << 32 |
sys/dev/mpr/mpr.c
131
u64 word;
sys/dev/mpr/mpr_config.c
1604
mpr_config_get_volume_wwid(struct mpr_softc *sc, u16 volume_handle, u64 *wwid)
sys/dev/mpr/mpr_config.c
1612
*wwid = le64toh((u64)raid_vol_pg1.WWID.High << 32 |
sys/dev/mpr/mpr_mapping.c
2220
u64 physical_id;
sys/dev/mpr/mpr_mapping.c
267
_mapping_get_enc_idx_from_id(struct mpr_softc *sc, u64 enc_id,
sys/dev/mpr/mpr_mapping.c
268
u64 phy_bits)
sys/dev/mpr/mpr_mapping.c
2707
mpr_mapping_get_raid_tid(struct mpr_softc *sc, u64 wwid, u16 volHandle)
sys/dev/mpr/mpr_mapping.c
3033
u64 *wwid_table;
sys/dev/mpr/mpr_mapping.c
3038
wwid_table = malloc(sizeof(u64) * event_data->NumElements, M_MPR,
sys/dev/mpr/mpr_mapping.c
382
_mapping_get_ir_mt_idx_from_wwid(struct mpr_softc *sc, u64 wwid)
sys/dev/mpr/mpr_mapping.c
404
_mapping_get_mt_idx_from_id(struct mpr_softc *sc, u64 dev_id)
sys/dev/mpr/mpr_mapping.c
541
_mapping_get_dpm_idx_from_id(struct mpr_softc *sc, u64 id, u32 phy_bits)
sys/dev/mpr/mpr_mapping.c
574
u64 physical_id;
sys/dev/mpr/mpr_mapping.c
647
Mpi2EventIrConfigElement_t *element, u64 wwid)
sys/dev/mpr/mpr_mapping.c
708
le64toh(((u64)dpm_entry->PhysicalIdentifier.High << 32) |
sys/dev/mpr/mpr_mapping.c
709
(u64)dpm_entry->PhysicalIdentifier.Low)) && (missing_cnt ==
sys/dev/mpr/mpr_mapping.h
119
u64 *sas_address, u16 handle, u32 device_info, u8 *is_SATA_SSD);
sys/dev/mpr/mpr_sas_lsi.c
1037
u64 *sas_address, u16 handle, u32 device_info, u8 *is_SATA_SSD)
sys/dev/mpr/mpr_sas_lsi.c
1118
*sas_address = (u64)hash_address.wwid[0] << 56 |
sys/dev/mpr/mpr_sas_lsi.c
1119
(u64)hash_address.wwid[1] << 48 | (u64)hash_address.wwid[2] << 40 |
sys/dev/mpr/mpr_sas_lsi.c
1120
(u64)hash_address.wwid[3] << 32 | (u64)hash_address.wwid[4] << 24 |
sys/dev/mpr/mpr_sas_lsi.c
1121
(u64)hash_address.wwid[5] << 16 | (u64)hash_address.wwid[6] << 8 |
sys/dev/mpr/mpr_sas_lsi.c
1122
(u64)hash_address.wwid[7];
sys/dev/mpr/mpr_sas_lsi.c
127
u64 *sas_address, u16 handle, u32 device_info, u8 *is_SATA_SSD);
sys/dev/mpr/mpr_sas_lsi.c
1395
u64 wwid;
sys/dev/mpr/mprvar.h
148
u64 physical_id;
sys/dev/mpr/mprvar.h
176
u64 enclosure_id;
sys/dev/mpr/mprvar.h
870
u64 *wwid);
sys/dev/mpr/mprvar.h
897
unsigned int mpr_mapping_get_raid_tid(struct mpr_softc *sc, u64 wwid,
sys/dev/mps/mps.c
127
u64 word;
sys/dev/mps/mps_config.c
1370
mps_config_get_volume_wwid(struct mps_softc *sc, u16 volume_handle, u64 *wwid)
sys/dev/mps/mps_config.c
1378
*wwid = le64toh((u64)raid_vol_pg1.WWID.High << 32 |
sys/dev/mps/mps_mapping.c
1771
u64 physical_id;
sys/dev/mps/mps_mapping.c
2237
mps_mapping_get_raid_tid(struct mps_softc *sc, u64 wwid, u16 volHandle)
sys/dev/mps/mps_mapping.c
2495
u64 *wwid_table;
sys/dev/mps/mps_mapping.c
2500
wwid_table = malloc(sizeof(u64) * event_data->NumElements, M_MPT2,
sys/dev/mps/mps_mapping.c
268
_mapping_get_enc_idx_from_id(struct mps_softc *sc, u64 enc_id,
sys/dev/mps/mps_mapping.c
269
u64 phy_bits)
sys/dev/mps/mps_mapping.c
383
_mapping_get_ir_mt_idx_from_wwid(struct mps_softc *sc, u64 wwid)
sys/dev/mps/mps_mapping.c
405
_mapping_get_mt_idx_from_id(struct mps_softc *sc, u64 dev_id)
sys/dev/mps/mps_mapping.c
543
_mapping_get_dpm_idx_from_id(struct mps_softc *sc, u64 id, u32 phy_bits)
sys/dev/mps/mps_mapping.c
576
u64 physical_id;
sys/dev/mps/mps_mapping.c
649
Mpi2EventIrConfigElement_t *element, u64 wwid)
sys/dev/mps/mps_mapping.c
710
le64toh(((u64)dpm_entry->PhysicalIdentifier.High << 32) |
sys/dev/mps/mps_mapping.c
711
(u64)dpm_entry->PhysicalIdentifier.Low)) && (missing_cnt ==
sys/dev/mps/mps_mapping.h
72
u64 *sas_address, u16 handle, u32 device_info, u8 *is_SATA_SSD);
sys/dev/mps/mps_sas_lsi.c
1033
u64 wwid;
sys/dev/mps/mps_sas_lsi.c
125
u64 *sas_address, u16 handle, u32 device_info, u8 *is_SATA_SSD);
sys/dev/mps/mps_sas_lsi.c
812
u64 *sas_address, u16 handle, u32 device_info, u8 *is_SATA_SSD)
sys/dev/mps/mps_sas_lsi.c
893
*sas_address = (u64)hash_address.wwid[0] << 56 |
sys/dev/mps/mps_sas_lsi.c
894
(u64)hash_address.wwid[1] << 48 | (u64)hash_address.wwid[2] << 40 |
sys/dev/mps/mps_sas_lsi.c
895
(u64)hash_address.wwid[3] << 32 | (u64)hash_address.wwid[4] << 24 |
sys/dev/mps/mps_sas_lsi.c
896
(u64)hash_address.wwid[5] << 16 | (u64)hash_address.wwid[6] << 8 |
sys/dev/mps/mps_sas_lsi.c
897
(u64)hash_address.wwid[7];
sys/dev/mps/mpsvar.h
120
u64 physical_id;
sys/dev/mps/mpsvar.h
148
u64 enclosure_id;
sys/dev/mps/mpsvar.h
782
u64 *wwid);
sys/dev/mps/mpsvar.h
806
unsigned int mps_mapping_get_raid_tid(struct mps_softc *sc, u64 wwid,
sys/dev/mthca/mthca_allocator.c
200
u64 *dma_list = NULL;
sys/dev/mthca/mthca_cmd.c
1097
dev_lim->reserved_mtts = ALIGN((1 << (field >> 4)) * sizeof(u64),
sys/dev/mthca/mthca_cmd.c
1535
int mthca_MAP_ICM(struct mthca_dev *dev, struct mthca_icm *icm, u64 virt)
sys/dev/mthca/mthca_cmd.c
1540
int mthca_MAP_ICM_page(struct mthca_dev *dev, u64 dma_addr, u64 virt)
sys/dev/mthca/mthca_cmd.c
1566
int mthca_UNMAP_ICM(struct mthca_dev *dev, u64 virt, u32 page_count)
sys/dev/mthca/mthca_cmd.c
1585
int mthca_SET_ICM_SIZE(struct mthca_dev *dev, u64 icm_size, u64 *aux_pages)
sys/dev/mthca/mthca_cmd.c
1632
int mthca_MAP_EQ(struct mthca_dev *dev, u64 event_mask, int unmap,
sys/dev/mthca/mthca_cmd.c
181
u64 out_param;
sys/dev/mthca/mthca_cmd.c
1961
u64 imm;
sys/dev/mthca/mthca_cmd.c
198
u64 in_param,
sys/dev/mthca/mthca_cmd.c
199
u64 out_param,
sys/dev/mthca/mthca_cmd.c
230
u64 in_param,
sys/dev/mthca/mthca_cmd.c
231
u64 out_param,
sys/dev/mthca/mthca_cmd.c
275
u64 in_param,
sys/dev/mthca/mthca_cmd.c
276
u64 out_param,
sys/dev/mthca/mthca_cmd.c
335
u64 in_param,
sys/dev/mthca/mthca_cmd.c
336
u64 *out_param,
sys/dev/mthca/mthca_cmd.c
369
(u64) be32_to_cpu((__force __be32)
sys/dev/mthca/mthca_cmd.c
371
(u64) be32_to_cpu((__force __be32)
sys/dev/mthca/mthca_cmd.c
389
u64 out_param)
sys/dev/mthca/mthca_cmd.c
406
u64 in_param,
sys/dev/mthca/mthca_cmd.c
407
u64 *out_param,
sys/dev/mthca/mthca_cmd.c
465
u64 in_param,
sys/dev/mthca/mthca_cmd.c
466
u64 out_param,
sys/dev/mthca/mthca_cmd.c
484
u64 in_param,
sys/dev/mthca/mthca_cmd.c
500
u64 in_param,
sys/dev/mthca/mthca_cmd.c
501
u64 *out_param,
sys/dev/mthca/mthca_cmd.c
633
u64 out;
sys/dev/mthca/mthca_cmd.c
653
u64 virt)
sys/dev/mthca/mthca_cmd.c
750
static void mthca_setup_cmd_doorbells(struct mthca_dev *dev, u64 base)
sys/dev/mthca/mthca_cmd.c
780
u64 base;
sys/dev/mthca/mthca_cmd.h
182
u64 max_icm_sz;
sys/dev/mthca/mthca_cmd.h
196
u64 qpc_base;
sys/dev/mthca/mthca_cmd.h
197
u64 eec_base;
sys/dev/mthca/mthca_cmd.h
198
u64 srqc_base;
sys/dev/mthca/mthca_cmd.h
199
u64 cqc_base;
sys/dev/mthca/mthca_cmd.h
200
u64 eqpc_base;
sys/dev/mthca/mthca_cmd.h
201
u64 eeec_base;
sys/dev/mthca/mthca_cmd.h
202
u64 eqc_base;
sys/dev/mthca/mthca_cmd.h
203
u64 rdb_base;
sys/dev/mthca/mthca_cmd.h
204
u64 mc_base;
sys/dev/mthca/mthca_cmd.h
205
u64 mpt_base;
sys/dev/mthca/mthca_cmd.h
206
u64 mtt_base;
sys/dev/mthca/mthca_cmd.h
207
u64 uar_scratch_base;
sys/dev/mthca/mthca_cmd.h
208
u64 uarc_base;
sys/dev/mthca/mthca_cmd.h
230
u64 guid0;
sys/dev/mthca/mthca_cmd.h
232
u64 node_guid;
sys/dev/mthca/mthca_cmd.h
234
u64 si_guid;
sys/dev/mthca/mthca_cmd.h
240
u64 si_guid;
sys/dev/mthca/mthca_cmd.h
249
u8 status, u64 out_param);
sys/dev/mthca/mthca_cmd.h
277
int mthca_MAP_ICM(struct mthca_dev *dev, struct mthca_icm *icm, u64 virt);
sys/dev/mthca/mthca_cmd.h
278
int mthca_MAP_ICM_page(struct mthca_dev *dev, u64 dma_addr, u64 virt);
sys/dev/mthca/mthca_cmd.h
279
int mthca_UNMAP_ICM(struct mthca_dev *dev, u64 virt, u32 page_count);
sys/dev/mthca/mthca_cmd.h
282
int mthca_SET_ICM_SIZE(struct mthca_dev *dev, u64 icm_size, u64 *aux_pages);
sys/dev/mthca/mthca_cmd.h
290
int mthca_MAP_EQ(struct mthca_dev *dev, u64 event_mask, int unmap,
sys/dev/mthca/mthca_dev.h
198
u64 uarc_base;
sys/dev/mthca/mthca_dev.h
217
u64 mtt_base;
sys/dev/mthca/mthca_dev.h
218
u64 mpt_base;
sys/dev/mthca/mthca_dev.h
234
u64 icm_virt;
sys/dev/mthca/mthca_dev.h
270
u64 ddr_av_base;
sys/dev/mthca/mthca_dev.h
282
u64 addr;
sys/dev/mthca/mthca_dev.h
303
u64 fw_ver;
sys/dev/mthca/mthca_dev.h
306
u64 fw_start;
sys/dev/mthca/mthca_dev.h
307
u64 fw_end;
sys/dev/mthca/mthca_dev.h
310
u64 clr_int_base;
sys/dev/mthca/mthca_dev.h
311
u64 eq_arm_base;
sys/dev/mthca/mthca_dev.h
312
u64 eq_set_ci_base;
sys/dev/mthca/mthca_dev.h
319
u64 ddr_start;
sys/dev/mthca/mthca_dev.h
320
u64 ddr_end;
sys/dev/mthca/mthca_dev.h
472
int start_index, u64 *buffer_list, int list_len);
sys/dev/mthca/mthca_dev.h
474
u64 iova, u64 total_size, u32 access, struct mthca_mr *mr);
sys/dev/mthca/mthca_dev.h
478
u64 *buffer_list, int buffer_size_shift,
sys/dev/mthca/mthca_dev.h
479
int list_len, u64 iova, u64 total_size,
sys/dev/mthca/mthca_dev.h
485
int mthca_tavor_map_phys_fmr(struct ib_fmr *ibfmr, u64 *page_list,
sys/dev/mthca/mthca_dev.h
486
int list_len, u64 iova);
sys/dev/mthca/mthca_dev.h
488
int mthca_arbel_map_phys_fmr(struct ib_fmr *ibfmr, u64 *page_list,
sys/dev/mthca/mthca_dev.h
489
int list_len, u64 iova);
sys/dev/mthca/mthca_dev.h
493
int mthca_map_eq_icm(struct mthca_dev *dev, u64 icm_virt);
sys/dev/mthca/mthca_doorbell.h
56
__raw_writeq((__force u64) val, dest);
sys/dev/mthca/mthca_doorbell.h
62
__raw_writeq((__force u64) cpu_to_be64((u64) hi << 32 | lo), dest);
sys/dev/mthca/mthca_doorbell.h
67
*(u64 *) db = *(u64 *) val;
sys/dev/mthca/mthca_eq.c
166
static inline u64 async_mask(struct mthca_dev *dev)
sys/dev/mthca/mthca_eq.c
471
u64 *dma_list = NULL;
sys/dev/mthca/mthca_eq.c
728
int mthca_map_eq_icm(struct mthca_dev *dev, u64 icm_virt)
sys/dev/mthca/mthca_main.c
384
u64 icm_size)
sys/dev/mthca/mthca_main.c
386
u64 aux_pages;
sys/dev/mthca/mthca_main.c
881
(((u64) (major) << 32) | ((u64) (minor) << 16) | (u64) (subminor))
sys/dev/mthca/mthca_main.c
884
u64 latest_fw;
sys/dev/mthca/mthca_memfree.c
356
u64 virt, int obj_size,
sys/dev/mthca/mthca_memfree.c
438
static u64 mthca_uarc_virt(struct mthca_dev *dev, struct mthca_uar *uar, int page)
sys/dev/mthca/mthca_memfree.c
446
struct mthca_user_db_table *db_tab, int index, u64 uaddr)
sys/dev/mthca/mthca_memfree.c
57
u64 uvirt;
sys/dev/mthca/mthca_memfree.h
164
struct mthca_user_db_table *db_tab, int index, u64 uaddr);
sys/dev/mthca/mthca_memfree.h
62
u64 virt;
sys/dev/mthca/mthca_memfree.h
85
u64 virt, int obj_size,
sys/dev/mthca/mthca_mr.c
255
int start_index, u64 *buffer_list, int list_len)
sys/dev/mthca/mthca_mr.c
309
return PAGE_SIZE / sizeof (u64) - 2;
sys/dev/mthca/mthca_mr.c
312
return mthca_is_memfree(dev) ? (PAGE_SIZE / sizeof (u64)) : 0x7ffffff;
sys/dev/mthca/mthca_mr.c
317
u64 *buffer_list, int list_len)
sys/dev/mthca/mthca_mr.c
319
u64 __iomem *mtts;
sys/dev/mthca/mthca_mr.c
323
start_index * sizeof (u64);
sys/dev/mthca/mthca_mr.c
331
u64 *buffer_list, int list_len)
sys/dev/mthca/mthca_mr.c
336
int s = start_index * sizeof (u64);
sys/dev/mthca/mthca_mr.c
339
BUG_ON(s / PAGE_SIZE != (s + list_len * sizeof(u64) - 1) / PAGE_SIZE);
sys/dev/mthca/mthca_mr.c
349
list_len * sizeof (u64), DMA_TO_DEVICE);
sys/dev/mthca/mthca_mr.c
355
list_len * sizeof (u64), DMA_TO_DEVICE);
sys/dev/mthca/mthca_mr.c
359
int start_index, u64 *buffer_list, int list_len)
sys/dev/mthca/mthca_mr.c
430
u64 iova, u64 total_size, u32 access, struct mthca_mr *mr)
sys/dev/mthca/mthca_mr.c
520
u64 *buffer_list, int buffer_size_shift,
sys/dev/mthca/mthca_mr.c
521
int list_len, u64 iova, u64 total_size,
sys/dev/mthca/mthca_mr.c
572
u64 mtt_seg;
sys/dev/mthca/mthca_mr.c
689
static inline int mthca_check_fmr(struct mthca_fmr *fmr, u64 *page_list,
sys/dev/mthca/mthca_mr.c
690
int list_len, u64 iova)
sys/dev/mthca/mthca_mr.c
716
int mthca_tavor_map_phys_fmr(struct ib_fmr *ibfmr, u64 *page_list,
sys/dev/mthca/mthca_mr.c
717
int list_len, u64 iova)
sys/dev/mthca/mthca_mr.c
757
int mthca_arbel_map_phys_fmr(struct ib_fmr *ibfmr, u64 *page_list,
sys/dev/mthca/mthca_mr.c
758
int list_len, u64 iova)
sys/dev/mthca/mthca_mr.c
783
list_len * sizeof(u64), DMA_TO_DEVICE);
sys/dev/mthca/mthca_mr.c
790
list_len * sizeof(u64), DMA_TO_DEVICE);
sys/dev/mthca/mthca_profile.c
119
profile[i].size = max(profile[i].size, (u64) PAGE_SIZE);
sys/dev/mthca/mthca_profile.c
70
u64 size;
sys/dev/mthca/mthca_profile.c
71
u64 start;
sys/dev/mthca/mthca_profile.c
77
u64 mem_base, mem_avail;
sys/dev/mthca/mthca_provider.c
849
static struct ib_mr *mthca_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
sys/dev/mthca/mthca_provider.c
850
u64 virt, int acc, struct ib_udata *udata)
sys/dev/mthca/mthca_provider.c
856
u64 *pages;
sys/dev/mthca/mthca_provider.c
894
pages = (u64 *) __get_free_page(GFP_KERNEL);
sys/dev/mthca/mthca_provider.h
240
u64 *wrid;
sys/dev/mthca/mthca_provider.h
283
u64 *wrid;
sys/dev/mthca/mthca_provider.h
89
u64 __iomem *mtts;
sys/dev/mthca/mthca_qp.c
1050
qp->wrid = kmalloc((qp->rq.max + qp->sq.max) * sizeof (u64),
sys/dev/mthca/mthca_qp.c
1570
u64 remote_addr, u32 rkey)
sys/dev/mthca/mthca_srq.c
159
srq->wrid = kmalloc(srq->max * sizeof (u64), GFP_KERNEL);
sys/dev/nvmf/controller/nvmft_controller.c
879
rsp.value.u64 = htole64(ctrlr->np->cap);
sys/dev/nvmf/host/nvmf.c
106
*value = le64toh(rsp->value.u64);
sys/dev/nvmf/host/nvmf_cmd.c
61
cmd.value.u64 = htole64(value);
sys/dev/nvmf/nvmf_proto.h
315
uint64_t u64;
sys/dev/nvmf/nvmf_proto.h
343
uint64_t u64;
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
508
agsabit32bit64 u64;
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
510
u64.B64 = mask;
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
513
SA_DBG4(("siDisableMSIX_V_Interrupts: VI %d U 0x%08X L 0x%08X\n",interruptVectorIndex,u64.S32[1],u64.S32[0]));
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
514
ossaHwRegWriteExt(agRoot, PCIBAR0,V_Outbound_Doorbell_Mask_Set_RegisterU,u64.S32[1]);
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
516
ossaHwRegWriteExt(agRoot, PCIBAR0,V_Outbound_Doorbell_Mask_Set_Register, u64.S32[0]);
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
609
agsabit32bit64 u64;
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
611
u64.B64 = mask;
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
617
SA_DBG4(("siDisableLegacy_V_Interrupts: VI %d U 0x%08X L 0x%08X\n",interruptVectorIndex,u64.S32[1],u64.S32[0]));
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
618
ossaHwRegWriteExt(agRoot, PCIBAR0,V_Outbound_Doorbell_Mask_Set_Register,u64.S32[1] );
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
620
ossaHwRegWriteExt(agRoot, PCIBAR0,V_Outbound_Doorbell_Mask_Set_RegisterU,u64.S32[0]);
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
973
agsabit32bit64 u64;
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
975
u64.B64 = mask;
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
983
SA_DBG4(("siReenableMSIX_V_Interrupts: VI %d U 0x%08X L 0x%08X\n",interruptVectorIndex,u64.S32[1],u64.S32[0]));
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
984
ossaHwRegWriteExt(agRoot, PCIBAR0,V_Outbound_Doorbell_Mask_Clear_RegisterU,u64.S32[1] );
sys/dev/pms/RefTisa/sallsdk/spc/saint.c
986
ossaHwRegWriteExt(agRoot, PCIBAR0,V_Outbound_Doorbell_Mask_Clear_Register,u64.S32[0]);
sys/dev/pms/freebsd/driver/ini/src/agtiapi.h
107
u64 startCmnd; // temp var to hold cmnd arrival
sys/dev/qat/include/adf_gen4vf_hw_csr_data.h
70
static inline u64
sys/dev/qat/include/adf_gen4vf_hw_csr_data.h
74
u64 addr;
sys/dev/qat/include/adf_gen4vf_hw_csr_data.h
83
addr = (u64)l_base & 0x00000000FFFFFFFFULL;
sys/dev/qat/include/adf_gen4vf_hw_csr_data.h
84
addr |= (u64)u_base << 32 & 0xFFFFFFFF00000000ULL;
sys/dev/qat/include/adf_heartbeat.h
18
u64 last_hb_check_time;
sys/dev/qat/include/common/adf_accel_devices.h
195
u64 ae_mask;
sys/dev/qat/include/common/adf_accel_devices.h
196
u64 comp_ae_mask;
sys/dev/qat/include/common/adf_accel_devices.h
260
u64 (*build_csr_ring_base_addr)(bus_addr_t addr, u32 size);
sys/dev/qat/include/common/adf_common_drv.h
154
int adf_get_fw_timestamp(struct adf_accel_dev *accel_dev, u64 *timestamp);
sys/dev/qat/include/common/adf_common_drv.h
156
u64 *suc_count,
sys/dev/qat/include/common/adf_common_drv.h
157
u64 *unsuc_count);
sys/dev/qat/include/common/adf_common_drv.h
163
u64 adf_clock_get_current_time(void);
sys/dev/qat/include/common/adf_gen2_hw_data.h
53
u64 addr;
sys/dev/qat/include/common/adf_gen4_hw_data.h
81
static inline u64
sys/dev/qat/include/common/adf_gen4_hw_data.h
85
u64 addr;
sys/dev/qat/include/common/adf_gen4_hw_data.h
96
addr = (u64)l_base & 0x00000000FFFFFFFFULL;
sys/dev/qat/include/common/adf_gen4_hw_data.h
97
addr |= (u64)u_base << 32 & 0xFFFFFFFF00000000ULL;
sys/dev/qat/include/common/icp_qat_fw_loader_handle.h
51
u64 dram_size;
sys/dev/qat/include/common/icp_qat_uclo.h
451
u64 chunk_size;
sys/dev/qat/include/common/icp_qat_uclo.h
452
u64 chunk_bus_addr;
sys/dev/qat/include/common/icp_qat_uclo.h
506
u64 offset;
sys/dev/qat/include/common/icp_qat_uclo.h
507
u64 size;
sys/dev/qat/include/common/icp_qat_uclo.h
532
u64 offset;
sys/dev/qat/include/common/icp_qat_uclo.h
533
u64 size;
sys/dev/qat/include/common/icp_qat_uclo.h
549
u64 offset;
sys/dev/qat/include/common/icp_qat_uclo.h
550
u64 size;
sys/dev/qat/include/icp_qat_fw_init_admin.h
114
u64 cfg_ptr;
sys/dev/qat/include/icp_qat_fw_init_admin.h
142
u64 opaque_data;
sys/dev/qat/include/icp_qat_fw_init_admin.h
151
u64 resrvd5;
sys/dev/qat/include/icp_qat_fw_init_admin.h
181
u64 timestamp;
sys/dev/qat/include/icp_qat_fw_init_admin.h
182
u64 resrvd11;
sys/dev/qat/include/icp_qat_fw_init_admin.h
186
u64 req_rec_count;
sys/dev/qat/include/icp_qat_fw_init_admin.h
187
u64 resp_sent_count;
sys/dev/qat/include/icp_qat_fw_init_admin.h
193
u64 resrvd12;
sys/dev/qat/include/icp_qat_fw_init_admin.h
67
u64 opaque_data;
sys/dev/qat/include/icp_qat_fw_init_admin.h
72
u64 resrvd2;
sys/dev/qat/include/icp_qat_fw_init_admin.h
80
u64 init_cfg_ptr;
sys/dev/qat/include/icp_qat_fw_init_admin.h
81
u64 resrvd5;
sys/dev/qat/include/icp_qat_fw_init_admin.h
85
u64 hb_cfg_ptr;
sys/dev/qat/qat/qat_ocf_utils.c
41
u64 delta_ms;
sys/dev/qat/qat_common/adf_clock.c
195
static inline u64
sys/dev/qat/qat_common/adf_clock.c
201
u64
sys/dev/qat/qat_common/adf_clock.c
87
u64 delta_us = 0;
sys/dev/qat/qat_common/adf_clock.c
88
u64 timestamp1 = 0;
sys/dev/qat/qat_common/adf_clock.c
89
u64 timestamp2 = 0;
sys/dev/qat/qat_common/adf_clock.c
90
u64 temp = 0;
sys/dev/qat/qat_common/adf_freebsd_admin.c
239
req.init_cfg_ptr = (u64)accel_dev->admin->aram_map_phys_addr;
sys/dev/qat/qat_common/adf_freebsd_admin.c
331
adf_get_fw_timestamp(struct adf_accel_dev *accel_dev, u64 *timestamp)
sys/dev/qat/qat_common/adf_freebsd_admin.c
352
u64 *suc_count,
sys/dev/qat/qat_common/adf_freebsd_admin.c
353
u64 *unsuc_count)
sys/dev/qat/qat_common/adf_freebsd_admin.c
464
u64 reg_val = 0;
sys/dev/qat/qat_common/adf_freebsd_admin.c
570
reg_val = (u64)admin->phy_addr;
sys/dev/qat/qat_common/adf_gen2_hw_data.c
6
static u64
sys/dev/qat/qat_common/adf_gen4_hw_data.c
10
static u64
sys/dev/qat/qat_common/adf_gen4_hw_data.c
210
adf_gen4_unpack_ssm_wdtimer(u64 value, u32 *upper, u32 *lower)
sys/dev/qat/qat_common/adf_gen4_hw_data.c
220
u64 timer_val_pke = ADF_SSM_WDT_PKE_DEFAULT_VALUE;
sys/dev/qat/qat_common/adf_gen4_hw_data.c
221
u64 timer_val = ADF_SSM_WDT_DEFAULT_VALUE;
sys/dev/qat/qat_common/adf_gen4_timer.c
17
static u64
sys/dev/qat/qat_common/adf_gen4_timer.c
20
u64 timeout = msecs_to_jiffies(timeout_val);
sys/dev/qat/qat_common/adf_gen4_timer.c
63
u64 timeout_val = adf_get_next_timeout(int_timer->timeout_val);
sys/dev/qat/qat_common/adf_gen4_timer.c
86
u64 timeout_val = adf_get_next_timeout(ADF_GEN4_INT_TIMER_VALUE_IN_MS);
sys/dev/qat/qat_common/adf_gen4vf_hw_csr_data.c
6
static u64
sys/dev/qat/qat_common/adf_heartbeat.c
19
u64 curr_hb_check_time = 0;
sys/dev/qat/qat_common/adf_transport.c
316
u64 ring_base;
sys/dev/qat/qat_common/adf_transport.c
32
adf_check_ring_alignment(u64 addr, u64 size)
sys/dev/qat/qat_common/qat_hal.c
1285
u64 *savuwords = NULL;
sys/dev/qat/qat_common/qat_hal.c
1303
savuwords = kzalloc(sizeof(u64) * MAX_EXEC_INST, GFP_KERNEL);
sys/dev/qat/qat_common/qat_hal.c
1457
u64 insts, savuword;
sys/dev/qat/qat_common/qat_hal.c
822
u64 *uword)
sys/dev/qat/qat_common/qat_hal.c
824
u64 *even_uwrods, *odd_uwords;
sys/dev/qat/qat_common/qat_uclo.c
1437
u64 bus_addr;
sys/dev/qat/qat_common/qat_uclo.c
1618
u64 virt_addr, bus_addr, virt_base;
sys/dev/qat/qat_hw/qat_c4xxx/adf_c4xxx_hw_data.c
191
c4xxx_unpack_ssm_wdtimer(u64 value, u32 *upper, u32 *lower)
sys/dev/qat/qat_hw/qat_c4xxx/adf_c4xxx_hw_data.c
212
u64 timer_val = ADF_C4XXX_SSM_WDT_64BIT_DEFAULT_VALUE;
sys/dev/qat/qat_hw/qat_c4xxx/adf_c4xxx_hw_data.c
213
u64 timer_val_pke = ADF_C4XXX_SSM_WDT_PKE_64BIT_DEFAULT_VALUE;
sys/dev/qat/qat_hw/qat_c4xxx/adf_c4xxx_misc_error_stats.c
20
u64 misc_counter;
sys/dev/qat/qat_hw/qat_c4xxx/adf_c4xxx_pke_replay_stats.c
22
u64 suc_counter = 0;
sys/dev/qat/qat_hw/qat_c4xxx/adf_c4xxx_pke_replay_stats.c
23
u64 unsuc_counter = 0;
sys/dev/qat/qat_hw/qat_c4xxx/adf_c4xxx_ras.c
959
u64 reg_val;
sys/dev/qlnx/qlnxe/bcm_osal.h
431
#define osal_uintptr_t u64
sys/dev/qlnx/qlnxe/ecore.h
113
(value) |= ((((u64)flag) & (u64)name##_MASK) << (name##_SHIFT));\
sys/dev/qlnx/qlnxe/ecore.h
151
#define U64_HI(val) ((u32)(((u64)(val)) >> 32))
sys/dev/qlnx/qlnxe/ecore.h
155
#define U64_LO(val) ((u32)(((u64)(val)) & 0xffffffff))
sys/dev/qlnx/qlnxe/ecore.h
671
u64 db_phys_addr;
sys/dev/qlnx/qlnxe/ecore.h
675
u64 reg_offset;
sys/dev/qlnx/qlnxe/ecore.h
676
u64 db_offset;
sys/dev/qlnx/qlnxe/ecore.h
894
u64 db_phys_addr;
sys/dev/qlnx/qlnxe/ecore_chain.h
250
used = (u32)(((u64)ECORE_U32_MAX + 1 +
sys/dev/qlnx/qlnxe/ecore_chain.h
251
(u64)(p_chain->u.chain32.prod_idx)) -
sys/dev/qlnx/qlnxe/ecore_chain.h
252
(u64)p_chain->u.chain32.cons_idx);
sys/dev/qlnx/qlnxe/ecore_chain.h
254
used -= (((u64)ECORE_U32_MAX + 1) / p_chain->elem_per_page +
sys/dev/qlnx/qlnxe/ecore_cxt.c
1022
p_mngr->first_free = (u64)p_mngr->t2[0].p_phys;
sys/dev/qlnx/qlnxe/ecore_cxt.c
1025
p_mngr->last_free = (u64)p_t2->p_phys +
sys/dev/qlnx/qlnxe/ecore_cxt.c
1032
u64 p_ent_phys = (u64)p_mngr->t2[i].p_phys, val;
sys/dev/qlnx/qlnxe/ecore_cxt.c
1042
val = (u64)p_mngr->t2[i + 1].p_phys;
sys/dev/qlnx/qlnxe/ecore_cxt.c
106
u64 next;
sys/dev/qlnx/qlnxe/ecore_cxt.c
1784
u64 ilt_hw_entry = 0;
sys/dev/qlnx/qlnxe/ecore_cxt.c
1856
u64 cfg_word;
sys/dev/qlnx/qlnxe/ecore_cxt.c
1904
SET_FIELD(cfg_word, TM_CFG_TID_PRE_SCAN_ROWS, (u64)0);
sys/dev/qlnx/qlnxe/ecore_cxt.c
1920
SET_FIELD(cfg_word, TM_CFG_TID_PRE_SCAN_ROWS, (u64)0);
sys/dev/qlnx/qlnxe/ecore_cxt.c
231
u64 first_free;
sys/dev/qlnx/qlnxe/ecore_cxt.c
232
u64 last_free;
sys/dev/qlnx/qlnxe/ecore_cxt.c
2403
u64 ilt_hw_entry;
sys/dev/qlnx/qlnxe/ecore_cxt.c
2507
ecore_dmae_host2grc(p_hwfn, p_ptt, (u64)(osal_uintptr_t)&ilt_hw_entry,
sys/dev/qlnx/qlnxe/ecore_cxt.c
2556
u64 ilt_hw_entry = 0;
sys/dev/qlnx/qlnxe/ecore_cxt.c
2620
(u64)(osal_uintptr_t)&ilt_hw_entry,
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
2545
u32 *pci_buf_start = (u32 *)(osal_uintptr_t)*((u64 *)virt_addr_lo);
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
2628
pci_buf = (u32 *)(osal_uintptr_t)*((u64 *)virt_addr_lo);
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
3000
if (!ecore_dmae_grc2host(p_hwfn, p_ptt, DWORDS_TO_BYTES(addr), (u64)(osal_uintptr_t)(dump_buf), len, OSAL_NULL))
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
5012
dev_data->bus.pci_buf.virt_addr.lo = (u32)((u64)(osal_uintptr_t)pci_buf);
sys/dev/qlnx/qlnxe/ecore_dbg_fw_funcs.c
5013
dev_data->bus.pci_buf.virt_addr.hi = (u32)((u64)(osal_uintptr_t)pci_buf >> 32);
sys/dev/qlnx/qlnxe/ecore_dev.c
1022
(u64)(osal_uintptr_t)&p_details->value,
sys/dev/qlnx/qlnxe/ecore_dev.c
1029
(u64)(osal_uintptr_t)&p_details->value,
sys/dev/qlnx/qlnxe/ecore_dev.c
1084
filter_details.value = ((u64)high << 32) | low;
sys/dev/qlnx/qlnxe/ecore_dev.c
3055
u64 data,
sys/dev/qlnx/qlnxe/ecore_dev.c
3107
0x01000000800ULL | (0xa << 12) | ((u64)1 << 38),
sys/dev/qlnx/qlnxe/ecore_dev.c
343
(unsigned long long)*(u64 *)(db_entry->db_data));
sys/dev/qlnx/qlnxe/ecore_dev.c
362
DIRECT_REG_WR64(p_hwfn, db_entry->db_addr, *(u64 *)(db_entry->db_data));
sys/dev/qlnx/qlnxe/ecore_dev.c
5840
void OSAL_IOMEM *p_doorbells, u64 db_phys_addr,
sys/dev/qlnx/qlnxe/ecore_dev.c
6012
u64 db_phys_addr;
sys/dev/qlnx/qlnxe/ecore_dev.c
6178
u64 chain_size = ELEMS_PER_PAGE(elem_size) * page_cnt;
sys/dev/qlnx/qlnxe/ecore_dev.c
982
u64 value;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
364
u64 no_buff_discards;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
365
u64 packet_too_big_discard;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
366
u64 ttl0_discard;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
367
u64 rx_ucast_bytes;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
368
u64 rx_mcast_bytes;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
369
u64 rx_bcast_bytes;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
370
u64 rx_ucast_pkts;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
371
u64 rx_mcast_pkts;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
372
u64 rx_bcast_pkts;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
373
u64 mftag_filter_discards;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
374
u64 mac_filter_discards;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
375
u64 tx_ucast_bytes;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
376
u64 tx_mcast_bytes;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
377
u64 tx_bcast_bytes;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
378
u64 tx_ucast_pkts;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
379
u64 tx_mcast_pkts;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
380
u64 tx_bcast_pkts;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
381
u64 tx_err_drop_pkts;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
382
u64 tpa_coalesced_pkts;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
383
u64 tpa_coalesced_events;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
384
u64 tpa_aborts_num;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
385
u64 tpa_not_coalesced_pkts;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
386
u64 tpa_coalesced_bytes;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
389
u64 rx_64_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
390
u64 rx_65_to_127_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
391
u64 rx_128_to_255_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
392
u64 rx_256_to_511_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
393
u64 rx_512_to_1023_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
394
u64 rx_1024_to_1518_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
395
u64 rx_crc_errors;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
396
u64 rx_mac_crtl_frames;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
397
u64 rx_pause_frames;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
398
u64 rx_pfc_frames;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
399
u64 rx_align_errors;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
400
u64 rx_carrier_errors;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
401
u64 rx_oversize_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
402
u64 rx_jabbers;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
403
u64 rx_undersize_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
404
u64 rx_fragments;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
405
u64 tx_64_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
406
u64 tx_65_to_127_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
407
u64 tx_128_to_255_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
408
u64 tx_256_to_511_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
409
u64 tx_512_to_1023_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
410
u64 tx_1024_to_1518_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
411
u64 tx_pause_frames;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
412
u64 tx_pfc_frames;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
413
u64 brb_truncates;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
414
u64 brb_discards;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
415
u64 rx_mac_bytes;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
416
u64 rx_mac_uc_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
417
u64 rx_mac_mc_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
418
u64 rx_mac_bc_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
419
u64 rx_mac_frames_ok;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
420
u64 tx_mac_bytes;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
421
u64 tx_mac_uc_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
422
u64 tx_mac_mc_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
423
u64 tx_mac_bc_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
424
u64 tx_mac_ctrl_frames;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
425
u64 link_change_count;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
429
u64 rx_1519_to_1522_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
430
u64 rx_1519_to_2047_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
431
u64 rx_2048_to_4095_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
432
u64 rx_4096_to_9216_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
433
u64 rx_9217_to_16383_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
434
u64 tx_1519_to_2047_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
435
u64 tx_2048_to_4095_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
436
u64 tx_4096_to_9216_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
437
u64 tx_9217_to_16383_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
438
u64 tx_lpi_entry_count;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
439
u64 tx_total_collisions;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
443
u64 rx_1519_to_max_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
444
u64 tx_1519_to_max_byte_packets;
sys/dev/qlnx/qlnxe/ecore_dev_api.h
502
u64 source_addr,
sys/dev/qlnx/qlnxe/ecore_fcoe_api.h
82
u64 fcoe_rx_byte_cnt;
sys/dev/qlnx/qlnxe/ecore_fcoe_api.h
83
u64 fcoe_rx_data_pkt_cnt;
sys/dev/qlnx/qlnxe/ecore_fcoe_api.h
84
u64 fcoe_rx_xfer_pkt_cnt;
sys/dev/qlnx/qlnxe/ecore_fcoe_api.h
85
u64 fcoe_rx_other_pkt_cnt;
sys/dev/qlnx/qlnxe/ecore_fcoe_api.h
92
u64 fcoe_tx_byte_cnt;
sys/dev/qlnx/qlnxe/ecore_fcoe_api.h
93
u64 fcoe_tx_data_pkt_cnt;
sys/dev/qlnx/qlnxe/ecore_fcoe_api.h
94
u64 fcoe_tx_xfer_pkt_cnt;
sys/dev/qlnx/qlnxe/ecore_fcoe_api.h
95
u64 fcoe_tx_other_pkt_cnt;
sys/dev/qlnx/qlnxe/ecore_hw.c
1009
u64 source_addr,
sys/dev/qlnx/qlnxe/ecore_hw.c
826
u64 src_addr,
sys/dev/qlnx/qlnxe/ecore_hw.c
827
u64 dst_addr,
sys/dev/qlnx/qlnxe/ecore_hw.c
911
u64 src_addr, u64 dst_addr,
sys/dev/qlnx/qlnxe/ecore_hw.c
919
u64 src_addr_split = 0, dst_addr_split = 0;
sys/dev/qlnx/qlnxe/ecore_init_fw_funcs.c
1441
#define RAM_LINE_SIZE sizeof(u64)
sys/dev/qlnx/qlnxe/ecore_init_fw_funcs.c
200
u64 voq_bit_mask = ((u64)1 << num_ext_voqs) - 1;
sys/dev/qlnx/qlnxe/ecore_int.c
1541
u64 phys_addr = (u64)sb_phys;
sys/dev/qlnx/qlnxe/ecore_int.c
1543
ecore_dmae_host2grc(p_hwfn, p_ptt, (u64)(osal_uintptr_t)&phys_addr,
sys/dev/qlnx/qlnxe/ecore_int.c
1545
igu_sb_id * sizeof(u64), 2,
sys/dev/qlnx/qlnxe/ecore_int.c
1547
ecore_dmae_host2grc(p_hwfn, p_ptt, (u64)(osal_uintptr_t)&sb_entry,
sys/dev/qlnx/qlnxe/ecore_int.c
1549
igu_sb_id * sizeof(u64), 2,
sys/dev/qlnx/qlnxe/ecore_int.c
2528
u64 ecore_int_igu_read_sisr_reg(struct ecore_hwfn *p_hwfn)
sys/dev/qlnx/qlnxe/ecore_int.c
2531
u64 intr_status = 0;
sys/dev/qlnx/qlnxe/ecore_int.c
2539
intr_status = ((u64)intr_status_hi << 32) + (u64)intr_status_lo;
sys/dev/qlnx/qlnxe/ecore_int.c
2644
sb_id * sizeof(u64),
sys/dev/qlnx/qlnxe/ecore_int.c
2645
(u64)(osal_uintptr_t)&sb_entry, 2,
sys/dev/qlnx/qlnxe/ecore_int.c
2658
(u64)(osal_uintptr_t)&sb_entry,
sys/dev/qlnx/qlnxe/ecore_int.c
2659
CAU_REG_SB_VAR_MEMORY + sb_id * sizeof(u64), 2,
sys/dev/qlnx/qlnxe/ecore_int_api.h
237
u64 ecore_int_igu_read_sisr_reg(struct ecore_hwfn *p_hwfn);
sys/dev/qlnx/qlnxe/ecore_iov_api.h
367
u64 *events);
sys/dev/qlnx/qlnxe/ecore_iov_api.h
784
static OSAL_INLINE void ecore_iov_pf_get_and_clear_pending_events(struct ecore_hwfn OSAL_UNUSED *p_hwfn, u64 OSAL_UNUSED *events) {}
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
39
u64 iscsi_rx_bytes_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
40
u64 iscsi_rx_packet_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
41
u64 iscsi_rx_new_ooo_isle_events_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
46
u64 iscsi_rx_dropped_pdus_task_not_valid;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
48
u64 iscsi_rx_data_pdu_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
49
u64 iscsi_rx_r2t_pdu_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
50
u64 iscsi_rx_total_pdu_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
52
u64 iscsi_tx_go_to_slow_start_event_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
53
u64 iscsi_tx_fast_retransmit_event_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
55
u64 iscsi_tx_data_pdu_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
56
u64 iscsi_tx_r2t_pdu_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
57
u64 iscsi_tx_total_pdu_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
59
u64 iscsi_tx_bytes_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
60
u64 iscsi_tx_packet_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
62
u64 iscsi_rx_tcp_payload_bytes_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
63
u64 iscsi_rx_tcp_pkt_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
64
u64 iscsi_rx_pure_ack_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
66
u64 iscsi_rx_dup_ack_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
68
u64 iscsi_tx_pure_ack_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
69
u64 iscsi_tx_delayed_ack_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
71
u64 iscsi_tx_tcp_payload_bytes_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
72
u64 iscsi_tx_tcp_pkt_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
77
u64 iscsi_tcp_tx_packets_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
78
u64 iscsi_tcp_tx_bytes_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
79
u64 iscsi_tcp_tx_rxmit_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
80
u64 iscsi_tcp_rx_packets_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
81
u64 iscsi_tcp_rx_bytes_cnt;
sys/dev/qlnx/qlnxe/ecore_iscsi_api.h
82
u64 iscsi_tcp_rx_dup_ack_cnt;
sys/dev/qlnx/qlnxe/ecore_iwarp.c
109
dev->max_qp = OSAL_MIN_T(u64,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2475
u64 opaque_data;
sys/dev/qlnx/qlnxe/ecore_iwarp.c
3311
n_ooo_bufs = (u32)(((u64)ECORE_MAX_OOO *
sys/dev/qlnx/qlnxe/ecore_iwarp.h
124
u64 unalign_rx_comp;
sys/dev/qlnx/qlnxe/ecore_l2.c
2089
for (i = 0; i < sizeof(struct ecore_eth_stats) / sizeof(u64); i++)
sys/dev/qlnx/qlnxe/ecore_l2.c
2090
((u64 *)stats)[i] -= ((u64 *)p_dev->reset_stats)[i];
sys/dev/qlnx/qlnxe/ecore_l2.c
2256
p_cid->sb_igu_id * sizeof(u64),
sys/dev/qlnx/qlnxe/ecore_l2.c
2257
(u64)(osal_uintptr_t)&sb_entry, 2,
sys/dev/qlnx/qlnxe/ecore_l2.c
2292
p_cid->sb_igu_id * sizeof(u64),
sys/dev/qlnx/qlnxe/ecore_l2.c
2293
(u64)(osal_uintptr_t)&sb_entry, 2,
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
69
u64 gsi_invalid_hdr;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
70
u64 gsi_invalid_pkt_length;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
71
u64 gsi_unsupported_pkt_typ;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
72
u64 gsi_crcchksm_error;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
74
u64 packet_too_big_discard;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
75
u64 no_buff_discard;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
77
u64 rcv_ucast_bytes;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
78
u64 rcv_mcast_bytes;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
79
u64 rcv_bcast_bytes;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
80
u64 rcv_ucast_pkts;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
81
u64 rcv_mcast_pkts;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
82
u64 rcv_bcast_pkts;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
84
u64 sent_ucast_bytes;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
85
u64 sent_mcast_bytes;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
86
u64 sent_bcast_bytes;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
87
u64 sent_ucast_pkts;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
88
u64 sent_mcast_pkts;
sys/dev/qlnx/qlnxe/ecore_ll2_api.h
89
u64 sent_bcast_pkts;
sys/dev/qlnx/qlnxe/ecore_mcp.c
2694
info->wwn_port = (u64)shmem_info.fcoe_wwn_port_name_lower |
sys/dev/qlnx/qlnxe/ecore_mcp.c
2695
(((u64)shmem_info.fcoe_wwn_port_name_upper) << 32);
sys/dev/qlnx/qlnxe/ecore_mcp.c
2696
info->wwn_node = (u64)shmem_info.fcoe_wwn_node_name_lower |
sys/dev/qlnx/qlnxe/ecore_mcp.c
2697
(((u64)shmem_info.fcoe_wwn_node_name_upper) << 32);
sys/dev/qlnx/qlnxe/ecore_mcp.c
3996
u64 *num_events)
sys/dev/qlnx/qlnxe/ecore_mcp.c
947
SET_MFW_FIELD(load_req.misc0, (u64)LOAD_REQ_FORCE, p_in_params->force_cmd);
sys/dev/qlnx/qlnxe/ecore_mcp.c
948
SET_MFW_FIELD(load_req.misc0, (u64)LOAD_REQ_FLAGS0,
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
1274
u64 *num_events);
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
135
u64 wwn_port;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
136
u64 wwn_node;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
158
u64 ucast_rx_pkts;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
159
u64 ucast_tx_pkts;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
166
u64 rx_pkts;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
167
u64 tx_pkts;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
173
u64 rx_pdus;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
174
u64 tx_pdus;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
175
u64 rx_bytes;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
176
u64 tx_bytes;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
180
u64 rx_pkts;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
181
u64 tx_pkts;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
182
u64 rx_bytes;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
183
u64 tx_byts;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
285
u64 rx_frames;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
287
u64 rx_bytes;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
289
u64 tx_frames;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
291
u64 tx_bytes;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
390
u64 rx_bcast;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
392
u64 tx_bcast;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
398
u64 fcoe_rx_frames;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
400
u64 fcoe_rx_bytes;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
402
u64 fcoe_tx_frames;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
404
u64 fcoe_tx_bytes;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
551
u64 rx_frames;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
553
u64 rx_bytes;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
555
u64 tx_frames;
sys/dev/qlnx/qlnxe/ecore_mcp_api.h
557
u64 tx_bytes;
sys/dev/qlnx/qlnxe/ecore_proto_if.h
59
u64 glbl_q_params_addr;
sys/dev/qlnx/qlnxe/ecore_proto_if.h
60
u64 bdq_pbl_base_addr[2];
sys/dev/qlnx/qlnxe/ecore_proto_if.h
91
u64 glbl_q_params_addr;
sys/dev/qlnx/qlnxe/ecore_proto_if.h
92
u64 bdq_pbl_base_addr[3];
sys/dev/qlnx/qlnxe/ecore_rdma.c
1098
out_params->dpi_addr = (u64)(osal_int_ptr_t)((u8 OSAL_IOMEM*)p_hwfn->doorbells +
sys/dev/qlnx/qlnxe/ecore_rdma.c
451
u64 *pmap;
sys/dev/qlnx/qlnxe/ecore_rdma.c
467
pmap = (u64 *)bmap->bitmap;
sys/dev/qlnx/qlnxe/ecore_rdma.c
649
dev->max_qp = OSAL_MIN_T(u64, ROCE_MAX_QPS,
sys/dev/qlnx/qlnxe/ecore_rdma.c
729
port->max_msg_size = OSAL_MIN_T(u64,
sys/dev/qlnx/qlnxe/ecore_rdma.c
732
((u64)1 << 31));
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
105
u64 fw_ver;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
107
u64 node_guid; /* node GUID */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
108
u64 sys_image_guid; /* System image GUID */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
133
u64 max_dev_resp_rd_atomic_resc;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
138
u64 max_mr_size; /* Size (in bytes) of the largest contiguous memory
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
145
u64 max_mr_mw_fmr_size;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
205
u64 page_size_caps;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
225
u64 max_msg_size;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
239
u64 pbl_ptr; /* Address to the first entry of the queue PBL */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
348
u64 dpi_addr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
349
u64 dpi_phys_addr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
367
u64 qwords[2];
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
383
u64 pbl_ptr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
390
u64 length; /* only lower 40 bits are valid */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
391
u64 vaddr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
398
u64 dif_error_addr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
399
u64 dif_runt_addr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
410
u64 pbl_ptr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
420
u64 pbl_base_addr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
421
u64 prod_pair_addr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
454
u64 pbl_ptr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
476
u64 sq_pbl_ptr; /* Not relevant for iWARP */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
480
u64 rq_pbl_ptr; /* Not relevant for iWARP */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
623
u64 pbl_ptr;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
628
u64 sent_bytes;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
629
u64 sent_pkts;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
630
u64 rcv_bytes;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
631
u64 rcv_pkts;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
634
u64 icrc_errors; /* wraps at 32 bits */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
635
u64 retransmit_events; /* wraps at 32 bits */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
636
u64 silent_drops; /* wraps at 16 bits */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
637
u64 rnr_nacks_sent; /* wraps at 16 bits */
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
640
u64 ecn_pkt_rcv;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
641
u64 cnp_pkt_rcv;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
642
u64 cnp_pkt_sent;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
645
u64 iwarp_tx_fast_rxmit_cnt;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
646
u64 iwarp_tx_slow_start_cnt;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
647
u64 unalign_rx_comp;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
651
u64 pd_count;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
652
u64 max_pd;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
653
u64 dpi_count;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
654
u64 max_dpi;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
655
u64 cq_count;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
656
u64 max_cq;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
657
u64 qp_count;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
658
u64 max_qp;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
659
u64 tid_count;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
660
u64 max_tid;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
661
u64 srq_count;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
662
u64 max_srq;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
663
u64 xrc_srq_count;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
664
u64 max_xrc_srq;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
665
u64 xrcd_count;
sys/dev/qlnx/qlnxe/ecore_rdma_api.h
666
u64 max_xrcd;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
122
u64 max_dev_resp_rd_atomic_resc;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
127
u64 max_mr_size; /* Size (in bytes) of the largest contiguous memory
sys/dev/qlnx/qlnxe/ecore_roce_api.h
134
u64 max_mr_mw_fmr_size;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
194
u64 page_size_caps;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
214
u64 max_msg_size;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
228
u64 pbl_ptr; /* Address to the first entry of the queue PBL */
sys/dev/qlnx/qlnxe/ecore_roce_api.h
303
u64 dpi_addr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
304
u64 dpi_phys_addr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
317
u64 pbl_ptr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
332
u64 pbl_ptr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
360
u64 sq_pbl_ptr; /* Not relevant for iWARP */
sys/dev/qlnx/qlnxe/ecore_roce_api.h
364
u64 rq_pbl_ptr; /* Not relevant for iWARP */
sys/dev/qlnx/qlnxe/ecore_roce_api.h
398
u64 qwords[2];
sys/dev/qlnx/qlnxe/ecore_roce_api.h
507
u64 pbl_ptr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
514
u64 length; /* only lower 40 bits are valid */
sys/dev/qlnx/qlnxe/ecore_roce_api.h
515
u64 vaddr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
522
u64 dif_error_addr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
523
u64 dif_runt_addr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
527
u64 pbl_base_addr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
528
u64 prod_pair_addr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
559
u64 pbl_ptr;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
563
u64 sent_bytes;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
564
u64 sent_pkts;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
565
u64 rcv_bytes;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
566
u64 rcv_pkts;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
569
u64 icrc_errors; /* wraps at 32 bits */
sys/dev/qlnx/qlnxe/ecore_roce_api.h
570
u64 retransmit_events; /* wraps at 32 bits */
sys/dev/qlnx/qlnxe/ecore_roce_api.h
571
u64 silent_drops; /* wraps at 16 bits */
sys/dev/qlnx/qlnxe/ecore_roce_api.h
572
u64 rnr_nacks_sent; /* wraps at 16 bits */
sys/dev/qlnx/qlnxe/ecore_roce_api.h
575
u64 iwarp_tx_fast_rxmit_cnt;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
576
u64 iwarp_tx_slow_start_cnt;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
577
u64 unalign_rx_comp;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
581
u64 pd_count;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
582
u64 max_pd;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
583
u64 dpi_count;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
584
u64 max_dpi;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
585
u64 cq_count;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
586
u64 max_cq;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
587
u64 qp_count;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
588
u64 max_qp;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
589
u64 tid_count;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
590
u64 max_tid;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
94
u64 fw_ver;
sys/dev/qlnx/qlnxe/ecore_roce_api.h
96
u64 node_guid; /* node GUID */
sys/dev/qlnx/qlnxe/ecore_roce_api.h
97
u64 sys_image_guid; /* System image GUID */
sys/dev/qlnx/qlnxe/ecore_spq.h
118
u64 *done_addr;
sys/dev/qlnx/qlnxe/ecore_spq.h
123
u64 done;
sys/dev/qlnx/qlnxe/ecore_sriov.c
1013
(u64)(osal_uintptr_t)&sb_entry,
sys/dev/qlnx/qlnxe/ecore_sriov.c
1015
p_block->igu_sb_id * sizeof(u64), 2,
sys/dev/qlnx/qlnxe/ecore_sriov.c
1445
ecore_dmae_host2host(p_hwfn, p_ptt, mbx->reply_phys + sizeof(u64),
sys/dev/qlnx/qlnxe/ecore_sriov.c
1447
sizeof(u64),
sys/dev/qlnx/qlnxe/ecore_sriov.c
1448
(sizeof(union pfvf_tlvs) - sizeof(u64)) / 4 ,
sys/dev/qlnx/qlnxe/ecore_sriov.c
1462
sizeof(u64) / 4, &params);
sys/dev/qlnx/qlnxe/ecore_sriov.c
1988
u64 events)
sys/dev/qlnx/qlnxe/ecore_sriov.c
2004
u64 events)
sys/dev/qlnx/qlnxe/ecore_sriov.c
2132
u64 *p_bitmap;
sys/dev/qlnx/qlnxe/ecore_sriov.c
4068
u64 *p_flr = p_hwfn->pf_iov_info->pending_flr;
sys/dev/qlnx/qlnxe/ecore_sriov.c
4268
u64 *events)
sys/dev/qlnx/qlnxe/ecore_sriov.c
4272
OSAL_MEM_ZERO(events, sizeof(u64) * ECORE_VF_ARRAY_LENGTH);
sys/dev/qlnx/qlnxe/ecore_sriov.c
4311
p_vf->vf_mbx.pending_req = (((u64)vf_msg->hi) << 32) |
sys/dev/qlnx/qlnxe/ecore_sriov.c
4428
u64 feature;
sys/dev/qlnx/qlnxe/ecore_sriov.c
4459
u64 feature;
sys/dev/qlnx/qlnxe/ecore_sriov.c
4493
u64 feature;
sys/dev/qlnx/qlnxe/ecore_sriov.c
4549
u64 feature;
sys/dev/qlnx/qlnxe/ecore_sriov.h
189
u64 configured_features;
sys/dev/qlnx/qlnxe/ecore_sriov.h
199
u64 pending_flr[ECORE_VF_ARRAY_LENGTH];
sys/dev/qlnx/qlnxe/ecore_sriov.h
205
u64 active_vfs[ECORE_VF_ARRAY_LENGTH];
sys/dev/qlnx/qlnxe/ecore_utils.h
53
#define HILO_64(hi, lo) HILO_GEN(hi, lo, u64)
sys/dev/qlnx/qlnxe/ecore_vf.c
80
(u64)p_iov->pf2vf_reply_phys;
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
133
u64 capabilities;
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
148
u64 bulletin_addr;
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
195
u64 capabilities;
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
284
u64 rxq_addr;
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
285
u64 deprecated_sge_addr;
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
286
u64 cqe_pbl_addr;
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
304
u64 pbl_addr;
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
353
u64 deprecated_sge_addr[PFVF_MAX_QUEUES_PER_VF];
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
382
u64 sb_addr[PFVF_MAX_SBS_PER_VF];
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
428
u64 bins[4];
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
429
u64 obsolete_bins[4];
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
614
u64 valid_bitmap;
sys/dev/qlnx/qlnxe/ecore_vfpf_if.h
84
u64 reply_address;
sys/dev/qlnx/qlnxe/mcp_private.h
151
u64 ecc_events;
sys/dev/qlnx/qlnxe/mcp_private.h
170
u64 ecc_events;
sys/dev/qlnx/qlnxe/mcp_public.h
1038
u64 ucast_rx_pkts;
sys/dev/qlnx/qlnxe/mcp_public.h
1039
u64 ucast_tx_pkts;
sys/dev/qlnx/qlnxe/mcp_public.h
1045
u64 rx_pkts;
sys/dev/qlnx/qlnxe/mcp_public.h
1046
u64 tx_pkts;
sys/dev/qlnx/qlnxe/mcp_public.h
1052
u64 rx_pdus;
sys/dev/qlnx/qlnxe/mcp_public.h
1053
u64 tx_pdus;
sys/dev/qlnx/qlnxe/mcp_public.h
1054
u64 rx_bytes;
sys/dev/qlnx/qlnxe/mcp_public.h
1055
u64 tx_bytes;
sys/dev/qlnx/qlnxe/mcp_public.h
1059
u64 rx_pkts;
sys/dev/qlnx/qlnxe/mcp_public.h
1060
u64 tx_pkts;
sys/dev/qlnx/qlnxe/mcp_public.h
1061
u64 rx_bytes;
sys/dev/qlnx/qlnxe/mcp_public.h
1062
u64 tx_bytes;
sys/dev/qlnx/qlnxe/mcp_public.h
121
u64 r64; /* 0x00 (Offset 0x00 ) RX 64-byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
122
u64 r127; /* 0x01 (Offset 0x08 ) RX 65 to 127 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
123
u64 r255; /* 0x02 (Offset 0x10 ) RX 128 to 255 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
124
u64 r511; /* 0x03 (Offset 0x18 ) RX 256 to 511 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
125
u64 r1023; /* 0x04 (Offset 0x20 ) RX 512 to 1023 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
126
u64 r1518; /* 0x05 (Offset 0x28 ) RX 1024 to 1518 byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
129
u64 r1522; /* 0x06 (Offset 0x30 ) RX 1519 to 1522 byte VLAN-tagged frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
130
u64 r2047; /* 0x07 (Offset 0x38 ) RX 1519 to 2047 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
131
u64 r4095; /* 0x08 (Offset 0x40 ) RX 2048 to 4095 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
132
u64 r9216; /* 0x09 (Offset 0x48 ) RX 4096 to 9216 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
133
u64 r16383; /* 0x0A (Offset 0x50 ) RX 9217 to 16383 byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
137
u64 unused1;
sys/dev/qlnx/qlnxe/mcp_public.h
138
u64 r1519_to_max; /* 0x07 (Offset 0x38 ) RX 1519 to max byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
139
u64 unused2;
sys/dev/qlnx/qlnxe/mcp_public.h
140
u64 unused3;
sys/dev/qlnx/qlnxe/mcp_public.h
141
u64 unused4;
sys/dev/qlnx/qlnxe/mcp_public.h
144
u64 rfcs; /* 0x0F (Offset 0x58 ) RX FCS error frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
145
u64 rxcf; /* 0x10 (Offset 0x60 ) RX control frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
146
u64 rxpf; /* 0x11 (Offset 0x68 ) RX pause frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
147
u64 rxpp; /* 0x12 (Offset 0x70 ) RX PFC frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
148
u64 raln; /* 0x16 (Offset 0x78 ) RX alignment error counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
149
u64 rfcr; /* 0x19 (Offset 0x80 ) RX false carrier counter */
sys/dev/qlnx/qlnxe/mcp_public.h
150
u64 rovr; /* 0x1A (Offset 0x88 ) RX oversized frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
151
u64 rjbr; /* 0x1B (Offset 0x90 ) RX jabber frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
152
u64 rund; /* 0x34 (Offset 0x98 ) RX undersized frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
153
u64 rfrg; /* 0x35 (Offset 0xa0 ) RX fragment counter */
sys/dev/qlnx/qlnxe/mcp_public.h
154
u64 t64; /* 0x40 (Offset 0xa8 ) TX 64-byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
155
u64 t127; /* 0x41 (Offset 0xb0 ) TX 65 to 127 byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
156
u64 t255; /* 0x42 (Offset 0xb8 ) TX 128 to 255 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
157
u64 t511; /* 0x43 (Offset 0xc0 ) TX 256 to 511 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
158
u64 t1023; /* 0x44 (Offset 0xc8 ) TX 512 to 1023 byte frame counter*/
sys/dev/qlnx/qlnxe/mcp_public.h
159
u64 t1518; /* 0x45 (Offset 0xd0 ) TX 1024 to 1518 byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
162
u64 t2047; /* 0x47 (Offset 0xd8 ) TX 1519 to 2047 byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
163
u64 t4095; /* 0x48 (Offset 0xe0 ) TX 2048 to 4095 byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
164
u64 t9216; /* 0x49 (Offset 0xe8 ) TX 4096 to 9216 byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
165
u64 t16383; /* 0x4A (Offset 0xf0 ) TX 9217 to 16383 byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
168
u64 t1519_to_max; /* 0x47 (Offset 0xd8 ) TX 1519 to max byte frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
169
u64 unused6;
sys/dev/qlnx/qlnxe/mcp_public.h
170
u64 unused7;
sys/dev/qlnx/qlnxe/mcp_public.h
171
u64 unused8;
sys/dev/qlnx/qlnxe/mcp_public.h
174
u64 txpf; /* 0x50 (Offset 0xf8 ) TX pause frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
175
u64 txpp; /* 0x51 (Offset 0x100) TX PFC frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
178
u64 tlpiec; /* 0x6C (Offset 0x108) Transmit Logical Type LLFC message counter */
sys/dev/qlnx/qlnxe/mcp_public.h
179
u64 tncl; /* 0x6E (Offset 0x110) Transmit Total Collision Counter */
sys/dev/qlnx/qlnxe/mcp_public.h
182
u64 unused9;
sys/dev/qlnx/qlnxe/mcp_public.h
183
u64 unused10;
sys/dev/qlnx/qlnxe/mcp_public.h
186
u64 rbyte; /* 0x3d (Offset 0x118) RX byte counter */
sys/dev/qlnx/qlnxe/mcp_public.h
187
u64 rxuca; /* 0x0c (Offset 0x120) RX UC frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
188
u64 rxmca; /* 0x0d (Offset 0x128) RX MC frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
189
u64 rxbca; /* 0x0e (Offset 0x130) RX BC frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
190
u64 rxpok; /* 0x22 (Offset 0x138) RX good frame (good CRC, not oversized, no ERROR) */
sys/dev/qlnx/qlnxe/mcp_public.h
191
u64 tbyte; /* 0x6f (Offset 0x140) TX byte counter */
sys/dev/qlnx/qlnxe/mcp_public.h
192
u64 txuca; /* 0x4d (Offset 0x148) TX UC frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
193
u64 txmca; /* 0x4e (Offset 0x150) TX MC frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
194
u64 txbca; /* 0x4f (Offset 0x158) TX BC frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
195
u64 txcf; /* 0x54 (Offset 0x160) TX control frame counter */
sys/dev/qlnx/qlnxe/mcp_public.h
200
u64 brb_truncate[8];
sys/dev/qlnx/qlnxe/mcp_public.h
201
u64 brb_discard[8];
sys/dev/qlnx/qlnxe/qlnx_def.h
60
#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
sys/dev/qlnx/qlnxr/qlnxr_def.h
177
sizeof(u64)) - 1) /* 64k -1 */
sys/dev/qlnx/qlnxr/qlnxr_def.h
194
#define convert_to_64bit(lo, hi) ((u64)hi << 32 | (u64)lo)
sys/dev/qlnx/qlnxr/qlnxr_def.h
235
u64 n_comp;
sys/dev/qlnx/qlnxr/qlnxr_def.h
248
u64 fw_ver;
sys/dev/qlnx/qlnxr/qlnxr_def.h
250
u64 node_guid; /* node GUID */
sys/dev/qlnx/qlnxr/qlnxr_def.h
251
u64 sys_image_guid; /* System image GUID */
sys/dev/qlnx/qlnxr/qlnxr_def.h
273
u64 max_dev_resp_rd_atomic_resc;
sys/dev/qlnx/qlnxr/qlnxr_def.h
277
u64 max_mr_size; /* Size (in bytes) of largest contiguous memory
sys/dev/qlnx/qlnxr/qlnxr_def.h
284
u64 max_mr_mw_fmr_size;
sys/dev/qlnx/qlnxr/qlnxr_def.h
347
u64 page_size_caps;
sys/dev/qlnx/qlnxr/qlnxr_def.h
427
u64 dpi_addr;
sys/dev/qlnx/qlnxr/qlnxr_def.h
428
u64 dpi_phys_addr;
sys/dev/qlnx/qlnxr/qlnxr_def.h
486
u64 raw;
sys/dev/qlnx/qlnxr/qlnxr_def.h
507
u64 buf_addr;
sys/dev/qlnx/qlnxr/qlnxr_def.h
554
u64 p_phys_addr_tbl;
sys/dev/qlnx/qlnxr/qlnxr_def.h
583
u64 p_phys_addr_tbl;
sys/dev/qlnx/qlnxr/qlnxr_def.h
660
u64 wr_id;
sys/dev/qlnx/qlnxr/qlnxr_def.h
672
u64 wr_id;
sys/dev/qlnx/qlnxr/qlnxr_def.h
706
u64 *pages;
sys/dev/qlnx/qlnxr/qlnxr_def.h
709
u64 *iova_start; /* valid only for kernel_mr */
sys/dev/qlnx/qlnxr/qlnxr_def.h
714
u64 phy_addr;
sys/dev/qlnx/qlnxr/qlnxr_os.c
292
#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
sys/dev/qlnx/qlnxr/qlnxr_os.c
547
u64 roceHandle64 = ((u64)async_handle->hi << 32) + async_handle->lo;
sys/dev/qlnx/qlnxr/qlnxr_os.c
718
attr->max_cqe = min_t(u64, ecore_attr->max_cqe, QLNXR_MAX_CQES);
sys/dev/qlnx/qlnxr/qlnxr_os.c
773
cur_pbl->pbl_ptr = (u64)p_phys_table;
sys/dev/qlnx/qlnxr/qlnxr_user.h
38
u64 db_pa;
sys/dev/qlnx/qlnxr/qlnxr_user.h
54
u64 rsvd1;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1030
u64 unmapped_db;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1177
#define NUM_PBES_ON_PAGE(_page_size) (_page_size / sizeof(u64))
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1260
pbl_capacity = pbl_size / sizeof(u64);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1271
roundup_pow_of_two((num_pbes * sizeof(u64))));
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1358
(pbl_info->pbl_size / sizeof(u64))) {
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1451
qlnxr_reg_user_mr(struct ib_pd *ibpd, u64 start, u64 len,
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1452
u64 usr_addr, int acc, struct ib_udata *udata)
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1625
u64 size, aligned_size;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1652
struct qlnxr_userq *q, u64 buf_addr, size_t buf_len,
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
169
u64 pbl_base_addr, phy_prod_pair_addr;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1734
u64 pbl_ptr;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
37
#define HILO_U64(hi, lo) ((((u64)(hi)) << 32) + (lo))
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
3926
swap_wqe_data64(u64 *p)
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
3930
for (i = 0; i < QLNXR_SQE_ELEMENT_SIZE / sizeof(u64); i++, p++)
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
3999
swap_wqe_data64((u64 *)wqe);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4005
swap_wqe_data64((u64 *)wqe);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4921
u64 wr_id)
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
5016
u64 wr_id;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
5052
u64 wr_id = qp->rqe_wr_id[qp->rq.cons].wr_id;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
5464
qlnxr_set_page(struct ib_mr *ibmr, u64 addr)
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
5484
pbes_in_page = mr->info.pbl_info.pbl_size / sizeof(u64);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
868
qlnxr_add_mmap(struct qlnxr_ucontext *uctx, u64 phy_addr, unsigned long len)
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
907
qlnxr_search_mmap(struct qlnxr_ucontext *uctx, u64 phy_addr, unsigned long len)
sys/dev/qlnx/qlnxr/qlnxr_verbs.h
156
u64 start,
sys/dev/qlnx/qlnxr/qlnxr_verbs.h
157
u64 length,
sys/dev/qlnx/qlnxr/qlnxr_verbs.h
158
u64 virt,
sys/kern/subr_stats.c
1977
sbuf_printf(buf, "%ju", (uintmax_t)vsd->int64.u64);
sys/kern/subr_stats.c
2531
if (VSD(int64, vsd)->u64 < voival->int64.u64) {
sys/kern/subr_stats.c
2532
VSD(int64, vsd)->u64 = voival->int64.u64;
sys/kern/subr_stats.c
2615
if (VSD(int64, vsd)->u64 > voival->int64.u64) {
sys/kern/subr_stats.c
2616
VSD(int64, vsd)->u64 = voival->int64.u64;
sys/kern/subr_stats.c
2690
VSD(int64, vsd)->u64 += voival->int64.u64;
sys/kern/subr_stats.c
2834
if (voival->int64.u64 >= bkt_lb->int64.u64)
sys/kern/subr_stats.c
2835
if ((eq_only && voival->int64.u64 ==
sys/kern/subr_stats.c
2836
bkt_lb->int64.u64) ||
sys/kern/subr_stats.c
2838
voival->int64.u64 < bkt_ub->int64.u64)))
sys/kern/subr_stats.c
302
[VSD_DTYPE_INT_U64] = {.int64 = {.u64 = 0}},
sys/kern/subr_stats.c
315
[VSD_DTYPE_INT_U64] = {.int64 = {.u64 = UINT64_MAX}},
sys/kern/subr_stats.c
3489
error = Q_QCPYVALI(&x, voival->int64.u64);
sys/kern/subr_stats.c
3562
voival->int64.u64 +=
sys/kern/subr_stats.c
3563
VSD(voistate, statevsd)->prev.int64.u64;
sys/kern/subr_stats.c
3652
VSD(voistate, statevsd)->prev.int64.u64 =
sys/kern/subr_stats.c
3653
voival->int64.u64;
sys/kern/subr_stats.c
499
curstepexp) <= bkt_lb->int64.u64)
sys/kern/subr_stats.c
559
bkt_ub->int64.u64 += (uint64_t)step;
sys/kern/subr_stats.c
625
done = (bkt_ub.int64.u64 > info->ub.int64.u64);
sys/kern/subr_stats.c
905
*((uint64_t *)vss->iv) = iv.int64.u64;
sys/ofed/drivers/infiniband/core/ib_cm.c
1208
u64 hi_tid, low_tid;
sys/ofed/drivers/infiniband/core/ib_cm.c
1210
hi_tid = ((u64) cm_id_priv->av.port->mad_agent->hi_tid) << 32;
sys/ofed/drivers/infiniband/core/ib_cm.c
1211
low_tid = (u64)cm_id_priv->id.local_id;
sys/ofed/drivers/infiniband/core/ib_cm.c
129
u64 listen_service_id;
sys/ofed/drivers/infiniband/core/ib_cm.c
617
return (__force u64) a < (__force u64) b;
sys/ofed/drivers/infiniband/core/ib_cm.c
622
return (__force u64) a > (__force u64) b;
sys/ofed/drivers/infiniband/core/ib_cma.c
2278
return cpu_to_be64(((u64)id->ps << 16) + be16_to_cpu(cma_port(addr)));
sys/ofed/drivers/infiniband/core/ib_cma.c
3166
u64 sid, mask;
sys/ofed/drivers/infiniband/core/ib_cma.c
3183
sib->sib_sid = cpu_to_be64((sid & mask) | (u64) ntohs(port));
sys/ofed/drivers/infiniband/core/ib_cma.c
3342
u64 sid_ps, mask, sid;
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
110
static inline u32 ib_fmr_hash(u64 first_page)
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
118
u64 *page_list,
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
120
u64 io_virtual_address)
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
292
bytes_per_fmr += params->max_pages_per_fmr * sizeof (u64);
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
415
u64 *page_list,
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
417
u64 io_virtual_address)
sys/ofed/drivers/infiniband/core/ib_packer.c
128
static void value_write(int offset, int size, u64 val, void *structure)
sys/ofed/drivers/infiniband/core/ib_packer.c
177
u64 val;
sys/ofed/drivers/infiniband/core/ib_packer.c
178
u64 mask;
sys/ofed/drivers/infiniband/core/ib_packer.c
41
static u64 value_read(int offset, int size, void *structure)
sys/ofed/drivers/infiniband/core/ib_packer.c
91
u64 val;
sys/ofed/drivers/infiniband/core/ib_sa_query.c
788
cpu_to_be64(((u64) agent->hi_tid) << 32 | tid++);
sys/ofed/drivers/infiniband/core/ib_ucm.c
689
static int ib_ucm_alloc_data(const void **dest, u64 src, u32 len)
sys/ofed/drivers/infiniband/core/ib_ucm.c
706
static int ib_ucm_path_get(struct ib_sa_path_rec **path, u64 src)
sys/ofed/drivers/infiniband/core/ib_ucma.c
81
u64 uid;
sys/ofed/drivers/infiniband/core/ib_ucma.c
99
u64 uid;
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
124
static int ib_umem_notifier_release_trampoline(struct ib_umem *item, u64 start,
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
125
u64 end, void *cookie) {
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
158
static int invalidate_page_trampoline(struct ib_umem *item, u64 start,
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
159
u64 end, void *cookie)
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
185
static int invalidate_range_start_trampoline(struct ib_umem *item, u64 start,
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
186
u64 end, void *cookie)
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
211
static int invalidate_range_end_trampoline(struct ib_umem *item, u64 start,
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
212
u64 end, void *cookie)
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
436
u64 base_virt_addr,
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
438
u64 access_mask,
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
519
int ib_umem_odp_map_dma_pages(struct ib_umem *umem, u64 user_virt, u64 bcnt,
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
520
u64 access_mask, unsigned long current_seq)
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
525
u64 off;
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
527
u64 base_virt_addr;
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
622
void ib_umem_odp_unmap_dma_pages(struct ib_umem *umem, u64 virt,
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
623
u64 bound)
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
626
u64 addr;
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
629
virt = max_t(u64, virt, ib_umem_start(umem));
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
630
bound = min_t(u64, bound, ib_umem_end(umem));
sys/ofed/drivers/infiniband/core/ib_umem_odp.c
637
for (addr = virt; addr < bound; addr += (u64)umem->page_size) {
sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
50
static inline u64 node_start(struct umem_odp_node *n)
sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
63
static inline u64 node_last(struct umem_odp_node *n)
sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
71
INTERVAL_TREE_DEFINE(struct umem_odp_node, rb, u64, __subtree_last,
sys/ofed/drivers/infiniband/core/ib_umem_rbtree.c
78
u64 start, u64 last,
sys/ofed/drivers/infiniband/core/ib_user_mad.c
569
*tid = cpu_to_be64(((u64) agent->hi_tid) << 32 |
sys/ofed/drivers/infiniband/core/ib_user_mad.c
682
umm[i * 2] | ((u64) umm[i * 2 + 1] << 32);
sys/ofed/drivers/infiniband/core/ib_uverbs_cmd.c
3733
sizeof(u64)), \
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
609
int uverbs_get_flags64(u64 *to, const struct uverbs_attr_bundle *attrs_bundle,
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
610
size_t idx, u64 allowed_bits)
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
613
u64 flags;
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
643
size_t idx, u64 allowed_bits)
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
645
u64 flags;
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
69
u64 internal_buffer[32];
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
731
size_t idx, s64 lower_bound, u64 upper_bound,
sys/ofed/drivers/infiniband/core/ib_uverbs_ioctl.c
746
if (*to < lower_bound || (*to > 0 && (u64)*to > upper_bound))
sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
605
u64 response = 0;
sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
626
ret = get_user(response, (const u64 __user *)buf);
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_counters.c
110
read_attr.ncounters = uattr->ptr_attr.len / sizeof(u64);
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_counters.c
112
attrs, array_size(read_attr.ncounters, sizeof(u64)));
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_counters.c
122
read_attr.ncounters * sizeof(u64));
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_cq.c
158
UVERBS_ATTR_TYPE(u64),
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_cq.c
68
u64 user_handle;
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_device.c
200
u64 core_support = IB_UVERBS_CORE_SUPPORT_OPTIONAL_MR_ACCESS;
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_device.c
230
UVERBS_ATTR_TYPE(u64), UA_OPTIONAL),
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_device.c
60
u64 *total)
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_device.c
62
u64 max_count = out_len / sizeof(u32);
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_device.c
64
u64 count = 0;
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_device.c
98
u64 total = 0;
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_dm.c
96
UVERBS_ATTR_TYPE(u64),
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_flow_action.c
51
static u64 esp_flags_uverbs_to_verbs(struct uverbs_attr_bundle *attrs,
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_flow_action.c
54
u64 verbs_flags = flags;
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_mr.c
181
UVERBS_ATTR_TYPE(u64),
sys/ofed/drivers/infiniband/core/ib_uverbs_std_types_mr.c
184
UVERBS_ATTR_TYPE(u64),
sys/ofed/drivers/infiniband/core/ib_verbs.c
1994
int ib_set_vf_guid(struct ib_device *device, int vf, u8 port, u64 guid,
sys/ofed/drivers/infiniband/core/ib_verbs.c
2062
unsigned int *sg_offset_p, int (*set_page)(struct ib_mr *, u64))
sys/ofed/drivers/infiniband/core/ib_verbs.c
2065
u64 last_end_dma_addr = 0;
sys/ofed/drivers/infiniband/core/ib_verbs.c
2068
u64 page_mask = ~((u64)mr->page_size - 1);
sys/ofed/drivers/infiniband/core/ib_verbs.c
2078
u64 dma_addr = sg_dma_address(sg) + sg_offset;
sys/ofed/drivers/infiniband/core/ib_verbs.c
2079
u64 prev_addr = dma_addr;
sys/ofed/drivers/infiniband/core/ib_verbs.c
2081
u64 end_dma_addr = dma_addr + dma_len;
sys/ofed/drivers/infiniband/core/ib_verbs.c
2082
u64 page_addr = dma_addr & page_mask;
sys/ofed/drivers/infiniband/core/mad_priv.h
127
u64 header_mapping;
sys/ofed/drivers/infiniband/core/mad_priv.h
128
u64 payload_mapping;
sys/ofed/drivers/infiniband/core/mad_priv.h
77
u64 mapping;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h
202
u64 mapping[IPOIB_CM_RX_SG];
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h
207
u64 mapping[IPOIB_CM_TX_SG];
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h
212
u64 mapping[IPOIB_UD_RX_SG];
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h
217
u64 mapping[IPOIB_UD_TX_SG];
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
603
u64 *mapping = tx_req->mapping;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c
279
u64 *mapping = tx_req->mapping;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c
325
u64 *mapping = tx_req->mapping;
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c
455
u64 *mapping = tx_req->mapping;
sys/ofed/drivers/infiniband/ulp/sdp/sdp.h
204
u64 mapping[SDP_MAX_SEND_SGES];
sys/ofed/drivers/infiniband/ulp/sdp/sdp.h
243
u64 vaddr;
sys/ofed/drivers/infiniband/ulp/sdp/sdp.h
557
sdp_alloc_mb_srcavail(struct socket *sk, u32 len, u32 rkey, u64 vaddr, int wait)
sys/ofed/drivers/infiniband/ulp/sdp/sdp.h
90
#define SDP_FMR_SIZE (MIN(0x1000, PAGE_SIZE) / sizeof(u64))
sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c
101
u64 addr;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_tx.c
77
u64 addr;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
425
u64 *pages;
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
463
pages = (u64 *) __get_free_page(GFP_KERNEL);
sys/ofed/include/rdma/ib_fmr_pool.h
76
u64 io_virtual_address;
sys/ofed/include/rdma/ib_fmr_pool.h
78
u64 page_list[0];
sys/ofed/include/rdma/ib_fmr_pool.h
89
u64 *page_list,
sys/ofed/include/rdma/ib_fmr_pool.h
91
u64 io_virtual_address);
sys/ofed/include/rdma/ib_hdrs.h
129
static inline u64 ib_u64_get(__be64 *p)
sys/ofed/include/rdma/ib_hdrs.h
134
static inline void ib_u64_put(u64 val, __be64 *p)
sys/ofed/include/rdma/ib_hdrs.h
139
static inline u64 get_ib_reth_vaddr(struct ib_reth *reth)
sys/ofed/include/rdma/ib_hdrs.h
144
static inline void put_ib_reth_vaddr(u64 val, struct ib_reth *reth)
sys/ofed/include/rdma/ib_hdrs.h
149
static inline u64 get_ib_ateth_vaddr(struct ib_atomic_eth *ateth)
sys/ofed/include/rdma/ib_hdrs.h
154
static inline void put_ib_ateth_vaddr(u64 val, struct ib_atomic_eth *ateth)
sys/ofed/include/rdma/ib_hdrs.h
159
static inline u64 get_ib_ateth_swap(struct ib_atomic_eth *ateth)
sys/ofed/include/rdma/ib_hdrs.h
164
static inline void put_ib_ateth_swap(u64 val, struct ib_atomic_eth *ateth)
sys/ofed/include/rdma/ib_hdrs.h
169
static inline u64 get_ib_ateth_compare(struct ib_atomic_eth *ateth)
sys/ofed/include/rdma/ib_hdrs.h
174
static inline void put_ib_ateth_compare(u64 val, struct ib_atomic_eth *ateth)
sys/ofed/include/rdma/ib_mad.h
188
typedef u64 __bitwise ib_sa_comp_mask;
sys/ofed/include/rdma/ib_sa.h
273
u64 id;
sys/ofed/include/rdma/ib_sa.h
283
u64 data64[2];
sys/ofed/include/rdma/ib_umem_odp.h
106
int ib_umem_odp_map_dma_pages(struct ib_umem *umem, u64 start_offset, u64 bcnt,
sys/ofed/include/rdma/ib_umem_odp.h
107
u64 access_mask, unsigned long current_seq);
sys/ofed/include/rdma/ib_umem_odp.h
109
void ib_umem_odp_unmap_dma_pages(struct ib_umem *umem, u64 start_offset,
sys/ofed/include/rdma/ib_umem_odp.h
110
u64 bound);
sys/ofed/include/rdma/ib_umem_odp.h
114
typedef int (*umem_call_back)(struct ib_umem *item, u64 start, u64 end,
sys/ofed/include/rdma/ib_umem_odp.h
120
int rbt_ib_umem_for_each_in_range(struct rb_root *root, u64 start, u64 end,
sys/ofed/include/rdma/ib_umem_odp.h
124
u64 start, u64 last);
sys/ofed/include/rdma/ib_umem_odp.h
126
u64 start, u64 last);
sys/ofed/include/rdma/ib_umem_odp.h
44
u64 __subtree_last;
sys/ofed/include/rdma/ib_verbs.h
1230
u64 addr;
sys/ofed/include/rdma/ib_verbs.h
1242
u64 wr_id;
sys/ofed/include/rdma/ib_verbs.h
1257
u64 remote_addr;
sys/ofed/include/rdma/ib_verbs.h
1268
u64 remote_addr;
sys/ofed/include/rdma/ib_verbs.h
1269
u64 compare_add;
sys/ofed/include/rdma/ib_verbs.h
1270
u64 swap;
sys/ofed/include/rdma/ib_verbs.h
1271
u64 compare_add_mask;
sys/ofed/include/rdma/ib_verbs.h
1272
u64 swap_mask;
sys/ofed/include/rdma/ib_verbs.h
1326
u64 wr_id;
sys/ofed/include/rdma/ib_verbs.h
1405
u64 user_handle; /* handle given to us by userspace */
sys/ofed/include/rdma/ib_verbs.h
1620
u64 iova;
sys/ofed/include/rdma/ib_verbs.h
1621
u64 length;
sys/ofed/include/rdma/ib_verbs.h
1962
u64 flags;
sys/ofed/include/rdma/ib_verbs.h
1963
u64 hard_limit_pkts;
sys/ofed/include/rdma/ib_verbs.h
2002
u64 dma_addr);
sys/ofed/include/rdma/ib_verbs.h
2003
u64 (*map_single)(struct ib_device *dev,
sys/ofed/include/rdma/ib_verbs.h
2007
u64 addr, size_t size,
sys/ofed/include/rdma/ib_verbs.h
2009
u64 (*map_page)(struct ib_device *dev,
sys/ofed/include/rdma/ib_verbs.h
2014
u64 addr, size_t size,
sys/ofed/include/rdma/ib_verbs.h
2031
u64 dma_handle,
sys/ofed/include/rdma/ib_verbs.h
2035
u64 dma_handle,
sys/ofed/include/rdma/ib_verbs.h
2040
u64 *dma_handle,
sys/ofed/include/rdma/ib_verbs.h
2044
u64 dma_handle);
sys/ofed/include/rdma/ib_verbs.h
2064
u64 *counters_buff;
sys/ofed/include/rdma/ib_verbs.h
2094
static inline u64
sys/ofed/include/rdma/ib_verbs.h
2097
return (u64)entry->start_pgoff << PAGE_SHIFT;
sys/ofed/include/rdma/ib_verbs.h
2287
u64 start, u64 length,
sys/ofed/include/rdma/ib_verbs.h
2288
u64 virt_addr,
sys/ofed/include/rdma/ib_verbs.h
2293
u64 start, u64 length,
sys/ofed/include/rdma/ib_verbs.h
2294
u64 virt_addr,
sys/ofed/include/rdma/ib_verbs.h
2317
u64 *page_list, int list_len,
sys/ofed/include/rdma/ib_verbs.h
2318
u64 iova);
sys/ofed/include/rdma/ib_verbs.h
2372
int (*set_vf_guid)(struct ib_device *device, int vf, u8 port, u64 guid,
sys/ofed/include/rdma/ib_verbs.h
2414
u64 uverbs_cmd_mask;
sys/ofed/include/rdma/ib_verbs.h
2415
u64 uverbs_ex_cmd_mask;
sys/ofed/include/rdma/ib_verbs.h
2932
int ib_set_vf_guid(struct ib_device *device, int vf, u8 port, u64 guid,
sys/ofed/include/rdma/ib_verbs.h
325
u64 length;
sys/ofed/include/rdma/ib_verbs.h
326
u64 offset;
sys/ofed/include/rdma/ib_verbs.h
331
u64 length;
sys/ofed/include/rdma/ib_verbs.h
337
u64 fw_ver;
sys/ofed/include/rdma/ib_verbs.h
339
u64 max_mr_size;
sys/ofed/include/rdma/ib_verbs.h
340
u64 page_size_cap;
sys/ofed/include/rdma/ib_verbs.h
346
u64 device_cap_flags;
sys/ofed/include/rdma/ib_verbs.h
3496
static inline int ib_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
sys/ofed/include/rdma/ib_verbs.h
3510
static inline u64 ib_dma_map_single(struct ib_device *dev,
sys/ofed/include/rdma/ib_verbs.h
3527
u64 addr, size_t size,
sys/ofed/include/rdma/ib_verbs.h
3536
static inline u64 ib_dma_map_single_attrs(struct ib_device *dev,
sys/ofed/include/rdma/ib_verbs.h
3546
u64 addr, size_t size,
sys/ofed/include/rdma/ib_verbs.h
3562
static inline u64 ib_dma_map_page(struct ib_device *dev,
sys/ofed/include/rdma/ib_verbs.h
3581
u64 addr, size_t size,
sys/ofed/include/rdma/ib_verbs.h
3656
static inline u64 ib_sg_dma_address(struct ib_device *dev,
sys/ofed/include/rdma/ib_verbs.h
3684
u64 addr,
sys/ofed/include/rdma/ib_verbs.h
3702
u64 addr,
sys/ofed/include/rdma/ib_verbs.h
3721
u64 *dma_handle,
sys/ofed/include/rdma/ib_verbs.h
3745
u64 dma_handle)
sys/ofed/include/rdma/ib_verbs.h
3833
u64 *page_list, int list_len,
sys/ofed/include/rdma/ib_verbs.h
3834
u64 iova)
sys/ofed/include/rdma/ib_verbs.h
391
u64 max_dm_size;
sys/ofed/include/rdma/ib_verbs.h
3963
unsigned int *sg_offset, int (*set_page)(struct ib_mr *, u64));
sys/ofed/include/rdma/ib_verbs.h
519
u64 value[];
sys/ofed/include/rdma/ib_verbs.h
536
stats = kzalloc(sizeof(*stats) + num_counters * sizeof(u64),
sys/ofed/include/rdma/ib_verbs.h
592
u64 subnet_prefix;
sys/ofed/include/rdma/ib_verbs.h
625
u64 sys_image_guid;
sys/ofed/include/rdma/ib_verbs.h
891
u64 wr_id;
sys/ofed/include/rdma/rdma_vt.h
100
u64 n_loop_pkts;
sys/ofed/include/rdma/rdma_vt.h
101
u64 n_pkt_drops;
sys/ofed/include/rdma/rdma_vt.h
102
u64 n_vl15_dropped;
sys/ofed/include/rdma/rdma_vt.h
103
u64 n_rc_timeouts;
sys/ofed/include/rdma/rdma_vt.h
104
u64 n_dmawait;
sys/ofed/include/rdma/rdma_vt.h
105
u64 n_unaligned;
sys/ofed/include/rdma/rdma_vt.h
106
u64 n_rc_dupreq;
sys/ofed/include/rdma/rdma_vt.h
107
u64 n_rc_seqnak;
sys/ofed/include/rdma/rdma_vt.h
113
u64 z_rc_acks;
sys/ofed/include/rdma/rdma_vt.h
114
u64 z_rc_qacks;
sys/ofed/include/rdma/rdma_vt.h
115
u64 z_rc_delayed_comp;
sys/ofed/include/rdma/rdma_vt.h
116
u64 __percpu *rc_acks;
sys/ofed/include/rdma/rdma_vt.h
117
u64 __percpu *rc_qacks;
sys/ofed/include/rdma/rdma_vt.h
118
u64 __percpu *rc_delayed_comp;
sys/ofed/include/rdma/rdma_vt.h
496
u32 len, u64 vaddr, u32 rkey, int acc);
sys/ofed/include/rdma/rdma_vt.h
77
u64 tid;
sys/ofed/include/rdma/rdma_vt.h
95
u64 n_rc_resends;
sys/ofed/include/rdma/rdma_vt.h
96
u64 n_seq_naks;
sys/ofed/include/rdma/rdma_vt.h
97
u64 n_rdma_seq;
sys/ofed/include/rdma/rdma_vt.h
98
u64 n_rnr_naks;
sys/ofed/include/rdma/rdma_vt.h
99
u64 n_other_naks;
sys/ofed/include/rdma/rdmavt_mr.h
75
u64 user_base; /* User's address for this region */
sys/ofed/include/rdma/rdmavt_mr.h
76
u64 iova; /* IB start address of this region */
sys/ofed/include/rdma/rdmavt_qp.h
180
u64 wr_id;
sys/ofed/include/rdma/rdmavt_qp.h
227
u64 atomic_data;
sys/ofed/include/rdma/rdmavt_qp.h
316
u64 r_wr_id; /* ID for current receive WQE */
sys/ofed/include/rdma/signature.h
120
u64 sig_err_offset;
sys/ofed/include/rdma/uverbs_ioctl.h
581
sizeof(u64) + BUILD_BUG_ON_ZERO(!sizeof(_enum_type)), \
sys/ofed/include/rdma/uverbs_ioctl.h
582
sizeof(u64)), \
sys/ofed/include/rdma/uverbs_ioctl.h
595
sizeof(u64)), \
sys/ofed/include/rdma/uverbs_ioctl.h
626
u64 data;
sys/ofed/include/rdma/uverbs_ioctl.h
869
int uverbs_get_flags64(u64 *to, const struct uverbs_attr_bundle *attrs_bundle,
sys/ofed/include/rdma/uverbs_ioctl.h
870
size_t idx, u64 allowed_bits);
sys/ofed/include/rdma/uverbs_ioctl.h
872
size_t idx, u64 allowed_bits);
sys/ofed/include/rdma/uverbs_ioctl.h
890
size_t idx, s64 lower_bound, u64 upper_bound,
sys/ofed/include/rdma/uverbs_ioctl.h
896
uverbs_get_flags64(u64 *to, const struct uverbs_attr_bundle *attrs_bundle,
sys/ofed/include/rdma/uverbs_ioctl.h
897
size_t idx, u64 allowed_bits)
sys/ofed/include/rdma/uverbs_ioctl.h
903
size_t idx, u64 allowed_bits)
sys/ofed/include/rdma/uverbs_ioctl.h
924
size_t idx, s64 lower_bound, u64 upper_bound,
sys/powerpc/pseries/phyp_console.c
294
0, 0, 0, &sc->inbuflen, &sc->phyp_inbuf.u64[0],
sys/powerpc/pseries/phyp_console.c
295
&sc->phyp_inbuf.u64[1]);
sys/powerpc/pseries/phyp_console.c
297
sc->phyp_inbuf.u64[0] = be64toh(sc->phyp_inbuf.u64[0]);
sys/powerpc/pseries/phyp_console.c
298
sc->phyp_inbuf.u64[1] = be64toh(sc->phyp_inbuf.u64[1]);
sys/powerpc/pseries/phyp_console.c
360
uint64_t u64[2];
sys/powerpc/pseries/phyp_console.c
386
err = phyp_hcall(H_PUT_TERM_CHAR, sc->vtermid, len, htobe64(cbuf.u64[0]),
sys/powerpc/pseries/phyp_console.c
387
htobe64(cbuf.u64[1]));
sys/powerpc/pseries/phyp_console.c
67
uint64_t u64[2];
sys/powerpc/pseries/phyp_dbg.c
110
0, 0, 0, &dbgport.inbuflen, &dbgport.inbuf.u64[0],
sys/powerpc/pseries/phyp_dbg.c
111
&dbgport.inbuf.u64[1]);
sys/powerpc/pseries/phyp_dbg.c
149
uint64_t u64;
sys/powerpc/pseries/phyp_dbg.c
157
cbuf.u64, 0);
sys/powerpc/pseries/phyp_dbg.c
48
uint64_t u64[2];
sys/sys/stats.h
1060
tmp.int64.u64 = voival;
sys/sys/stats.h
1074
tmp.int64.u64 = voival;
sys/sys/stats.h
146
uint64_t u64;
sys/sys/stats.h
768
tmp.int64.u64 = val;
sys/sys/stats.h
883
*ret = vsd->int64.u64;
sys/ufs/ufs/ufs_quota.c
1767
#define CLIP32(u64) (u64 > UINT32_MAX ? UINT32_MAX : (uint32_t)u64)
tests/sys/sys/qmath_test.c
188
u64q_t u64;
tests/sys/sys/qmath_test.c
190
Q_INI(&u64, QTEST_IV, 0, QTEST_RPSHFT);
tests/sys/sys/qmath_test.c
191
Q_TOSTR(u64, -1, 10, buf, sizeof(buf));
tests/sys/sys/qmath_test.c
193
ATF_CHECK_EQ(sizeof(u64) << 3, Q_NTBITS(u64));
tests/sys/sys/qmath_test.c
194
ATF_CHECK_EQ(QTEST_RPSHFT, Q_NFBITS(u64));
tests/sys/sys/qmath_test.c
195
ATF_CHECK_EQ(QTEST_INTBITS(u64), Q_NIBITS(u64));
tests/sys/sys/qmath_test.c
196
ATF_CHECK_EQ(QTEST_QITRUNC(u64, UINT64_MAX), Q_IMAXVAL(u64));
tests/sys/sys/qmath_test.c
197
ATF_CHECK_EQ(0, Q_IMINVAL(u64));
tools/tools/nvmf/nvmfd/controller.c
72
rsp.value.u64 = htole64(c->cap);
usr.bin/gzip/unxz.c
180
uint64_t u64[IO_BUFFER_SIZE / sizeof(uint64_t)];
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
1003
VMCS_EXIT_INSTRUCTION_LENGTH, &u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
1006
(uint32_t)u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
1011
&u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
1014
vcpuid, u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
1550
uint64_t addr, bm, eptp, u64;
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
1837
error = vm_get_vmcs_field(vcpu, VMCS_EXIT_REASON, &u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
1840
&u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
1842
printf("exit_reason[%d]\t%#lx\n", vcpuid, u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
790
uint64_t ctl, cr0, cr3, cr4, rsp, rip, pat, addr, u64;
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
883
VMCS_GUEST_LINEAR_ADDRESS, &u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
885
printf("gla[%d]\t\t0x%016lx\n", vcpuid, u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
890
VMCS_GUEST_PHYSICAL_ADDRESS, &u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
892
printf("gpa[%d]\t\t0x%016lx\n", vcpuid, u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
897
error = vm_get_vmcs_field(vcpu, VMCS_ENTRY_INTR_INFO,&u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
900
vcpuid, u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
977
error = vm_get_vmcs_field(vcpu, VMCS_EXIT_INTR_INFO, &u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
980
vcpuid, u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
985
error = vm_get_vmcs_field(vcpu, VMCS_EXIT_INTR_ERRCODE, &u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
988
vcpuid, u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
994
VMCS_GUEST_INTERRUPTIBILITY, &u64);
usr.sbin/bhyvectl/amd64/bhyvectl_machdep.c
997
vcpuid, u64);
usr.sbin/ctld/nvmf_discovery.cc
292
rsp.value.u64 = htole64(cap);
usr.sbin/gstat/gstat.c
351
DSM_QUEUE_LENGTH, &u64,
usr.sbin/gstat/gstat.c
401
PRINTMSG(",%ju", (uintmax_t)u64);
usr.sbin/gstat/gstat.c
455
PRINTMSG(" %4ju", (uintmax_t)u64);
usr.sbin/gstat/gstat.c
96
uint64_t u64;