/linux-4.1.27/include/linux/mfd/syscon/ |
D | atmel-smc.h | 89 u32 cycles; in at91sam9_smc_setup_ns_to_cycles() local 91 cycles = DIV_ROUND_UP(timing_ns, clk_period); in at91sam9_smc_setup_ns_to_cycles() 92 if (cycles / 32) { in at91sam9_smc_setup_ns_to_cycles() 94 if (cycles < 128) in at91sam9_smc_setup_ns_to_cycles() 95 cycles = 0; in at91sam9_smc_setup_ns_to_cycles() 98 coded_cycles |= cycles % 32; in at91sam9_smc_setup_ns_to_cycles() 119 u32 cycles; in at91sam9_smc_pulse_ns_to_cycles() local 121 cycles = DIV_ROUND_UP(timing_ns, clk_period); in at91sam9_smc_pulse_ns_to_cycles() 122 if (cycles / 64) { in at91sam9_smc_pulse_ns_to_cycles() 124 if (cycles < 256) in at91sam9_smc_pulse_ns_to_cycles() [all …]
|
/linux-4.1.27/drivers/memory/ |
D | jz4780-nemc.c | 158 uint32_t smcr, val, cycles; in jz4780_nemc_configure_bank() local 204 cycles = jz4780_nemc_ns_to_cycles(nemc, val); in jz4780_nemc_configure_bank() 205 if (cycles > 15) { in jz4780_nemc_configure_bank() 207 val, cycles); in jz4780_nemc_configure_bank() 211 smcr |= cycles << NEMC_SMCR_TAS_SHIFT; in jz4780_nemc_configure_bank() 216 cycles = jz4780_nemc_ns_to_cycles(nemc, val); in jz4780_nemc_configure_bank() 217 if (cycles > 15) { in jz4780_nemc_configure_bank() 219 val, cycles); in jz4780_nemc_configure_bank() 223 smcr |= cycles << NEMC_SMCR_TAH_SHIFT; in jz4780_nemc_configure_bank() 228 cycles = jz4780_nemc_ns_to_cycles(nemc, val); in jz4780_nemc_configure_bank() [all …]
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/ |
D | en_clock.c | 44 container_of(tc, struct mlx4_en_dev, cycles); in mlx4_en_read_clock() 133 mdev->cycles.mult = neg_adj ? mult - diff : mult + diff; in mlx4_en_phc_adjfreq() 202 timecounter_init(&mdev->clock, &mdev->cycles, ns); in mlx4_en_phc_settime() 265 memset(&mdev->cycles, 0, sizeof(mdev->cycles)); in mlx4_en_init_timestamp() 266 mdev->cycles.read = mlx4_en_read_clock; in mlx4_en_init_timestamp() 267 mdev->cycles.mask = CLOCKSOURCE_MASK(48); in mlx4_en_init_timestamp() 268 mdev->cycles.shift = freq_to_shift(dev->caps.hca_core_clock); in mlx4_en_init_timestamp() 269 mdev->cycles.mult = in mlx4_en_init_timestamp() 270 clocksource_khz2mult(1000 * dev->caps.hca_core_clock, mdev->cycles.shift); in mlx4_en_init_timestamp() 271 mdev->nominal_c_mult = mdev->cycles.mult; in mlx4_en_init_timestamp() [all …]
|
D | mlx4_en.h | 408 struct cyclecounter cycles; member
|
/linux-4.1.27/Documentation/devicetree/bindings/mtd/ |
D | fsmc-nand.txt | 15 byte 0 TCLR : CLE to RE delay in number of AHB clock cycles, only 4 bits 17 cycles. 19 byte 2 THIZ : number of HCLK clock cycles during which the data bus is 21 Only valid for write transactions. Zero means zero cycles, 22 255 means 255 cycles. 23 byte 3 THOLD : number of HCLK clock cycles to hold the address (and data 25 one cycle, 255 means 256 cycles. 26 byte 4 TWAIT : number of HCLK clock cycles to assert the command to the 28 255 means 256 cycles. 29 byte 5 TSET : number of HCLK clock cycles to assert the address before the [all …]
|
D | gpmc-nand.txt | 46 Using ELM for ECC error correction frees some CPU cycles.
|
/linux-4.1.27/drivers/net/wireless/ath/ |
D | hw.c | 144 u32 cycles, busy, rx, tx; in ath_hw_cycle_counters_update() local 151 cycles = REG_READ(ah, AR_CCCNT); in ath_hw_cycle_counters_update() 166 common->cc_ani.cycles += cycles; in ath_hw_cycle_counters_update() 171 common->cc_survey.cycles += cycles; in ath_hw_cycle_counters_update() 183 listen_time = (cc->cycles - cc->rx_frame - cc->tx_frame) / in ath_hw_get_listen_time()
|
D | ath.h | 48 u32 cycles; member
|
/linux-4.1.27/arch/xtensa/include/asm/ |
D | delay.h | 40 unsigned long cycles = (usecs * (ccount_freq >> 15)) >> 5; in __udelay() local 43 while (((unsigned long)get_ccount()) - start < cycles) in __udelay() 61 unsigned long cycles = (nsec * (ccount_freq >> 15)) >> 15; in __ndelay() local 62 __delay(cycles); in __ndelay()
|
/linux-4.1.27/tools/perf/util/ |
D | parse-events.l | 179 cpu-cycles|cycles { return sym(yyscanner, PERF_TYPE_HARDWARE, PERF_COUNT_HW_CPU_CYCLES); } 180 stalled-cycles-frontend|idle-cycles-frontend { return sym(yyscanner, PERF_TYPE_HARDWARE, PERF_COUNT… 181 stalled-cycles-backend|idle-cycles-backend { return sym(yyscanner, PERF_TYPE_HARDWARE, PERF_COUNT_H… 187 bus-cycles { return sym(yyscanner, PERF_TYPE_HARDWARE, PERF_COUNT_HW_BUS_CYCLES); } 188 ref-cycles { return sym(yyscanner, PERF_TYPE_HARDWARE, PERF_COUNT_HW_REF_CPU_CYCLES); } 205 cycles-ct { return str(yyscanner, PE_KERNEL_PMU_EVENT); } 206 cycles-t { return str(yyscanner, PE_KERNEL_PMU_EVENT); }
|
/linux-4.1.27/arch/arm/plat-omap/ |
D | counter_32k.c | 54 static cycles_t cycles; variable 62 last_cycles = cycles; in omap_read_persistent_clock64() 63 cycles = sync32k_cnt_reg ? readl_relaxed(sync32k_cnt_reg) : 0; in omap_read_persistent_clock64() 65 nsecs = clocksource_cyc2ns(cycles - last_cycles, in omap_read_persistent_clock64()
|
/linux-4.1.27/Documentation/m68k/ |
D | README.buddha | 142 497ns Select (7 clock cycles) , IOR/IOW after 172ns (2 clock cycles) 148 639ns Select (9 clock cycles), IOR/IOW after 243ns (3 clock cycles) 152 781ns Select (11 clock cycles), IOR/IOW after 314ns (4 clock cycles) 156 355ns Select (5 clock cycles), IOR/IOW after 101ns (1 clock cycle) 160 355ns Select (5 clock cycles), IOR/IOW after 172ns (2 clock cycles) 164 355ns Select (5 clock cycles), IOR/IOW after 243ns (3 clock cycles) 168 1065ns Select (15 clock cycles), IOR/IOW after 314ns (4 clock cycles) 172 355ns Select, (5 clock cycles), IOR/IOW after 101ns (1 clock cycle) 178 781ns select, IOR/IOW after 4 clock cycles (=314ns) aktive. 182 system: Sometimes two more clock cycles are inserted by the [all …]
|
/linux-4.1.27/tools/power/cpupower/bench/ |
D | benchmark.c | 126 " for %lius\n", _round + 1, config->cycles, in start_benchmark() 138 for (cycle = 0; cycle < config->cycles; cycle++) { in start_benchmark() 152 performance_time / config->cycles); in start_benchmark() 164 for (cycle = 0; cycle < config->cycles; cycle++) { in start_benchmark() 182 powersave_time / config->cycles); in start_benchmark()
|
D | README-BENCH | 35 will be run X time in a row (cycles): 39 cycles=20 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). 83 But if ondemand always kicks in in the middle of the load sleep cycles, it 116 -n, --cycles=<int> load/sleep cycles to get an avarage value to compare
|
D | system.c | 145 sleep_time += 2 * config->cycles * in prepare_user() 147 load_time += 2 * config->cycles * in prepare_user()
|
D | main.c | 135 sscanf(optarg, "%u", &config->cycles); in main() 186 config->cycles, in main()
|
D | example.cfg | 8 cycles = 20
|
D | parse.c | 133 config->cycles = 5; in prepare_default_config() 199 sscanf(val, "%u", &config->cycles); in prepare_config()
|
D | parse.h | 29 unsigned int cycles; /* calculation cycles with the same sleep/load time */ member
|
/linux-4.1.27/drivers/cpufreq/ |
D | blackfin-cpufreq.c | 141 cycles_t cycles; in bfin_target() local 159 cycles = get_cycles(); in bfin_target() 161 cycles += 10; /* ~10 cycles we lose after get_cycles() */ in bfin_target() 162 __bfin_cycles_off += (cycles << __bfin_cycles_mod) - (cycles << index); in bfin_target()
|
/linux-4.1.27/arch/m68k/coldfire/ |
D | sltimers.c | 103 u32 cycles, scnt; in mcfslt_read_clk() local 107 cycles = mcfslt_cnt; in mcfslt_read_clk() 109 cycles += mcfslt_cycles_per_jiffy; in mcfslt_read_clk() 115 return cycles + ((mcfslt_cycles_per_jiffy - 1) - scnt); in mcfslt_read_clk()
|
D | pit.c | 130 u32 cycles; in pit_read_clk() local 135 cycles = pit_cnt; in pit_read_clk() 138 return cycles + PIT_CYCLES_PER_JIFFY - pcntr; in pit_read_clk()
|
D | timers.c | 95 u32 cycles; in mcftmr_read_clk() local 100 cycles = mcftmr_cnt; in mcftmr_read_clk() 103 return cycles + tcn; in mcftmr_read_clk()
|
/linux-4.1.27/drivers/clocksource/ |
D | timer-prima2.c | 78 u64 cycles; in sirfsoc_timer_read() local 83 cycles = readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_LATCHED_HI); in sirfsoc_timer_read() 84 cycles = (cycles << 32) | in sirfsoc_timer_read() 87 return cycles; in sirfsoc_timer_read()
|
D | exynos_mct.c | 261 unsigned long cycles) in exynos4_mct_comp0_start() argument 270 exynos4_mct_write(cycles, EXYNOS4_MCT_G_COMP0_ADD_INCR); in exynos4_mct_comp0_start() 273 comp_cycle = exynos4_read_count_64() + cycles; in exynos4_mct_comp0_start() 283 static int exynos4_comp_set_next_event(unsigned long cycles, in exynos4_comp_set_next_event() argument 286 exynos4_mct_comp0_start(evt->mode, cycles); in exynos4_comp_set_next_event() 362 static void exynos4_mct_tick_start(unsigned long cycles, in exynos4_mct_tick_start() argument 369 tmp = (1 << 31) | cycles; /* MCT_L_UPDATE_ICNTB */ in exynos4_mct_tick_start() 383 static int exynos4_tick_set_next_event(unsigned long cycles, in exynos4_tick_set_next_event() argument 388 exynos4_mct_tick_start(cycles, mevt); in exynos4_tick_set_next_event()
|
D | rockchip_timer.c | 62 static void rk_timer_update_counter(unsigned long cycles, in rk_timer_update_counter() argument 65 writel_relaxed(cycles, rk_base(ce) + TIMER_LOAD_COUNT0); in rk_timer_update_counter() 76 static inline int rk_timer_set_next_event(unsigned long cycles, in rk_timer_set_next_event() argument 80 rk_timer_update_counter(cycles, ce); in rk_timer_set_next_event()
|
D | timer-atlas7.c | 90 u64 cycles; in sirfsoc_timer_read() local 95 cycles = readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_RLATCHED_HI); in sirfsoc_timer_read() 96 cycles = (cycles << 32) | readl_relaxed(sirfsoc_timer_base + SIRFSOC_TIMER_64COUNTER_RLATCHED_LO); in sirfsoc_timer_read() 98 return cycles; in sirfsoc_timer_read()
|
D | tegra20_timer.c | 64 static int tegra_timer_set_next_event(unsigned long cycles, in tegra_timer_set_next_event() argument 69 reg = 0x80000000 | ((cycles > 1) ? (cycles-1) : 0); in tegra_timer_set_next_event()
|
D | vt8500_timer.c | 75 static int vt8500_timer_set_next_event(unsigned long cycles, in vt8500_timer_set_next_event() argument 79 cycle_t alarm = clocksource.read(&clocksource) + cycles; in vt8500_timer_set_next_event()
|
D | moxart_timer.c | 82 static int moxart_clkevt_next_event(unsigned long cycles, in moxart_clkevt_next_event() argument 89 u = readl(base + TIMER1_BASE + REG_COUNT) - cycles; in moxart_clkevt_next_event()
|
D | timer-keystone.c | 138 static int keystone_set_next_event(unsigned long cycles, in keystone_set_next_event() argument 141 return keystone_timer_config(cycles, evt->mode); in keystone_set_next_event()
|
D | cadence_ttc_timer.c | 116 unsigned long cycles) in ttc_set_interval() argument 125 writel_relaxed(cycles, timer->base_addr + TTC_INTR_VAL_OFFSET); in ttc_set_interval() 183 static int ttc_set_next_event(unsigned long cycles, in ttc_set_next_event() argument 189 ttc_set_interval(timer, cycles); in ttc_set_next_event()
|
D | samsung_pwm_timer.c | 188 static int samsung_set_next_event(unsigned long cycles, in samsung_set_next_event() argument 201 if (!cycles) in samsung_set_next_event() 202 cycles = 1; in samsung_set_next_event() 204 samsung_time_setup(pwm.event_id, cycles); in samsung_set_next_event()
|
D | timer-u300.c | 279 static int u300_set_next_event(unsigned long cycles, in u300_set_next_event() argument 293 writel(cycles, u300_timer_base + U300_TIMER_APP_GPT1TC); in u300_set_next_event()
|
D | qcom-timer.c | 61 static int msm_timer_set_next_event(unsigned long cycles, in msm_timer_set_next_event() argument 70 writel_relaxed(cycles, event_base + TIMER_MATCH_VAL); in msm_timer_set_next_event()
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | vc.c | 437 u32 cycles; in omap4_calc_volt_ramp() local 442 cycles = voltdm->sys_clk.rate / 1000 * time / 1000; in omap4_calc_volt_ramp() 444 cycles /= 64; in omap4_calc_volt_ramp() 450 if (cycles > 63) { in omap4_calc_volt_ramp() 451 cycles /= 4; in omap4_calc_volt_ramp() 456 if (cycles > 63) { in omap4_calc_volt_ramp() 457 cycles /= 2; in omap4_calc_volt_ramp() 462 if (cycles > 63) { in omap4_calc_volt_ramp() 463 cycles /= 4; in omap4_calc_volt_ramp() 468 if (cycles > 63) { in omap4_calc_volt_ramp() [all …]
|
D | timer.c | 96 static int omap2_gp_timer_set_next_event(unsigned long cycles, in omap2_gp_timer_set_next_event() argument 100 0xffffffff - cycles, OMAP_TIMER_POSTED); in omap2_gp_timer_set_next_event()
|
/linux-4.1.27/Documentation/misc-devices/ |
D | isl29003 | 46 0: 2^16 cycles (default) 47 1: 2^12 cycles 48 2: 2^8 cycles 49 3: 2^4 cycles
|
/linux-4.1.27/arch/m68k/68000/ |
D | timers.c | 82 u32 cycles; in m68328_read_clk() local 85 cycles = m68328_tick_cnt + TCN; in m68328_read_clk() 88 return cycles; in m68328_read_clk()
|
/linux-4.1.27/tools/perf/tests/attr/ |
D | README | 50 perf record --group -e cycles,instructions kill (test-record-group) 51 perf record -e '{cycles,instructions}' kill (test-record-group1) 57 perf stat -e cycles kill (test-stat-basic) 62 perf stat --group -e cycles,instructions kill (test-stat-group) 63 perf stat -e '{cycles,instructions}' kill (test-stat-group1) 64 perf stat -i -e cycles kill (test-stat-no-inherit)
|
D | test-stat-basic | 3 args = -e cycles kill >/dev/null 2>&1
|
D | test-stat-no-inherit | 3 args = -i -e cycles kill >/dev/null 2>&1
|
D | test-stat-group1 | 3 args = -e '{cycles,instructions}' kill >/dev/null 2>&1
|
D | test-stat-group | 3 args = --group -e cycles,instructions kill >/dev/null 2>&1
|
D | test-stat-C0 | 3 args = -e cycles -C 0 kill >/dev/null 2>&1
|
D | test-record-group | 3 args = --group -e cycles,instructions kill >/dev/null 2>&1
|
D | test-record-group1 | 3 args = -e '{cycles,instructions}' kill >/dev/null 2>&1
|
D | test-record-group-sampling | 3 args = -e '{cycles,cache-misses}:S' kill >/dev/null 2>&1
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | sdhci-pxa.txt | 25 - mrvl,clk-delay-cycles: Specify a number of cycles to delay for tuning. 37 mrvl,clk-delay-cycles = <31>; 49 mrvl,clk-delay-cycles = <0x1F>;
|
/linux-4.1.27/arch/arm64/lib/ |
D | delay.c | 27 void __delay(unsigned long cycles) in __delay() argument 31 while ((get_cycles() - start) < cycles) in __delay()
|
/linux-4.1.27/Documentation/devicetree/bindings/c6x/ |
D | clocks.txt | 24 - ti,c64x+pll-bypass-delay: CPU cycles to delay when entering bypass mode 26 - ti,c64x+pll-reset-delay: CPU cycles to delay after PLL reset 28 - ti,c64x+pll-lock-delay: CPU cycles to delay after PLL frequency change
|
/linux-4.1.27/arch/nios2/lib/ |
D | delay.c | 23 void __delay(unsigned long cycles) in __delay() argument 27 while ((get_cycles() - start) < cycles) in __delay()
|
/linux-4.1.27/arch/tile/lib/ |
D | delay.c | 39 void __delay(unsigned long cycles) in __delay() argument 41 cycles_t target = get_cycles() + cycles; in __delay()
|
/linux-4.1.27/arch/openrisc/lib/ |
D | delay.c | 31 void __delay(unsigned long cycles) in __delay() argument 35 while ((get_cycles() - start) < cycles) in __delay()
|
/linux-4.1.27/arch/sparc/kernel/ |
D | time_32.c | 163 u64 cycles; in timer_cs_read() local 168 cycles = timer_cs_internal_counter; in timer_cs_read() 173 cycles *= sparc_config.cs_period; in timer_cs_read() 174 cycles += offset; in timer_cs_read() 176 return cycles; in timer_cs_read()
|
/linux-4.1.27/arch/x86/vdso/ |
D | vclock_gettime.c | 211 cycles_t cycles; in vgetsns() local 214 cycles = vread_tsc(); in vgetsns() 217 cycles = vread_hpet(); in vgetsns() 221 cycles = vread_pvclock(mode); in vgetsns() 225 v = (cycles - gtod->cycle_last) & gtod->mask; in vgetsns()
|
/linux-4.1.27/arch/arm/mach-ixp4xx/ |
D | ixp4xx_npe.c | 415 int cycles = 0; in npe_send_message() local 434 while ((cycles < MAX_RETRIES) && in npe_send_message() 437 cycles++; in npe_send_message() 440 if (cycles == MAX_RETRIES) { in npe_send_message() 446 debug_msg(npe, "Sending a message took %i cycles\n", cycles); in npe_send_message() 454 int cycles = 0, cnt = 0; in npe_recv_message() local 458 while (cycles < MAX_RETRIES) { in npe_recv_message() 465 cycles++; in npe_recv_message() 478 if (cycles == MAX_RETRIES) { in npe_recv_message() 484 debug_msg(npe, "Receiving a message took %i cycles\n", cycles); in npe_recv_message()
|
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/ebb/ |
D | cycles_test.c | 15 int cycles(void) in cycles() function 57 return test_harness(cycles, "cycles"); in main()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ |
D | fan.c | 131 u32 cycles, cur, prev; in nvkm_therm_fan_sense() local 143 cycles = 0; in nvkm_therm_fan_sense() 151 cycles++; in nvkm_therm_fan_sense() 154 } while (cycles < 5 && ptimer->read(ptimer) - start < 250000000); in nvkm_therm_fan_sense() 157 if (cycles == 5) { in nvkm_therm_fan_sense()
|
/linux-4.1.27/arch/tile/gxio/ |
D | iorpc_mpipe.c | 415 uint64_t cycles; member 419 uint64_t *nsec, uint64_t *cycles) in gxio_mpipe_get_timestamp_aux() argument 430 *cycles = params->cycles; in gxio_mpipe_get_timestamp_aux() 440 uint64_t cycles; member 444 uint64_t nsec, uint64_t cycles) in gxio_mpipe_set_timestamp_aux() argument 451 params->cycles = cycles; in gxio_mpipe_set_timestamp_aux()
|
D | mpipe.c | 461 cycles_t cycles = get_cycles(); in gxio_mpipe_set_timestamp() local 464 (uint64_t)cycles); in gxio_mpipe_set_timestamp()
|
/linux-4.1.27/crypto/ |
D | tcrypt.c | 101 unsigned long cycles = 0; in test_cipher_cycles() local 132 cycles += end - start; in test_cipher_cycles() 140 (cycles + 4) / 8, blen); in test_cipher_cycles() 170 unsigned long cycles = 0; in test_aead_cycles() local 201 cycles += end - start; in test_aead_cycles() 209 (cycles + 4) / 8, blen); in test_aead_cycles() 575 unsigned long cycles = 0; in test_hash_cycles_digest() local 600 cycles += end - start; in test_hash_cycles_digest() 610 cycles / 8, cycles / (8 * blen)); in test_hash_cycles_digest() 618 unsigned long cycles = 0; in test_hash_cycles() local [all …]
|
D | drbg.c | 1294 cycles_t cycles; in drbg_generate() member 1364 now.cycles = random_get_entropy(); in drbg_generate()
|
/linux-4.1.27/arch/arm/mach-gemini/ |
D | time.c | 40 static int gemini_timer_set_next_event(unsigned long cycles, in gemini_timer_set_next_event() argument 53 writel(cycles, TIMER_COUNT(IO_ADDRESS(GEMINI_TIMER2_BASE))); in gemini_timer_set_next_event() 54 writel(cycles, TIMER_LOAD(IO_ADDRESS(GEMINI_TIMER2_BASE))); in gemini_timer_set_next_event()
|
/linux-4.1.27/Documentation/devicetree/bindings/misc/ |
D | ifm-csi.txt | 14 - ifm,csi-wait-cycles: sensor bus wait cycles 34 ifm,csi-wait-cycles = <0>;
|
/linux-4.1.27/include/linux/ |
D | timecounter.h | 80 cycle_t cycles, u64 mask, u64 *frac) in cyclecounter_cyc2ns() argument 82 u64 ns = (u64) cycles; in cyclecounter_cyc2ns()
|
D | clocksource.h | 176 static inline s64 clocksource_cyc2ns(cycle_t cycles, u32 mult, u32 shift) in clocksource_cyc2ns() argument 178 return ((u64) cycles * mult) >> shift; in clocksource_cyc2ns()
|
/linux-4.1.27/drivers/pwm/ |
D | pwm-fsl-ftm.c | 188 unsigned long fix_rate, ext_rate, cycles; in fsl_pwm_calculate_period() local 190 cycles = fsl_pwm_calculate_period_cycles(fpc, period_ns, in fsl_pwm_calculate_period() 192 if (cycles) { in fsl_pwm_calculate_period() 194 return cycles; in fsl_pwm_calculate_period() 208 cycles = fsl_pwm_calculate_period_cycles(fpc, period_ns, m0); in fsl_pwm_calculate_period() 209 if (cycles) { in fsl_pwm_calculate_period() 211 return cycles; in fsl_pwm_calculate_period()
|
/linux-4.1.27/arch/sh/lib/ |
D | memcpy-sh4.S | 30 mov r4,r2 ! 5 MT (0 cycles latency) 32 mov.l @(r0,r5),r7 ! 21 LS (2 cycles latency) 38 ! 6 cycles, 4 bytes per iteration 103 mov r4,r2 ! 5 MT (0 cycles latency) 105 mov.l @(r0,r5),r7 ! 21 LS (2 cycles latency) 111 ! 6 cycles, 4 bytes per iteration 221 ! 4 cycles, 2 bytes per iteration 249 ! 3 cycles, 1 byte per iteration 331 ! 4 cycles, 2 long words per iteration 365 ! 4 cycles, 2 long words per iteration [all …]
|
/linux-4.1.27/arch/blackfin/kernel/ |
D | time-ts.c | 128 static int bfin_gptmr0_set_next_event(unsigned long cycles, in bfin_gptmr0_set_next_event() argument 134 set_gptimer_pwidth(TIMER0_id, cycles - 3); in bfin_gptmr0_set_next_event() 242 static int bfin_coretmr_set_next_event(unsigned long cycles, in bfin_coretmr_set_next_event() argument 247 bfin_write_TCOUNT(cycles); in bfin_coretmr_set_next_event()
|
/linux-4.1.27/drivers/media/usb/gspca/stv06xx/ |
D | stv06xx_hdcs.c | 189 int cycles, err; in hdcs_set_exposure() local 192 cycles = val * HDCS_CLK_FREQ_MHZ * 257; in hdcs_set_exposure() 200 rowexp = cycles / rp; in hdcs_set_exposure() 203 cycles -= rowexp * rp; in hdcs_set_exposure() 208 srowexp = hdcs->w - (cycles + hdcs->exp.er + 13) / ct; in hdcs_set_exposure() 214 srowexp = cp - hdcs->exp.er - 6 - cycles; in hdcs_set_exposure()
|
/linux-4.1.27/Documentation/devicetree/bindings/regulator/ |
D | ti-abb-regulator.txt | 22 - ti,clock-cycles: SoC specific data about count of system ti,clock-cycles used for 24 cycles for SR2_WTCNT_VALUE). 79 ti,clock-cycles = <8>; 99 ti,clock-cycles = <16>; 126 ti,clock-cycles = <16>;
|
/linux-4.1.27/arch/arm/lib/ |
D | delay.c | 57 static void __timer_delay(unsigned long cycles) in __timer_delay() argument 61 while ((get_cycles() - start) < cycles) in __timer_delay()
|
/linux-4.1.27/arch/x86/include/asm/ |
D | pvclock.h | 72 cycle_t *cycles, u8 *flags) in __pvclock_read_cycles() argument 91 *cycles = ret; in __pvclock_read_cycles()
|
/linux-4.1.27/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-impedance-analyzer-ad5933 | 27 Number of output excitation cycles (settling time cycles)
|
D | sysfs-bus-iio-ad7192 | 8 alternate cycles, to eliminate DC errors.
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-list.txt | 48 The precise modifier works with event types 0x76 (cpu-cycles, CPU 55 perf record -a -e cpu-cycles:p ... # use ibs op counting cycles 56 perf record -a -e r076:p ... # same as -e cpu-cycles:p 83 cycles
|
D | perf-bench.txt | 158 Use perf's cpu-cycles event instead of gettimeofday syscall. 190 Use perf's cpu-cycles event instead of gettimeofday syscall.
|
D | perf-stat.txt | 132 example: perf stat -I 1000 -e cycles -a sleep 5 168 24821162526 CPU cycles # 3057.784 M/sec
|
D | perf-annotate.txt | 67 samples, TAB/UNTAB cycles through the lines with more samples.
|
/linux-4.1.27/kernel/time/ |
D | timecounter.c | 83 cycle_t cycles, u64 mask, u64 frac) in cc_cyc2ns_backwards() argument 85 u64 ns = (u64) cycles; in cc_cyc2ns_backwards()
|
/linux-4.1.27/arch/arm/mach-ks8695/ |
D | time.c | 81 static int ks8695_set_next_event(unsigned long cycles, in ks8695_set_next_event() argument 85 u32 half = DIV_ROUND_CLOSEST(cycles, 2); in ks8695_set_next_event()
|
/linux-4.1.27/arch/arc/kernel/ |
D | time.c | 150 static void arc_timer_event_setup(unsigned int cycles) in arc_timer_event_setup() argument 152 write_aux_reg(ARC_REG_TIMER0_LIMIT, cycles); in arc_timer_event_setup()
|
/linux-4.1.27/drivers/firewire/ |
D | core-transaction.c | 735 unsigned int cycles; in compute_split_timeout_timestamp() local 738 cycles = card->split_timeout_cycles; in compute_split_timeout_timestamp() 739 cycles += request_timestamp & 0x1fff; in compute_split_timeout_timestamp() 742 timestamp += (cycles / 8000) << 13; in compute_split_timeout_timestamp() 743 timestamp |= cycles % 8000; in compute_split_timeout_timestamp() 1076 unsigned int cycles; in update_split_timeout() local 1078 cycles = card->split_timeout_hi * 8000 + (card->split_timeout_lo >> 19); in update_split_timeout() 1081 cycles = clamp(cycles, 800u, 3u * 8000u); in update_split_timeout() 1083 card->split_timeout_cycles = cycles; in update_split_timeout() 1084 card->split_timeout_jiffies = DIV_ROUND_UP(cycles * HZ, 8000); in update_split_timeout()
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | samsung-fimd.txt | 49 - cs-setup: clock cycles for the active period of address signal is enabled 52 - wr-setup: clock cycles for the active period of CS signal is enabled until 55 - wr-active: clock cycles for the active period of CS is enabled. 57 - wr-hold: clock cycles for the active period of CS is disabled until write
|
D | adi,adv7511.txt | 24 pixel), "2x" (two clock cycles per pixel), "ddr" (one clock cycle per pixel,
|
/linux-4.1.27/arch/mips/pci/ |
D | pci-octeon.c | 418 unsigned long cycles, pci_clock; in octeon_pci_initialize() local 421 cycles = read_c0_cvmcount(); in octeon_pci_initialize() 424 cycles = read_c0_cvmcount() - cycles; in octeon_pci_initialize() 426 (cycles / (mips_hpt_frequency / 1000000)); in octeon_pci_initialize()
|
/linux-4.1.27/arch/arm/mach-omap1/ |
D | time.c | 120 static int omap_mpu_set_next_event(unsigned long cycles, in omap_mpu_set_next_event() argument 123 omap_mpu_timer_start(0, cycles, 0); in omap_mpu_set_next_event()
|
/linux-4.1.27/arch/hexagon/include/asm/ |
D | delay.h | 24 extern void __delay(unsigned long cycles);
|
/linux-4.1.27/drivers/net/wireless/ath/ath9k/ |
D | link.c | 518 if (cc->cycles > 0) { in ath_update_survey_stats() 523 survey->time += cc->cycles / div; in ath_update_survey_stats() 529 if (cc->cycles < div) in ath_update_survey_stats() 532 if (cc->cycles > 0) in ath_update_survey_stats() 533 ret = cc->rx_busy * 100 / cc->cycles; in ath_update_survey_stats()
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-bus-event_source-devices-events | 5 /sys/devices/cpu/events/stalled-cycles-frontend 7 /sys/devices/cpu/events/stalled-cycles-backend 9 /sys/devices/cpu/events/cpu-cycles
|
D | sysfs-block | 146 attempts will always fail and result in extra cycles
|
/linux-4.1.27/Documentation/ |
D | static-keys.txt | 257 1,474,374,262 cycles # 1.723 GHz ( +- 0.17% ) 258 <not supported> stalled-cycles-frontend 259 <not supported> stalled-cycles-backend 274 1,432,559,428 cycles # 1.703 GHz ( +- 0.18% ) 275 <not supported> stalled-cycles-frontend 276 <not supported> stalled-cycles-backend 286 saved .2% on instructions, and 2.8% on cycles and 1.4% on elapsed time.
|
D | crc32.txt | 54 32 bits later. Thus, the first 32 cycles of this are pretty boring. 56 the end, so we have to add 32 extra cycles shifting in zeros at the 60 next_input_bit() until the moment it's needed. Then the first 32 cycles
|
D | cpu-load.txt | 35 If we imagine the system with one task that periodically burns cycles
|
D | workqueue.txt | 124 not expected to hog a CPU and consume many cycles. That means 215 work items which are expected to hog CPU cycles so that their 348 cycles, using a bound wq is usually beneficial due to the increased 369 2. A single work item that consumes lots of cpu cycles
|
D | edac.txt | 561 poll_msec time period between POLL cycles for events 608 test-block-bits-1 every 10 cycles, this counter is bumped once, 610 test-block-bits-2 every 100 cycles, this counter is bumped once, 612 test-block-bits-3 every 1000 cycles, this counter is bumped once,
|
D | xz.txt | 65 Double checking the integrity would probably be waste of CPU cycles.
|
/linux-4.1.27/Documentation/devicetree/bindings/ata/ |
D | sata_highbank.txt | 27 cycles to transmit before sending an SGPIO pattern 29 cycles to transmit after sending an SGPIO pattern
|
/linux-4.1.27/arch/tile/include/gxio/ |
D | iorpc_mpipe.h | 124 uint64_t *nsec, uint64_t *cycles); 127 uint64_t nsec, uint64_t cycles);
|
/linux-4.1.27/arch/hexagon/kernel/ |
D | time.c | 232 void __delay(unsigned long cycles) in __delay() argument 236 while ((__vmgettime() - start) < cycles) in __delay()
|
/linux-4.1.27/drivers/char/ |
D | random.c | 774 unsigned cycles; in add_timer_randomness() member 782 sample.cycles = random_get_entropy(); in add_timer_randomness() 880 cycles_t cycles = random_get_entropy(); in add_interrupt_randomness() local 886 if (cycles == 0) in add_interrupt_randomness() 887 cycles = get_reg(fast_pool, regs); in add_interrupt_randomness() 888 c_high = (sizeof(cycles) > 4) ? cycles >> 32 : 0; in add_interrupt_randomness() 890 fast_pool->pool[0] ^= cycles ^ j_high ^ irq; in add_interrupt_randomness() 898 add_interrupt_bench(cycles); in add_interrupt_randomness()
|
/linux-4.1.27/arch/arm/mach-spear/ |
D | time.c | 146 static int clockevent_next_event(unsigned long cycles, in clockevent_next_event() argument 154 writew(cycles, gpt_base + LOAD(CLKEVT)); in clockevent_next_event()
|
/linux-4.1.27/Documentation/arm/ |
D | CCN.txt | 39 ccn/cycles/ [Kernel PMU event] 44 / # perf stat -C 0 -e ccn/cycles/,ccn/xp_valid_flit,xp=1,port=0,vc=1,dir=1/ \
|
D | kernel_user_helpers.txt | 19 since those code segments only use a few cycles before returning to user
|
/linux-4.1.27/arch/powerpc/perf/ |
D | power7-pmu.c | 377 GENERIC_EVENT_ATTR(cpu-cycles, PM_CYC); 378 GENERIC_EVENT_ATTR(stalled-cycles-frontend, PM_GCT_NOSLOT_CYC); 379 GENERIC_EVENT_ATTR(stalled-cycles-backend, PM_CMPLU_STALL);
|
D | hv-gpci-requests.h | 91 __count(0x10, 8, cycles)
|
/linux-4.1.27/arch/metag/lib/ |
D | memset.S | 28 ! Preamble to LongLoop which generates 4*8 bytes per interation (5 cycles) 45 ! Preamble to LongishLoop which generates 1*8 bytes per interation (2 cycles)
|
/linux-4.1.27/arch/arc/include/asm/ |
D | arcregs.h | 215 unsigned int pad:8, x1616:8, dsp:4, cycles:2, type:2, ver:8; member 217 unsigned int ver:8, type:2, cycles:2, dsp:4, x1616:8, pad:8;
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx.h | 382 static inline void cvmx_wait(uint64_t cycles) in cvmx_wait() argument 384 uint64_t done = cvmx_get_cycle() + cycles; in cvmx_wait()
|
/linux-4.1.27/drivers/media/pci/b2c2/ |
D | flexcop-dma.c | 159 flexcop_dma_index_t dma_idx, u8 cycles) in flexcop_dma_config_timer() argument 167 v.dma_0x4_write.dmatimer = cycles; in flexcop_dma_config_timer()
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | stmpe-keypad.txt | 9 - st,scan-count : Scanning cycles elapsed before key data is updated
|
/linux-4.1.27/Documentation/devicetree/bindings/watchdog/ |
D | of-xilinx-wdt.txt | 13 - xlnx,wdt-interval : Watchdog timeout interval in 2^<val> clock cycles,
|
/linux-4.1.27/drivers/media/rc/ |
D | iguanair.c | 304 uint32_t cycles, fours, sevens; in iguanair_set_tx_carrier() local 308 cycles = DIV_ROUND_CLOSEST(24000000, carrier * 2) - in iguanair_set_tx_carrier() 316 sevens = (4 - cycles) & 3; in iguanair_set_tx_carrier() 317 fours = (cycles - sevens * 7) / 4; in iguanair_set_tx_carrier()
|
/linux-4.1.27/arch/alpha/kernel/ |
D | setup.c | 1323 int cycles, prev_cycles = 1000000; in external_cache_probe() local 1335 cycles = read_mem_block(__va(0), stride, size); in external_cache_probe() 1336 if (cycles > prev_cycles * 2) { in external_cache_probe() 1340 size >> 11, prev_cycles, cycles); in external_cache_probe() 1345 prev_cycles = cycles; in external_cache_probe()
|
/linux-4.1.27/drivers/misc/altera-stapl/ |
D | altera-jtag.h | 97 int altera_wait_cycles(struct altera_state *astate, s32 cycles,
|
D | altera-jtag.c | 352 s32 cycles, in altera_wait_cycles() argument 370 for (count = 0L; count < cycles; count++) in altera_wait_cycles()
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | sacos.S | 18 | Speed: The program sCOS takes approximately 310 cycles.
|
D | stwotox.S | 19 | Speed: The program stwotox takes approximately 190 cycles and the 20 | program stentox takes approximately 200 cycles.
|
D | sasin.S | 18 | Speed: The program sASIN takes approximately 310 cycles.
|
D | satanh.S | 19 | Speed: The program satanh takes approximately 270 cycles.
|
D | scosh.S | 18 | Speed: The program sCOSH takes approximately 250 cycles.
|
D | ssinh.S | 18 | Speed: The program sSINH takes approximately 280 cycles.
|
D | slogn.S | 19 | Speed: The program slogn takes approximately 190 cycles for input 22 | 210 cycles. For the less common arguments, the program will
|
D | stanh.S | 18 | Speed: The program stanh takes approximately 270 cycles.
|
D | setox.S | 33 | The program setox takes approximately 210/190 cycles for input 39 | The program setoxm1 takes approximately ??? / ??? cycles for input 41 | approximately ??? / ??? cycles. For the less common arguments,
|
D | satan.S | 18 | Speed: The program satan takes approximately 160 cycles for input
|
D | ssin.S | 23 | Speed: The programs sSIN and sCOS take approximately 150 cycles for 25 | situation. The speed for sSINCOS is approximately 190 cycles.
|
D | stan.S | 18 | Speed: The program sTAN takes approximately 170 cycles for
|
D | decbin.S | 13 | Speed: The program decbin takes ??? cycles to execute.
|
/linux-4.1.27/drivers/net/wireless/ti/wl12xx/ |
D | scan.h | 89 u8 cycles; /* maximum number of scan cycles */ member
|
D | scan.c | 339 cfg->cycles = 0; in wl1271_scan_sched_scan_config()
|
/linux-4.1.27/Documentation/x86/ |
D | tlb.txt | 53 Essentially, you are balancing the cycles you spend doing invlpg 54 with the cycles that you spend refilling the TLB later.
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | nvidia,tegra20-usb-phy.txt | 37 - nvidia,hssync-start-delay : Number of 480 Mhz clock cycles to wait before 40 - nvidia,idle-wait-delay : Number of 480 Mhz clock cycles of idle to wait
|
/linux-4.1.27/drivers/input/keyboard/ |
D | pmic8xxx-keypad.c | 381 int bits, rc, cycles; in pmic8xxx_kpd_init() local 446 cycles = (row_hold_ns * KEYP_CLOCK_FREQ) / NSEC_PER_SEC; in pmic8xxx_kpd_init() 448 scan_val |= (cycles << KEYP_SCAN_ROW_HOLD_SHIFT); in pmic8xxx_kpd_init()
|
/linux-4.1.27/drivers/dma/ |
D | moxart-dma.c | 464 unsigned int completed_cycles, cycles; in moxart_dma_desc_size_in_flight() local 467 cycles = readl(ch->base + REG_OFF_CYCLES); in moxart_dma_desc_size_in_flight() 468 completed_cycles = (ch->desc->dma_cycles - cycles); in moxart_dma_desc_size_in_flight()
|
/linux-4.1.27/arch/arm/mach-davinci/ |
D | time.c | 296 static int davinci_set_next_event(unsigned long cycles, in davinci_set_next_event() argument 301 t->period = cycles; in davinci_set_next_event()
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | o2d.dtsi | 119 ifm,csi-wait-cycles = <0>;
|
D | ebony.dts | 302 0x00000000 0x00000000 0x00000000 /* no IACK cycles */ 303 0x00000002 0x0ed00000 0x00000004 /* Special cycles */
|
D | taishan.dts | 393 0x00000000 0x00000000 0x00000000 /* no IACK cycles */ 394 0x00000002 0x0ed00000 0x00000004 /* Special cycles */
|
D | icon.dts | 296 0x00000000 0x00000000 0x00000000 /* no IACK cycles */ 297 0x0000000c 0x0ed00000 0x00000004 /* Special cycles */
|
D | katmai.dts | 286 0x00000000 0x00000000 0x00000000 /* no IACK cycles */ 287 0x0000000c 0x0ed00000 0x00000004 /* Special cycles */
|
D | glacier.dts | 469 0x00000000 0x00000000 0x00000000 /* no IACK cycles */ 470 0x0000000c 0x0ed00000 0x00000004 /* Special cycles */
|
D | canyonlands.dts | 432 0x00000000 0x00000000 0x00000000 /* no IACK cycles */ 433 0x0000000c 0x0ed00000 0x00000004 /* Special cycles */
|
/linux-4.1.27/Documentation/hwmon/ |
D | lm70 | 28 the driver accesses the LM70 using SPI communication: 16 SCLK cycles
|
D | adm9240 | 63 with independent fan speed measurement cycles counting alternating rising 115 range, this will occur within a few measurement cycles.
|
D | vt1211 | 167 Each PWM has 4 associated distinct output duty-cycles: full, high, low and 172 thermal thresholds exist that controls both PWMs output duty-cycles. The
|
D | pc87360 | 175 once every 1024 sampling cycles (that is every 34 minutes at the default
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | omap36xx.dtsi | 54 ti,clock-cycles = <8>;
|
D | dra7.dtsi | 911 ti,clock-cycles = <16>; 944 ti,clock-cycles = <16>; 977 ti,clock-cycles = <16>; 1010 ti,clock-cycles = <16>;
|
D | omap4.dtsi | 909 ti,clock-cycles = <16>; 922 ti,clock-cycles = <16>;
|
D | omap5.dtsi | 1078 ti,clock-cycles = <16>; 1108 ti,clock-cycles = <16>;
|
D | armada-39x.dtsi | 380 mrvl,clk-delay-cycles = <0x1F>;
|
D | armada-38x.dtsi | 561 mrvl,clk-delay-cycles = <0x1F>;
|
/linux-4.1.27/arch/arm/crypto/ |
D | sha1-armv4-large.S | 15 @ impl size in bytes comp cycles[*] measured performance 41 @ ~990 cycles. 46 @ Cortex A8 core and in absolute terms ~870 cycles per input block 47 @ [or 13.6 cycles per byte]. 52 @ improvement on Cortex A8 core and 12.2 cycles per byte.
|
D | aes-armv4.S | 17 @ is endian-neutral. The performance is ~42 cycles/byte for 128-bit 27 @ Cortex A8 core and ~25 cycles per byte processed with 128-bit key. 32 @ improvement on Cortex A8 core and ~21.5 cycles per byte.
|
D | aesbs-core.S_shipped | 24 @ encrypt 19.5 cycles per byte processed with 128-bit key 25 @ decrypt 22.1 cycles per byte processed with 128-bit key 26 @ key conv. 440 cycles per 128-bit key/0.18 of 8x block 28 @ Snapdragon S4 encrypts byte in 17.6 cycles and decrypts in 19.7, 32 @ Cortex-A15 manages in 14.2/16.1 cycles [when integer-only code 33 @ manages in 20.0 cycles].
|
/linux-4.1.27/drivers/media/common/b2c2/ |
D | flexcop-common.h | 135 flexcop_dma_index_t dma_idx, u8 cycles);
|
/linux-4.1.27/Documentation/networking/ |
D | ipsec.txt | 17 the decompression processing cycles and avoiding incurring IP
|
/linux-4.1.27/Documentation/devicetree/bindings/lpddr2/ |
D | lpddr2.txt | 20 timing parameters of the DDR device in terms of number of clock cycles.
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | ti-tsc-adc.txt | 34 ADC clock cycles. Charge delay value should be large
|
/linux-4.1.27/drivers/staging/i2o/ |
D | README | 98 (D.S: Will attempt to do so if spare cycles permit)
|
/linux-4.1.27/drivers/net/ethernet/xscale/ |
D | ixp4xx_eth.c | 445 int cycles = 0; in ixp4xx_mdio_cmd() local 461 while ((cycles < MAX_MDIO_RETRIES) && in ixp4xx_mdio_cmd() 464 cycles++; in ixp4xx_mdio_cmd() 467 if (cycles == MAX_MDIO_RETRIES) { in ixp4xx_mdio_cmd() 475 phy_id, write ? "write" : "read", cycles); in ixp4xx_mdio_cmd()
|
/linux-4.1.27/arch/cris/arch-v10/lib/ |
D | dram_init.S | 109 nop ; Wait five nop cycles between each command
|
/linux-4.1.27/drivers/net/wireless/ath/ath5k/ |
D | mac80211-ops.c | 674 if (cc->cycles > 0) { in ath5k_get_survey() 675 ah->survey.time += cc->cycles / div; in ath5k_get_survey()
|
D | debug.c | 729 _struct.cycles > 0 ? \ in read_file_ani() 730 _struct._field * 100 / _struct.cycles : 0 in read_file_ani() 743 as->last_cc.cycles); in read_file_ani()
|
/linux-4.1.27/Documentation/fb/ |
D | udlfb.txt | 149 metrics_cpu_kcycles_used 32-bit count of CPU cycles used in processing the 150 above pixels (in thousands of cycles).
|
/linux-4.1.27/fs/btrfs/ |
D | Kconfig | 56 plenty of additional CPU cycles are spent. Enabling this
|
/linux-4.1.27/arch/arm/mach-pxa/ |
D | sleep.S | 150 @ need 6 13-MHz cycles before changing PWRMODE
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
D | perf_event.c | 1584 EVENT_ATTR(cpu-cycles, CPU_CYCLES ); 1590 EVENT_ATTR(bus-cycles, BUS_CYCLES ); 1591 EVENT_ATTR(stalled-cycles-frontend, STALLED_CYCLES_FRONTEND ); 1592 EVENT_ATTR(stalled-cycles-backend, STALLED_CYCLES_BACKEND ); 1593 EVENT_ATTR(ref-cycles, REF_CPU_CYCLES );
|
/linux-4.1.27/Documentation/devicetree/bindings/soc/ti/ |
D | keystone-navigator-dma.txt | 59 - ti,rx-retry-timeout: Number of dma cycles to wait before retry on buffer
|
/linux-4.1.27/Documentation/filesystems/ |
D | udf.txt | 16 and read-modify-write cycles to allow the filesystem random sector writes
|
D | ubifs.txt | 24 4 Eraseblocks become worn out after some number of erase cycles -
|
/linux-4.1.27/Documentation/timers/ |
D | timers-howto.txt | 22 and will busy wait for enough loop cycles to achieve
|
D | timekeeping.txt | 37 cycles here and there.
|
/linux-4.1.27/Documentation/vm/ |
D | zswap.txt | 5 dynamically allocated RAM-based memory pool. zswap basically trades CPU cycles
|
/linux-4.1.27/Documentation/bus-devices/ |
D | ti-gpmc.txt | 31 in time or in cycles, provision to handle this scenario has been
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | st,sta350.txt | 96 million clock cycles to pass before shutting down.
|
/linux-4.1.27/drivers/staging/unisys/Documentation/ |
D | proc-entries.txt | 30 performance, by setting the number of cycles we wait before going idle
|
/linux-4.1.27/Documentation/frv/ |
D | atomic-ops.txt | 17 interrupts, but on the FR-V CPUs, modifying the PSR takes a lot of clock cycles, and it has to be
|
/linux-4.1.27/Documentation/block/ |
D | queue-sysfs.txt | 121 provides a significant reduction in CPU cycles due to caching effects.
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | compress_offload.txt | 57 cycles. The new API needs to provide a generic way of listing these 110 supported. Likewise, embedded DSPs have limited memory and cpu cycles,
|
/linux-4.1.27/Documentation/devicetree/bindings/bus/ |
D | ti-gpmc.txt | 85 GPMC_FCLK cycles from start access time
|
/linux-4.1.27/sound/soc/intel/haswell/ |
D | sst-haswell-ipc.h | 260 u64 cycles; member
|
/linux-4.1.27/Documentation/devicetree/bindings/memory-controllers/ |
D | mvebu-devbus.txt | 49 precedes the read data by one or two cycles.
|
/linux-4.1.27/arch/cris/arch-v32/kernel/ |
D | head.S | 58 ;; Note; 3 cycles is needed for a bank-select to take effect. Further;
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4.h | 1218 void t4_pmtx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]); 1219 void t4_pmrx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]);
|
D | t4_hw.c | 3357 void t4_pmtx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]) in t4_pmtx_get_stats() argument 3366 cycles[i] = t4_read_reg64(adap, PM_TX_STAT_LSB_A); in t4_pmtx_get_stats() 3371 cycles[i] = (((u64)data[0] << 32) | data[1]); in t4_pmtx_get_stats() 3384 void t4_pmrx_get_stats(struct adapter *adap, u32 cnt[], u64 cycles[]) in t4_pmrx_get_stats() argument 3393 cycles[i] = t4_read_reg64(adap, PM_RX_STAT_LSB_A); in t4_pmrx_get_stats() 3398 cycles[i] = (((u64)data[0] << 32) | data[1]); in t4_pmrx_get_stats()
|
/linux-4.1.27/Documentation/locking/ |
D | mutex-design.txt | 82 task and busy-waiting for a few cycles instead of immediately sleeping,
|
/linux-4.1.27/drivers/pcmcia/ |
D | yenta_socket.c | 60 #define to_ns(cycles) ((cycles)*120) argument
|
/linux-4.1.27/drivers/crypto/qat/qat_common/ |
D | qat_hal.c | 163 unsigned char ae, unsigned int cycles, in qat_hal_wait_cycles() argument 173 while ((int)cycles > elapsed_cycles && times--) { in qat_hal_wait_cycles()
|
/linux-4.1.27/arch/ia64/kernel/ |
D | palinfo.c | 666 pm_info.pal_perf_mon_info_s.cycles, in perfmon_info()
|
/linux-4.1.27/Documentation/crypto/ |
D | async-tx-api.txt | 93 improve performance by reducing the number of mmio cycles needed to
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.sym53c8xx | 39 access themselves using internal cycles, but they compare 59 not requires extra cycles in DT DATA OUT phase. 118 - Do not enable PCI DAC cycles. This just broke support for
|
/linux-4.1.27/arch/blackfin/ |
D | Kconfig.debug | 43 be reported multiple cycles after the error happens. This delay
|
/linux-4.1.27/drivers/mtd/nand/ |
D | diskonchip.c | 222 static void DoC_Delay(struct doc_priv *doc, unsigned short cycles) in DoC_Delay() argument 227 for (i = 0; i < cycles; i++) { in DoC_Delay()
|
/linux-4.1.27/Documentation/power/ |
D | suspend-and-cpuhotplug.txt | 243 cycles).
|
/linux-4.1.27/arch/powerpc/ |
D | Kconfig.debug | 37 each call is always calculated, and if available CPU cycles spent
|
/linux-4.1.27/Documentation/cgroups/ |
D | unified-hierarchy.txt | 78 to control how CPU cycles are distributed. 193 flat when children should be allocated specific ratios of CPU cycles
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | boot-options.txt | 237 two cycles. When off all DMA over >4GB is forced through
|