net/ixgbe/base: fix host interface shadow RAM read
[dpdk.git] / drivers / net / dpaa / dpaa_ethdev.h
index da06f1f..4c40ff8 100644 (file)
@@ -42,6 +42,7 @@
 
 /* RX queue tail drop threshold (CGR Based) in frame count */
 #define CGR_RX_PERFQ_THRESH 256
+#define CGR_TX_CGR_THRESH 512
 
 /*max mac filter for memac(8) including primary mac addr*/
 #define DPAA_MAX_MAC_FILTER (MEMAC_NUM_OF_PADDRS + 1)
@@ -110,11 +111,11 @@ struct dpaa_if {
        struct qman_fq *rx_queues;
        struct qman_cgr *cgr_rx;
        struct qman_fq *tx_queues;
+       struct qman_cgr *cgr_tx;
        struct qman_fq debug_queues[2];
        uint16_t nb_rx_queues;
        uint16_t nb_tx_queues;
        uint32_t ifid;
-       struct fman_if *fif;
        struct dpaa_bp_info *bp_info;
        struct rte_eth_fc_conf *fc_conf;
 };
@@ -159,12 +160,14 @@ struct dpaa_if_stats {
        uint64_t tund;          /**<Tx Undersized */
 };
 
+__rte_internal
 int
 dpaa_eth_eventq_attach(const struct rte_eth_dev *dev,
                int eth_rx_queue_id,
                u16 ch_id,
                const struct rte_event_eth_rx_adapter_queue_conf *queue_conf);
 
+__rte_internal
 int
 dpaa_eth_eventq_detach(const struct rte_eth_dev *dev,
                           int eth_rx_queue_id);
@@ -182,4 +185,26 @@ dpaa_rx_cb_atomic(void *event,
                  const struct qm_dqrr_entry *dqrr,
                  void **bufs);
 
+/* PMD related logs */
+extern int dpaa_logtype_pmd;
+
+#define DPAA_PMD_LOG(level, fmt, args...) \
+       rte_log(RTE_LOG_ ## level, dpaa_logtype_pmd, "%s(): " fmt "\n", \
+               __func__, ##args)
+
+#define PMD_INIT_FUNC_TRACE() DPAA_PMD_LOG(DEBUG, " >>")
+
+#define DPAA_PMD_DEBUG(fmt, args...) \
+       DPAA_PMD_LOG(DEBUG, fmt, ## args)
+#define DPAA_PMD_ERR(fmt, args...) \
+       DPAA_PMD_LOG(ERR, fmt, ## args)
+#define DPAA_PMD_INFO(fmt, args...) \
+       DPAA_PMD_LOG(INFO, fmt, ## args)
+#define DPAA_PMD_WARN(fmt, args...) \
+       DPAA_PMD_LOG(WARNING, fmt, ## args)
+
+/* DP Logs, toggled out at compile time if level lower than current level */
+#define DPAA_DP_LOG(level, fmt, args...) \
+       RTE_LOG_DP(level, PMD, fmt, ## args)
+
 #endif