| 122 | } |
| 123 | |
| 124 | static inline void |
| 125 | sfc_ef10_ev_qprime(volatile void *qprime, unsigned int read_ptr, |
| 126 | unsigned int ptr_mask) |
| 127 | { |
| 128 | efx_dword_t dword; |
| 129 | |
| 130 | EFX_POPULATE_DWORD_1(dword, ERF_DZ_EVQ_RPTR, read_ptr & ptr_mask); |
| 131 | |
| 132 | rte_write32_relaxed(dword.ed_u32[0], qprime); |
| 133 | rte_wmb(); |
| 134 | } |
| 135 | |
| 136 | |
| 137 | const uint32_t * sfc_ef10_supported_ptypes_get(uint32_t tunnel_encaps); |
no test coverage detected