/openbmc/linux/drivers/staging/vme_user/ |
H A D | vme_fake.c | 49 u32 cycle; member 57 u32 cycle; member 156 dma_addr_t buf_base, u32 aspace, u32 cycle) in fake_slave_set() argument 213 bridge->slaves[i].cycle = cycle; in fake_slave_set() 225 dma_addr_t *buf_base, u32 *aspace, u32 *cycle) in fake_slave_get() argument 241 *cycle = bridge->slaves[i].cycle; in fake_slave_get() 253 u32 aspace, u32 cycle, u32 dwidth) in fake_master_set() argument 321 bridge->masters[i].cycle = cycle; in fake_master_set() 339 u32 *aspace, u32 *cycle, u32 *dwidth) in __fake_master_get() argument 352 *cycle = bridge->masters[i].cycle; in __fake_master_get() [all …]
|
H A D | vme_tsi148.c | 468 dma_addr_t pci_base, u32 aspace, u32 cycle) in tsi148_slave_set() argument 554 switch (cycle & (VME_2eSST160 | VME_2eSST267 | VME_2eSST320)) { in tsi148_slave_set() 568 if (cycle & VME_BLT) in tsi148_slave_set() 570 if (cycle & VME_MBLT) in tsi148_slave_set() 572 if (cycle & VME_2eVME) in tsi148_slave_set() 574 if (cycle & VME_2eSST) in tsi148_slave_set() 576 if (cycle & VME_2eSSTB) in tsi148_slave_set() 584 if (cycle & VME_SUPER) in tsi148_slave_set() 586 if (cycle & VME_USER) in tsi148_slave_set() 588 if (cycle & VME_PROG) in tsi148_slave_set() [all …]
|
H A D | vme.c | 167 u32 aspace, cycle, dwidth; in vme_get_size() local 172 &aspace, &cycle, &dwidth); in vme_get_size() 179 &buf_base, &aspace, &cycle); in vme_get_size() 282 u32 cycle) in vme_slave_request() argument 309 ((slave_image->cycle_attr & cycle) == cycle) && in vme_slave_request() 362 dma_addr_t buf_base, u32 aspace, u32 cycle) in vme_slave_set() argument 381 ((image->cycle_attr & cycle) == cycle))) { in vme_slave_set() 391 aspace, cycle); in vme_slave_set() 412 dma_addr_t *buf_base, u32 *aspace, u32 *cycle) in vme_slave_get() argument 430 aspace, cycle); in vme_slave_get() [all …]
|
/openbmc/linux/drivers/ata/ |
H A D | libata-pata-timings.c | 70 q->cycle = EZ(t->cycle, T); in ata_timing_quantize() 92 m->cycle = max(a->cycle, b->cycle); in ata_timing_merge() 141 p.cycle = p.cyc8b = id[ATA_ID_EIDE_PIO]; in ata_timing_compute() 144 p.cycle = p.cyc8b = id[ATA_ID_EIDE_PIO_IORDY]; in ata_timing_compute() 146 p.cycle = id[ATA_ID_EIDE_DMA_MIN]; in ata_timing_compute() 177 if (t->active + t->recover < t->cycle) { in ata_timing_compute() 178 t->active += (t->cycle - (t->active + t->recover)) / 2; in ata_timing_compute() 179 t->recover = t->cycle - t->active; in ata_timing_compute() 187 if (t->active + t->recover > t->cycle) in ata_timing_compute() 188 t->cycle = t->active + t->recover; in ata_timing_compute()
|
/openbmc/linux/arch/alpha/lib/ |
H A D | ev6-csum_ipv6_magic.S | 116 cmpult $20,$3,$3 # E : (1 cycle stall on $20) 117 addq $20,$18,$20 # E : U L U L (1 cycle stall on $20) 120 addq $20,$19,$20 # E : (1 cycle stall on $20) 125 addq $18,$19,$18 # E : (1 cycle stall on $19) 131 zapnot $0,15,$1 # U : Start folding output (1 cycle stall on $0) 133 srl $0,32,$0 # U : U L U L : (1 cycle stall on $0) 136 extwl $1,2,$2 # U : ushort[1] (1 cycle stall on $1) 137 zapnot $1,3,$0 # U : ushort[0] (1 cycle stall on $1) 138 extwl $1,4,$1 # U : ushort[2] (1 cycle stall on $1) 143 extwl $3,2,$1 # U : ushort[1] (1 cycle stall on $3) [all …]
|
/openbmc/linux/scripts/ |
H A D | headerdep.pl | 116 my $cycle = shift; 119 for my $i (0 .. $#$cycle - 1) { 120 $cycle->[$i]->[0] = $cycle->[$i + 1]->[0]; 122 $cycle->[-1]->[0] = 0; 124 my $first = shift @$cycle; 125 my $last = pop @$cycle; 130 for my $header (reverse @$cycle) {
|
/openbmc/linux/kernel/locking/ |
H A D | test-ww_mutex.c | 288 struct test_cycle *cycle = container_of(work, typeof(*cycle), work); in test_cycle_work() local 293 ww_mutex_lock(&cycle->a_mutex, &ctx); in test_cycle_work() 295 complete(cycle->a_signal); in test_cycle_work() 296 wait_for_completion(&cycle->b_signal); in test_cycle_work() 298 err = ww_mutex_lock(cycle->b_mutex, &ctx); in test_cycle_work() 301 ww_mutex_unlock(&cycle->a_mutex); in test_cycle_work() 302 ww_mutex_lock_slow(cycle->b_mutex, &ctx); in test_cycle_work() 303 erra = ww_mutex_lock(&cycle->a_mutex, &ctx); in test_cycle_work() 307 ww_mutex_unlock(cycle->b_mutex); in test_cycle_work() 309 ww_mutex_unlock(&cycle->a_mutex); in test_cycle_work() [all …]
|
/openbmc/linux/drivers/clocksource/ |
H A D | timer-atmel-pit.c | 43 u32 cycle; member 85 elapsed += PIT_PICNT(t) * data->cycle; in read_pit_clk() 95 pit_write(data->base, AT91_PIT_MR, (data->cycle - 1) | AT91_PIT_PITEN); in pit_clkevt_shutdown() 107 data->cnt += data->cycle * PIT_PICNT(pit_read(data->base, AT91_PIT_PIVR)); in pit_clkevt_set_periodic() 109 (data->cycle - 1) | AT91_PIT_PITEN | AT91_PIT_PITIEN); in pit_clkevt_set_periodic() 132 (data->cycle - 1) | AT91_PIT_PITEN); in at91sam926x_pit_reset() 153 data->cnt += data->cycle * PIT_PICNT(pit_read(data->base, in at91sam926x_pit_interrupt() 210 data->cycle = DIV_ROUND_CLOSEST(pit_rate, HZ); in at91sam926x_pit_dt_init() 211 WARN_ON(((data->cycle - 1) & ~AT91_PIT_PIV) != 0); in at91sam926x_pit_dt_init() 220 bits = 12 /* PICNT */ + ilog2(data->cycle) /* PIV */; in at91sam926x_pit_dt_init()
|
/openbmc/u-boot/arch/mips/mach-ath79/ar934x/ |
H A D | ddr.c | 42 u32 reg, cycle, ctl; in ar934x_ddr_init() local 51 cycle = 0xffff; in ar934x_ddr_init() 57 cycle = 0xff; in ar934x_ddr_init() 59 cycle = 0xffff; in ar934x_ddr_init() 63 cycle = 0xffff; /* DDR2 16bit */ in ar934x_ddr_init() 80 cycle = 0xffffffff; in ar934x_ddr_init() 147 writel(cycle, ddr_regs + AR71XX_DDR_REG_RD_CYCLE); in ar934x_ddr_init()
|
/openbmc/linux/fs/xfs/ |
H A D | xfs_log_priv.h | 534 xlog_crack_atomic_lsn(atomic64_t *lsn, uint *cycle, uint *block) in xlog_crack_atomic_lsn() argument 538 *cycle = CYCLE_LSN(val); in xlog_crack_atomic_lsn() 546 xlog_assign_atomic_lsn(atomic64_t *lsn, uint cycle, uint block) in xlog_assign_atomic_lsn() argument 548 atomic64_set(lsn, xlog_assign_lsn(cycle, block)); in xlog_assign_atomic_lsn() 557 xlog_crack_grant_head_val(int64_t val, int *cycle, int *space) in xlog_crack_grant_head_val() argument 559 *cycle = val >> 32; in xlog_crack_grant_head_val() 564 xlog_crack_grant_head(atomic64_t *head, int *cycle, int *space) in xlog_crack_grant_head() argument 566 xlog_crack_grant_head_val(atomic64_read(head), cycle, space); in xlog_crack_grant_head() 570 xlog_assign_grant_head_val(int cycle, int space) in xlog_assign_grant_head_val() argument 572 return ((int64_t)cycle << 32) | space; in xlog_assign_grant_head_val() [all …]
|
H A D | xfs_sysfs.c | 348 int cycle; in log_head_lsn_show() local 353 cycle = log->l_curr_cycle; in log_head_lsn_show() 357 return sysfs_emit(buf, "%d:%d\n", cycle, block); in log_head_lsn_show() 366 int cycle; in log_tail_lsn_show() local 370 xlog_crack_atomic_lsn(&log->l_tail_lsn, &cycle, &block); in log_tail_lsn_show() 371 return sysfs_emit(buf, "%d:%d\n", cycle, block); in log_tail_lsn_show() 381 int cycle; in reserve_grant_head_show() local 385 xlog_crack_grant_head(&log->l_reserve_head.grant, &cycle, &bytes); in reserve_grant_head_show() 386 return sysfs_emit(buf, "%d:%d\n", cycle, bytes); in reserve_grant_head_show() 395 int cycle; in write_grant_head_show() local [all …]
|
/openbmc/linux/drivers/pwm/ |
H A D | pwm-sl28cpld.c | 130 unsigned int cycle, prescaler; in sl28cpld_pwm_apply() local 153 cycle = SL28CPLD_PWM_FROM_DUTY_CYCLE(state->duty_cycle); in sl28cpld_pwm_apply() 154 cycle = min_t(unsigned int, cycle, SL28CPLD_PWM_MAX_DUTY_CYCLE(prescaler)); in sl28cpld_pwm_apply() 164 if (cycle == SL28CPLD_PWM_MAX_DUTY_CYCLE(0)) { in sl28cpld_pwm_apply() 167 cycle = SL28CPLD_PWM_MAX_DUTY_CYCLE(1); in sl28cpld_pwm_apply() 182 ret = sl28cpld_pwm_write(priv, SL28CPLD_PWM_CYCLE, cycle); in sl28cpld_pwm_apply() 192 ret = sl28cpld_pwm_write(priv, SL28CPLD_PWM_CYCLE, cycle); in sl28cpld_pwm_apply()
|
/openbmc/linux/tools/power/cpupower/bench/ |
H A D | benchmark.c | 80 unsigned int _round, cycle; in start_benchmark() local 125 for (cycle = 0; cycle < config->cycles; cycle++) { in start_benchmark() 151 for (cycle = 0; cycle < config->cycles; cycle++) { in start_benchmark()
|
/openbmc/qemu/tests/qapi-schema/ |
H A D | include-cycle.err | 1 In file included from include-cycle.json:1: 2 In file included from include-cycle-b.json:1: 3 include-cycle-c.json:1: inclusion loop for include-cycle.json
|
/openbmc/openbmc/meta-facebook/meta-harma/recipes-phosphor/state/phosphor-state-manager/ |
H A D | chassis-powercycle | 6 #Sled cycle 9 chassis-power-cycle() { 37 aegis-power-cycle() { 48 chassis-power-cycle 51 aegis-power-cycle
|
/openbmc/linux/sound/firewire/ |
H A D | amdtp-stream.c | 484 static unsigned int compute_syt_offset(unsigned int syt, unsigned int cycle, in compute_syt_offset() argument 487 unsigned int cycle_lo = (cycle % CYCLES_PER_SECOND) & 0x0f; in compute_syt_offset() 534 dst->syt_offset = compute_syt_offset(src->syt, src->cycle, transfer_delay); in cache_seq() 689 static void build_it_pkt_header(struct amdtp_stream *s, unsigned int cycle, in build_it_pkt_header() argument 709 trace_amdtp_packet(s, cycle, cip_header, payload_length + header_length, data_blocks, in build_it_pkt_header() 812 static int parse_ir_ctx_header(struct amdtp_stream *s, unsigned int cycle, in parse_ir_ctx_header() argument 861 trace_amdtp_packet(s, cycle, cip_header, payload_length, *data_blocks, in parse_ir_ctx_header() 881 static inline u32 increment_ohci_cycle_count(u32 cycle, unsigned int addend) in increment_ohci_cycle_count() argument 883 cycle += addend; in increment_ohci_cycle_count() 884 if (cycle >= OHCI_SECOND_MODULUS * CYCLES_PER_SECOND) in increment_ohci_cycle_count() [all …]
|
/openbmc/openbmc/meta-fii/meta-kudo/recipes-kudo/hotswap-power-cycle/ |
H A D | hotswap-power-cycle.bb | 13 SRC_URI += " file://hotswap-power-cycle.service" 17 …install -m 0644 ${UNPACKDIR}/hotswap-power-cycle.service ${D}${systemd_unitdir}/system/hotswap-pow… 21 SYSTEMD_SERVICE:${PN} = " hotswap-power-cycle.service"
|
/openbmc/linux/Documentation/admin-guide/perf/ |
H A D | alibaba_pmu.rst | 27 pmu_cycle_cnt_low and pmu_cycle_cnt_high, that is used as the cycle count 61 -e ali_drw_21000/cycle/ \ 65 -e ali_drw_21080/cycle/ \ 69 -e ali_drw_23000/cycle/ \ 73 -e ali_drw_23080/cycle/ \ 77 -e ali_drw_25000/cycle/ \ 81 -e ali_drw_25080/cycle/ \ 85 -e ali_drw_27000/cycle/ \ 89 -e ali_drw_27080/cycle/ -- sleep 10
|
/openbmc/linux/Documentation/hwmon/ |
H A D | dme1737.rst | 167 cycle) of the input. The chip adjusts the sampling rate based on this value. 178 manual mode, the fan speed is set by writing the duty-cycle value to the 180 current duty-cycle as set by the fan controller in the chip. All PWM outputs 198 pwm[1-3]_auto_point2_pwm full-speed duty-cycle (255, i.e., 100%) 199 pwm[1-3]_auto_point1_pwm low-speed duty-cycle 200 pwm[1-3]_auto_pwm_min min-speed duty-cycle 208 The chip adjusts the output duty-cycle linearly in the range of auto_point1_pwm 211 auto_point1_temp_hyst value, the output duty-cycle is set to the auto_pwm_min 214 duty-cycle. If any of the temperatures rise above the auto_point3_temp value, 215 all PWM outputs are set to 100% duty-cycle. [all …]
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/nginx/files/ |
H A D | nginx-fix-pidfile.patch | 31 if (ngx_init_signals(cycle->log) != NGX_OK) { 39 - if (ngx_daemon(cycle->log) != NGX_OK) { 40 + child_pid = ngx_daemon(cycle->log); 49 - if (ngx_create_pidfile(&ccf->pid, cycle->log) != NGX_OK) { 58 + if (ngx_create_pidfile(&ccf->pid, cycle->log) != NGX_OK) { 66 if (ngx_log_redirect_stderr(cycle) != NGX_OK) {
|
/openbmc/u-boot/drivers/pwm/ |
H A D | Kconfig | 6 control over the duty cycle (high and low time) of the signal. This 17 supports a programmable period and duty cycle. A 32-bit counter is 26 programmable period and duty cycle. A 32-bit counter is used. 43 four channels with a programmable period and duty cycle. Only a 44 32KHz clock is supported by the driver but the duty cycle is 52 programmable period and duty cycle. A 16-bit counter is used.
|
/openbmc/linux/arch/mips/dec/ |
H A D | kn02xa-berr.c | 53 const char *kind, *agent, *cycle, *event; in dec_kn02xa_be_backend() local 72 cycle = mreadstr; in dec_kn02xa_be_backend() 75 cycle = invoker ? writestr : readstr; in dec_kn02xa_be_backend() 84 kind, agent, cycle, event, address); in dec_kn02xa_be_backend()
|
/openbmc/linux/drivers/mfd/ |
H A D | atmel-smc.c | 229 conf->cycle &= ~GENMASK(shift + 15, shift); in atmel_smc_cs_conf_set_cycle() 230 conf->cycle |= val << shift; in atmel_smc_cs_conf_set_cycle() 250 regmap_write(regmap, ATMEL_SMC_CYCLE(cs), conf->cycle); in atmel_smc_cs_conf_apply() 271 regmap_write(regmap, ATMEL_HSMC_CYCLE(layout, cs), conf->cycle); in atmel_hsmc_cs_conf_apply() 291 regmap_read(regmap, ATMEL_SMC_CYCLE(cs), &conf->cycle); in atmel_smc_cs_conf_get() 312 regmap_read(regmap, ATMEL_HSMC_CYCLE(layout, cs), &conf->cycle); in atmel_hsmc_cs_conf_get()
|
/openbmc/openbmc/meta-facebook/meta-minerva/recipes-phosphor/state/phosphor-state-manager/ |
H A D | chassis-powercycle | 8 cmm-hsc-power-cycle() { 73 cmm-hsc-power-cycle 82 cmm-hsc-power-cycle
|
/openbmc/openbmc/meta-quanta/meta-olympus-nuvoton/recipes-olympus-nuvoton/hotswap-power-cycle/ |
H A D | adm1278-hotswap-power-cycle.bb | 12 SRC_URI = " file://hotswap-power-cycle.service" 16 install -m 0644 ${UNPACKDIR}/hotswap-power-cycle.service ${D}${systemd_system_unitdir} 20 SYSTEMD_SERVICE:${PN} = "hotswap-power-cycle.service"
|