/linux-4.1.27/tools/power/cpupower/utils/helpers/ |
H A D | cpuid.c | 39 * Extract CPU vendor, family, model, stepping info from /proc/cpuinfo 58 cpu_info->stepping = unknown; get_cpu_info() 89 } else if (!strncmp(value, "stepping\t: ", 10)) { get_cpu_info() 90 sscanf(value, "stepping\t: %u", get_cpu_info() 91 &cpu_info->stepping); get_cpu_info() 97 cpu_info->stepping == unknown) { get_cpu_info()
|
H A D | helpers.h | 78 unsigned int stepping; member in struct:cpupower_cpu_info 85 * Extract CPU vendor, family, model, stepping info from /proc/cpuinfo
|
/linux-4.1.27/arch/parisc/include/asm/ |
H A D | thread_info.h | 55 #define TIF_SINGLESTEP 9 /* single stepping? */ 56 #define TIF_BLOCKSTEP 10 /* branch stepping? */
|
/linux-4.1.27/drivers/ata/ |
H A D | pata_icside.c | 28 unsigned int stepping; member in struct:portinfo 34 .stepping = 6, 40 .stepping = 6, 46 .stepping = 6, 348 ioaddr->data_addr = cmd + (ATA_REG_DATA << port->stepping); pata_icside_setup_ioaddr() 349 ioaddr->error_addr = cmd + (ATA_REG_ERR << port->stepping); pata_icside_setup_ioaddr() 350 ioaddr->feature_addr = cmd + (ATA_REG_FEATURE << port->stepping); pata_icside_setup_ioaddr() 351 ioaddr->nsect_addr = cmd + (ATA_REG_NSECT << port->stepping); pata_icside_setup_ioaddr() 352 ioaddr->lbal_addr = cmd + (ATA_REG_LBAL << port->stepping); pata_icside_setup_ioaddr() 353 ioaddr->lbam_addr = cmd + (ATA_REG_LBAM << port->stepping); pata_icside_setup_ioaddr() 354 ioaddr->lbah_addr = cmd + (ATA_REG_LBAH << port->stepping); pata_icside_setup_ioaddr() 355 ioaddr->device_addr = cmd + (ATA_REG_DEVICE << port->stepping); pata_icside_setup_ioaddr() 356 ioaddr->status_addr = cmd + (ATA_REG_STATUS << port->stepping); pata_icside_setup_ioaddr() 357 ioaddr->command_addr = cmd + (ATA_REG_CMD << port->stepping); pata_icside_setup_ioaddr()
|
H A D | sata_mv.c | 4366 /* Use this to determine the HW stepping of the chip so we know mv_print_info()
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
H A D | cpu.h | 22 /* Family/stepping-based lookup table for model names. */
|
H A D | proc.c | 73 seq_printf(m, "stepping\t: %d\n", c->x86_mask); show_cpuinfo() 75 seq_puts(m, "stepping\t: unknown\n"); show_cpuinfo()
|
H A D | amd.c | 112 printk(KERN_INFO "AMD K6 stepping B detected - "); init_amd_k6() 204 * It's been determined by AMD that Athlons since model 8 stepping 1 init_amd_k7() 239 * bit. It's worth noting that the A5 stepping (662) of some init_amd_k7() 553 /* On C+ stepping K8 rep microcode works well for copy/memset */ init_amd_k8() 827 * variable number of family-specific model-stepping ranges created by 874 /* OSVW unavailable or ID unknown, match family-model-stepping range */ cpu_has_amd_erratum()
|
H A D | centaur.c | 207 * There's also an erratum in Nehemiah stepping 1, which centaur_size_cache()
|
H A D | intel.c | 123 * stepping REP instructions to only generate a #DB on early_init_intel() 200 "with B stepping processors.\n"); intel_smp_check() 259 pr_info("CPU: C0 stepping P4 Xeon detected.\n"); intel_workarounds() 266 * i.e. all B steppings and the C2 stepping of P54C when using their intel_workarounds()
|
H A D | perf_event_p6.c | 238 * PPro erratum 26; fixed in stepping 9 and above. p6_pmu_rdpmc_quirk()
|
H A D | cyrix.c | 218 * the model, multiplier and stepping. Black magic included, init_cyrix()
|
H A D | perf_event_intel_lbr.c | 949 * only models starting at stepping 10 seems intel_pmu_lbr_init_atom()
|
H A D | common.c | 1131 printk(KERN_CONT ", stepping: %02x)\n", c->x86_mask); print_cpu_info()
|
/linux-4.1.27/drivers/ide/ |
H A D | icside.c | 46 unsigned int stepping; member in struct:cardinfo 52 .stepping = ICS_ARCIN_V5_IDESTEPPING, 58 .stepping = ICS_ARCIN_V6_IDESTEPPING, 64 .stepping = ICS_ARCIN_V6_IDESTEPPING, 391 hw->io_ports.error_addr = port + (1 << info->stepping); icside_setup_ports() 392 hw->io_ports.nsect_addr = port + (2 << info->stepping); icside_setup_ports() 393 hw->io_ports.lbal_addr = port + (3 << info->stepping); icside_setup_ports() 394 hw->io_ports.lbam_addr = port + (4 << info->stepping); icside_setup_ports() 395 hw->io_ports.lbah_addr = port + (5 << info->stepping); icside_setup_ports() 396 hw->io_ports.device_addr = port + (6 << info->stepping); icside_setup_ports() 397 hw->io_ports.status_addr = port + (7 << info->stepping); icside_setup_ports()
|
/linux-4.1.27/arch/x86/kernel/ |
H A D | step.c | 104 * Enable single-stepping. Return nonzero if user mode is not using TF itself. 196 * Make sure block stepping (BTF) is not enabled unless it should be. enable_step() 198 * instructions after the first when using block stepping. enable_step() 199 * So no one should try to use debugger block stepping in a program enable_step() 200 * that uses user-mode single stepping itself. enable_step() 221 * Make sure block stepping (BTF) is disabled. user_disable_single_step()
|
H A D | smp.c | 73 * machines with B stepping processors can fail. XXX should provide 76 * B stepping CPUs may hang. There are hardware work arounds 78 * arounds. Basically that's so I can tell anyone with a B stepping 98 * the C stepping chips too. 110 * about nothing of note with C stepping upwards.
|
H A D | signal.c | 615 bool stepping, failed; handle_signal() local 644 stepping = test_thread_flag(TIF_SINGLESTEP); handle_signal() 645 if (stepping) handle_signal() 667 signal_setup_done(failed, ksig, stepping); handle_signal()
|
H A D | uprobes.c | 87 * of userspace single-stepping (TF flag) is fragile. 93 * Not supported since kernel's handling of userspace single-stepping 155 * Not supported since kernel's handling of userspace single-stepping 864 * Called after single-stepping. To avoid the SMP problems that can
|
H A D | kgdb.c | 480 /* set the trace bit if we're stepping */ kgdb_arch_handle_exception() 553 /* This means a user thread is single stepping __kgdb_notify()
|
H A D | entry_64.S | 455 * conditions. For example, single-stepping this user code: 1341 * usergs. Handle them here. B stepping K8s sometimes report a
|
H A D | traps.c | 682 * Single-stepping through system calls: ignore any exceptions in do_debug()
|
/linux-4.1.27/tools/power/x86/x86_energy_perf_policy/ |
H A D | x86_energy_perf_policy.c | 140 unsigned int fms, family, model, stepping; validate_cpuid() local 157 stepping = fms & 0xf; validate_cpuid() 162 printf("CPUID %d levels family:model:stepping " validate_cpuid() 164 family, model, stepping, family, model, stepping); validate_cpuid()
|
/linux-4.1.27/drivers/hwmon/ |
H A D | k8temp.c | 182 u8 model, stepping; k8temp_probe() local 190 stepping = boot_cpu_data.x86_mask; k8temp_probe() 193 if ((model == 4 && stepping == 0) || k8temp_probe() 194 (model == 5 && stepping <= 1)) k8temp_probe()
|
H A D | hwmon-vid.c | 187 * The stepping_to parameter is highest acceptable stepping for current line. 272 static u8 find_vrm(u8 family, u8 model, u8 stepping, u8 vendor) find_vrm() argument 281 stepping <= vrm_models[i].stepping_to) find_vrm()
|
H A D | coretemp.c | 209 { "CPU 230", 100000 }, /* Model 0x1c, stepping 2 */ 210 { "CPU 330", 125000 }, /* Model 0x1c, stepping 2 */ 234 * Also matches S12x0 (stepping 9), covered by 254 * and model/stepping information. adjust_tjmax() 426 * fixed for stepping D0 (6EC). chk_ucode_version()
|
H A D | lm83.c | 12 * Since the datasheet omits to give the chip stepping code, I give it
|
H A D | emc6w201.c | 467 dev_dbg(&client->dev, "Unknwown EMC6W201 stepping %d\n", emc6w201_detect()
|
H A D | lm80.c | 590 * The LM96080 has manufacturer and stepping/die rev registers so we lm80_detect()
|
H A D | smsc47m192.c | 579 "version 2, stepping A%d\n", version & 0x0f); smsc47m192_detect()
|
H A D | adm1026.c | 1586 "Unrecognized stepping 0x%02x. Defaulting to ADM1026.\n", adm1026_detect() 1590 "Found version/stepping 0x%02x. Assuming generic ADM1026.\n", adm1026_detect()
|
/linux-4.1.27/arch/s390/include/asm/ |
H A D | etr.h | 10 unsigned int e0 : 1; /* port 0 stepping control */ 11 unsigned int e1 : 1; /* port 1 stepping control */ 46 unsigned int y : 1; /* stepping mode */ 48 unsigned int p : 1; /* stepping port number */
|
H A D | thread_info.h | 78 #define TIF_UPROBE 7 /* breakpointed or single-stepping */
|
/linux-4.1.27/arch/frv/kernel/ |
H A D | break.S | 93 # - we need to take special action to suspend h/w single stepping if we've done 94 # that, so that the gdbstub doesn't get bogged down endlessly stepping through 129 # special break insn requests single-stepping to be turned back on 185 # handle single stepping into an exception prologue from kernel mode 286 # cancel single-stepping mode 389 # cancel single-stepping mode 420 # cancel single-stepping mode 428 # single stepping on return 518 # determine the exception type and cancel single-stepping mode
|
H A D | entry-table.S | 42 # Due to the way single-stepping works on this CPU (single-step is not 77 # trap fixup table for single-stepping in user mode 83 # trap fixup table for single-stepping in user mode
|
H A D | debug-stub.c | 68 /* disable single stepping */ debug_stub()
|
H A D | ptrace.c | 239 * Control h/w single stepping
|
H A D | entry.S | 388 # single-stepping was disabled on entry to a TLB handler that then faulted 463 # single-stepping was disabled on entry to a TLB handler that then faulted
|
H A D | gdb-stub.c | 112 * breakpoints, single stepping,
|
/linux-4.1.27/arch/arm64/kernel/ |
H A D | hw_breakpoint.c | 45 /* Currently stepping a per-CPU kernel breakpoint. */ 457 * that would complicate the stepping code. arch_build_bp_info() 528 * complicate the stepping code. arch_validate_hwbkpt_settings() 539 * This is used when single-stepping after a breakpoint exception. 616 /* Do we need to handle the stepping? */ breakpoint_handler() 630 /* If we're already stepping a watchpoint, just return. */ breakpoint_handler() 712 /* Do we need to handle the stepping? */ watchpoint_handler() 732 /* If we're already stepping a breakpoint, just return. */ watchpoint_handler()
|
H A D | debug-monitors.c | 234 * If we are stepping a pending breakpoint, call the hw_breakpoint single_step_handler() 260 * Re-enable stepping since we know that we will be single_step_handler()
|
H A D | signal.c | 313 * Fast forward the stepping logic so we step into the signal handle_signal()
|
/linux-4.1.27/arch/arm/mach-mmp/include/mach/ |
H A D | regs-usb.h | 155 /* This is for Ax stepping */ 165 /* This is for B0 stepping */
|
/linux-4.1.27/drivers/cpufreq/ |
H A D | longhaul.h | 57 * VIA C3 Samuel 1 & Samuel 2 (stepping 0)
|
H A D | speedstep-lib.c | 278 * B-stepping [M-P4-M] speedstep_detect_processor() 286 * C-stepping [M-P4-M] speedstep_detect_processor() 290 * samples are only of B-stepping... speedstep_detect_processor() 297 * D-stepping [M-P4-M or M-P4/533] speedstep_detect_processor()
|
H A D | powernow-k7.c | 10 * - We cli/sti on stepping A0 CPUs around the FID/VID transition. 13 * - We disable half multipliers if ACPI is used on A0 stepping CPUs.
|
H A D | speedstep-centrino.c | 39 __u8 x86_mask; /* stepping */ 545 * CPU model and stepping, and we need to have the exact model name in
|
H A D | cpufreq-nforce2.c | 392 * Detects nForce2 A2 and C1 stepping
|
H A D | longhaul.c | 10 * It is present only in Samuel 1 (C5A), Samuel 2 (C5B) stepping 0. 308 * Longhaul v1. (Samuel[C5A] and Samuel2 stepping 0[C5B]) longhaul_setstate()
|
/linux-4.1.27/kernel/debug/ |
H A D | debug_core.h | 36 #define DCPU_SSTEP 0x8 /* CPU is single stepping */
|
H A D | debug_core.c | 139 /* to keep track of the CPU which is doing the single stepping*/ 492 * single stepping. kgdb_cpu_enter() 550 * For single stepping, try to only enter on the processor kgdb_cpu_enter() 551 * that was single stepping. To guard against a deadlock, the kgdb_cpu_enter()
|
/linux-4.1.27/arch/powerpc/include/asm/ |
H A D | probes.h | 47 /* Enable single stepping for the current task */ enable_single_step()
|
H A D | sstep.h | 13 * We don't allow single-stepping an mtmsrd that would clear
|
H A D | thread_info.h | 96 #define TIF_UPROBE 14 /* breakpointed or single-stepping */
|
/linux-4.1.27/drivers/misc/mic/host/ |
H A D | mic_device.h | 45 * enum mic_stepping - MIC stepping ids. 62 * @stepping: Stepping ID. 101 enum mic_stepping stepping; member in struct:mic_device
|
H A D | mic_sysfs.c | 101 switch (mdev->stepping) { stepping_show() 119 static DEVICE_ATTR_RO(stepping);
|
H A D | mic_x100.c | 203 if (MIC_A0_STEP == mdev->stepping) mic_x100_intr_workarounds() 207 if (mdev->stepping >= MIC_B0_STEP) mic_x100_intr_workarounds()
|
H A D | mic_main.c | 241 mdev->stepping = pdev->revision; mic_device_init()
|
/linux-4.1.27/include/linux/ |
H A D | tracehook.h | 136 * @stepping: nonzero if debugger single-step or block-step in use 145 static inline void tracehook_signal_handler(int stepping) tracehook_signal_handler() argument 147 if (stepping) tracehook_signal_handler()
|
H A D | ptrace.h | 38 /* single stepping state bits (used on ARM and PA-RISC) */ 321 * and will never be called when single-instruction stepping is being used.
|
H A D | signal.h | 296 extern void signal_setup_done(int failed, struct ksignal *ksig, int stepping);
|
/linux-4.1.27/arch/x86/mm/ |
H A D | kmmio.c | 221 * single stepping. We can only handle one active kmmio trace kmmio_handler() 224 * stepping to avoid looking up the probe and kmmio_fault_page kmmio_handler() 278 * Enable single-stepping and disable interrupts for the faulting kmmio_handler() 279 * context. Local interrupts must not get enabled during stepping. kmmio_handler() 288 * If another cpu accesses the same page while we are stepping, kmmio_handler()
|
H A D | fault.c | 513 * to avoid corruption of the 64bit RIP register on C stepping K8.
|
/linux-4.1.27/arch/sh/kernel/ |
H A D | kgdb.c | 6 * Single stepping taken from the old stub by Henry Bell and Jeremy Siegel. 260 /* Undo any stepping we may have done */ kgdb_arch_handle_exception() 334 * This means a user thread is single stepping __kgdb_notify()
|
H A D | ptrace_64.c | 552 continually stepping. */ do_single_step()
|
/linux-4.1.27/arch/parisc/kernel/ |
H A D | ptrace.c | 304 int stepping = test_thread_flag(TIF_SINGLESTEP) || do_syscall_trace_exit() local 309 if (stepping || test_thread_flag(TIF_SYSCALL_TRACE)) do_syscall_trace_exit() 310 tracehook_report_syscall_exit(regs, stepping); do_syscall_trace_exit()
|
H A D | entry.S | 799 mtctl %r0, %cr0 /* Needed for single stepping */
|
/linux-4.1.27/arch/mips/txx9/generic/ |
H A D | smsc_fdc37m81x.c | 108 printk(KERN_WARNING "%s: stepping on old base=0x%0*lx\n", smsc_fdc37m81x_init()
|
/linux-4.1.27/arch/powerpc/include/uapi/asm/ |
H A D | signal.h | 130 /* Enable or disable single-stepping. The value sets the state. */
|
/linux-4.1.27/arch/arm64/include/asm/ |
H A D | debug-monitors.h | 21 /* Low-level stepping controls. */
|
H A D | hw_breakpoint.h | 71 /* Kernel stepping */
|
H A D | processor.h | 53 /* Have we suspended stepping by a debugger? */
|
/linux-4.1.27/arch/ia64/kernel/ |
H A D | jprobes.S | 44 * by single stepping the emulated instruction, and then returning execution
|
H A D | kprobes.c | 771 /* turn on single stepping */ prepare_ss() 878 /* turn single stepping off */ pre_kprobes_handler()
|
/linux-4.1.27/arch/arm/include/asm/ |
H A D | kgdb.h | 68 * otherwise gdb will not be able to correctly interpret stepping over
|
/linux-4.1.27/include/uapi/linux/dvb/ |
H A D | video.h | 110 1 specifies forward single stepping, 111 -1 specifies backward single stepping,
|
/linux-4.1.27/arch/sparc/kernel/ |
H A D | kprobes.c | 16 /* We do not have hardware single-stepping on sparc64. 17 * So we implement software single-stepping with breakpoint 270 * Called after single-stepping. p->addr is the address of the
|
/linux-4.1.27/arch/alpha/kernel/ |
H A D | signal.c | 218 /* Send SIGTRAP if we're single-stepping: */ do_sigreturn() 252 /* Send SIGTRAP if we're single-stepping: */ do_rt_sigreturn() 500 /* ... so re-check the single stepping. */ do_signal()
|
H A D | ptrace.c | 254 /* Mark single stepping. */ user_enable_single_step()
|
/linux-4.1.27/arch/tile/kernel/ |
H A D | single_step.c | 14 * A code-rewriter that enables instruction single-stepping. 290 * single_step_once() - entry point when single stepping has been triggered. 654 * If we're really single-stepping, we take an INT_ILL after. single_step_once() 721 * It has been mentioned that we could conditionally turn off single stepping
|
H A D | intvec_32.S | 602 * Check for single stepping in user-level priv 611 /* Check for single stepping */ 633 /* No single stepping if there is no step state structure */ 664 /* Disable single stepping flag */ 695 /* Disable single stepping flag */ 726 /* Disable single stepping flag */ 766 * Check for if we are single stepping in user level. If so, then 1147 * Some interrupts don't check for single stepping 1196 * Check for if we are single stepping in user level. If so, then 1341 * Check for if we are single stepping in user level. If so, then
|
H A D | kgdb.c | 399 /* Undo any stepping we may have done. */ kgdb_arch_handle_exception()
|
H A D | kprobes.c | 272 * Called after single-stepping. p->addr is the address of the
|
H A D | intvec_64.S | 1327 /* Single stepping -- notify ptrace. */
|
/linux-4.1.27/arch/mips/bcm47xx/ |
H A D | prom.c | 95 * using address above 128M stepping out of the ddr address prom_init_mem()
|
/linux-4.1.27/arch/s390/kernel/ |
H A D | kprobes.c | 309 * and single stepping the kprobe instruction. kprobe_handler() 332 * continue with single stepping. If we have a kprobe_handler() 354 * installed. We continue with single stepping. kprobe_handler() 483 * Called after single-stepping. p->addr is the address of the
|
H A D | time.c | 627 * the port has to receive OTEs, the ETR stepping bit has to 856 * assume that this can have caused an stepping etr_handle_events() 869 * assume that this can have caused an stepping etr_handle_events() 1029 * Update the port information if the last stepping port change etr_work_fn() 1114 * of eacr caused a stepping port switch (or if we have to etr_work_fn() 1115 * assume that a stepping port switch has occurred) or the etr_work_fn()
|
H A D | ptrace.c | 308 * addresses are used only if single stepping is not in effect. __poke_user_per()
|
/linux-4.1.27/arch/sh/drivers/pci/ |
H A D | pci-sh5.c | 151 /* set WAIT bit to enable stepping, an attempt to improve stability */ sh5pci_init()
|
/linux-4.1.27/arch/mips/sibyte/sb1250/ |
H A D | setup.c | 237 "conservatively configured for an 'A' stepping. " sb1250_setup()
|
/linux-4.1.27/arch/blackfin/include/asm/ |
H A D | entry.h | 19 * NOTE! The single-stepping code assumes that all interrupt handlers
|
H A D | context.S | 8 * NOTE! The single-stepping code assumes that all interrupt handlers
|
/linux-4.1.27/arch/s390/include/uapi/asm/ |
H A D | ptrace.h | 363 * directly they are used so that single stepping can be 371 * stepping is switched off
|
/linux-4.1.27/arch/mn10300/kernel/ |
H A D | kgdb.c | 23 * Software single-stepping breakpoint save (used by __switch_to()) 151 * Attempt to emulate single stepping by means of breakpoint instructions.
|
H A D | gdb-stub.c | 118 * breakpoints, single stepping, 489 * emulate single stepping by means of breakpoint instructions 1209 /* if we were single stepping, restore the opcodes hoisted for the gdbstub() 1555 * stepping (it seems to wind up being caught by the gdbstub()
|
H A D | kprobes.c | 487 * Called after single-stepping. p->addr is the address of the
|
H A D | smp.c | 475 /* In case of single stepping smp_send_stop by other CPU, stop_this_cpu()
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | hw_breakpoint.c | 304 * Check if we are single-stepping as a result of a single_step_dabr_instruction() 314 * stepping handler to confirm to 'trigger-after-execute' semantics single_step_dabr_instruction()
|
H A D | uprobes.c | 106 * Called after single-stepping. To avoid the SMP problems that can
|
H A D | kgdb.c | 426 /* set the trace bit if we're stepping */ kgdb_arch_handle_exception()
|
H A D | kprobes.c | 356 * Called after single-stepping. p->addr is the address of the
|
H A D | ptrace.c | 893 * The logic to disable single stepping should be as user_disable_single_step()
|
H A D | exceptions-64e.S | 457 * the debug exception handler which handles single stepping
|
/linux-4.1.27/arch/avr32/kernel/ |
H A D | ptrace.c | 43 * set and return to userspace with single stepping enabled. user_enable_single_step() 282 * stepping over a syscall. Do the trap now. do_debug()
|
H A D | kprobes.c | 130 printk("FIXME: kprobe hit while single-stepping!\n"); kprobe_handler()
|
/linux-4.1.27/arch/x86/kernel/kprobes/ |
H A D | core.c | 246 * However, RIP-relative instruction can not do single-stepping __recover_probed_insn() 537 * stepping. setup_singlestep() 550 /* Prepare real single stepping */ setup_singlestep() 579 * after, single-stepping of a probed instruction. This entire reenter_kprobe() 800 * Called after single-stepping. p->addr is the address of the 951 /* This must happen on single-stepping */ kprobe_fault_handler()
|
/linux-4.1.27/drivers/crypto/ |
H A D | padlock-aes.c | 76 /* TODO: We should check the actual CPU model/stepping aes_hw_extkey_available() 537 printk(KERN_NOTICE PFX "VIA Nano stepping 2 detected: enabling workaround.\n"); padlock_init()
|
/linux-4.1.27/drivers/edac/ |
H A D | amd64_edac.h | 352 u8 stepping; /* ... stepping */ member in struct:amd64_pvt
|
H A D | i82875p_edac.c | 98 * 7 addr/data stepping - ro 0
|
H A D | amd64_edac.c | 1564 if (pvt->model < 4 || (pvt->model < 0xa && pvt->stepping < 3)) f1x_swap_interleaved_region() 2703 pvt->stepping = boot_cpu_data.x86_mask; per_family_init()
|
/linux-4.1.27/arch/cris/arch-v32/kernel/ |
H A D | signal.c | 492 /* Pending single step due to single-stepping the break 13 keep_debug_flags() 510 /* If we were single-stepping *before* the signal was taken, keep_debug_flags()
|
H A D | kgdb.c | 62 * breakpoints, single stepping and so on. It's also possible to interrupt the 97 * - When single-stepping, only one instruction of the current thread is 832 /* Move SPC forward if we are single-stepping. */ putDebugString()
|
/linux-4.1.27/arch/arm/kernel/ |
H A D | perf_event_xscale.c | 146 * NOTE: there's an A stepping erratum that states if an overflow xscale1pmu_handle_irq() 149 * Fixed in B stepping or later. xscale1pmu_handle_irq()
|
H A D | hw_breakpoint.c | 637 * Mismatch breakpoints are required for single-stepping arch_validate_hwbkpt_settings() 648 * Per-cpu breakpoints are not supported by our stepping arch_validate_hwbkpt_settings() 669 * Enable/disable single-stepping over the breakpoint bp at address addr. 840 /* If we're stepping a breakpoint, it can now be restored. */ breakpoint_handler()
|
/linux-4.1.27/drivers/parisc/ |
H A D | dino.c | 203 * Dino address stepping "feature": 204 * When address stepping, Dino attempts to drive the bus one cycle too soon 206 * The read of Ven/Prod ID is harmless and avoids Dino's address stepping. 221 /* avoid address stepping feature */ dino_cfg_write()
|
/linux-4.1.27/arch/xtensa/kernel/ |
H A D | ptrace.c | 44 * Called by kernel/ptrace.c when detaching to disable single stepping.
|
H A D | align.S | 424 /* Update icount if we're single-stepping in userspace. */
|
H A D | entry.S | 122 /* Save SAR and turn off single stepping */ 267 /* Save SAR and turn off single stepping */ 675 /* We control single stepping through the ICOUNTLEVEL register. */
|
/linux-4.1.27/drivers/char/hw_random/ |
H A D | via-rng.c | 168 /* Nehemiah stepping 8 and higher */ via_rng_init()
|
/linux-4.1.27/drivers/acpi/acpica/ |
H A D | acstruct.h | 89 u32 method_breakpoint; /* For single stepping */
|
/linux-4.1.27/arch/powerpc/platforms/cell/ |
H A D | ras.c | 139 * functions stepping on it. cbe_ptcal_enable_on_node()
|
/linux-4.1.27/arch/frv/include/uapi/asm/ |
H A D | registers.h | 126 #define REG__STATUS_STEP 0x00000001 /* - reenable single stepping on return */
|
/linux-4.1.27/arch/mips/kernel/ |
H A D | kprobes.c | 179 * doesn't have single stepping support, the BD instruction can arch_prepare_kprobe() 311 * Called after single-stepping. p->addr is the address of the
|
H A D | traps.c | 1836 printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n"); ejtag_exception_handler()
|
/linux-4.1.27/arch/frv/mm/ |
H A D | tlb-miss.S | 68 # we've got to re-enable single-stepping 107 # we've got to re-enable single-stepping
|
/linux-4.1.27/arch/blackfin/kernel/ |
H A D | kgdb.c | 388 /* set the trace bit if we're stepping */ kgdb_arch_handle_exception()
|
H A D | setup.c | 1305 "stepping\t: %d ", show_cpuinfo()
|
/linux-4.1.27/arch/arm/probes/kprobes/ |
H A D | actions-arm.c | 17 * We do not have hardware single-stepping on ARM, This
|
/linux-4.1.27/drivers/platform/x86/ |
H A D | samsung-laptop.c | 537 * Some laptops exhibit the strange behaviour of stepping toward check_for_stepping_quirk() 558 pr_info("enabled workaround for brightness stepping quirk\n"); check_for_stepping_quirk() 1511 /* Check for stepping quirk */ samsung_sabi_init()
|
/linux-4.1.27/arch/blackfin/mach-common/ |
H A D | entry.S | 180 * single stepping caused a previous hardware error 190 /* Single stepping only a single instruction, so clear the trace 324 /* Save the state of single stepping */
|
/linux-4.1.27/drivers/media/i2c/ |
H A D | bt819.c | 174 Bug in the bt819 stepping on my board? bt819_init()
|
/linux-4.1.27/include/uapi/linux/ |
H A D | fd.h | 39 spec1, /* stepping rate, head unload time */
|
H A D | videodev2.h | 1698 1 specifies forward single stepping, 1699 -1 specifies backward single stepping,
|
H A D | pci_regs.h | 40 #define PCI_COMMAND_WAIT 0x80 /* Enable address/data stepping */
|
/linux-4.1.27/arch/powerpc/lib/ |
H A D | code-patching.c | 169 * to deal with single stepping from userspace which stops on __patch_exception()
|
/linux-4.1.27/arch/cris/arch-v10/kernel/ |
H A D | signal.c | 131 /* TODO: SIGTRAP when single-stepping as in arm ? */ sys_sigreturn()
|
H A D | kgdb.c | 65 * breakpoints, single stepping and so on. It's also possible to interrupt the 100 * - When single-stepping, only one instruction of the current thread is
|
/linux-4.1.27/arch/ia64/sn/kernel/sn2/ |
H A D | sn2_smp.c | 324 * Recover from PTC deadlocks conditions. Recovery requires stepping thru each
|
/linux-4.1.27/arch/arc/kernel/ |
H A D | kprobes.c | 229 * jprobe, we return without single stepping and leave that to arc_kprobe_handler()
|
/linux-4.1.27/tools/net/ |
H A D | bpf_dbg.c | 5 * and allows for single stepping through selected packets from a pcap 28 * 7) > step [-<n>, +<n>] (performs single stepping through the BPF)
|
/linux-4.1.27/tools/power/x86/turbostat/ |
H A D | turbostat.c | 2573 unsigned int fms, family, model, stepping; process_cpuid() local 2589 stepping = fms & 0xf; process_cpuid() 2594 fprintf(stderr, "%d CPUID levels; family:model:stepping 0x%x:%x:%x (%d:%d:%d)\n", process_cpuid() 2595 max_level, family, model, stepping, family, model, stepping); process_cpuid()
|
/linux-4.1.27/arch/x86/kernel/cpu/mtrr/ |
H A D | generic.c | 789 * For Intel PPro stepping <= 7 generic_validate_add_page()
|
/linux-4.1.27/drivers/char/agp/ |
H A D | amd64-agp.c | 369 * Chips before B2 stepping incorrectly reporting v3.5 amd8151_init()
|
/linux-4.1.27/drivers/power/ |
H A D | ab8500_charger.c | 236 * Counter for current stepping sessions 1083 * ab8500_charger_check_continue_stepping() - Check to allow stepping 1087 * Check if current stepping should be allowed to continue. 1088 * Checks if charger source has not collapsed. If it has, further stepping
|
/linux-4.1.27/arch/arm/mm/ |
H A D | proc-xscale.S | 420 * On stepping A0/A1 of the 80200, invalidating D-cache by line doesn't
|
/linux-4.1.27/arch/arm/mach-ixp4xx/ |
H A D | ixp4xx_npe.c | 306 stepping forever */ npe_reset()
|
/linux-4.1.27/scripts/kconfig/lxdialog/ |
H A D | util.c | 555 * times esc. But then we need to ignore the second esc to avoid stepping
|
/linux-4.1.27/kernel/ |
H A D | signal.c | 2370 * @stepping: nonzero if debugger single-step or block-step in use 2377 static void signal_delivered(struct ksignal *ksig, int stepping) signal_delivered() argument 2391 tracehook_signal_handler(stepping); signal_delivered() 2394 void signal_setup_done(int failed, struct ksignal *ksig, int stepping) signal_setup_done() argument 2399 signal_delivered(ksig, stepping); signal_setup_done()
|
H A D | fork.c | 1485 * Syscall tracing and stepping should be turned off in the copy_process()
|
H A D | kprobes.c | 96 * stepping on the instruction on a vmalloced/kmalloced/data page
|
/linux-4.1.27/drivers/misc/ |
H A D | kgdbts.c | 4 * HW/SW breakpoints, single stepping, and NMI.
|
/linux-4.1.27/arch/x86/include/asm/ |
H A D | kvm_host.h | 498 /* used for guest single stepping over the given code position */
|
/linux-4.1.27/arch/powerpc/platforms/powermac/ |
H A D | low_i2c.c | 112 int bsteps; /* register stepping */
|
/linux-4.1.27/arch/powerpc/platforms/pseries/ |
H A D | iommu.c | 607 * skip the first 128MB to avoid stepping on ISA pci_dma_bus_setup_pSeries()
|
/linux-4.1.27/arch/arm/probes/ |
H A D | decode-arm.c | 32 * To avoid the complications of mimicing single-stepping on a
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
H A D | aic7xxx_core.c | 1990 int stepping; ahc_clear_critical_section() local 1998 stepping = FALSE; ahc_clear_critical_section() 2035 if (stepping == FALSE) { ahc_clear_critical_section() 2053 * leave it on while single stepping. ahc_clear_critical_section() 2060 stepping = TRUE; ahc_clear_critical_section() 2070 if (stepping) { ahc_clear_critical_section()
|
H A D | aic79xx_core.c | 3445 int stepping; ahd_clear_critical_section() local 3459 stepping = FALSE; ahd_clear_critical_section() 3500 printk("%s: Single stepping at 0x%x\n", ahd_name(ahd), ahd_clear_critical_section() 3503 if (stepping == FALSE) { ahd_clear_critical_section() 3525 * on while single stepping. ahd_clear_critical_section() 3529 stepping = TRUE; ahd_clear_critical_section() 3539 if (stepping) { ahd_clear_critical_section()
|
/linux-4.1.27/drivers/net/ethernet/pasemi/ |
H A D | pasemi_mac.c | 1535 /* Avoid stepping on the same cache line that the DMA controller pasemi_mac_start_tx()
|
/linux-4.1.27/drivers/net/wireless/cw1200/ |
H A D | wsm.c | 155 arg->txPowerRange[i].stepping = WSM_GET32(buf); wsm_configuration_confirm()
|
H A D | wsm.h | 639 u32 stepping; member in struct:wsm_tx_power_range
|
/linux-4.1.27/kernel/trace/ |
H A D | blktrace.c | 250 * from coming in and stepping on our toes. __blk_add_trace()
|
/linux-4.1.27/sound/soc/codecs/ |
H A D | tlv320dac33.c | 309 /* 73 : volume soft stepping control, dac33_init_chip()
|
/linux-4.1.27/drivers/block/ |
H A D | floppy.c | 446 | | | | | | | Spec1 (stepping rate, head unload 526 * Spec1 is 0xSH, where S is stepping rate (F=1ms, E=2ms, D=3ms etc), 2119 /* a ``cylinder'' is two tracks plus a little stepping time */ setup_format_params()
|
H A D | amiflop.c | 884 ; after stepping over these fields.
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
H A D | i915_reg.h | 5791 /* SNB A-stepping */ 5796 /* SNB B-stepping */ 6009 /* SNB A-stepping */ 6014 /* SNB B-stepping */
|
H A D | intel_display.c | 7169 * PCH B stepping, previous chipset stepping should be 13529 /* FIXME: detect B0+ stepping and use auto training */ intel_init_display()
|
/linux-4.1.27/drivers/usb/gadget/udc/ |
H A D | pxa25x_udc.c | 1227 /* "USB test mode" for pxa250 errata 40-42 (stepping a0, a1) udc_enable()
|
/linux-4.1.27/fs/nfsd/ |
H A D | vfs.c | 204 /* checking mountpoint crossing is very different when stepping up */ nfsd_lookup_dentry()
|
/linux-4.1.27/arch/s390/kvm/ |
H A D | interrupt.c | 68 /* No timer interrupts when single stepping */ ckc_interrupts_enabled()
|
/linux-4.1.27/sound/pci/asihpi/ |
H A D | asihpi.c | 2019 /* skip band with bogus stepping */ snd_asihpi_tuner_freq_info()
|
/linux-4.1.27/drivers/gpio/ |
H A D | gpiolib.c | 205 /* are we stepping on the chip right before? */ gpiochip_add_to_list()
|
/linux-4.1.27/arch/mips/kvm/ |
H A D | emulate.c | 1606 * invalidate the caches entirely by stepping through all the kvm_mips_emulate_cache()
|
/linux-4.1.27/fs/ceph/ |
H A D | caps.c | 2669 * avoid stepping on a
|
/linux-4.1.27/sound/pci/ |
H A D | cmipci.c | 246 #define CM_SFILENB 0x00001000 /* filter stepping at front end DAC, model 037? */
|
/linux-4.1.27/arch/x86/kvm/ |
H A D | x86.c | 5458 /* FIXME: return into emulator if single-stepping. */ x86_emulate_instruction() 6584 /* FIXME: return into emulator if single-stepping. */ complete_emulated_mmio()
|
H A D | vmx.c | 8201 /* When single-stepping over STI and MOV SS, we must clear the vmx_vcpu_run()
|
/linux-4.1.27/drivers/net/wireless/ath/ath5k/ |
H A D | phy.c | 512 /* Mix gain stepping */ ath5k_hw_rf_gainf_corr()
|
/linux-4.1.27/fs/ |
H A D | dcache.c | 2137 * child is looked up. Thus, an interlocking stepping of sequence lock checks
|
/linux-4.1.27/drivers/scsi/qla4xxx/ |
H A D | ql4_os.c | 4913 * stepping on top of the other */ qla4xxx_recover_adapter()
|