X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fark%2Fark_udm.c;h=28c4500a2c70a424bad858526fdfcab2b5ff39b6;hb=cd3b124955d4673fa0ddd423ebc01a5adf9501d4;hp=1ba7d26d475c3aee1a746ae53af7796a1d47e850;hpb=cf18d4def295699b98838fbe5ea666eff7aeaedf;p=dpdk.git diff --git a/drivers/net/ark/ark_udm.c b/drivers/net/ark/ark_udm.c index 1ba7d26d47..28c4500a2c 100644 --- a/drivers/net/ark/ark_udm.c +++ b/drivers/net/ark/ark_udm.c @@ -1,34 +1,5 @@ -/*- - * BSD LICENSE - * - * Copyright (c) 2015-2017 Atomic Rules LLC - * 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 copyright holder 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. +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright (c) 2015-2018 Atomic Rules LLC */ #include @@ -36,18 +7,20 @@ #include "ark_logs.h" #include "ark_udm.h" +static_assert(sizeof(struct ark_rx_meta) == 32, "Unexpected struct size ark_rx_meta"); + int ark_udm_verify(struct ark_udm_t *udm) { if (sizeof(struct ark_udm_t) != ARK_UDM_EXPECT_SIZE) { - PMD_DRV_LOG(ERR, + ARK_PMD_LOG(ERR, "ARK: UDM structure looks incorrect %d vs %zd\n", ARK_UDM_EXPECT_SIZE, sizeof(struct ark_udm_t)); return -1; } if (udm->setup.const0 != ARK_UDM_CONST) { - PMD_DRV_LOG(ERR, + ARK_PMD_LOG(ERR, "ARK: UDM module not found as expected 0x%08x\n", udm->setup.const0); return -1; @@ -78,13 +51,13 @@ ark_udm_reset(struct ark_udm_t *udm) status = ark_udm_stop(udm, 1); if (status != 0) { - PMD_DEBUG_LOG(INFO, "%s stop failed doing forced reset\n", + ARK_PMD_LOG(NOTICE, "%s stop failed doing forced reset\n", __func__); udm->cfg.command = 4; usleep(10); udm->cfg.command = 3; status = ark_udm_stop(udm, 0); - PMD_DEBUG_LOG(INFO, "%s stop status %d post failure" + ARK_PMD_LOG(INFO, "%s stop status %d post failure" " and forced reset\n", __func__, status); } else { @@ -122,7 +95,7 @@ ark_udm_configure(struct ark_udm_t *udm, } void -ark_udm_write_addr(struct ark_udm_t *udm, phys_addr_t addr) +ark_udm_write_addr(struct ark_udm_t *udm, rte_iova_t addr) { udm->rt_cfg.hw_prod_addr = addr; } @@ -154,7 +127,7 @@ ark_udm_packets(struct ark_udm_t *udm) void ark_udm_dump_stats(struct ark_udm_t *udm, const char *msg) { - PMD_STATS_LOG(INFO, "UDM Stats: %s" + ARK_PMD_LOG(INFO, "UDM Stats: %s" ARK_SU64 ARK_SU64 ARK_SU64 ARK_SU64 ARK_SU64 "\n", msg, "Pkts Received", udm->stats.rx_packet_count, @@ -167,7 +140,7 @@ ark_udm_dump_stats(struct ark_udm_t *udm, const char *msg) void ark_udm_dump_queue_stats(struct ark_udm_t *udm, const char *msg, uint16_t qid) { - PMD_STATS_LOG(INFO, "UDM Queue %3u Stats: %s" + ARK_PMD_LOG(INFO, "UDM Queue %3u Stats: %s" ARK_SU64 ARK_SU64 ARK_SU64 ARK_SU64 ARK_SU64 "\n", @@ -182,14 +155,14 @@ ark_udm_dump_queue_stats(struct ark_udm_t *udm, const char *msg, uint16_t qid) void ark_udm_dump(struct ark_udm_t *udm, const char *msg) { - PMD_DEBUG_LOG(DEBUG, "UDM Dump: %s Stopped: %d\n", msg, + ARK_PMD_LOG(DEBUG, "UDM Dump: %s Stopped: %d\n", msg, udm->cfg.stop_flushed); } void ark_udm_dump_setup(struct ark_udm_t *udm, uint16_t q_id) { - PMD_DEBUG_LOG(DEBUG, "UDM Setup Q: %u" + ARK_PMD_LOG(DEBUG, "UDM Setup Q: %u" ARK_SU64X ARK_SU32 "\n", q_id, "hw_prod_addr", udm->rt_cfg.hw_prod_addr, @@ -201,7 +174,7 @@ ark_udm_dump_perf(struct ark_udm_t *udm, const char *msg) { struct ark_udm_pcibp_t *bp = &udm->pcibp; - PMD_STATS_LOG(INFO, "UDM Performance %s" + ARK_PMD_LOG(INFO, "UDM Performance %s" ARK_SU32 ARK_SU32 ARK_SU32 ARK_SU32 ARK_SU32 ARK_SU32 "\n", msg,