/openbmc/linux/tools/testing/selftests/powerpc/ptrace/ |
H A D | ptrace-vsx.h | 18 if (vsx[i] != load[2 * i + 1]) { in validate_vsx() 41 load[64 + 2 * i]); in validate_vmx() 44 load[65 + 2 * i]); in validate_vmx() 55 load[65 + 2 * i]); in validate_vmx() 58 load[64 + 2 * i]); in validate_vmx() 78 1 + 2 * i, load[i]); in compare_vsx_vmx() 85 if (store[i] != load[i]) { in compare_vsx_vmx() 87 i, store[i], i, load[i]); in compare_vsx_vmx() 114 vsx[i] = load[1 + 2 * i]; in load_vsx_vmx() 117 vmx[i][0] = load[64 + 2 * i]; in load_vsx_vmx() [all …]
|
/openbmc/linux/tools/power/cpupower/bench/ |
H A D | README-BENCH | 34 You can specify load (100% CPU load) and sleep (0% CPU load) times in us which 38 load=25000 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 88 load -----| |-----| |-----| |-----| 109 -l, --load=<long int> initial load time in us 111 -x, --load-step=<long int> time to be added to load time, in us [all …]
|
/openbmc/qemu/hw/timer/ |
H A D | cmsdk-apb-dualtimer.c | 169 uint32_t load; in cmsdk_dualtimermod_write_control() local 172 load = m->load; in cmsdk_dualtimermod_write_control() 177 load = deposit32(m->load, 0, 16, load); in cmsdk_dualtimermod_write_control() 179 m->load = load; in cmsdk_dualtimermod_write_control() 183 load &= 0xffff; in cmsdk_dualtimermod_write_control() 190 uint32_t value, load; in cmsdk_dualtimermod_write_control() local 206 load = deposit32(m->load, 0, 16, load); in cmsdk_dualtimermod_write_control() 208 m->load = load; in cmsdk_dualtimermod_write_control() 284 r = m->load; in cmsdk_apb_dualtimer_read() 348 m->load = value; in cmsdk_apb_dualtimer_write() [all …]
|
/openbmc/u-boot/common/spl/ |
H A D | spl_nor.c | 10 static ulong spl_nor_load_read(struct spl_load_info *load, ulong sector, in spl_nor_load_read() argument 26 __maybe_unused struct spl_load_info load; in spl_nor_load_image() local 44 load.bl_len = 1; in spl_nor_load_image() 45 load.read = spl_nor_load_read; in spl_nor_load_image() 47 ret = spl_load_simple_fit(spl_image, &load, in spl_nor_load_image() 86 load.bl_len = 1; in spl_nor_load_image() 87 load.read = spl_nor_load_read; in spl_nor_load_image() 88 ret = spl_load_simple_fit(spl_image, &load, in spl_nor_load_image()
|
H A D | spl_spi.c | 53 static ulong spl_spi_fit_read(struct spl_load_info *load, ulong sector, in spl_spi_fit_read() argument 56 struct spi_flash *flash = load->dev; in spl_spi_fit_read() 123 struct spl_load_info load; in spl_spi_load_image() local 126 load.dev = flash; in spl_spi_load_image() 127 load.priv = NULL; in spl_spi_load_image() 128 load.filename = NULL; in spl_spi_load_image() 129 load.bl_len = 1; in spl_spi_load_image() 130 load.read = spl_spi_fit_read; in spl_spi_load_image() 131 err = spl_load_simple_fit(spl_image, &load, in spl_spi_load_image()
|
H A D | spl_nand.c | 30 static ulong spl_nand_fit_read(struct spl_load_info *load, ulong offs, in spl_nand_fit_read() argument 53 struct spl_load_info load; in spl_nand_load_element() local 56 load.dev = NULL; in spl_nand_load_element() 57 load.priv = NULL; in spl_nand_load_element() 58 load.filename = NULL; in spl_nand_load_element() 59 load.bl_len = 1; in spl_nand_load_element() 60 load.read = spl_nand_fit_read; in spl_nand_load_element() 61 return spl_load_simple_fit(spl_image, &load, offset, header); in spl_nand_load_element()
|
H A D | spl_ymodem.c | 36 static ulong ymodem_read_fit(struct spl_load_info *load, ulong offset, in ymodem_read_fit() argument 40 struct ymodem_fit_info *info = load->priv; in ymodem_read_fit() 95 struct spl_load_info load; in spl_ymodem_load_image() local 99 load.dev = NULL; in spl_ymodem_load_image() 100 load.priv = (void *)&info; in spl_ymodem_load_image() 101 load.filename = NULL; in spl_ymodem_load_image() 102 load.bl_len = 1; in spl_ymodem_load_image() 105 load.read = ymodem_read_fit; in spl_ymodem_load_image() 106 ret = spl_load_simple_fit(spl_image, &load, 0, (void *)buf); in spl_ymodem_load_image()
|
H A D | spl_fat.c | 41 static ulong spl_fit_read(struct spl_load_info *load, ulong file_offset, in spl_fit_read() argument 46 char *filename = (char *)load->filename; in spl_fit_read() 85 struct spl_load_info load; in spl_load_image_fat() local 88 load.read = spl_fit_read; in spl_load_image_fat() 89 load.bl_len = 1; in spl_load_image_fat() 90 load.filename = (void *)filename; in spl_load_image_fat() 91 load.priv = NULL; in spl_load_image_fat() 93 return spl_load_simple_fit(spl_image, &load, 0, header); in spl_load_image_fat()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libsmi/libsmi/ |
H A D | smi.conf | 31 load SNMPv2-SMI 32 load SNMPv2-TC 33 load SNMPv2-CONF 44 tcpdump: load DISMAN-SCRIPT-MIB 45 tcpdump: load IF-MIB 47 smiquery: load IF-MIB
|
/openbmc/linux/arch/arm64/boot/dts/qcom/ |
H A D | msm8994-msft-lumia-octagon.dtsi | 586 regulator-allow-set-load; 593 regulator-allow-set-load; 601 regulator-allow-set-load; 623 regulator-allow-set-load; 631 regulator-allow-set-load; 645 regulator-allow-set-load; 670 regulator-allow-set-load; 678 regulator-allow-set-load; 686 regulator-allow-set-load; 694 regulator-allow-set-load; [all …]
|
/openbmc/linux/tools/perf/scripts/python/bin/ |
H A 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 ' ')
|
/openbmc/linux/arch/mips/sibyte/ |
H A 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
|
/openbmc/linux/drivers/misc/genwqe/ |
H A D | card_dev.c | 545 while (load->size) { in do_flash_update() 612 load->retc = req->retc; in do_flash_update() 613 load->attn = req->attn; in do_flash_update() 627 load->size -= tocopy; in do_flash_update() 681 while (load->size) { in do_flash_read() 730 load->retc = cmd->retc; in do_flash_read() 756 load->size -= tocopy; in do_flash_read() 1160 sizeof(load))) in genwqe_ioctl() 1165 if (copy_to_user((void __user *)arg, &load, sizeof(load))) in genwqe_ioctl() 1180 if (copy_from_user(&load, (void __user *)arg, sizeof(load))) in genwqe_ioctl() [all …]
|
/openbmc/qemu/linux-user/ppc/ |
H A D | vdso-64.ld | 25 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */ 39 .note : { *(.note*) } :load :note 40 .dynamic : { *(.dynamic) } :load :dynamic 41 .dynsym : { *(.dynsym) } :load 64 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr 65 .eh_frame : { *(.eh_frame) } :load 67 .text : { *(.text*) } :load
|
H A D | vdso-32.ld | 27 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */ 41 .note : { *(.note*) } :load :note 42 .dynamic : { *(.dynamic) } :load :dynamic 43 .dynsym : { *(.dynsym) } :load 66 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr 67 .eh_frame : { *(.eh_frame) } :load 69 .text : { *(.text*) } :load
|
/openbmc/qemu/linux-user/arm/ |
H A D | vdso.ld | 24 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */ 38 .note : { *(.note*) } :load :note 39 .dynamic : { *(.dynamic) } :load :dynamic 40 .dynsym : { *(.dynsym) } :load 63 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr 64 .eh_frame : { *(.eh_frame) } :load 66 .text : { *(.text*) } :load
|
/openbmc/qemu/linux-user/x86_64/ |
H A D | vdso.ld | 30 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */ 44 .note : { *(.note*) } :load :note 45 .dynamic : { *(.dynamic) } :load :dynamic 46 .dynsym : { *(.dynsym) } :load 69 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr 70 .eh_frame : { *(.eh_frame) } :load 72 .text : { *(.text*) } :load =0x90909090
|
/openbmc/qemu/linux-user/i386/ |
H A D | vdso.ld | 33 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */ 47 .note : { *(.note*) } :load :note 48 .dynamic : { *(.dynamic) } :load :dynamic 49 .dynsym : { *(.dynsym) } :load 72 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr 73 .eh_frame : { *(.eh_frame) } :load 75 .text : { *(.text*) } :load =0x90909090
|
/openbmc/linux/drivers/watchdog/ |
H A 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()
|
/openbmc/u-boot/doc/uImage.FIT/ |
H A D | multi_spl.its | 6 * Several binaries will be loaded at their respective load addresses. 28 load = <0x4a000000>; 36 load = <0x18000>; 45 load = <0x40000>; 52 load = <0x4fa00000>; 60 load = <0x4fa00000>; 68 load = <0x40080000>; 76 load = <0x4fe00000>;
|
/openbmc/qemu/linux-user/s390x/ |
H A D | vdso.ld | 29 load PT_LOAD FLAGS(7) FILEHDR PHDRS; /* FLAGS=RWX */ 43 .note : { *(.note*) } :load :note 44 .dynamic : { *(.dynamic) } :load :dynamic 45 .dynsym : { *(.dynsym) } :load 68 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr 69 .eh_frame : { *(.eh_frame) } :load 71 .text : { *(.text*) } :load
|
/openbmc/qemu/hw/ppc/ |
H A D | spapr_nested.c | 242 env->lr = load->lr; in nested_load_state() 243 env->ctr = load->ctr; in nested_load_state() 244 env->cfar = load->cfar; in nested_load_state() 245 env->msr = load->msr; in nested_load_state() 246 env->nip = load->nip; in nested_load_state() 248 ppc_set_cr(env, load->cr); in nested_load_state() 249 cpu_write_xer(env, load->xer); in nested_load_state() 251 env->spr[SPR_LPCR] = load->lpcr; in nested_load_state() 253 env->spr[SPR_PCR] = load->pcr; in nested_load_state() 256 env->spr[SPR_SRR0] = load->srr0; in nested_load_state() [all …]
|
/openbmc/linux/kernel/sched/ |
H A 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()
|
/openbmc/qemu/docs/devel/migration/ |
H A D | virtio.rst | 74 load() function registered 79 - load proxy device 80 - load transport-specific 82 - load common device 84 - load common virtqueue 87 - load transport-specific 91 - load device-specific 93 - load subsections 107 Devices need to be careful in their state processing during load: The 110 therefore has to be invoked in the device's load() function _after_
|
/openbmc/qemu/linux-user/riscv/ |
H A D | vdso.ld | 26 load PT_LOAD FLAGS(7) FILEHDR PHDRS; 45 .note : { *(.note*) } :load :note 46 .dynamic : { *(.dynamic) } :load :dynamic 47 .dynsym : { *(.dynsym) } :load 70 .eh_frame_hdr : { *(.eh_frame_hdr) } :load :eh_frame_hdr 71 .eh_frame : { *(.eh_frame) } :load 73 .text : { *(.text*) } :load =0xd503201f
|