1 /* 2 * BSD LICENSE 3 * 4 * Copyright (C) Cavium, Inc. 2017. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 10 * * Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * * Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in 14 * the documentation and/or other materials provided with the 15 * distribution. 16 * * Neither the name of Cavium, Inc nor the names of its 17 * contributors may be used to endorse or promote products derived 18 * from this software without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 */ 32 33 34 #include <rte_common.h> 35 #include <rte_branch_prediction.h> 36 37 #include "ssovf_evdev.h" 38 #include <octeontx_mbox.h> 39 40 enum { 41 SSO_SYNC_ORDERED, 42 SSO_SYNC_ATOMIC, 43 SSO_SYNC_UNTAGGED, 44 SSO_SYNC_EMPTY 45 }; 46 47 #ifndef __hot 48 #define __hot __attribute__((hot)) 49 #endif 50 51 /* SSO Operations */ 52 53 static __rte_always_inline uint16_t 54 ssows_get_work(struct ssows *ws, struct rte_event *ev) 55 { 56 uint64_t get_work0, get_work1; 57 uint64_t sched_type_queue; 58 59 ssovf_load_pair(get_work0, get_work1, ws->getwork); 60 61 sched_type_queue = (get_work0 >> 32) & 0xfff; 62 ws->cur_tt = sched_type_queue & 0x3; 63 ws->cur_grp = sched_type_queue >> 2; 64 sched_type_queue = sched_type_queue << 38; 65 66 ev->event = sched_type_queue | (get_work0 & 0xffffffff); 67 ev->u64 = get_work1; 68 return !!get_work1; 69 } 70 71 static __rte_always_inline void 72 ssows_add_work(struct ssows *ws, const uint64_t event_ptr, const uint32_t tag, 73 const uint8_t new_tt, const uint8_t grp) 74 { 75 uint64_t add_work0; 76 77 add_work0 = tag | ((uint64_t)(new_tt) << 32); 78 ssovf_store_pair(add_work0, event_ptr, ws->grps[grp]); 79 } 80 81 static __rte_always_inline void 82 ssows_swtag_full(struct ssows *ws, const uint64_t event_ptr, const uint32_t tag, 83 const uint8_t new_tt, const uint8_t grp) 84 { 85 uint64_t swtag_full0; 86 87 swtag_full0 = tag | ((uint64_t)(new_tt & 0x3) << 32) | 88 ((uint64_t)grp << 34); 89 ssovf_store_pair(swtag_full0, event_ptr, (ws->base + 90 SSOW_VHWS_OP_SWTAG_FULL0)); 91 } 92 93 static __rte_always_inline void 94 ssows_swtag_desched(struct ssows *ws, uint32_t tag, uint8_t new_tt, uint8_t grp) 95 { 96 uint64_t val; 97 98 val = tag | ((uint64_t)(new_tt & 0x3) << 32) | ((uint64_t)grp << 34); 99 ssovf_write64(val, ws->base + SSOW_VHWS_OP_SWTAG_DESCHED); 100 } 101 102 static __rte_always_inline void 103 ssows_swtag_norm(struct ssows *ws, uint32_t tag, uint8_t new_tt) 104 { 105 uint64_t val; 106 107 val = tag | ((uint64_t)(new_tt & 0x3) << 32); 108 ssovf_write64(val, ws->base + SSOW_VHWS_OP_SWTAG_NORM); 109 } 110 111 static __rte_always_inline void 112 ssows_swtag_untag(struct ssows *ws) 113 { 114 ssovf_write64(0, ws->base + SSOW_VHWS_OP_SWTAG_UNTAG); 115 ws->cur_tt = SSO_SYNC_UNTAGGED; 116 } 117 118 static __rte_always_inline void 119 ssows_upd_wqp(struct ssows *ws, uint8_t grp, uint64_t event_ptr) 120 { 121 ssovf_store_pair((uint64_t)grp << 34, event_ptr, (ws->base + 122 SSOW_VHWS_OP_UPD_WQP_GRP0)); 123 } 124 125 static __rte_always_inline void 126 ssows_desched(struct ssows *ws) 127 { 128 ssovf_write64(0, ws->base + SSOW_VHWS_OP_DESCHED); 129 } 130 131 static __rte_always_inline void 132 ssows_swtag_wait(struct ssows *ws) 133 { 134 /* Wait for the SWTAG/SWTAG_FULL operation */ 135 while (ssovf_read64(ws->base + SSOW_VHWS_SWTP)) 136 ; 137 } 138