Home
last modified time | relevance | path

Searched refs:load (Results 1 – 25 of 1815) sorted by relevance

12345678910>>...73

/openbmc/linux/tools/testing/selftests/powerpc/ptrace/
H A Dptrace-vsx.h13 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 …]
/openbmc/linux/tools/power/cpupower/bench/
H A DREADME-BENCH9 - 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 …]
/openbmc/qemu/hw/timer/
H A Dcmsdk-apb-dualtimer.c169 uint32_t load; in cmsdk_dualtimermod_write_control() local
172 load = m->load; in cmsdk_dualtimermod_write_control()
175 load = ptimer_get_limit(m->timer); 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()
180 load = 0xffffffff; in cmsdk_dualtimermod_write_control()
183 load &= 0xffff; in cmsdk_dualtimermod_write_control()
185 ptimer_set_limit(m->timer, load, 0); in cmsdk_dualtimermod_write_control()
190 uint32_t value, load; in cmsdk_dualtimermod_write_control() local
193 load = ptimer_get_limit(m->timer); in cmsdk_dualtimermod_write_control()
[all …]
/openbmc/linux/arch/arm64/boot/dts/qcom/
H A Dmsm8994-msft-lumia-octagon.dtsi31 * 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 …]
/openbmc/u-boot/common/spl/
H A Dspl_nor.c10 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 Dspl_spi.c53 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 Dspl_ymodem.c36 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 Dspl_nand.c30 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 Dspl_fat.c41 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-arm/meta-arm-bsp/recipes-bsp/trusted-firmware-a/files/fvp-base/
H A Doptee_spmc_maifest.dts53 load-address = <0x0 0x7a00000>;
57 load-address = <0x0 0x7a80000>;
62 load-address = <0x0 0x7b00000>;
67 load-address = <0x0 0x7b80000>;
73 load-address = <0x0 0x7c80000>;
80 load-address = <0x0 0x7d00000>;
87 load-address = <0x0 0x7d80000>;
94 load-address = <0x0 0x7a00000>;
99 load-address = <0x0 0x7a20000>;
104 load-address = <0x0 0x7a40000>;
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libsmi/libsmi/
H A Dsmi.conf31 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/drivers/misc/genwqe/
H A Dcard_dev.c503 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 …]
/openbmc/linux/tools/perf/scripts/python/bin/
H A Dmem-phys-addr-record8 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/drivers/watchdog/
H A Dsp805_wdt.c95 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/qemu/hw/ppc/
H A Dspapr_nested.c235 static void nested_load_state(PowerPCCPU *cpu, struct nested_ppc_state *load) in nested_load_state() argument
240 memcpy(env->gpr, load->gpr, sizeof(env->gpr)); in nested_load_state()
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()
[all …]
/openbmc/linux/arch/mips/sibyte/
H A DPlatform27 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/qemu/linux-user/x86_64/
H A Dvdso.ld30 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/arm/
H A Dvdso.ld24 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/ppc/
H A Dvdso-32.ld27 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
H A Dvdso-64.ld25 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
/openbmc/qemu/linux-user/i386/
H A Dvdso.ld33 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/u-boot/doc/uImage.FIT/
H A Dmulti_spl.its6 * 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 Dvdso.ld29 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/docs/devel/migration/
H A Dvirtio.rst74 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/linux/kernel/sched/
H A Dpelt.c103 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()

12345678910>>...73