/kernel/linux/linux-5.10/Documentation/driver-api/ |
D | w1.rst | 10 include/linux/w1.h 15 .. kernel-doc:: include/linux/w1.h 18 drivers/w1/w1.c 23 .. kernel-doc:: drivers/w1/w1.c 26 drivers/w1/w1_family.c 31 .. kernel-doc:: drivers/w1/w1_family.c 34 drivers/w1/w1_internal.h 39 .. kernel-doc:: drivers/w1/w1_internal.h 42 drivers/w1/w1_int.c 47 .. kernel-doc:: drivers/w1/w1_int.c [all …]
|
/kernel/linux/linux-5.10/lib/raid6/ |
D | neon.uc | 62 register unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 75 w1$$ = SHLBYTE(wq$$); 78 w1$$ = veorq_u8(w1$$, w2$$); 79 wq$$ = veorq_u8(w1$$, wd$$); 93 register unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 109 w1$$ = SHLBYTE(wq$$); 112 w1$$ = veorq_u8(w1$$, w2$$); 113 wq$$ = veorq_u8(w1$$, wd$$); 118 w1$$ = vshlq_n_u8(wq$$, 4); 121 wq$$ = veorq_u8(w1$$, w2$$); [all …]
|
D | int.uc | 88 unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 100 w1$$ = SHLBYTE(wq$$); 102 w1$$ ^= w2$$; 103 wq$$ = w1$$ ^ wd$$; 117 unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 130 w1$$ = SHLBYTE(wq$$); 132 w1$$ ^= w2$$; 133 wq$$ = w1$$ ^ wd$$; 138 w1$$ = SHLBYTE(wq$$); 140 wq$$ = w1$$ ^ w2$$;
|
D | altivec.uc | 77 unative_t wd$$, wq$$, wp$$, w1$$, w2$$; 90 w1$$ = SHLBYTE(wq$$); 92 w1$$ = vec_xor(w1$$, w2$$); 93 wq$$ = vec_xor(w1$$, wd$$);
|
/kernel/linux/linux-5.10/Documentation/w1/ |
D | w1-generic.rst | 2 Introduction to the 1-wire (w1) subsystem 11 The w1 subsystem provides the framework for managing w1 masters and 14 All w1 slave devices must be connected to a w1 bus master device. 16 Example w1 master devices: 20 - DS2482 (i2c to w1 bridge) 24 What does the w1 subsystem do? 27 When a w1 master driver registers with the w1 subsystem, the following occurs: 29 - sysfs entries for that w1 master are created 30 - the w1 bus is periodically searched for new slave devices 32 When a device is found on the bus, w1 core tries to load the driver for its family [all …]
|
D | index.rst | 11 w1-generic.rst 12 w1-netlink.rst
|
/kernel/linux/linux-5.10/arch/powerpc/crypto/ |
D | md5-asm.S | 65 #define R_00_15(a, b, c, d, w0, w1, p, q, off, k0h, k0l, k1h, k1l) \ argument 70 LOAD_DATA(w1, off+4) /* W */ \ 75 addis w1,w1,k1h; /* 2: wk = w + k */ \ 77 addi w1,w1,k1l; /* 2: wk = w + k' */ \ 79 add d,d,w1; /* 2: a = a + wk */ \ 89 #define R_16_31(a, b, c, d, w0, w1, p, q, k0h, k0l, k1h, k1l) \ argument 96 addi w1,w1,k1l; /* 2: wk = w + k */ \ 98 addis w1,w1,k1h; /* 2: wk = w + k' */ \ 102 add d,d,w1; /* 2: a = a + wk */ \ 109 #define R_32_47(a, b, c, d, w0, w1, p, q, k0h, k0l, k1h, k1l) \ argument [all …]
|
D | sha1-spe-asm.S | 106 #define R_00_15(a, b, c, d, e, w0, w1, k, off) \ argument 116 LOAD_DATA(w1, off+4) /* 2: W */ \ 124 add d,d,w1; /* 2: E = E + W */ \ 127 evmergelo w1,w1,w0; /* mix W[0]/W[1] */ \ 130 #define R_16_19(a, b, c, d, e, w0, w1, w4, w6, w7, k) \ argument 138 evxor w0,w0,w1; /* W = W xor W[-14] */ \ 156 #define R_20_39(a, b, c, d, e, w0, w1, w4, w6, w7, k) \ argument 163 evxor w0,w0,w1; /* W = W xor W[-14] */ \ 180 #define R_40_59(a, b, c, d, e, w0, w1, w4, w6, w7, k) \ argument 188 evxor w0,w0,w1; /* W = W xor W[-14] */ \ [all …]
|
/kernel/linux/linux-5.10/crypto/ |
D | camellia_generic.c | 327 #define ROLDQ(ll, lr, rl, rr, w0, w1, bits) ({ \ argument 335 #define ROLDQo32(ll, lr, rl, rr, w0, w1, bits) ({ \ argument 337 w1 = lr; \ 341 rr = (w0 << (bits - 32)) + (w1 >> (64 - bits)); \ 548 u32 il, ir, t0, t1, w0, w1; in camellia_setup128() local 566 ROLDQ(kll, klr, krl, krr, w0, w1, 15); in camellia_setup128() 572 ROLDQ(kll, klr, krl, krr, w0, w1, 30); in camellia_setup128() 578 ROLDQ(kll, klr, krl, krr, w0, w1, 15); in camellia_setup128() 582 ROLDQ(kll, klr, krl, krr, w0, w1, 17); in camellia_setup128() 588 ROLDQ(kll, klr, krl, krr, w0, w1, 17); in camellia_setup128() [all …]
|
/kernel/linux/linux-5.10/Documentation/w1/masters/ |
D | w1-gpio.rst | 2 Kernel driver w1-gpio 14 Documentation/devicetree/bindings/w1/w1-gpio.txt 23 #include <linux/w1-gpio.h> 26 .dev_id = "w1-gpio", 38 .name = "w1-gpio",
|
D | index.rst | 12 mxc-w1 14 w1-gpio
|
/kernel/linux/linux-5.10/arch/arm64/lib/ |
D | strchr.S | 22 and w1, w1, #0xff 24 cmp w2, w1 28 cmp w2, w1
|
D | memchr.S | 23 and w1, w1, #0xff 27 cmp w3, w1
|
D | strrchr.S | 23 and w1, w1, #0xff 26 cmp w2, w1
|
/kernel/linux/linux-5.10/arch/arm64/kvm/hyp/ |
D | hyp-entry.S | 58 eor w1, w1, #ARM_SMCCC_ARCH_WORKAROUND_1 59 cbz w1, wa_epilogue 62 eor w1, w1, #(ARM_SMCCC_ARCH_WORKAROUND_1 ^ \ 64 cbz w1, wa_epilogue 66 eor w1, w1, #(ARM_SMCCC_ARCH_WORKAROUND_2 ^ \ 68 cbnz w1, el1_trap
|
/kernel/linux/linux-5.10/lib/mpi/ |
D | longlong.h | 232 #define umul_ppmm(w1, w0, u, v) \ argument 240 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l; }) 241 #define smul_ppmm(w1, w0, u, v) \ argument 249 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l; }) 415 #define umul_ppmm(w1, w0, u, v) \ argument 418 "=d" (w1) \ 470 #define umul_ppmm(w1, w0, u, v) \ argument 478 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l; }) 534 #define umul_ppmm(w1, w0, u, v) \ argument 537 "=d" ((USItype)(w1)) \ [all …]
|
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/w1/ |
D | w1-gpio.txt | 1 w1-gpio devicetree bindings 5 - compatible: "w1-gpio" 16 Also refer to the generic w1.txt document. 21 compatible = "w1-gpio";
|
/kernel/linux/linux-5.10/tools/testing/selftests/net/ |
D | fcnal-test.sh | 552 run_cmd ping -c1 -w1 ${a} 556 run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} 560 run_cmd ping -c1 -w1 -I ${NSA_LO_IP} ${a} 570 run_cmd_nsb ping -c1 -w1 ${a} 580 run_cmd ping -c1 -w1 ${a} 590 run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} 600 run_cmd ping -c1 -w1 -I ${NSA_DEV} ${a} 614 run_cmd ping -c1 -w1 ${a} 625 run_cmd_nsb ping -c1 -w1 ${a} 642 run_cmd ping -c1 -w1 ${a} [all …]
|
/kernel/linux/linux-5.10/Documentation/ABI/stable/ |
D | sysfs-driver-w1_ds28e04 | 1 What: /sys/bus/w1/devices/.../pio 5 see Documentation/w1/slaves/w1_ds28e04.rst for detailed information 10 What: /sys/bus/w1/devices/.../eeprom 14 see Documentation/w1/slaves/w1_ds28e04.rst for detailed information
|
D | sysfs-bus-w1 | 1 What: /sys/bus/w1/devices/.../w1_master_timeout_us 10 see Documentation/w1/w1-generic.rst for detailed information.
|
/kernel/linux/linux-5.10/samples/bpf/ |
D | test_cgrp2_sock2.sh | 51 ping -c1 -w1 172.16.1.100 58 ping6 -c1 -w1 2401:db00::1 69 ping6 -c1 -w1 2401:db00::1 76 ping -c1 -w1 172.16.1.100
|
/kernel/linux/linux-5.10/Documentation/ABI/testing/ |
D | sysfs-driver-w1_therm | 1 What: /sys/bus/w1/devices/.../alarms 11 master level, refer to Documentation/w1/w1-generic.rst for 17 What: /sys/bus/w1/devices/.../eeprom 33 What: /sys/bus/w1/devices/.../ext_power 47 What: /sys/bus/w1/devices/.../resolution 69 What: /sys/bus/w1/devices/.../temperature 90 What: /sys/bus/w1/devices/.../w1_slave 105 refer to Documentation/w1/slaves/w1_therm.rst for detailed 111 What: /sys/bus/w1/devices/w1_bus_masterXX/therm_bulk_read 139 What: /sys/bus/w1/devices/.../conv_time [all …]
|
/kernel/linux/linux-5.10/arch/m68k/lib/ |
D | muldi3.c | 28 #define umul_ppmm(w1, w0, u, v) \ argument 48 (w1) = __x3 + __ll_highpart (__x1); \ 54 #define umul_ppmm(w1, w0, u, v) \ argument 57 "=d" ((USItype)(w1)) \
|
/kernel/linux/linux-5.10/tools/testing/selftests/arm64/fp/ |
D | sve-test.S | 212 orr w1, w0, w1, lsl #16 213 orr w2, w1, w2, lsl #28 216 mov w1, #MAXVL_B / 4 220 subs w1, w1, #1 299 mov w1, #1 300 lsl w1, w1, w0 301 sub w1, w1, #1 304 strh w1, [x0], 2
|
/kernel/linux/linux-5.10/drivers/w1/ |
D | Kconfig | 23 There are three types of messages between w1 core and userspace: 29 source "drivers/w1/masters/Kconfig" 30 source "drivers/w1/slaves/Kconfig"
|