/linux-6.6.21/tools/testing/selftests/powerpc/ptrace/ |
D | ptrace-vsx.h | 13 int validate_vsx(unsigned long *vsx, unsigned long *load) in validate_vsx() argument 18 if (vsx[i] != load[2 * i + 1]) { in validate_vsx() 20 i, vsx[i], 2 * i + 1, load[2 * i + 1]); in validate_vsx() 31 int validate_vmx(unsigned long vmx[][2], unsigned long *load) in validate_vmx() argument 37 if ((vmx[i][0] != load[64 + 2 * i]) || in validate_vmx() 38 (vmx[i][1] != load[65 + 2 * i])) { in validate_vmx() 41 load[64 + 2 * i]); in validate_vmx() 44 load[65 + 2 * i]); in validate_vmx() 51 if ((vmx[i][0] != load[65 + 2 * i]) || in validate_vmx() 52 (vmx[i][1] != load[64 + 2 * i])) { in validate_vmx() [all …]
|
/linux-6.6.21/tools/power/cpupower/bench/ |
D | README-BENCH | 9 - Identify average reaction time of a governor to CPU load changes 34 You can specify load (100% CPU load) and sleep (0% CPU load) times in us which 38 load=25000 41 This part of the configuration file will create 25ms load/sleep turns, 48 Will increase load and sleep time by 25ms 5 times. 50 25ms load/sleep time repeated 20 times (cycles). 51 50ms load/sleep time repeated 20 times (cycles). 53 100ms load/sleep time repeated 20 times (cycles). 69 100% CPU load (load) | 0 % CPU load (sleep) | round 76 In round 1, ondemand should have rather static 50% load and probably [all …]
|
/linux-6.6.21/arch/arm64/boot/dts/qcom/ |
D | msm8994-msft-lumia-octagon.dtsi | 31 * Most Lumia 950/XL users use GRUB to load their kernels, 586 regulator-allow-set-load; 587 regulator-system-load = <300000>; 593 regulator-allow-set-load; 595 regulator-system-load = <325000>; 601 regulator-allow-set-load; 602 regulator-system-load = <325000>; 623 regulator-allow-set-load; 624 regulator-system-load = <4160>; 631 regulator-allow-set-load; [all …]
|
D | msm8994-sony-xperia-kitakami.dtsi | 161 * One way to use that framebuffer is to load a secondary instance of 162 * LK with the downstream DTB appended and then, only from there, load 239 regulator-system-load = <325000>; 240 regulator-allow-set-load; 267 regulator-system-load = <10000>; 268 regulator-allow-set-load; 314 regulator-system-load = <10000>; 315 regulator-allow-set-load; 326 regulator-system-load = <10000>; 327 regulator-allow-set-load; [all …]
|
D | sdm660-xiaomi-lavender.dts | 146 regulator-allow-set-load; 154 regulator-allow-set-load; 161 regulator-allow-set-load; 171 regulator-system-load = <570000>; 172 regulator-allow-set-load; 186 regulator-allow-set-load; 187 regulator-system-load = <800000>; 255 regulator-allow-set-load; 279 regulator-allow-set-load; 293 regulator-system-load = <325000>; [all …]
|
/linux-6.6.21/drivers/misc/genwqe/ |
D | card_dev.c | 503 struct genwqe_bitstream *load) in do_flash_update() argument 518 if ((load->size & 0x3) != 0) in do_flash_update() 521 if (((unsigned long)(load->data_addr) & ~PAGE_MASK) != 0) in do_flash_update() 525 switch ((char)load->partition) { in do_flash_update() 539 buf = (u8 __user *)load->data_addr; in do_flash_update() 544 blocks_to_flash = load->size / FLASH_BLOCK; in do_flash_update() 545 while (load->size) { in do_flash_update() 552 tocopy = min_t(size_t, load->size, FLASH_BLOCK); in do_flash_update() 582 req->__asiv[24] = load->uid; in do_flash_update() 586 *(__be64 *)&req->__asiv[88] = cpu_to_be64(load->slu_id); in do_flash_update() [all …]
|
/linux-6.6.21/tools/perf/scripts/python/bin/ |
D | mem-phys-addr-record | 8 load=`perf list | grep mem_inst_retired.all_loads` 9 if [ -z "$load" ]; then 10 load=`perf list | grep mem_uops_retired.all_loads` 12 if [ -z "$load" ]; then 17 arg=$(echo $load | tr -d ' ')
|
/linux-6.6.21/drivers/watchdog/ |
D | sp805_wdt.c | 95 u64 load, rate; in wdt_setload() local 105 load = div_u64(rate, 2) * timeout - 1; in wdt_setload() 107 load = (load > LOAD_MAX) ? LOAD_MAX : load; in wdt_setload() 108 load = (load < LOAD_MIN) ? LOAD_MIN : load; in wdt_setload() 111 wdt->load_val = load; in wdt_setload() 113 wdd->timeout = div_u64((load + 1) * 2 + (rate / 2), rate); in wdt_setload() 123 u64 load; in wdt_timeleft() local 126 load = readl_relaxed(wdt->base + WDTVALUE); in wdt_timeleft() 130 load += wdt->load_val + 1; in wdt_timeleft() 133 return div_u64(load, wdt->rate); in wdt_timeleft()
|
/linux-6.6.21/arch/mips/sibyte/ |
D | Platform | 27 load-$(CONFIG_SIBYTE_CRHONE) := 0xffffffff80100000 28 load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000 29 load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000 30 load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000 31 load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000 32 load-$(CONFIG_SIBYTE_LITTLESUR) := 0xffffffff80100000
|
/linux-6.6.21/kernel/sched/ |
D | pelt.c | 103 unsigned long load, unsigned long runnable, int running) in accumulate_sum() argument 124 if (load) { in accumulate_sum() 141 if (load) in accumulate_sum() 142 sa->load_sum += load * contrib; in accumulate_sum() 181 unsigned long load, unsigned long runnable, int running) in ___update_load_sum() argument 216 if (!load) in ___update_load_sum() 226 if (!accumulate_sum(delta, sa, load, runnable, running)) in ___update_load_sum() 257 ___update_load_avg(struct sched_avg *sa, unsigned long load) in ___update_load_avg() argument 264 sa->load_avg = div_u64(load * sa->load_sum, divider); in ___update_load_avg() 323 scale_load_down(cfs_rq->load.weight), in __update_load_avg_cfs_rq()
|
/linux-6.6.21/arch/powerpc/crypto/ |
D | aes-gcm-p10.S | 526 lxvb16x 32, 0, 8 # load Xi 528 # load Hash - h^4, h^3, h^2, h 582 lxvb16x 30+32, 0, 7 # load IV - v30 592 # load round key to VSR 605 # load rounds - 10 (128), 12 (192), 14 (256) 616 # load 2 more round keys (v11, v12) 623 # load 2 more round keys (v11, v12, v13, v14) 683 lxvb16x 15, 0, 14 # load block 684 lxvb16x 16, 15, 14 # load block 685 lxvb16x 17, 16, 14 # load block [all …]
|
/linux-6.6.21/arch/sh/boot/romimage/ |
D | Makefile | 9 load-y := 0 11 mmcif-load-$(CONFIG_CPU_SUBTYPE_SH7724) := 0xe5200000 # ILRAM 13 load-$(CONFIG_ROMIMAGE_MMCIF) := $(mmcif-load-y) 16 LDFLAGS_vmlinux := --oformat $(ld-bfd) -Ttext $(load-y) -e romstart \
|
/linux-6.6.21/arch/mips/ralink/ |
D | Platform | 9 load-$(CONFIG_SOC_RT288X) += 0xffffffff88000000 15 load-$(CONFIG_SOC_RT305X) += 0xffffffff80000000 21 load-$(CONFIG_SOC_RT3883) += 0xffffffff80000000 27 load-$(CONFIG_SOC_MT7620) += 0xffffffff80000000 32 load-$(CONFIG_SOC_MT7621) += 0xffffffff80001000
|
/linux-6.6.21/include/linux/sched/ |
D | loadavg.h | 29 calc_load(unsigned long load, unsigned long exp, unsigned long active) in calc_load() argument 33 newload = load * exp + active * (FIXED_1 - exp); in calc_load() 34 if (active >= load) in calc_load() 40 extern unsigned long calc_load_n(unsigned long load, unsigned long exp,
|
/linux-6.6.21/arch/mips/sgi-ip22/ |
D | Platform | 4 # Set the load address to >= 0xffffffff88069000 if you want to leave space for 12 load-$(CONFIG_SGI_IP22) += 0xffffffff88002000 15 load-$(CONFIG_SGI_IP22) += 0xffffffff88004000 21 # Set the load address to >= 0xa800000020080000 if you want to leave space for 27 load-$(CONFIG_SGI_IP28) += 0xa800000020004000
|
/linux-6.6.21/arch/m68k/fpsp040/ |
D | do_func.S | 98 | These routines load forced values into fp0. They are called 110 bsr ld_mzero |if neg, load neg zero, return here 118 bne ld_mzero |if neg, load neg zero 119 bra ld_pzero |load positive zero 310 beq ld_pzero |if pos then load +0 311 bra ld_mzero |else neg load -0 448 leal pscalet,%a1 |load start of jump table 449 movel (%a1,%d1.w*4),%a1 |load a1 with label depending on tag 460 beq ld_pzero |if pos then load +0 461 bra ld_mzero |if neg then load -0 [all …]
|
/linux-6.6.21/Documentation/devicetree/bindings/rtc/ |
D | nxp,pcf85063.yaml | 33 quartz-load-femtofarads: 35 The capacitive load of the quartz(x-tal). 57 quartz-load-femtofarads: false 66 quartz-load-femtofarads: 84 quartz-load-femtofarads = <12500>;
|
/linux-6.6.21/drivers/net/can/softing/ |
D | softing_cs.c | 36 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 48 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 60 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 72 .load = {0x0120, 0x00f600, fw_dir "ldcard2.bin",}, 84 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 96 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 108 .load = {0x0120, 0x00f600, fw_dir "ldcard2.bin",}, 120 .load = {0x0120, 0x00f600, fw_dir "ldcard.bin",}, 132 .load = {0x0120, 0x00f600, fw_dir "ldcard2.bin",},
|
/linux-6.6.21/tools/perf/util/ |
D | jitdump.c | 337 jr->load.pid = bswap_32(jr->load.pid); in jit_get_next_entry() 338 jr->load.tid = bswap_32(jr->load.tid); in jit_get_next_entry() 339 jr->load.vma = bswap_64(jr->load.vma); in jit_get_next_entry() 340 jr->load.code_addr = bswap_64(jr->load.code_addr); in jit_get_next_entry() 341 jr->load.code_size = bswap_64(jr->load.code_size); in jit_get_next_entry() 342 jr->load.code_index= bswap_64(jr->load.code_index); in jit_get_next_entry() 382 return jr->load.pid; in jr_entry_pid() 389 return jr->load.tid; in jr_entry_tid() 443 nspid = jr->load.pid; in jit_repipe_code_load() 446 csize = jr->load.code_size; in jit_repipe_code_load() [all …]
|
/linux-6.6.21/fs/cachefiles/ |
D | ondemand.c | 188 struct cachefiles_open *load; in cachefiles_ondemand_get_fd() local 219 load = (void *)req->msg.data; in cachefiles_ondemand_get_fd() 220 load->fd = fd; in cachefiles_ondemand_get_fd() 225 trace_cachefiles_ondemand_open(object, &req->msg, load); in cachefiles_ondemand_get_fd() 401 struct cachefiles_open *load = (void *)req->msg.data; in cachefiles_ondemand_init_open_req() local 421 load->volume_key_size = volume_key_size; in cachefiles_ondemand_init_open_req() 422 load->cookie_key_size = cookie_key_size; in cachefiles_ondemand_init_open_req() 423 memcpy(load->data, volume_key, volume_key_size); in cachefiles_ondemand_init_open_req() 424 memcpy(load->data + volume_key_size, cookie_key, cookie_key_size); in cachefiles_ondemand_init_open_req() 458 struct cachefiles_read *load = (void *)req->msg.data; in cachefiles_ondemand_init_read_req() local [all …]
|
/linux-6.6.21/Documentation/leds/ |
D | leds-mt6370-rgb.rst | 50 * Tr1: First rising time for 0% - 30% load. 51 * Tr2: Second rising time for 31% - 100% load. 52 * Ton: On time for 100% load. 53 * Tf1: First falling time for 100% - 31% load. 54 * Tf2: Second falling time for 30% to 0% load. 55 * Toff: Off time for 0% load.
|
/linux-6.6.21/arch/arm/include/debug/ |
D | 8250.S | 21 .macro load, rd, rx:vararg macro 30 .macro load, rd, rx:vararg macro 42 1002: load \rd, [\rx, #UART_LSR << UART_SHIFT] 52 1001: load \rd, [\rx, #UART_MSR << UART_SHIFT]
|
/linux-6.6.21/arch/mips/alchemy/ |
D | Platform | 13 load-$(CONFIG_MIPS_DB1XXX) += 0xffffffff80100000 18 load-$(CONFIG_MIPS_MTX1) += 0xffffffff80100000 23 load-$(CONFIG_MIPS_XXS1500) += 0xffffffff80100000 28 load-$(CONFIG_MIPS_GPR) += 0xffffffff80100000
|
/linux-6.6.21/arch/mips/kernel/ |
D | cmpxchg.c | 53 u32 mask, old32, new32, load32, load; in __cmpxchg_small() local 88 load = (load32 & mask) >> shift; in __cmpxchg_small() 89 if (load != old) in __cmpxchg_small() 90 return load; in __cmpxchg_small()
|
/linux-6.6.21/tools/memory-model/Documentation/ |
D | glossary.txt | 8 based on the value returned by an earlier load, an "address 9 dependency" extends from that load extending to the later access. 29 a special operation that includes a load and which orders that 30 load before later memory references running on that same CPU. 35 When an acquire load returns the value stored by a release store 36 to that same variable, (in other words, the acquire load "reads 38 store "happen before" any operations following that load acquire. 55 of a value computed from a value returned by an earlier load, 56 a "control dependency" extends from that load to that store. 89 on the value returned by an earlier load, a "data dependency" [all …]
|