Home
last modified time | relevance | path

Searched refs:tsc (Results 1 – 86 of 86) sorted by relevance

/linux-4.4.14/drivers/input/touchscreen/
Dimx6ul_tsc.c97 static int imx6ul_adc_init(struct imx6ul_tsc *tsc) in imx6ul_adc_init() argument
105 reinit_completion(&tsc->completion); in imx6ul_adc_init()
107 adc_cfg = readl(tsc->adc_regs + REG_ADC_CFG); in imx6ul_adc_init()
111 writel(adc_cfg, tsc->adc_regs + REG_ADC_CFG); in imx6ul_adc_init()
116 writel(adc_hc, tsc->adc_regs + REG_ADC_HC0); in imx6ul_adc_init()
119 adc_gc = readl(tsc->adc_regs + REG_ADC_GC); in imx6ul_adc_init()
121 writel(adc_gc, tsc->adc_regs + REG_ADC_GC); in imx6ul_adc_init()
124 (&tsc->completion, ADC_TIMEOUT); in imx6ul_adc_init()
126 dev_err(tsc->dev, "Timeout for adc calibration\n"); in imx6ul_adc_init()
130 adc_gs = readl(tsc->adc_regs + REG_ADC_GS); in imx6ul_adc_init()
[all …]
Dlpc32xx_ts.c80 static void lpc32xx_fifo_clear(struct lpc32xx_tsc *tsc) in lpc32xx_fifo_clear() argument
82 while (!(tsc_readl(tsc, LPC32XX_TSC_STAT) & in lpc32xx_fifo_clear()
84 tsc_readl(tsc, LPC32XX_TSC_FIFO); in lpc32xx_fifo_clear()
91 struct lpc32xx_tsc *tsc = dev_id; in lpc32xx_ts_interrupt() local
92 struct input_dev *input = tsc->dev; in lpc32xx_ts_interrupt()
94 tmp = tsc_readl(tsc, LPC32XX_TSC_STAT); in lpc32xx_ts_interrupt()
98 lpc32xx_fifo_clear(tsc); in lpc32xx_ts_interrupt()
109 !(tsc_readl(tsc, LPC32XX_TSC_STAT) & in lpc32xx_ts_interrupt()
111 tmp = tsc_readl(tsc, LPC32XX_TSC_FIFO); in lpc32xx_ts_interrupt()
135 static void lpc32xx_stop_tsc(struct lpc32xx_tsc *tsc) in lpc32xx_stop_tsc() argument
[all …]
Dtps6507x-ts.c51 static int tps6507x_read_u8(struct tps6507x_ts *tsc, u8 reg, u8 *data) in tps6507x_read_u8() argument
53 return tsc->mfd->read_dev(tsc->mfd, reg, 1, data); in tps6507x_read_u8()
56 static int tps6507x_write_u8(struct tps6507x_ts *tsc, u8 reg, u8 data) in tps6507x_write_u8() argument
58 return tsc->mfd->write_dev(tsc->mfd, reg, 1, &data); in tps6507x_write_u8()
61 static s32 tps6507x_adc_conversion(struct tps6507x_ts *tsc, in tps6507x_adc_conversion() argument
70 ret = tps6507x_write_u8(tsc, TPS6507X_REG_TSCMODE, tsc_mode); in tps6507x_adc_conversion()
72 dev_err(tsc->dev, "TSC mode read failed\n"); in tps6507x_adc_conversion()
78 ret = tps6507x_write_u8(tsc, TPS6507X_REG_ADCONFIG, in tps6507x_adc_conversion()
81 dev_err(tsc->dev, "ADC config write failed\n"); in tps6507x_adc_conversion()
86 ret = tps6507x_read_u8(tsc, TPS6507X_REG_ADCONFIG, in tps6507x_adc_conversion()
[all …]
Dtsc2007.c93 static inline int tsc2007_xfer(struct tsc2007 *tsc, u8 cmd) in tsc2007_xfer() argument
98 data = i2c_smbus_read_word_data(tsc->client, cmd); in tsc2007_xfer()
100 dev_err(&tsc->client->dev, "i2c io error: %d\n", data); in tsc2007_xfer()
110 dev_dbg(&tsc->client->dev, "data: 0x%x, val: 0x%x\n", data, val); in tsc2007_xfer()
115 static void tsc2007_read_values(struct tsc2007 *tsc, struct ts_event *tc) in tsc2007_read_values() argument
118 tc->y = tsc2007_xfer(tsc, READ_Y); in tsc2007_read_values()
121 tc->x = tsc2007_xfer(tsc, READ_X); in tsc2007_read_values()
124 tc->z1 = tsc2007_xfer(tsc, READ_Z1); in tsc2007_read_values()
125 tc->z2 = tsc2007_xfer(tsc, READ_Z2); in tsc2007_read_values()
128 tsc2007_xfer(tsc, PWRDOWN); in tsc2007_read_values()
[all …]
Dcy8ctmg110_ts.c74 static int cy8ctmg110_write_regs(struct cy8ctmg110 *tsc, unsigned char reg, in cy8ctmg110_write_regs() argument
77 struct i2c_client *client = tsc->client; in cy8ctmg110_write_regs()
95 static int cy8ctmg110_read_regs(struct cy8ctmg110 *tsc, in cy8ctmg110_read_regs() argument
98 struct i2c_client *client = tsc->client; in cy8ctmg110_read_regs()
123 static int cy8ctmg110_touch_pos(struct cy8ctmg110 *tsc) in cy8ctmg110_touch_pos() argument
125 struct input_dev *input = tsc->input; in cy8ctmg110_touch_pos()
132 if (cy8ctmg110_read_regs(tsc, reg_p, 9, CY8CTMG110_TOUCH_X1) != 0) in cy8ctmg110_touch_pos()
171 struct cy8ctmg110 *tsc = dev_id; in cy8ctmg110_irq_thread() local
173 cy8ctmg110_touch_pos(tsc); in cy8ctmg110_irq_thread()
Dti_am335x_tsc.c64 static void titsc_writel(struct titsc *tsc, unsigned int reg, in titsc_writel() argument
67 writel(val, tsc->mfd_tscadc->tscadc_base + reg); in titsc_writel()
419 tscadc_dev->tsc = ts_dev; in titsc_probe()
/linux-4.4.14/Documentation/prctl/
DMakefile3 hostprogs-$(CONFIG_X86) := disable-tsc-ctxt-sw-stress-test disable-tsc-on-off-stress-test disable-t…
7 HOSTCFLAGS_disable-tsc-ctxt-sw-stress-test.o += -I$(objtree)/usr/include
8 HOSTCFLAGS_disable-tsc-on-off-stress-test.o += -I$(objtree)/usr/include
9 HOSTCFLAGS_disable-tsc-test.o += -I$(objtree)/usr/include
D.gitignore1 disable-tsc-ctxt-sw-stress-test
2 disable-tsc-on-off-stress-test
3 disable-tsc-test
/linux-4.4.14/Documentation/devicetree/bindings/input/touchscreen/
Dimx6ul_tsc.txt4 - compatible: must be "fsl,imx6ul-tsc".
8 - clock-names; must be "tsc" and "adc".
22 tsc: tsc@02040000 {
23 compatible = "fsl,imx6ul-tsc";
29 clock-names = "tsc", "adc";
Dlpc32xx-tsc.txt4 - compatible: must be "nxp,lpc3220-tsc"
11 tsc@40048000 {
12 compatible = "nxp,lpc3220-tsc";
Dbrcm,iproc-touchscreen.txt7 - clocks: The clock provided by the SOC to driver the tsc
15 the tsc waits to allow the voltage to settle after
58 touchscreen: tsc@0x180A6000 {
Dti-tsc-adc.txt5 - child "tsc"
32 - child "tsc"
69 tsc {
/linux-4.4.14/arch/x86/include/asm/
Dstackprotector.h63 u64 tsc; in boot_init_stack_canary() local
75 tsc = rdtsc(); in boot_init_stack_canary()
76 canary += tsc + (tsc << 32UL); in boot_init_stack_canary()
Dtsc.h38 extern unsigned long long native_sched_clock_from_tsc(u64 tsc);
Dkvm_host.h1228 u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc);
/linux-4.4.14/include/trace/events/
Dmce.h24 __field( u64, tsc )
42 __entry->tsc = m->tsc;
59 __entry->tsc,
Dpower.h49 u64 tsc,
59 tsc,
70 __field(u64, tsc)
81 __entry->tsc = tsc;
92 (unsigned long long)__entry->tsc,
/linux-4.4.14/drivers/staging/lustre/lnet/selftest/
Dframework.c124 sfw_test_case_t *tsc; in sfw_find_test_case() local
129 list_for_each_entry(tsc, &sfw_data.fw_tests, tsc_list) { in sfw_find_test_case()
130 if (tsc->tsc_srv_service->sv_id == id) in sfw_find_test_case()
131 return tsc; in sfw_find_test_case()
140 sfw_test_case_t *tsc; in sfw_register_test() local
148 LIBCFS_ALLOC(tsc, sizeof(sfw_test_case_t)); in sfw_register_test()
149 if (tsc == NULL) in sfw_register_test()
152 tsc->tsc_cli_ops = cliops; in sfw_register_test()
153 tsc->tsc_srv_service = service; in sfw_register_test()
155 list_add_tail(&tsc->tsc_list, &sfw_data.fw_tests); in sfw_register_test()
[all …]
/linux-4.4.14/arch/x86/kernel/
Dtsc.c310 u64 native_sched_clock_from_tsc(u64 tsc) in native_sched_clock_from_tsc() argument
312 return cycles_2_ns(tsc); in native_sched_clock_from_tsc()
452 u64 tsc, t1, t2, delta; in pit_calibrate_tsc() local
468 tsc = t1 = t2 = get_cycles(); in pit_calibrate_tsc()
475 delta = t2 - tsc; in pit_calibrate_tsc()
476 tsc = t2; in pit_calibrate_tsc()
547 u64 tsc = 0, prev_tsc = 0; in pit_expect_msb() local
552 prev_tsc = tsc; in pit_expect_msb()
553 tsc = get_cycles(); in pit_expect_msb()
556 *tscp = tsc; in pit_expect_msb()
[all …]
DMakefile41 obj-y += tsc.o tsc_msr.o io_delay.o rtc.o
/linux-4.4.14/arch/c6x/kernel/
Dtime.c47 u64 tsc = get_cycles(); in sched_clock() local
49 return (tsc * sched_clock_multiplier) >> SCHED_CLOCK_SHIFT; in sched_clock()
/linux-4.4.14/tools/power/x86/turbostat/
Dturbostat.c140 unsigned long long tsc; member
400 outp += sprintf(outp, "TSC: %016llX\n", t->tsc); in dump_counters()
510 outp += sprintf(outp, "%8.2f", 100.0 * t->mperf/t->tsc/tsc_tweak); in format_counters()
521 1.0 * t->tsc / units * t->aperf / t->mperf / interval_float); in format_counters()
525 outp += sprintf(outp, "%8.0f", 1.0 * t->tsc/units/interval_float); in format_counters()
551 outp += sprintf(outp, "%8.2f", 100.0 * t->c1/t->tsc); in format_counters()
561 outp += sprintf(outp, "%8.2f", 100.0 * c->c3/t->tsc); in format_counters()
563 outp += sprintf(outp, "%8.2f", 100.0 * c->c6/t->tsc); in format_counters()
565 outp += sprintf(outp, "%8.2f", 100.0 * c->c7/t->tsc); in format_counters()
580 outp += sprintf(outp, "%8.2f", 100.0 * p->pkg_wtd_core_c0/t->tsc); in format_counters()
[all …]
/linux-4.4.14/drivers/net/wireless/orinoco/
Dhw.h34 int orinoco_hw_get_tkip_iv(struct orinoco_private *priv, int key, u8 *tsc);
42 size_t rsc_len, const u8 *tsc, size_t tsc_len);
Dhw.c690 int orinoco_hw_get_tkip_iv(struct orinoco_private *priv, int key, u8 *tsc) in orinoco_hw_get_tkip_iv() argument
702 memcpy(tsc, &tsc_arr[key][0], sizeof(tsc_arr[0])); in orinoco_hw_get_tkip_iv()
992 size_t rsc_len, const u8 *tsc, size_t tsc_len) in __orinoco_hw_set_tkip_key() argument
1000 u8 tsc[ORINOCO_SEQ_LEN]; in __orinoco_hw_set_tkip_key() member
1020 if (tsc_len > sizeof(buf.tsc)) in __orinoco_hw_set_tkip_key()
1021 tsc_len = sizeof(buf.tsc); in __orinoco_hw_set_tkip_key()
1024 memset(buf.tsc, 0, sizeof(buf.tsc)); in __orinoco_hw_set_tkip_key()
1029 if (tsc != NULL) in __orinoco_hw_set_tkip_key()
1030 memcpy(buf.tsc, tsc, tsc_len); in __orinoco_hw_set_tkip_key()
1032 buf.tsc[4] = 0x10; in __orinoco_hw_set_tkip_key()
Dmain.c1024 &wxmic.tsc[0]); in orinoco_rx()
/linux-4.4.14/tools/power/cpupower/utils/idle_monitor/
Dmperf_monitor.c80 static int mperf_get_tsc(unsigned long long *tsc) in mperf_get_tsc() argument
83 ret = read_msr(0, MSR_TSC, tsc); in mperf_get_tsc()
85 dprint("Reading TSC MSR failed, returning %llu\n", *tsc); in mperf_get_tsc()
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dmax8925.txt13 - maxim,tsc-irq: there are 2 IRQ lines for max8925, one is indicated in
36 maxim,tsc-irq = <0>;
/linux-4.4.14/arch/x86/kernel/apic/
Dapic.c465 u64 tsc; in lapic_next_deadline() local
467 tsc = rdtsc(); in lapic_next_deadline()
468 wrmsrl(MSR_IA32_TSC_DEADLINE, tsc + (((u64) delta) * TSC_DIVISOR)); in lapic_next_deadline()
600 unsigned long long tsc = 0; in lapic_cal_handler() local
605 tsc = rdtsc(); in lapic_cal_handler()
610 lapic_cal_tsc1 = tsc; in lapic_cal_handler()
617 lapic_cal_tsc2 = tsc; in lapic_cal_handler()
1219 unsigned long long tsc = 0, ntsc; in setup_local_APIC() local
1223 tsc = rdtsc(); in setup_local_APIC()
1308 max_loops = (cpu_khz << 10) - (ntsc - tsc); in setup_local_APIC()
/linux-4.4.14/tools/perf/arch/x86/tests/
DBuild6 libperf-y += perf-time-to-tsc.o
/linux-4.4.14/arch/x86/include/uapi/asm/
Dmce.h14 __u64 tsc; /* cpu time stamp counter */ member
/linux-4.4.14/tools/perf/arch/x86/util/
DBuild2 libperf-y += tsc.o
/linux-4.4.14/drivers/cpufreq/
Dintel_pstate.c71 u64 tsc; member
885 u64 tsc; in intel_pstate_sample() local
895 tsc = rdtsc(); in intel_pstate_sample()
902 cpu->sample.tsc = tsc; in intel_pstate_sample()
905 cpu->sample.tsc -= cpu->prev_tsc; in intel_pstate_sample()
911 cpu->prev_tsc = tsc; in intel_pstate_sample()
996 sample->tsc, in intel_pstate_adjust_busy_pstate()
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/
Dfw-api-d3.h268 struct tkip_sc tsc; member
278 struct aes_sc tsc; member
Dd3.c224 tkip_tx_sc = &data->rsc_tsc->all_tsc_rsc.tkip.tsc; in iwl_mvm_wowlan_program_keys()
280 aes_tx_sc = &data->rsc_tsc->all_tsc_rsc.aes.tsc; in iwl_mvm_wowlan_program_keys()
1451 atomic64_set(&key->tx_pn, le64_to_cpu(sc->aes.tsc.pn)); in iwl_mvm_d3_update_gtks()
1454 iwl_mvm_tkip_sc_to_seq(&sc->tkip.tsc, &seq); in iwl_mvm_d3_update_gtks()
/linux-4.4.14/Documentation/virtual/kvm/
Dmsr.txt79 tsc_timestamp: the tsc value at the current VCPU at the time
81 from current tsc to derive a notion of elapsed time since the
89 tsc-related quantity to nanoseconds
91 tsc_shift: shift to be used when converting tsc-related
97 The conversion from tsc to nanoseconds involves an additional
Dlocking.txt150 - tsc offset in vmcb
151 Comment: 'raw' because updating the tsc offsets must not be preempted.
Dapi.txt1541 Specifies the tsc frequency for the virtual machine. The unit of the
1551 Returns: virtual tsc-khz on success, negative value on error
1553 Returns the tsc frequency of the guest. The unit of the return value is
1554 KHz. If the host has unstable tsc this ioctl returns -EIO instead as an
/linux-4.4.14/Documentation/devicetree/bindings/clock/
Dprima2-clock.txt31 tsc 16
Dbrcm,iproc-clocks.txt107 adc/tsc crystal (ASIU) 1 BCM_CYGNUS_ASIU_ADC_CLK
/linux-4.4.14/arch/arm/boot/dts/
Dlpc32xx.dtsi278 tsc@40048000 {
279 compatible = "nxp,lpc3220-tsc";
Dimx25.dtsi268 tsc: tsc@50030000 { label
269 compatible = "fsl,imx25-adc", "fsl,imx21-tsc";
Dimx6ul.dtsi587 tsc: tsc@02040000 { label
588 compatible = "fsl,imx6ul-tsc";
594 clock-names = "tsc", "adc";
Dphy3250.dts174 tsc@40048000 {
Dmmp2-brownstone.dts39 maxim,tsc-irq = <0>;
Dimx6ul-14x14-evk.dts94 &tsc {
Datlas6.dtsi356 tsc@b0110000 {
357 compatible = "sirf,prima2-tsc";
Dprima2.dtsi370 tsc@b0110000 {
371 compatible = "sirf,prima2-tsc";
Dbcm-cygnus.dtsi257 touchscreen: tsc@180a6000 {
Dam33xx.dtsi807 tsc {
808 compatible = "ti,am3359-tsc";
Dam4372.dtsi764 tsc {
765 compatible = "ti,am3359-tsc";
Dam335x-pepper.dts511 tsc {
Dam335x-evmsk.dts705 tsc {
Dam335x-evm.dts721 tsc {
Dam437x-gp-evm.dts604 interrupt-names = "tsc", "wakeup";
/linux-4.4.14/arch/s390/include/asm/
Detr.h224 unsigned int tsc : 1; /* Timing status change */ member
/linux-4.4.14/net/wireless/
Dnl80211.h71 int key_id, const u8 *tsc, gfp_t gfp);
Dmlme.c173 const u8 *tsc, gfp_t gfp) in cfg80211_michael_mic_failure() argument
193 trace_cfg80211_michael_mic_failure(dev, addr, key_type, key_id, tsc); in cfg80211_michael_mic_failure()
194 nl80211_michael_mic_failure(rdev, dev, addr, key_type, key_id, tsc, gfp); in cfg80211_michael_mic_failure()
Dtrace.h2224 enum nl80211_key_type key_type, int key_id, const u8 *tsc),
2225 TP_ARGS(netdev, addr, key_type, key_id, tsc),
2231 __array(u8, tsc, 6)
2238 if (tsc)
2239 memcpy(__entry->tsc, tsc, 6);
2243 __entry->key_id, __entry->tsc)
Dnl80211.c12058 const u8 *tsc, gfp_t gfp) in nl80211_michael_mic_failure() argument
12079 (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc))) in nl80211_michael_mic_failure()
/linux-4.4.14/include/linux/mfd/
Dti_am335x_tscadc.h172 struct titsc *tsc; member
/linux-4.4.14/tools/perf/util/
DBuild79 libperf-$(CONFIG_X86) += tsc.o
80 libperf-$(CONFIG_AUXTRACE) += tsc.o
/linux-4.4.14/drivers/clk/sirf/
Dclk-prima2.c62 mf, io, cpu, uart0, uart1, uart2, tsc, i2c0, i2c1, spi0, enumerator
Dclk-atlas6.c63 mf, io, cpu, uart0, uart1, uart2, tsc, i2c0, i2c1, spi0, enumerator
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Dbrcm,cygnus-gpio.txt92 tsc {
/linux-4.4.14/net/sched/
Dsch_hfsc.c1303 struct tc_service_curve tsc; in hfsc_dump_sc() local
1305 tsc.m1 = sm2m(sc->sm1); in hfsc_dump_sc()
1306 tsc.d = dx2d(sc->dx); in hfsc_dump_sc()
1307 tsc.m2 = sm2m(sc->sm2); in hfsc_dump_sc()
1308 if (nla_put(skb, attr, sizeof(tsc), &tsc)) in hfsc_dump_sc()
/linux-4.4.14/arch/x86/kernel/cpu/
Dperf_event_msr.c72 PMU_EVENT_ATTR_STRING(tsc, evattr_tsc, "event=0x00");
Dperf_event_intel_ds.c246 u64 tsc; member
1100 data->time = native_sched_clock_from_tsc(pebs->tsc); in setup_pebs_sample_data()
Dperf_event_intel_pt.c105 PMU_FORMAT_ATTR(tsc, "config:10" );
/linux-4.4.14/tools/perf/Documentation/
Dintel-pt.txt139 -e intel_pt/tsc,noretcomp=0/
143 -e intel_pt/tsc=1,noretcomp=0/
159 /sys/bus/event_source/devices/intel_pt/format/tsc:config:10
167 -e intel_pt/tsc=1,noretcomp=0/
171 -e intel_pt/tsc=0/
222 tsc Always supported. Produces TSC timestamp packets to provide
227 The default config selects tsc (i.e. tsc=1).
/linux-4.4.14/include/xen/interface/
Dxen-mca.h342 __u64 tsc; /* cpu time stamp counter */ member
/linux-4.4.14/drivers/net/fjes/
Dfjes_hw.h257 u64 tsc; member
/linux-4.4.14/arch/x86/kernel/cpu/mcheck/
Dmce.c130 m->tsc = rdtsc(); in mce_setup()
245 pr_emerg(HW_ERR "TSC %llx ", m->tsc); in print_mce()
586 m.tsc = 0; in machine_check_poll()
607 m.tsc = 0; in machine_check_poll()
1882 if (m->finished && m->tsc < cpu_tsc[m->cpu]) { in mce_chrdev_read()
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/
Dmain.c674 u8 tsc[6]; in ath6kl_tkip_micerr_event() local
688 memset(tsc, 0, sizeof(tsc)); /* FIX: get correct TSC */ in ath6kl_tkip_micerr_event()
691 tsc, GFP_KERNEL); in ath6kl_tkip_micerr_event()
/linux-4.4.14/drivers/xen/
Dmcelog.c273 m.tsc = mc_bank->mc_tsc; in convert_log()
/linux-4.4.14/include/uapi/linux/
Dwireless.h870 __u8 tsc[IW_ENCODE_SEQ_MAX_SIZE]; /* LSB first */ member
/linux-4.4.14/arch/x86/kvm/
Dx86.c1327 u64 tsc = pvclock_scale_delta(kernel_ns-vcpu->arch.this_tsc_nsec, in compute_guest_tsc() local
1330 tsc += vcpu->arch.this_tsc_write; in compute_guest_tsc()
1331 return tsc; in compute_guest_tsc()
1378 static inline u64 __scale_tsc(u64 ratio, u64 tsc) in __scale_tsc() argument
1380 return mul_u64_u64_shr(tsc, ratio, kvm_tsc_scaling_ratio_frac_bits); in __scale_tsc()
1383 u64 kvm_scale_tsc(struct kvm_vcpu *vcpu, u64 tsc) in kvm_scale_tsc() argument
1385 u64 _tsc = tsc; in kvm_scale_tsc()
1389 _tsc = __scale_tsc(ratio, tsc); in kvm_scale_tsc()
1397 u64 tsc; in kvm_compute_tsc_offset() local
1399 tsc = kvm_scale_tsc(vcpu, rdtsc()); in kvm_compute_tsc_offset()
[all …]
Demulate.c3450 u64 tsc = 0; in em_rdtsc() local
3452 ctxt->ops->get_msr(ctxt, MSR_IA32_TSC, &tsc); in em_rdtsc()
3453 *reg_write(ctxt, VCPU_REGS_RAX) = (u32)tsc; in em_rdtsc()
3454 *reg_write(ctxt, VCPU_REGS_RDX) = tsc >> 32; in em_rdtsc()
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/
Dlib.c947 tkip_tx_sc = &data->rsc_tsc->all_tsc_rsc.tkip.tsc; in iwlagn_wowlan_program_keys()
1002 aes_tx_sc = &data->rsc_tsc->all_tsc_rsc.aes.tsc; in iwlagn_wowlan_program_keys()
Dcommands.h3834 struct tkip_sc tsc; member
3844 struct aes_sc tsc; member
/linux-4.4.14/tools/perf/util/intel-pt-decoder/
Dintel-pt-decoder.c2171 static bool intel_pt_next_tsc(unsigned char *buf, size_t len, uint64_t *tsc) in intel_pt_next_tsc() argument
2181 *tsc = packet.payload; in intel_pt_next_tsc()
/linux-4.4.14/arch/s390/kernel/
Dtime.c1504 if (intparm->tsc || intparm->lac || intparm->tcpc) in stp_timing_alert()
/linux-4.4.14/include/net/
Dcfg80211.h4301 const u8 *tsc, gfp_t gfp);
/linux-4.4.14/drivers/net/wireless/ath/wcn36xx/
Dhal.h2831 u8 tsc[WCN36XX_HAL_CIPHER_SEQ_CTR_SIZE]; member
/linux-4.4.14/drivers/edac/
Dsb_edac.c2279 sbridge_mc_printk(mci, KERN_DEBUG, "TSC %llx ", mce->tsc); in sbridge_mce_check_error()
/linux-4.4.14/Documentation/
Dkernel-parameters.txt631 Format: { pit | tsc | cyclone | pmtmr }
644 [X86-32] pit,hpet,tsc;
651 [X86-64] hpet,tsc
3825 tsc= Disable clocksource stability checks for TSC.
3827 [x86] reliable: mark tsc clocksource as reliable, this
/linux-4.4.14/Documentation/trace/
Dftrace.txt332 [local] global counter x86-tsc
352 x86-tsc: Architectures may define their own clocks. For