| /arch/powerpc/include/asm/ |
| A D | feature-fixups.h | 85 END_FTR_SECTION_NESTED((msk), (msk), label) 87 #define END_FTR_SECTION_IFSET(msk) END_FTR_SECTION((msk), (msk)) argument 88 #define END_FTR_SECTION_IFCLR(msk) END_FTR_SECTION((msk), 0) argument 95 ALT_FTR_SECTION_END_NESTED(msk, msk, label) 117 END_MMU_FTR_SECTION_NESTED((msk), (msk), label) 122 #define END_MMU_FTR_SECTION_IFSET(msk) END_MMU_FTR_SECTION((msk), (msk)) argument 131 ALT_MMU_FTR_SECTION_END_NESTED(msk, msk, label) 152 #define END_FW_FTR_SECTION_IFSET(msk) END_FW_FTR_SECTION((msk), (msk)) argument 161 ALT_FW_FTR_SECTION_END_NESTED(msk, msk, label) 181 ASM_FTR_IF(section_if, section_else, (msk), (msk)) [all …]
|
| A D | xive.h | 76 u32 msk; member
|
| /arch/arm/plat-orion/ |
| A D | gpio.c | 461 u32 msk; in orion_gpio_dbg_show() local 464 msk = 1 << i; in orion_gpio_dbg_show() 465 is_out = !(io_conf & msk); in orion_gpio_dbg_show() 471 str_hi_lo(out & msk), in orion_gpio_dbg_show() 472 blink & msk ? "(blink )" : ""); in orion_gpio_dbg_show() 477 str_hi_lo((data_in ^ in_pol) & msk), in orion_gpio_dbg_show() 478 str_lo_hi(in_pol & msk)); in orion_gpio_dbg_show() 479 if (!((edg_msk | lvl_msk) & msk)) { in orion_gpio_dbg_show() 483 if (edg_msk & msk) in orion_gpio_dbg_show() 485 if (lvl_msk & msk) in orion_gpio_dbg_show() [all …]
|
| /arch/sparc/kernel/ |
| A D | sun4d_smp.c | 186 int msk; member 202 work->single = work->msk = work->resched = 0; in smp4d_ipi_init() 214 if (work->msk) { in sun4d_ipi_interrupt() 215 work->msk = 0; in sun4d_ipi_interrupt() 253 work->msk = 1; in sun4d_ipi_mask_one()
|
| A D | leon_smp.c | 263 int msk; member 299 work->single = work->msk = work->resched = 0; in leon_ipi_init() 326 work->msk = 1; in leon_ipi_mask_one() 351 if (work->msk) { in leonsmp_ipi_interrupt() 352 work->msk = 0; in leonsmp_ipi_interrupt()
|
| /arch/arm/mach-footbridge/ |
| A D | netwinder-hw.c | 365 int msk; in nw_cpld_modify() local 372 for (msk = 8; msk; msk >>= 1) { in nw_cpld_modify() 373 int bit = current_cpld & msk; in nw_cpld_modify()
|
| /arch/powerpc/kvm/ |
| A D | book3s_xive.h | 273 static inline u32 __xive_read_eq(__be32 *qpage, u32 msk, u32 *idx, u32 *toggle) in __xive_read_eq() argument 282 *idx = (*idx + 1) & msk; in __xive_read_eq()
|
| A D | book3s_xive.c | 178 hirq = __xive_read_eq(qpage, q->msk, &idx, &toggle); in xive_vm_scan_interrupts() 449 idx = (idx + 1) & q->msk; in xive_vm_scan_for_rerouted_irqs() 1041 max = (q->msk + 1) - XIVE_Q_GAP; in xive_try_pick_queue() 2118 irq = __xive_read_eq(q->qpage, q->msk, &idx, &toggle); in xive_pre_save_queue() 2824 idx = (idx + 1) & q->msk; in kvmppc_xive_debug_show_queues()
|
| /arch/arm64/boot/dts/mediatek/ |
| A D | mt2712-evb.dts | 206 mediatek,u3p-dis-msk = <0x1>; 218 //mediatek,u3p-dis-msk = <0x1>;
|
| A D | mt8395-kontron-3-5-sbc-i1200.dts | 1117 mediatek,u3p-dis-msk = <0x01>;
|
| A D | mt8395-radxa-nio-12l.dts | 1026 mediatek,u3p-dis-msk = <1>;
|
| A D | mt8195-cherry.dtsi | 1572 mediatek,u3p-dis-msk = <1>;
|
| /arch/arm/common/ |
| A D | sa1111.c | 587 u32 msk, val; in sa1111_gpio_set_multiple() local 589 msk = *mask; in sa1111_gpio_set_multiple() 593 sa1111_gpio_modify(reg + SA1111_GPIO_PADWR, msk & 15, val); in sa1111_gpio_set_multiple() 594 sa1111_gpio_modify(reg + SA1111_GPIO_PASSR, msk & 15, val); in sa1111_gpio_set_multiple() 595 sa1111_gpio_modify(reg + SA1111_GPIO_PBDWR, (msk >> 4) & 255, val >> 4); in sa1111_gpio_set_multiple() 596 sa1111_gpio_modify(reg + SA1111_GPIO_PBSSR, (msk >> 4) & 255, val >> 4); in sa1111_gpio_set_multiple() 597 sa1111_gpio_modify(reg + SA1111_GPIO_PCDWR, (msk >> 12) & 255, val >> 12); in sa1111_gpio_set_multiple() 598 sa1111_gpio_modify(reg + SA1111_GPIO_PCSSR, (msk >> 12) & 255, val >> 12); in sa1111_gpio_set_multiple()
|
| /arch/mips/net/ |
| A D | bpf_jit_comp.c | 461 u8 msk = MIPS_R_T9; in emit_bswap_r() local 474 emit(ctx, lui, msk, 0xff); /* msk = 0x00ff0000 */ in emit_bswap_r() 475 emit(ctx, ori, msk, msk, 0xff); /* msk = msk | 0xff */ in emit_bswap_r() 477 emit(ctx, and, tmp, dst, msk); /* tmp = dst & msk */ in emit_bswap_r() 480 emit(ctx, and, dst, dst, msk); /* dst = dst & msk */ in emit_bswap_r()
|
| /arch/x86/kernel/ |
| A D | process.c | 720 unsigned long debugctl, msk; in __switch_to_xtra() local 724 msk = tifn & _TIF_BLOCKSTEP; in __switch_to_xtra() 725 debugctl |= (msk >> TIF_BLOCKSTEP) << DEBUGCTLMSR_BTF_SHIFT; in __switch_to_xtra()
|
| /arch/mips/include/asm/octeon/ |
| A D | cvmx-asxx-defs.h | 411 uint64_t msk:64; member 413 uint64_t msk:64;
|
| /arch/x86/include/asm/ |
| A D | apic.h | 287 void (*send_IPI_mask_allbutself)(const struct cpumask *msk, int vec); 330 void (*send_IPI_mask_allbutself)(const struct cpumask *msk, int vec);
|
| /arch/powerpc/sysdev/xive/ |
| A D | common.c | 118 q->idx = (q->idx + 1) & q->msk; in xive_read_eq() 264 idx = (idx + 1) & q->msk; in xive_dump_eq() 514 max = (q->msk + 1) - 1; in xive_try_pick_target() 1806 for (i = 0; i < q->msk + 1; i++) { in xive_eq_debug_show_one()
|
| A D | native.c | 148 q->msk = order ? ((1u << (order - 2)) - 1) : 0; in xive_native_configure_queue()
|
| A D | spapr.c | 497 q->msk = order ? ((1u << (order - 2)) - 1) : 0; in xive_spapr_configure_queue()
|
| /arch/powerpc/sysdev/ |
| A D | mpic.c | 1699 u32 msk = 1 << hard_smp_processor_id(); in mpic_setup_this_cpu() local 1716 mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) | msk); in mpic_setup_this_cpu() 1745 u32 msk = 1 << hard_smp_processor_id(); in mpic_teardown_this_cpu() local 1756 mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) & ~msk); in mpic_teardown_this_cpu()
|
| /arch/x86/mm/ |
| A D | tlb.c | 35 # define __flush_tlb_multi(msk, info) native_flush_tlb_multi(msk, info) argument
|
| /arch/powerpc/kernel/ |
| A D | traps.c | 1375 unsigned long msk = 0xf0000000UL >> shift; in emulate_instruction() local 1378 regs->ccr = (regs->ccr & ~msk) | ((regs->xer >> shift) & msk); in emulate_instruction()
|
| /arch/arm/mach-omap2/ |
| A D | sram242x.S | 257 mov r8, #1 @ valid cfg msk
|
| A D | sram243x.S | 257 mov r8, #1 @ valid cfg msk
|