/********************************************************************** Copyright(c) 2019 Arm Corporation All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Arm Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **********************************************************************/ #include #include #include #ifndef max #define max(a,b) (((a) > (b)) ? (a) : (b)) #endif #ifndef min #define min(a,b) (((a) < (b)) ? (a) : (b)) #endif #define SHA1_MB_CE_MAX_LANES 2 #if SHA1_MB_CE_MAX_LANES >=2 void sha1_mb_ce_x2(SHA1_JOB *, SHA1_JOB *, int); #endif void sha1_mb_ce_x1(SHA1_JOB *, int); #define LANE_IS_NOT_FINISHED(state,i) \ (((state->lens[i]&(~0xf))!=0) && state->ldata[i].job_in_lane!=NULL) #define LANE_IS_FINISHED(state,i) \ (((state->lens[i]&(~0xf))==0) && state->ldata[i].job_in_lane!=NULL) #define LANE_IS_FREE(state,i) \ (((state->lens[i]&(~0xf))==0) && state->ldata[i].job_in_lane==NULL) #define LANE_IS_INVALID(state,i) \ (((state->lens[i]&(~0xf))!=0) && state->ldata[i].job_in_lane==NULL) void sha1_mb_mgr_init_ce(SHA1_MB_JOB_MGR * state) { unsigned int i; state->unused_lanes = 0xf; state->num_lanes_inuse = 0; for (i = 0; i < SHA1_MB_CE_MAX_LANES; i++) { state->unused_lanes <<= 4; state->unused_lanes |= i; state->lens[i] = i; state->ldata[i].job_in_lane = 0; } //lanes > SHA1_MB_CE_MAX_LANES is invalid lane for (; i < SHA1_MAX_LANES; i++) { state->lens[i] = 0xf; state->ldata[i].job_in_lane = 0; } } static int sha1_mb_mgr_do_jobs(SHA1_MB_JOB_MGR * state) { int lane_idx, len, i, lanes; int lane_idx_array[SHA1_MAX_LANES]; if (state->num_lanes_inuse == 0) { return -1; } #if SHA1_MB_CE_MAX_LANES == 2 if (state->num_lanes_inuse == 2) { len = min(state->lens[0], state->lens[1]); lane_idx = len & 0xf; len &= ~0xf; sha1_mb_ce_x2(state->ldata[0].job_in_lane, state->ldata[1].job_in_lane, len >> 4); } else #endif { lanes = 0, len = 0; for (i = 0; i < SHA1_MAX_LANES && lanes < state->num_lanes_inuse; i++) { if (LANE_IS_NOT_FINISHED(state, i)) { if (lanes) len = min(len, state->lens[i]); else len = state->lens[i]; lane_idx_array[lanes] = i; lanes++; } } if (lanes == 0) return -1; lane_idx = len & 0xf; len = len & (~0xf); #if SHA1_MB_CE_MAX_LANES >=2 if (lanes == 2) { sha1_mb_ce_x2(state->ldata[lane_idx_array[0]].job_in_lane, state->ldata[lane_idx_array[1]].job_in_lane, len >> 4); } else #endif { sha1_mb_ce_x1(state->ldata[lane_idx_array[0]].job_in_lane, len >> 4); } } //only return the min length job for (i = 0; i < SHA1_MAX_LANES; i++) { if (LANE_IS_NOT_FINISHED(state, i)) { state->lens[i] -= len; state->ldata[i].job_in_lane->len -= len; state->ldata[i].job_in_lane->buffer += len << 2; } } return lane_idx; } static SHA1_JOB *sha1_mb_mgr_free_lane(SHA1_MB_JOB_MGR * state) { int i; SHA1_JOB *ret = NULL; for (i = 0; i < SHA1_MB_CE_MAX_LANES; i++) { if (LANE_IS_FINISHED(state, i)) { state->unused_lanes <<= 4; state->unused_lanes |= i; state->num_lanes_inuse--; ret = state->ldata[i].job_in_lane; ret->status = STS_COMPLETED; state->ldata[i].job_in_lane = NULL; break; } } return ret; } static void sha1_mb_mgr_insert_job(SHA1_MB_JOB_MGR * state, SHA1_JOB * job) { int lane_idx; //add job into lanes lane_idx = state->unused_lanes & 0xf; //fatal error assert(lane_idx < SHA1_MB_CE_MAX_LANES); state->lens[lane_idx] = (job->len << 4) | lane_idx; state->ldata[lane_idx].job_in_lane = job; state->unused_lanes >>= 4; state->num_lanes_inuse++; } SHA1_JOB *sha1_mb_mgr_submit_ce(SHA1_MB_JOB_MGR * state, SHA1_JOB * job) { #ifndef NDEBUG int lane_idx; #endif SHA1_JOB *ret; //add job into lanes sha1_mb_mgr_insert_job(state, job); ret = sha1_mb_mgr_free_lane(state); if (ret != NULL) { return ret; } //submit will wait all lane has data if (state->num_lanes_inuse < SHA1_MB_CE_MAX_LANES) return NULL; #ifndef NDEBUG lane_idx = sha1_mb_mgr_do_jobs(state); assert(lane_idx != -1); #else sha1_mb_mgr_do_jobs(state); #endif //~ i = lane_idx; ret = sha1_mb_mgr_free_lane(state); return ret; } SHA1_JOB *sha1_mb_mgr_flush_ce(SHA1_MB_JOB_MGR * state) { SHA1_JOB *ret; ret = sha1_mb_mgr_free_lane(state); if (ret) { return ret; } sha1_mb_mgr_do_jobs(state); return sha1_mb_mgr_free_lane(state); }