Lines Matching refs:intpend_pos

57 	const u32 intpend_pos = 10;  in nx_dpc_set_interrupt_enable()  local
58 const u32 intpend_mask = 1ul << intpend_pos; in nx_dpc_set_interrupt_enable()
84 const u32 intpend_pos = 10; in nx_dpc_set_interrupt_enable32() local
85 const u32 intpend_mask = 1 << intpend_pos; in nx_dpc_set_interrupt_enable32()
108 const u32 intpend_pos = 10; in nx_dpc_get_interrupt_pending() local
109 const u32 intpend_mask = 1ul << intpend_pos; in nx_dpc_get_interrupt_pending()
112 intpend_mask) >> intpend_pos); in nx_dpc_get_interrupt_pending()
117 const u32 intpend_pos = 10; in nx_dpc_get_interrupt_pending32() local
118 const u32 intpend_mask = 1 << intpend_pos; in nx_dpc_get_interrupt_pending32()
121 intpend_mask) >> intpend_pos); in nx_dpc_get_interrupt_pending32()
126 const u32 intpend_pos = 10; in nx_dpc_clear_interrupt_pending() local
132 regvalue |= 1ul << intpend_pos; in nx_dpc_clear_interrupt_pending()
139 const u32 intpend_pos = 10; in nx_dpc_clear_interrupt_pending32() local
140 const u32 intpend_mask = 1 << intpend_pos; in nx_dpc_clear_interrupt_pending32()
147 writel((u32)(read_value | ((pending_flag & 0x01) << intpend_pos)), in nx_dpc_clear_interrupt_pending32()
155 const u32 intpend_pos = 10; in nx_dpc_set_interrupt_enable_all() local
156 const u32 intpend_mask = 1ul << intpend_pos; in nx_dpc_set_interrupt_enable_all()
179 const u32 intpend_pos = 10; in nx_dpc_get_interrupt_pending_all() local
180 const u32 intpend_mask = 1ul << intpend_pos; in nx_dpc_get_interrupt_pending_all()
183 intpend_mask) >> intpend_pos); in nx_dpc_get_interrupt_pending_all()
188 const u32 intpend_pos = 10; in nx_dpc_clear_interrupt_pending_all() local
194 regvalue |= 1ul << intpend_pos; in nx_dpc_clear_interrupt_pending_all()
202 const u32 intpend_pos = 10; in nx_dpc_get_interrupt_pending_number() local
208 (pregister->dpcctrl0 >> intpend_pos)); in nx_dpc_get_interrupt_pending_number()
468 const u32 intpend_pos = 10; in nx_dpc_set_dpc_enable() local
469 const u32 intpend_mask = 1ul << intpend_pos; in nx_dpc_set_dpc_enable()
596 const u32 intpend_pos = 10; in nx_dpc_set_mode() local
614 temp &= (u32)~(1u << intpend_pos); in nx_dpc_set_mode()