Home
last modified time | relevance | path

Searched refs:cause (Results 1 – 200 of 546) sorted by relevance

123

/linux-4.4.14/arch/mips/kernel/
Dirq-gt641xx.c35 u32 cause; in ack_gt641xx_irq() local
38 cause = GT_READ(GT_INTRCAUSE_OFS); in ack_gt641xx_irq()
39 cause &= ~GT641XX_IRQ_TO_BIT(d->irq); in ack_gt641xx_irq()
40 GT_WRITE(GT_INTRCAUSE_OFS, cause); in ack_gt641xx_irq()
59 u32 cause, mask; in mask_ack_gt641xx_irq() local
66 cause = GT_READ(GT_INTRCAUSE_OFS); in mask_ack_gt641xx_irq()
67 cause &= ~GT641XX_IRQ_TO_BIT(d->irq); in mask_ack_gt641xx_irq()
68 GT_WRITE(GT_INTRCAUSE_OFS, cause); in mask_ack_gt641xx_irq()
94 u32 cause, mask; in gt641xx_irq_dispatch() local
97 cause = GT_READ(GT_INTRCAUSE_OFS); in gt641xx_irq_dispatch()
[all …]
Dmips-cm.c302 int ocause, cause; in mips_cm_error_report() local
314 cause = cm_error >> CM_GCR_ERROR_CAUSE_ERRTYPE_SHF; in mips_cm_error_report()
317 if (!cause) in mips_cm_error_report()
320 if (cause < 16) { in mips_cm_error_report()
350 cm2_causes[cause], buf); in mips_cm_error_report()
360 cause = cm_error >> CM3_GCR_ERROR_CAUSE_ERRTYPE_SHF; in mips_cm_error_report()
363 if (!cause) in mips_cm_error_report()
376 if (cause == 1 || cause == 3) { /* Tag ECC */ in mips_cm_error_report()
397 } else if (cause == 2) { in mips_cm_error_report()
421 cm3_causes[cause], buf); in mips_cm_error_report()
Dtraps.c246 unsigned int cause = regs->cp0_cause; in __show_regs() local
329 exccode = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE; in __show_regs()
330 printk("Cause : %08x (ExcCode %02x)\n", cause, exccode); in __show_regs()
1509 u32 cause; in do_watch() local
1516 cause = read_c0_cause(); in do_watch()
1517 cause &= ~(1 << 22); in do_watch()
1518 write_c0_cause(cause); in do_watch()
/linux-4.4.14/arch/mips/bcm47xx/
Dirq.c36 u32 cause; in plat_irq_dispatch() local
38 cause = read_c0_cause() & read_c0_status() & CAUSEF_IP; in plat_irq_dispatch()
40 clear_c0_status(cause); in plat_irq_dispatch()
42 if (cause & CAUSEF_IP7) in plat_irq_dispatch()
44 if (cause & CAUSEF_IP2) in plat_irq_dispatch()
46 if (cause & CAUSEF_IP3) in plat_irq_dispatch()
48 if (cause & CAUSEF_IP4) in plat_irq_dispatch()
50 if (cause & CAUSEF_IP5) in plat_irq_dispatch()
52 if (cause & CAUSEF_IP6) in plat_irq_dispatch()
/linux-4.4.14/arch/cris/arch-v10/mm/
Dfault.c41 int cause; in handle_mmu_bus_fault() local
55 cause = *R_MMU_CAUSE; in handle_mmu_bus_fault()
57 address = cause & PAGE_MASK; /* get faulting address */ in handle_mmu_bus_fault()
61 page_id = IO_EXTRACT(R_MMU_CAUSE, page_id, cause); in handle_mmu_bus_fault()
62 acc = IO_EXTRACT(R_MMU_CAUSE, acc_excp, cause); in handle_mmu_bus_fault()
63 inv = IO_EXTRACT(R_MMU_CAUSE, inv_excp, cause); in handle_mmu_bus_fault()
66 miss = IO_EXTRACT(R_MMU_CAUSE, miss_excp, cause); in handle_mmu_bus_fault()
67 we = IO_EXTRACT(R_MMU_CAUSE, we_excp, cause); in handle_mmu_bus_fault()
68 writeac = IO_EXTRACT(R_MMU_CAUSE, wr_rd, cause); in handle_mmu_bus_fault()
91 *R_TLB_HI = cause; in handle_mmu_bus_fault()
/linux-4.4.14/arch/mips/kvm/
Dtrap_emul.c45 unsigned long cause = vcpu->arch.host_cp0_cause; in kvm_trap_emul_handle_cop_unusable() local
49 if (((cause & CAUSEF_CE) >> CAUSEB_CE) == 1) { in kvm_trap_emul_handle_cop_unusable()
57 er = kvm_mips_emulate_fpu_exc(cause, opc, run, vcpu); in kvm_trap_emul_handle_cop_unusable()
64 er = kvm_mips_emulate_inst(cause, opc, run, vcpu); in kvm_trap_emul_handle_cop_unusable()
93 unsigned long cause = vcpu->arch.host_cp0_cause; in kvm_trap_emul_handle_tlb_mod() local
100 cause, opc, badvaddr); in kvm_trap_emul_handle_tlb_mod()
101 er = kvm_mips_handle_tlbmod(cause, opc, run, vcpu); in kvm_trap_emul_handle_tlb_mod()
116 cause, opc, badvaddr); in kvm_trap_emul_handle_tlb_mod()
123 cause, opc, badvaddr); in kvm_trap_emul_handle_tlb_mod()
137 unsigned long cause = vcpu->arch.host_cp0_cause; in kvm_trap_emul_handle_tlb_st_miss() local
[all …]
Demulate.c201 enum emulation_result update_pc(struct kvm_vcpu *vcpu, uint32_t cause) in update_pc() argument
206 if (cause & CAUSEF_BD) { in update_pc()
977 uint32_t cause, struct kvm_run *run, in kvm_mips_emulate_CP0() argument
991 er = update_pc(vcpu, cause); in kvm_mips_emulate_CP0()
1316 enum emulation_result kvm_mips_emulate_store(uint32_t inst, uint32_t cause, in kvm_mips_emulate_store() argument
1331 er = update_pc(vcpu, cause); in kvm_mips_emulate_store()
1428 enum emulation_result kvm_mips_emulate_load(uint32_t inst, uint32_t cause, in kvm_mips_emulate_load() argument
1441 vcpu->arch.pending_load_cause = cause; in kvm_mips_emulate_load()
1573 uint32_t cause, in kvm_mips_emulate_cache() argument
1589 er = update_pc(vcpu, cause); in kvm_mips_emulate_cache()
[all …]
Dinterrupt.c117 uint32_t cause) in kvm_mips_irq_deliver_cb() argument
173 if (cause & CAUSEF_BD) in kvm_mips_irq_deliver_cb()
199 uint32_t cause) in kvm_mips_irq_clear_cb() argument
204 void kvm_mips_deliver_interrupts(struct kvm_vcpu *vcpu, uint32_t cause) in kvm_mips_deliver_interrupts() argument
215 if (kvm_mips_callbacks->irq_clear(vcpu, priority, cause)) { in kvm_mips_deliver_interrupts()
227 if (kvm_mips_callbacks->irq_deliver(vcpu, priority, cause)) { in kvm_mips_deliver_interrupts()
Dinterrupt.h50 uint32_t cause);
52 uint32_t cause);
53 void kvm_mips_deliver_interrupts(struct kvm_vcpu *vcpu, uint32_t cause);
Dmips.c1228 uint32_t cause = vcpu->arch.host_cp0_cause; in kvm_mips_handle_exit() local
1229 uint32_t exccode = (cause >> CAUSEB_EXCCODE) & 0x1f; in kvm_mips_handle_exit()
1251 cause, opc, run, vcpu); in kvm_mips_handle_exit()
1257 er = kvm_mips_check_privilege(cause, opc, run, vcpu); in kvm_mips_handle_exit()
1298 cause, kvm_read_c0_guest_status(vcpu->arch.cop0), opc, in kvm_mips_handle_exit()
1308 cause, opc, badvaddr); in kvm_mips_handle_exit()
1384 kvm_mips_deliver_interrupts(vcpu, cause); in kvm_mips_handle_exit()
/linux-4.4.14/drivers/isdn/hisax/
Dl3ni1.c462 l3ni1_message_cause(struct l3_process *pc, u_char mt, u_char cause) in l3ni1_message_cause() argument
473 *p++ = cause | 0x80; in l3ni1_message_cause()
495 *p++ = pc->para.cause | 0x80; in l3ni1_status_send()
520 switch (pc->para.cause) { in l3ni1_msg_without_setup()
530 *p++ = pc->para.cause | 0x80; in l3ni1_msg_without_setup()
534 pc->para.cause); in l3ni1_msg_without_setup()
780 pc->para.cause = 97; in l3ni1_check_messagetype_validity()
796 pc->para.cause = 96; in l3ni1_std_ie_err()
800 pc->para.cause = 99; in l3ni1_std_ie_err()
804 pc->para.cause = 100; in l3ni1_std_ie_err()
[all …]
Dl3dss1.c512 l3dss1_message_cause(struct l3_process *pc, u_char mt, u_char cause) in l3dss1_message_cause() argument
523 *p++ = cause | 0x80; in l3dss1_message_cause()
545 *p++ = pc->para.cause | 0x80; in l3dss1_status_send()
570 switch (pc->para.cause) { in l3dss1_msg_without_setup()
580 *p++ = pc->para.cause | 0x80; in l3dss1_msg_without_setup()
584 pc->para.cause); in l3dss1_msg_without_setup()
830 pc->para.cause = 97; in l3dss1_check_messagetype_validity()
846 pc->para.cause = 96; in l3dss1_std_ie_err()
850 pc->para.cause = 99; in l3dss1_std_ie_err()
854 pc->para.cause = 100; in l3dss1_std_ie_err()
[all …]
Dl3_1tr6.c359 pc->para.cause = p[2]; in l3_1tr6_rel()
365 pc->para.cause = 0; in l3_1tr6_rel()
369 pc->para.cause = NO_CAUSE; in l3_1tr6_rel()
389 pc->para.cause = NO_CAUSE; in l3_1tr6_rel_ack()
425 pc->para.cause = p[2]; in l3_1tr6_disc()
431 pc->para.cause = 0; in l3_1tr6_disc()
437 pc->para.cause = NO_CAUSE; in l3_1tr6_disc()
519 u_char cause = 0x10; in l3_1tr6_disconnect_req() local
522 if (pc->para.cause > 0) in l3_1tr6_disconnect_req()
523 cause = pc->para.cause; in l3_1tr6_disconnect_req()
[all …]
Dq931.c449 int i, cause; in prcause() local
460 cause = 0x7f & *p++; in prcause()
464 if (cvlist[i].nr == cause) in prcause()
469 dp += sprintf(dp, "Unknown cause type %x!\n", cause); in prcause()
471 dp += sprintf(dp, " cause value %x : %s \n", cause, cvlist[i].edescr); in prcause()
525 int i, cause; in prcause_1tr6() local
539 cause = 0x7f & *p; in prcause_1tr6()
543 if (cause_1tr6[i].nr == cause) in prcause_1tr6()
548 dp += sprintf(dp, "Unknown cause type %x!\n", cause); in prcause_1tr6()
550 dp += sprintf(dp, " cause value %x : %s \n", cause, cause_1tr6[i].descr); in prcause_1tr6()
/linux-4.4.14/arch/powerpc/sysdev/
Dmv64x60_pic.c272 u32 cause; in mv64x60_get_irq() local
277 cause = in_le32(mv64x60_irq_reg_base + MV64X60_IC_CPU0_SELECT_CAUSE); in mv64x60_get_irq()
278 if (cause & MV64X60_SELECT_CAUSE_HIGH) { in mv64x60_get_irq()
279 cause &= mv64x60_cached_high_mask; in mv64x60_get_irq()
281 if (cause & MV64X60_HIGH_GPP_GROUPS) { in mv64x60_get_irq()
282 cause = in_le32(mv64x60_gpp_reg_base + in mv64x60_get_irq()
284 cause &= mv64x60_cached_gpp_mask; in mv64x60_get_irq()
288 cause &= mv64x60_cached_low_mask; in mv64x60_get_irq()
291 if (cause) { in mv64x60_get_irq()
292 hwirq = (level1 << MV64x60_LEVEL1_OFFSET) | __ilog2(cause); in mv64x60_get_irq()
Dmv64x60_udbg.c50 int cause = 0; in mv64x60_udbg_getc() local
58 out_le32(mpsc_intr_cause, cause & ~MPSC_INTR_CAUSE_RCC); in mv64x60_udbg_getc()
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb/
Dsubr.c196 u32 cause = readl(adapter->regs + FPGA_GMAC_ADDR_INTERRUPT_CAUSE); in fpga_phy_intr_handler() local
199 if (cause & (1 << p)) { in fpga_phy_intr_handler()
206 writel(cause, adapter->regs + FPGA_GMAC_ADDR_INTERRUPT_CAUSE); in fpga_phy_intr_handler()
215 u32 cause = readl(adapter->regs + A_PL_CAUSE); in fpga_slow_intr() local
217 cause &= ~F_PL_INTR_SGE_DATA; in fpga_slow_intr()
218 if (cause & F_PL_INTR_SGE_ERR) in fpga_slow_intr()
221 if (cause & FPGA_PCIX_INTERRUPT_GMAC) in fpga_slow_intr()
224 if (cause & FPGA_PCIX_INTERRUPT_TP) { in fpga_slow_intr()
234 if (cause & FPGA_PCIX_INTERRUPT_PCIX) in fpga_slow_intr()
238 if (cause) in fpga_slow_intr()
[all …]
Dmv88e1xxx.c302 u32 cause; in mv88e1xxx_interrupt_handler() local
306 &cause); in mv88e1xxx_interrupt_handler()
307 cause &= INTR_ENABLE_MASK; in mv88e1xxx_interrupt_handler()
308 if (!cause) in mv88e1xxx_interrupt_handler()
311 if (cause & MV88E1XXX_INTR_LINK_CHNG) { in mv88e1xxx_interrupt_handler()
325 if (cause & MV88E1XXX_INTR_AUTONEG_DONE) in mv88e1xxx_interrupt_handler()
Dtp.c126 u32 cause; in t1_tp_intr_handler() local
134 cause = readl(tp->adapter->regs + A_TP_INT_CAUSE); in t1_tp_intr_handler()
135 writel(cause, tp->adapter->regs + A_TP_INT_CAUSE); in t1_tp_intr_handler()
Dsge.c941 u32 cause = readl(adapter->regs + A_SG_INT_CAUSE); in t1_sge_intr_error_handler() local
944 cause &= ~F_PACKET_TOO_BIG; in t1_sge_intr_error_handler()
945 if (cause & F_RESPQ_EXHAUSTED) in t1_sge_intr_error_handler()
947 if (cause & F_RESPQ_OVERFLOW) { in t1_sge_intr_error_handler()
952 if (cause & F_FL_EXHAUSTED) { in t1_sge_intr_error_handler()
956 if (cause & F_PACKET_TOO_BIG) { in t1_sge_intr_error_handler()
961 if (cause & F_PACKET_MISMATCH) { in t1_sge_intr_error_handler()
965 if (cause & SGE_INT_FATAL) in t1_sge_intr_error_handler()
968 writel(cause, adapter->regs + A_SG_INT_CAUSE); in t1_sge_intr_error_handler()
/linux-4.4.14/arch/mips/include/asm/
Dkvm_host.h625 uint32_t cause);
627 uint32_t cause);
675 extern enum emulation_result kvm_mips_handle_tlbmiss(unsigned long cause,
680 extern enum emulation_result kvm_mips_handle_tlbmod(unsigned long cause,
705 enum emulation_result update_pc(struct kvm_vcpu *vcpu, uint32_t cause);
707 extern enum emulation_result kvm_mips_emulate_inst(unsigned long cause,
712 extern enum emulation_result kvm_mips_emulate_syscall(unsigned long cause,
717 extern enum emulation_result kvm_mips_emulate_tlbmiss_ld(unsigned long cause,
722 extern enum emulation_result kvm_mips_emulate_tlbinv_ld(unsigned long cause,
727 extern enum emulation_result kvm_mips_emulate_tlbmiss_st(unsigned long cause,
[all …]
/linux-4.4.14/drivers/edac/
Dmv64x60_edac.c34 u32 cause; in mv64x60_pci_check() local
36 cause = in_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_CAUSE); in mv64x60_pci_check()
37 if (!cause) in mv64x60_pci_check()
41 printk(KERN_ERR "Cause register: 0x%08x\n", cause); in mv64x60_pci_check()
50 out_le32(pdata->pci_vbase + MV64X60_PCI_ERROR_CAUSE, ~cause); in mv64x60_pci_check()
52 if (cause & MV64X60_PCI_PE_MASK) in mv64x60_pci_check()
55 if (!(cause & MV64X60_PCI_PE_MASK)) in mv64x60_pci_check()
236 u32 cause; in mv64x60_sram_check() local
238 cause = in_le32(pdata->sram_vbase + MV64X60_SRAM_ERR_CAUSE); in mv64x60_sram_check()
239 if (!cause) in mv64x60_sram_check()
[all …]
/linux-4.4.14/arch/nios2/kernel/
Dtraps.c131 asmlinkage void handle_unaligned_c(struct pt_regs *fp, int cause) in handle_unaligned_c() argument
135 cause >>= 2; in handle_unaligned_c()
145 pr_alert(" cause %d\n", cause); in handle_unaligned_c()
177 asmlinkage void unhandled_exception(struct pt_regs *regs, int cause) in unhandled_exception() argument
181 cause /= 4; in unhandled_exception()
184 cause, user_mode(regs) ? "user" : "kernel", addr); in unhandled_exception()
Dmisaligned.c66 asmlinkage void handle_unaligned_c(struct pt_regs *fp, int cause) in handle_unaligned_c() argument
151 cause >>= 2; in handle_unaligned_c()
179 (unsigned int)addr, cause, in handle_unaligned_c()
/linux-4.4.14/arch/xtensa/kernel/
Dtraps.c85 int cause; member
352 void * __init trap_set_handler(int cause, void *handler) in trap_set_handler() argument
355 EXC_TABLE_DEFAULT / 4 + cause]; in trap_set_handler()
356 set_handler(EXC_TABLE_DEFAULT / 4 + cause, handler); in trap_set_handler()
394 for(i = 0; dispatch_init_table[i].cause >= 0; i++) { in trap_init()
397 int cause = dispatch_init_table[i].cause; in trap_init() local
401 set_handler (EXC_TABLE_DEFAULT/4 + cause, handler); in trap_init()
403 set_handler (EXC_TABLE_FAST_USER/4 + cause, handler); in trap_init()
405 set_handler (EXC_TABLE_FAST_KERNEL/4 + cause, handler); in trap_init()
/linux-4.4.14/arch/powerpc/include/asm/
Dtm.h19 unsigned long orig_msr, uint8_t cause);
20 extern void tm_reclaim_current(uint8_t cause);
23 extern void tm_abort(uint8_t cause);
/linux-4.4.14/arch/mips/bcm63xx/
Dirq.c164 u32 cause; in plat_irq_dispatch() local
167 cause = read_c0_cause() & read_c0_status() & ST0_IM; in plat_irq_dispatch()
169 if (!cause) in plat_irq_dispatch()
172 if (cause & CAUSEF_IP7) in plat_irq_dispatch()
174 if (cause & CAUSEF_IP0) in plat_irq_dispatch()
176 if (cause & CAUSEF_IP1) in plat_irq_dispatch()
178 if (cause & CAUSEF_IP2) in plat_irq_dispatch()
181 if (cause & CAUSEF_IP3) in plat_irq_dispatch()
184 if (cause & CAUSEF_IP3) in plat_irq_dispatch()
186 if (cause & CAUSEF_IP4) in plat_irq_dispatch()
[all …]
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/
Dmc5.c370 u32 cause = t3_read_reg(adap, A_MC5_DB_INT_CAUSE); in t3_mc5_intr_handler() local
372 if ((cause & F_PARITYERR) && mc5->parity_enabled) { in t3_mc5_intr_handler()
377 if (cause & F_REQQPARERR) { in t3_mc5_intr_handler()
382 if (cause & F_DISPQPARERR) { in t3_mc5_intr_handler()
387 if (cause & F_ACTRGNFULL) in t3_mc5_intr_handler()
389 if (cause & F_NFASRCHFAIL) in t3_mc5_intr_handler()
391 if (cause & F_UNKNOWNCMD) in t3_mc5_intr_handler()
393 if (cause & F_DELACTEMPTY) in t3_mc5_intr_handler()
395 if (cause & MC5_INT_FATAL) in t3_mc5_intr_handler()
398 t3_write_reg(adap, A_MC5_DB_INT_CAUSE, cause); in t3_mc5_intr_handler()
Dt3_hw.c1760 u32 cause = t3_read_reg(adapter, mc7->offset + A_MC7_INT_CAUSE); in mc7_intr_handler() local
1762 if (cause & F_CE) { in mc7_intr_handler()
1772 if (cause & F_UE) { in mc7_intr_handler()
1782 if (G_PE(cause)) { in mc7_intr_handler()
1785 mc7->name, G_PE(cause)); in mc7_intr_handler()
1788 if (cause & F_AE) { in mc7_intr_handler()
1799 if (cause & MC7_INTR_FATAL) in mc7_intr_handler()
1802 t3_write_reg(adapter, mc7->offset + A_MC7_INT_CAUSE, cause); in mc7_intr_handler()
1819 u32 cause = t3_read_reg(adap, A_XGM_INT_CAUSE + mac->offset) & in mac_intr_handler() local
1822 if (cause & V_TXFIFO_PRTY_ERR(M_TXFIFO_PRTY_ERR)) { in mac_intr_handler()
[all …]
Dvsc8211.c324 unsigned int cause; in vsc8211_intr_handler() local
327 err = t3_mdio_read(cphy, MDIO_DEVAD_NONE, VSC8211_INTR_STATUS, &cause); in vsc8211_intr_handler()
331 cause &= INTR_MASK; in vsc8211_intr_handler()
332 if (cause & CFG_CHG_INTR_MASK) in vsc8211_intr_handler()
334 if (cause & (VSC_INTR_RX_FIFO | VSC_INTR_TX_FIFO)) in vsc8211_intr_handler()
Dael1002.c457 int ret, edc_needed, cause = 0; in ael2005_intr_handler() local
487 cause = cphy_cause_module_change; in ael2005_intr_handler()
494 ret |= cause; in ael2005_intr_handler()
768 int ret, edc_needed, cause = 0; in ael2020_intr_handler() local
793 cause = cphy_cause_module_change; in ael2020_intr_handler()
800 ret |= cause; in ael2020_intr_handler()
Daq100x.c108 unsigned int cause, v; in aq100x_intr_handler() local
110 err = t3_mdio_read(phy, MDIO_MMD_VEND1, AQ_IFLAG_GLOBAL, &cause); in aq100x_intr_handler()
/linux-4.4.14/security/integrity/ima/
Dima_appraise.c191 char *cause = "unknown"; in ima_appraise_measurement() local
204 cause = "missing-hash"; in ima_appraise_measurement()
217 cause = "missing-HMAC"; in ima_appraise_measurement()
219 cause = "invalid-HMAC"; in ima_appraise_measurement()
228 cause = "IMA-signature-required"; in ima_appraise_measurement()
243 cause = "invalid-hash"; in ima_appraise_measurement()
258 cause = "invalid-signature"; in ima_appraise_measurement()
266 cause = "unknown-ima-data"; in ima_appraise_measurement()
279 op, cause, rc, 0); in ima_appraise_measurement()
Dima_api.c130 const char *op, const char *cause) in ima_add_violation() argument
135 cause}; in ima_add_violation()
152 op, cause, result, 0); in ima_add_violation()
Dima_fs.c327 const char *cause = valid_policy ? "completed" : "failed"; in ima_release_policy() local
329 pr_info("IMA: policy update %s\n", cause); in ima_release_policy()
331 "policy_update", cause, !valid_policy, 0); in ima_release_policy()
Dima.h115 const char *op, const char *cause);
/linux-4.4.14/Documentation/devicetree/bindings/watchdog/
Dmen-a021-wdt.txt9 4: Watchdog reset cause bit 0
10 5: Watchdog reset cause bit 1
11 6: Watchdog reset cause bit 2
/linux-4.4.14/arch/nios2/mm/
Dfault.c42 asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long cause, in do_page_fault() argument
52 cause >>= 2; in do_page_fault()
109 switch (cause) { in do_page_fault()
190 "cause %ld\n", current->comm, SIGSEGV, address, cause); in do_page_fault()
212 cause); in do_page_fault()
/linux-4.4.14/arch/arm/mach-dove/
Dirq.c74 unsigned long cause = readl(PMU_INTERRUPT_CAUSE); in pmu_irq_handler() local
77 cause &= readl(PMU_INTERRUPT_MASK); in pmu_irq_handler()
78 if (cause == 0) { in pmu_irq_handler()
84 if (!(cause & (1 << irq))) in pmu_irq_handler()
/linux-4.4.14/arch/alpha/mm/
Dfault.c84 long cause, struct pt_regs *regs) in do_page_fault() argument
96 if (cause == 0) { in do_page_fault()
134 if (cause < 0) { in do_page_fault()
137 } else if (!cause) { in do_page_fault()
207 die_if_kernel("Oops", regs, cause, (unsigned long*)regs - 16); in do_page_fault()
/linux-4.4.14/arch/powerpc/boot/
Dmpsc.c74 u32 cause = 0; in mpsc_getc() local
77 while (!(cause & MPSC_INTR_CAUSE_RCC)) in mpsc_getc()
78 cause = in_le32((u32 *)(mpscintr_base + MPSC_INTR_CAUSE)); in mpsc_getc()
83 cause & ~MPSC_INTR_CAUSE_RCC); in mpsc_getc()
/linux-4.4.14/arch/xtensa/include/asm/
Dmxregs.h36 #define MIPISET(cause) (0x140 + (cause)) argument
Dtraps.h20 extern void * __init trap_set_handler(int cause, void *handler);
/linux-4.4.14/arch/mips/oprofile/
Dop_model_loongson3.c137 uint32_t cause, handled = IRQ_NONE; in loongson3_perfcount_handler() local
140 cause = read_c0_cause(); in loongson3_perfcount_handler()
141 if (!(cause & CAUSEF_PCI)) in loongson3_perfcount_handler()
165 if (!(cause & CAUSEF_TI)) in loongson3_perfcount_handler()
/linux-4.4.14/drivers/net/wireless/libertas/
Dif_cs.c512 u16 cause; in if_cs_interrupt() local
517 cause = if_cs_read16(card, IF_CS_CARD_INT_CAUSE); in if_cs_interrupt()
518 lbs_deb_cs("cause 0x%04x\n", cause); in if_cs_interrupt()
520 if (cause == 0) { in if_cs_interrupt()
525 if (cause == 0xffff) { in if_cs_interrupt()
531 if (cause & IF_CS_BIT_RX) { in if_cs_interrupt()
539 if (cause & IF_CS_BIT_TX) { in if_cs_interrupt()
544 if (cause & IF_CS_BIT_RESP) { in if_cs_interrupt()
562 if (cause & IF_CS_BIT_EVENT) { in if_cs_interrupt()
570 if_cs_write16(card, IF_CS_CARD_INT_CAUSE, cause & IF_CS_BIT_MASK); in if_cs_interrupt()
Dif_sdio.c1144 u8 cause; in if_sdio_interrupt() local
1150 cause = sdio_readb(card->func, IF_SDIO_H_INT_STATUS, &ret); in if_sdio_interrupt()
1151 if (ret || !cause) in if_sdio_interrupt()
1154 lbs_deb_sdio("interrupt: 0x%X\n", (unsigned)cause); in if_sdio_interrupt()
1156 sdio_writeb(card->func, ~cause, IF_SDIO_H_INT_STATUS, &ret); in if_sdio_interrupt()
1165 if (cause & IF_SDIO_H_INT_DNLD) in if_sdio_interrupt()
1169 if (cause & IF_SDIO_H_INT_UPLD) { in if_sdio_interrupt()
/linux-4.4.14/arch/arm/mach-orion5x/include/mach/
Dentry-macro.S18 ldr \irqstat, [\base, #0] @ main cause
21 @ find cause bits that are unmasked
/linux-4.4.14/arch/powerpc/sysdev/ge/
Dge_pic.c230 u32 cause, mask, active; in gef_pic_get_irq() local
234 cause = in_be32(gef_pic_irq_reg_base + GEF_PIC_INTR_STATUS); in gef_pic_get_irq()
238 active = cause & mask; in gef_pic_get_irq()
/linux-4.4.14/sound/soc/kirkwood/
Dkirkwood-dma.c48 unsigned long mask, status, cause; in kirkwood_dma_irq() local
53 cause = readl(priv->io + KIRKWOOD_ERR_CAUSE); in kirkwood_dma_irq()
54 if (unlikely(cause)) { in kirkwood_dma_irq()
56 __func__, cause); in kirkwood_dma_irq()
57 writel(cause, priv->io + KIRKWOOD_ERR_CAUSE); in kirkwood_dma_irq()
/linux-4.4.14/security/integrity/
Dintegrity_audit.c33 const char *cause, int result, int audit_info) in integrity_audit_msg() argument
51 audit_log_string(ab, cause); in integrity_audit_msg()
Dintegrity.h178 const char *cause, int result, int info);
182 const char *op, const char *cause, in integrity_audit_msg() argument
/linux-4.4.14/arch/mips/sni/
Da20r.c204 u32 cause, status; in a20r_hwint() local
209 cause = read_c0_cause(); in a20r_hwint()
211 irq = ffs(((cause & status) >> 8) & 0xf8); in a20r_hwint()
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-devices-lpss_ltr19 is not "active", attempts to read from this attribute cause
31 is not "active", attempts to read from this attribute cause
43 is not "active", attempts to read from this attribute cause
Dsysfs-class-zram14 RO attribute. Read operation will cause zram to add a new
Dsysfs-class-cxl209 "none" means PERST will not cause image to be loaded to the
213 "user" and "factory" means PERST will cause either the user or
223 Writing 1 will issue a PERST to card which may cause the card
Dsysfs-firmware-gsmi40 Writing any value to this file will cause the
Dsysfs-power57 'testproc' mode, writing 'disk' to /sys/power/state will cause
60 the 'test' mode, writing 'disk' to /sys/power/state will cause
120 CAUTION: Using it will cause your machine's real-time (CMOS)
152 of devices. If enabled, this feature will cause some device
/linux-4.4.14/drivers/watchdog/
Dpnx833x_wdt.c238 int ret, cause; in watchdog_init() local
241 cause = PNX833X_REG(PNX833X_RESET); in watchdog_init()
243 if (cause & 0x80000000) { in watchdog_init()
/linux-4.4.14/arch/mips/lasat/
Dinterrupt.c87 unsigned int cause = read_c0_cause(); in plat_irq_dispatch() local
90 if (cause & CAUSEF_IP7) { /* R4000 count / compare IRQ */ in plat_irq_dispatch()
/linux-4.4.14/arch/arm/plat-orion/
Dgpio.c413 u32 cause, type; in gpio_irq_handler() local
419 cause = readl(GPIO_DATA_IN(ochip)) & readl(GPIO_LEVEL_MASK(ochip)); in gpio_irq_handler()
420 cause |= readl(GPIO_EDGE_CAUSE(ochip)) & readl(GPIO_EDGE_MASK(ochip)); in gpio_irq_handler()
427 if (!(cause & (1 << i))) in gpio_irq_handler()
450 u32 out, io_conf, blink, in_pol, data_in, cause, edg_msk, lvl_msk; in orion_gpio_dbg_show() local
458 cause = readl_relaxed(GPIO_EDGE_CAUSE(ochip)); in orion_gpio_dbg_show()
494 seq_printf(s, " (%s)\n", cause & msk ? "pending" : "clear "); in orion_gpio_dbg_show()
/linux-4.4.14/arch/s390/kernel/
Duprobes.c51 static int check_per_event(unsigned short cause, unsigned long control, in check_per_event() argument
60 if ((control & 0x20200000) && (cause & 0x2000)) in check_per_event()
62 if (cause & 0x8000) { in check_per_event()
98 if (check_per_event(current->thread.per_event.cause, in arch_uprobe_post_xol()
249 current->thread.per_event.cause = PER_EVENT_STORE >> 16; in sim_stor_event()
/linux-4.4.14/drivers/mfd/
Dsi476x-cmd.c183 char *cause; in si476x_core_parse_and_nag_about_error() local
192 cause = "Bad command"; in si476x_core_parse_and_nag_about_error()
196 cause = "Bad argument #1"; in si476x_core_parse_and_nag_about_error()
200 cause = "Bad argument #2"; in si476x_core_parse_and_nag_about_error()
204 cause = "Bad argument #3"; in si476x_core_parse_and_nag_about_error()
208 cause = "Bad argument #4"; in si476x_core_parse_and_nag_about_error()
212 cause = "Chip is busy"; in si476x_core_parse_and_nag_about_error()
216 cause = "Bad internal memory"; in si476x_core_parse_and_nag_about_error()
220 cause = "Bad patch"; in si476x_core_parse_and_nag_about_error()
224 cause = "Bad boot mode"; in si476x_core_parse_and_nag_about_error()
[all …]
/linux-4.4.14/Documentation/
Dunaligned-memory-access.txt6 unaligned accesses, why you need to write code that doesn't cause them,
64 platforms and will cause performance problems on others.
67 Code that does not cause unaligned access
86 not be unreasonable to expect that accessing field2 would cause an unaligned
102 will never cause an unaligned access, because all memory addresses are evenly
130 the memory access in a way that does not cause unaligned access. Of course,
131 the extra instructions obviously cause a loss in performance compared to the
140 that can cause an unaligned memory access. The following function taken
174 Here is another example of some code that could cause unaligned accesses:
182 This code will cause unaligned accesses every time the data parameter points
Dio_ordering.txt28 which could cause problems. Fixing it is easy enough though:
45 Here, the reads from safe_register will cause the I/O chipset to flush any
DSAK.txt83 These commands cause *all* daemons which are launched by the
86 delete these lines, but this may cause system management
DCodeOfConflict12 want to do anything to cause the quality of submission and eventual
/linux-4.4.14/net/x25/
Dx25_subr.c231 *dptr++ = x25->causediag.cause; in x25_write_internal()
349 void x25_disconnect(struct sock *sk, int reason, unsigned char cause, in x25_disconnect() argument
360 x25->causediag.cause = cause; in x25_disconnect()
Dx25_link.c171 unsigned char cause) in x25_transmit_clear_request() argument
189 *dptr++ = cause; in x25_transmit_clear_request()
/linux-4.4.14/net/rose/
Drose_subr.c165 *dptr++ = rose->cause; in rose_write_internal()
530 void rose_disconnect(struct sock *sk, int reason, int cause, int diagnostic) in rose_disconnect() argument
542 if (cause != -1) in rose_disconnect()
543 rose->cause = cause; in rose_disconnect()
Drose_link.c238 void rose_transmit_clear_request(struct rose_neigh *neigh, unsigned int lci, unsigned char cause, u… in rose_transmit_clear_request() argument
257 *dptr++ = cause; in rose_transmit_clear_request()
Drose_route.c675 struct rose_neigh *rose_get_neigh(rose_address *addr, unsigned char *cause, in rose_get_neigh() argument
710 *cause = ROSE_OUT_OF_ORDER; in rose_get_neigh()
713 *cause = ROSE_NOT_OBTAINABLE; in rose_get_neigh()
861 unsigned char cause, diagnostic; in rose_route_frame() local
918 rose->cause = ROSE_NETWORK_CONGESTION; in rose_route_frame()
1038 if ((new_neigh = rose_get_neigh(dest_addr, &cause, &diagnostic, 1)) == NULL) { in rose_route_frame()
1039 rose_transmit_clear_request(rose_neigh, lci, cause, diagnostic); in rose_route_frame()
Daf_rose.c722 unsigned char cause, diagnostic; in rose_connect() local
766 rose->neighbour = rose_get_neigh(&addr->srose_addr, &cause, in rose_connect()
1328 rose_cause.cause = rose->cause; in rose_ioctl()
1337 rose->cause = rose_cause.cause; in rose_ioctl()
/linux-4.4.14/drivers/scsi/csiostor/
Dcsio_hw.c3137 uint32_t cause = csio_rd_reg32(hw, PL_INT_CAUSE_A); in csio_hw_slow_intr_handler() local
3139 if (!(cause & CSIO_GLBL_INTR_MASK)) { in csio_hw_slow_intr_handler()
3144 csio_dbg(hw, "Slow interrupt! cause: 0x%x\n", cause); in csio_hw_slow_intr_handler()
3148 if (cause & CIM_F) in csio_hw_slow_intr_handler()
3151 if (cause & MPS_F) in csio_hw_slow_intr_handler()
3154 if (cause & NCSI_F) in csio_hw_slow_intr_handler()
3157 if (cause & PL_F) in csio_hw_slow_intr_handler()
3160 if (cause & SMB_F) in csio_hw_slow_intr_handler()
3163 if (cause & XGMAC0_F) in csio_hw_slow_intr_handler()
3166 if (cause & XGMAC1_F) in csio_hw_slow_intr_handler()
[all …]
/linux-4.4.14/arch/hexagon/mm/
Dvm_fault.c48 void do_page_fault(unsigned long address, long cause, struct pt_regs *regs) in do_page_fault() argument
88 switch (cause) { in do_page_fault()
/linux-4.4.14/drivers/char/ipmi/
DKconfig24 When a panic occurs, this will cause the IPMI message handler to
32 When a panic occurs, this will cause the IPMI message handler to
60 the driver is forced to probe hardware manually. This may cause boot
/linux-4.4.14/arch/powerpc/platforms/85xx/
Dsocrates_fpga_pic.c71 uint32_t cause; in socrates_fpga_pic_get_irq() local
84 cause = socrates_fpga_pic_read(FPGA_PIC_IRQMASK(i)); in socrates_fpga_pic_get_irq()
87 if (cause >> (i + 16)) in socrates_fpga_pic_get_irq()
/linux-4.4.14/drivers/gpio/
Dgpio-mvebu.c455 u32 cause, type; in mvebu_gpio_irq_handler() local
463 cause = readl_relaxed(mvebu_gpioreg_data_in(mvchip)) & in mvebu_gpio_irq_handler()
465 cause |= readl_relaxed(mvebu_gpioreg_edge_cause(mvchip)) & in mvebu_gpio_irq_handler()
473 if (!(cause & (1 << i))) in mvebu_gpio_irq_handler()
499 u32 out, io_conf, blink, in_pol, data_in, cause, edg_msk, lvl_msk; in mvebu_gpio_dbg_show() local
507 cause = readl_relaxed(mvebu_gpioreg_edge_cause(mvchip)); in mvebu_gpio_dbg_show()
543 seq_printf(s, " (%s)\n", cause & msk ? "pending" : "clear "); in mvebu_gpio_dbg_show()
/linux-4.4.14/sound/oss/
Dpas2.h9 void pas_pcm_interrupt(unsigned char status, int cause);
Dpas2_pcm.c393 void pas_pcm_interrupt(unsigned char status, int cause) in pas_pcm_interrupt() argument
395 if (cause == 1) in pas_pcm_interrupt()
/linux-4.4.14/drivers/misc/sgi-gru/
Dgruhandles.h209 unsigned int cause:3; member
283 unsigned int cause:6; member
380 unsigned int cause:4; member
/linux-4.4.14/drivers/tty/serial/jsm/
Djsm_neo.c721 u8 cause; in neo_parse_isr() local
770 cause = readb(&ch->ch_neo_uart->xoffchar1); in neo_parse_isr()
774 port, cause); in neo_parse_isr()
782 if (cause == UART_17158_XON_DETECT) { in neo_parse_isr()
791 else if (cause == UART_17158_XOFF_DETECT) { in neo_parse_isr()
809 cause = readb(&ch->ch_neo_uart->mcr); in neo_parse_isr()
813 if ((cause & 0x4) == 0) { in neo_parse_isr()
814 if (cause & UART_MCR_RTS) in neo_parse_isr()
819 if (cause & UART_MCR_DTR) in neo_parse_isr()
/linux-4.4.14/Documentation/devicetree/bindings/i2c/
Di2c-rk3x.txt27 300 ns for Fast-mode) which might cause slightly slower communication.
30 be the maximum the specification allows (300 ns) which might cause
/linux-4.4.14/Documentation/video4linux/bttv/
DREADME.freeze55 doing DMA at the same time. bttv + ide seems to cause this sometimes,
67 IRQ sharing is known to cause problems in some cases. It works just
71 VGA cards seems to cause trouble sometimes. I've also seen funny
/linux-4.4.14/fs/exofs/
DBUGS1 - Out-of-space may cause a severe problem if the object (and directory entry)
/linux-4.4.14/arch/hexagon/kernel/
Dptrace.c92 ONEXT(&dummy, cause); in genregs_get()
142 INEXT(&bucket, cause); in genregs_set()
/linux-4.4.14/Documentation/hwmon/
Dadc128d81822 When the HOT Temperature Limit is crossed, this will cause an alarm that will
36 is read at least once. This means that the cause for the alarm may
Dlm8034 this will cause an alarm that will be reasserted until the temperature
56 is read at least once. This means that the cause for the alarm may
Dlm9386 list will cause the driver to use the next largest interval. The available
140 will cause the driver to use the next largest value. Also note: when manual
149 not available will cause the driver to use the next largest value. Also note
225 the hardware. Selecting a value which is not available will cause the driver
238 which is not available will cause the driver to use the next largest value.
Dw83l785ts36 and cause read errors. Or maybe the W83L785TS-S chip is simply unreliable,
Dsubmitting-patches86 discouraged as it is known to cause trouble with other (non-hwmon) I2C
96 writing to it might cause a bad misconfiguration.
/linux-4.4.14/arch/blackfin/kernel/cplb-nompu/
Dcplbmgr.c217 int cause = seqstat & 0x3f; in cplb_hdr() local
219 switch (cause) { in cplb_hdr()
/linux-4.4.14/Documentation/sound/alsa/
DVIA82xx-mixer.txt6 Setting it to 'Input2' on such boards will cause recording to hang, or fail
/linux-4.4.14/Documentation/power/
Dinterface.txt29 /sys/power/state will cause the kernel to disable nonboot CPUs and freeze
31 in the 'test' mode, writing 'disk' to /sys/power/state will cause the kernel
74 CAUTION: Using it will cause your machine's real-time (CMOS) clock to be
Dsuspend-and-interrupts.txt22 of suspended devices and cause unpredictable behavior to ensue as a result.
86 This way every interrupt from a wakeup interrupt source will either cause the
102 set will bring CPUs out of idle while in that state, but they will not cause the
/linux-4.4.14/drivers/isdn/act2000/
Dcapi.h61 struct cause { /* Cause information */ struct
68 } cause; member
228 __u8 cause; member
/linux-4.4.14/arch/hexagon/include/uapi/asm/
Duser.h56 unsigned long cause; member
/linux-4.4.14/arch/arc/include/asm/
Dkprobes.h51 int kprobe_fault_handler(struct pt_regs *regs, unsigned long cause);
/linux-4.4.14/Documentation/devicetree/bindings/power/reset/
Dkeystone-reset.txt8 block. The Reset Mux block can be configured to cause reset or not.
29 - ti,wdt-list: WDT list that can cause SoC reset. It's not related
/linux-4.4.14/arch/powerpc/platforms/8xx/
DKconfig104 Saying Y here will cause the cache on an MPC8xx processor to be used
114 Saying Y here will cause the ports on an MPC8xx processor to be used
136 This bug can cause incorrect code execution under certain
/linux-4.4.14/arch/mips/include/asm/sn/
Dnmi.h73 unsigned long cause; member
/linux-4.4.14/drivers/isdn/pcbit/
Dedss1.h77 unsigned short cause; member
Dcapi.h56 extern int capi_disc_req(ushort callref, struct sk_buff **skb, u_char cause);
Dcapi.c338 int capi_disc_req(ushort callref, struct sk_buff **skb, u_char cause) in capi_disc_req() argument
351 *(skb_put(*skb, 1)) = 0x80 | cause; in capi_disc_req()
/linux-4.4.14/arch/arc/
DKconfig.debug10 This increases the resident kernel footprint and will cause less
/linux-4.4.14/drivers/net/ethernet/cisco/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/emulex/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/stmicro/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/oki-semi/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/aurora/
DKconfig8 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/brocade/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/dec/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/tehuti/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/include/uapi/linux/
Dx25.h141 unsigned char cause; member
Drose.h75 unsigned char cause; member
/linux-4.4.14/Documentation/arm/
Dmem_alignment24 space, and might cause programs to fail unexpectedly.
33 will cause the kernel to print a message indicating
Dswp_emulation25 cause programs that perform SWP operations to uncached memory to deadlock, as
/linux-4.4.14/Documentation/filesystems/
Dxfs.txt108 cause problems for some applications that cannot handle
281 OR together the tags which represent errors which should cause panics:
307 Setting this to "1" will cause the "sync" flag set
312 Setting this to "1" will cause the "nodump" flag set
317 Setting this to "1" will cause the "noatime" flag set
322 Setting this to "1" will cause the "nosymlinks" flag set
327 Setting this to "1" will cause the "nodefrag" flag set
Dlocks.txt20 This should not cause problems for anybody, since everybody using a
35 over time, or under a very heavy mail load, would eventually cause the kernel
/linux-4.4.14/drivers/net/ethernet/synopsys/
DKconfig12 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/mellanox/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/Documentation/networking/
Dxfrm_sync.txt64 XFRM_AE_CR=16, /* Event cause is replay update */
65 XFRM_AE_CE=32, /* Event cause is timer expiry */
66 XFRM_AE_CU=64, /* Event cause is policy update */
69 message (kernel<->user) as well the cause (config, query or event).
Dtlan.txt56 2. You can append aui=1 to the end of the insmod line to cause
61 cause it to not function correctly.)
/linux-4.4.14/drivers/net/ethernet/ezchip/
DKconfig12 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/qualcomm/
DKconfig12 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/rocker/
DKconfig12 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/nuvoton/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/nvidia/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/xscale/
DKconfig14 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/agere/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/moxa/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/pasemi/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/sgi/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/tundra/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/net/sctp/
Dulpevent.c378 __be16 cause; in sctp_ulpevent_make_remote_error() local
382 cause = ch->cause; in sctp_ulpevent_make_remote_error()
412 sre->sre_error = cause; in sctp_ulpevent_make_remote_error()
/linux-4.4.14/drivers/staging/dgnc/
Ddgnc_neo.c374 unsigned char cause; in neo_parse_isr() local
423 cause = readb(&ch->ch_neo_uart->xoffchar1); in neo_parse_isr()
430 if (cause == UART_17158_XON_DETECT) { in neo_parse_isr()
439 } else if (cause == UART_17158_XOFF_DETECT) { in neo_parse_isr()
457 cause = readb(&ch->ch_neo_uart->mcr); in neo_parse_isr()
459 if ((cause & 0x4) == 0) { in neo_parse_isr()
460 if (cause & UART_MCR_RTS) { in neo_parse_isr()
474 if (cause & UART_MCR_DTR) { in neo_parse_isr()
/linux-4.4.14/drivers/net/ethernet/allwinner/
DKconfig15 affect the kernel: saying N will just cause the configurator
/linux-4.4.14/drivers/net/ethernet/hp/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/usr/
DKconfig31 other than "0" will cause all files owned by that UID to be
43 other than "0" will cause all files owned by that GID to be
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/
Dt4_hw.c4321 u32 cause = t4_read_reg(adapter, PL_INT_CAUSE_A); in t4_slow_intr_handler() local
4323 if (!(cause & GLBL_INTR_MASK)) in t4_slow_intr_handler()
4325 if (cause & CIM_F) in t4_slow_intr_handler()
4327 if (cause & MPS_F) in t4_slow_intr_handler()
4329 if (cause & NCSI_F) in t4_slow_intr_handler()
4331 if (cause & PL_F) in t4_slow_intr_handler()
4333 if (cause & SMB_F) in t4_slow_intr_handler()
4335 if (cause & XGMAC0_F) in t4_slow_intr_handler()
4337 if (cause & XGMAC1_F) in t4_slow_intr_handler()
4339 if (cause & XGMAC_KR0_F) in t4_slow_intr_handler()
[all …]
/linux-4.4.14/drivers/net/ethernet/xircom/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/rdc/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/silan/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/adaptec/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/faraday/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/cadence/
DKconfig15 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/seeq/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/bcma/
DREADME9 as standard AMBA device. Reading it's CID or PID can cause machine lockup.
/linux-4.4.14/drivers/net/ethernet/renesas/
DKconfig12 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/xilinx/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/ibm/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/Documentation/x86/x86_64/
Dmachinecheck5 by the CPU. Uncorrected errors typically cause a machine check
6 (often with panic), corrected ones cause a machine check log entry.
/linux-4.4.14/drivers/infiniband/ulp/iser/
Diser_verbs.c52 static void iser_cq_event_callback(struct ib_event *cause, void *context) in iser_cq_event_callback() argument
55 ib_event_msg(cause->event), cause->event); in iser_cq_event_callback()
58 static void iser_qp_event_callback(struct ib_event *cause, void *context) in iser_qp_event_callback() argument
61 ib_event_msg(cause->event), cause->event); in iser_qp_event_callback()
/linux-4.4.14/arch/arm64/
DKconfig238 …bool "Cortex-A53: 827319: Data cache clean instructions might cause overlapping transactions to th…
245 Under certain conditions this erratum can cause a clean line eviction
247 on the AMBA 5 CHI interface, which can cause data corruption if the
269 address, then this erratum might cause a clean cache line to be
281 bool "Cortex-A53: 819472: Store exclusive instructions might cause data corruption"
291 cause data corruption.
367 order to avoid the use of the ADRP instruction, which can cause
623 implement a global monitor, this option can cause programs that
687 Choosing this option will cause any unprotected (not using
/linux-4.4.14/arch/s390/include/asm/
Dptrace.h95 unsigned short cause; /* PER code, ATMID and AI */ member
/linux-4.4.14/Documentation/w1/slaves/
Dw1_ds240624 CRCs are checked on read and write. Failed checks cause an I/O error to be
/linux-4.4.14/drivers/net/ethernet/microchip/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/arc/
DKconfig12 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/arch/blackfin/kernel/cplb-mpu/
Dcplbmgr.c302 int cause = seqstat & 0x3f; in cplb_hdr() local
304 switch (cause) { in cplb_hdr()
/linux-4.4.14/drivers/i2c/busses/
Di2c-nomadik.c593 u32 cause; in nmk_i2c_xfer_one() local
602 cause = (i2c_sr >> 4) & 0x7; in nmk_i2c_xfer_one()
604 cause >= ARRAY_SIZE(abort_causes) ? in nmk_i2c_xfer_one()
606 abort_causes[cause]); in nmk_i2c_xfer_one()
/linux-4.4.14/drivers/net/ethernet/myricom/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/packetengines/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/dlink/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/neterion/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/via/
DKconfig12 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/Documentation/fb/
Dcirrusfb.txt78 * Assertions no longer cause an oops on purpose.
/linux-4.4.14/drivers/net/ethernet/sis/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/micrel/
DKconfig14 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/toshiba/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/scripts/coccinelle/free/
Ddevm_free.cocci4 /// function would cause a double free.
/linux-4.4.14/fs/jfs/
DKconfig49 Enabling this option will cause statistics from the JFS file system
/linux-4.4.14/fs/jffs2/
DLICENCE23 files, these files do not by themselves cause the resulting work to be
/linux-4.4.14/fs/ubifs/
DKconfig47 which means that file-system read operations will cause writes (inode atime
/linux-4.4.14/drivers/net/ethernet/ti/
Ddavinci_emac.c1403 u32 ch, cause; in emac_poll() local
1409 cause = ((status & EMAC_MACSTATUS_TXERRCODE_MASK) >> in emac_poll()
1411 if (cause) { in emac_poll()
1416 &emac_txhost_errcodes[cause][0], ch); in emac_poll()
1419 cause = ((status & EMAC_MACSTATUS_RXERRCODE_MASK) >> in emac_poll()
1421 if (cause) { in emac_poll()
1426 &emac_rxhost_errcodes[cause][0], ch); in emac_poll()
/linux-4.4.14/drivers/net/ethernet/alteon/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/Documentation/devicetree/bindings/gpio/
Dgpio-poweroff.txt11 condition. This will also cause an inactive->active edge condition, so
/linux-4.4.14/Documentation/powerpc/
Dtransactional_memory.txt60 abort handler can check the cause of the failure, and retry.
91 give the appearance of success) or perform operations that cause transaction
171 Failure cause codes used by kernel
/linux-4.4.14/fs/cifs/
DKconfig42 Enabling this option will cause statistics for each server share
116 Enabling this option will cause the cifs client to attempt to
146 the cifs module and can cause additional logging of debug
/linux-4.4.14/arch/mips/sgi-ip27/
Dip27-nmi.c121 printk("Cause : %08lx\n", nr->cause); in nmi_cpu_eframe_save()
/linux-4.4.14/drivers/net/ethernet/cirrus/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/Documentation/arm/nwfpe/
DNOTES22 This code will cause this problem:
/linux-4.4.14/drivers/net/ethernet/hisilicon/
DKconfig14 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/adi/
DKconfig14 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/Documentation/scsi/
Dhpsa.txt52 attribute will cause the driver to scan for new, changed, or removed devices
111 The above three ioctls all do exactly the same thing, which is to cause the driver
/linux-4.4.14/arch/mips/sgi-ip22/
Dip28-berr.c209 static inline const char *cause_excode_text(int cause) in cause_excode_text() argument
232 return txt[(cause & 0x7c) >> 2]; in cause_excode_text()
/linux-4.4.14/Documentation/frv/
Dgdbstub.txt113 (*) Pressing Ctrl-C in GDB. This will cause GDB to try and interrupt the
118 (*) Pressing the NMI button on the board will also cause a jump into the
/linux-4.4.14/Documentation/x86/
Dusb-legacy-support.txt19 2) If CONFIG_HIGHMEM64G is enabled, the PS/2 mouse emulation can cause
/linux-4.4.14/arch/hexagon/include/asm/
Delf.h163 DEST.cause = pt_cause(REGS); \
/linux-4.4.14/Documentation/video4linux/
Dhauppauge-wintv-cx88-ir.txt39 marking state(1); but stray light, etc can cause intermittent noise values
/linux-4.4.14/Documentation/sound/oss/
DPSS22 machines and will cause a crash on them.
/linux-4.4.14/drivers/net/ethernet/apple/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/drivers/net/ethernet/i825xx/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/arch/m68k/fpsp040/
Dsasin.S90 fbgt t_operr |cause an operr exception
/linux-4.4.14/Documentation/video4linux/cx88/
Dhauppauge-wintv-cx88-ir.txt39 marking state(1); but stray light, etc can cause intermittent noise values
/linux-4.4.14/Documentation/devicetree/bindings/regulator/
Dpwm-regulator.txt22 assumption that a %50 duty-cycle value will cause the
/linux-4.4.14/drivers/net/ethernet/atheros/
DKconfig13 kernel: saying N will just cause the configurator to skip all
/linux-4.4.14/include/net/
Drose.h136 unsigned char cause, diagnostic; member
/linux-4.4.14/Documentation/s390/
D3270.txt226 cause an EOF also by typing "^D" and hitting ENTER.
228 No PF key is preassigned to cause a job suspension, but you may cause a
230 assign this function to a PF key. To make PF7 cause job suspension,
/linux-4.4.14/arch/x86/
DKconfig.debug165 would otherwise cause a system to silently reboot. Disabling this
166 option saves about 4k and might cause you much additional grey
209 will cause a performance drop and should only be enabled for
311 This option will cause struct boot_params to be exported via debugfs.
/linux-4.4.14/Documentation/sound/alsa/soc/
Dpops_clicks.txt11 depending on the audio usage and this can subsequently cause a small pop or
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dtps6507x.txt17 Missing of these properties can cause the regulator registration

123