1 /* 2 * Copyright (c) 2014-2015 Hisilicon Limited. 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 */ 9 10 #ifndef _HNS_DSAF_PPE_H 11 #define _HNS_DSAF_PPE_H 12 13 #include <linux/platform_device.h> 14 15 #include "hns_dsaf_main.h" 16 #include "hns_dsaf_mac.h" 17 #include "hns_dsaf_rcb.h" 18 19 #define HNS_PPE_SERVICE_NW_ENGINE_NUM DSAF_COMM_CHN 20 #define HNS_PPE_DEBUG_NW_ENGINE_NUM 1 21 #define HNS_PPE_COM_NUM DSAF_COMM_DEV_NUM 22 23 #define PPE_COMMON_REG_OFFSET 0x70000 24 #define PPE_REG_OFFSET 0x10000 25 26 #define ETH_PPE_DUMP_NUM 576 27 #define ETH_PPE_STATIC_NUM 12 28 29 #define HNS_PPEV2_RSS_IND_TBL_SIZE 256 30 #define HNS_PPEV2_RSS_KEY_SIZE 40 /* in bytes or 320 bits */ 31 #define HNS_PPEV2_RSS_KEY_NUM (HNS_PPEV2_RSS_KEY_SIZE / sizeof(u32)) 32 33 enum ppe_qid_mode { 34 PPE_QID_MODE0 = 0, /* fixed queue id mode */ 35 PPE_QID_MODE1, /* switch:128VM non switch:6Port/4VM/4TC */ 36 PPE_QID_MODE2, /* switch:32VM/4TC non switch:6Port/16VM */ 37 PPE_QID_MODE3, /* switch:4TC/8RSS non switch:2Port/64VM */ 38 PPE_QID_MODE4, /* switch:8VM/16RSS non switch:2Port/16VM/4TC */ 39 PPE_QID_MODE5, /* switch:16VM/8TC non switch:6Port/16RSS */ 40 PPE_QID_MODE6, /* switch:32VM/4RSS non switch:6Port/2VM/8TC */ 41 PPE_QID_MODE7, /* switch:32RSS non switch:2Port/8VM/8TC */ 42 PPE_QID_MODE8, /* switch:6VM/4TC/4RSS non switch:2Port/16VM/4RSS */ 43 PPE_QID_MODE9, /* non switch:2Port/32VM/2RSS */ 44 PPE_QID_MODE10, /* non switch:2Port/32RSS */ 45 PPE_QID_MODE11, /* non switch:2Port/4TC/16RSS */ 46 }; 47 48 enum ppe_port_mode { 49 PPE_MODE_GE = 0, 50 PPE_MODE_XGE, 51 }; 52 53 enum ppe_common_mode { 54 PPE_COMMON_MODE_DEBUG = 0, 55 PPE_COMMON_MODE_SERVICE, 56 PPE_COMMON_MODE_MAX 57 }; 58 59 struct hns_ppe_hw_stats { 60 u64 rx_pkts_from_sw; 61 u64 rx_pkts; 62 u64 rx_drop_no_bd; 63 u64 rx_alloc_buf_fail; 64 u64 rx_alloc_buf_wait; 65 u64 rx_drop_no_buf; 66 u64 rx_err_fifo_full; 67 u64 tx_bd_form_rcb; 68 u64 tx_pkts_from_rcb; 69 u64 tx_pkts; 70 u64 tx_err_fifo_empty; 71 u64 tx_err_checksum; 72 }; 73 74 struct hns_ppe_cb { 75 struct device *dev; 76 struct hns_ppe_cb *next; /* pointer to next ppe device */ 77 struct ppe_common_cb *ppe_common_cb; /* belong to */ 78 struct hns_ppe_hw_stats hw_stats; 79 80 u8 index; /* index in a ppe common device */ 81 u8 port; /* port id in dsaf */ 82 void __iomem *io_base; 83 int virq; 84 u32 rss_indir_table[HNS_PPEV2_RSS_IND_TBL_SIZE]; /*shadow indir tab */ 85 u32 rss_key[HNS_PPEV2_RSS_KEY_NUM]; /* rss hash key */ 86 }; 87 88 struct ppe_common_cb { 89 struct device *dev; 90 struct dsaf_device *dsaf_dev; 91 void __iomem *io_base; 92 93 enum ppe_common_mode ppe_mode; 94 95 u8 comm_index; /*ppe_common index*/ 96 97 u32 ppe_num; 98 struct hns_ppe_cb ppe_cb[0]; 99 100 }; 101 102 int hns_ppe_init(struct dsaf_device *dsaf_dev); 103 104 void hns_ppe_uninit(struct dsaf_device *dsaf_dev); 105 106 void hns_ppe_reset_common(struct dsaf_device *dsaf_dev, u8 ppe_common_index); 107 108 void hns_ppe_update_stats(struct hns_ppe_cb *ppe_cb); 109 110 int hns_ppe_get_sset_count(int stringset); 111 int hns_ppe_get_regs_count(void); 112 void hns_ppe_get_regs(struct hns_ppe_cb *ppe_cb, void *data); 113 114 void hns_ppe_get_strings(struct hns_ppe_cb *ppe_cb, int stringset, u8 *data); 115 void hns_ppe_get_stats(struct hns_ppe_cb *ppe_cb, u64 *data); 116 void hns_ppe_set_tso_enable(struct hns_ppe_cb *ppe_cb, u32 value); 117 void hns_ppe_set_rss_key(struct hns_ppe_cb *ppe_cb, 118 const u32 rss_key[HNS_PPEV2_RSS_KEY_NUM]); 119 void hns_ppe_set_indir_table(struct hns_ppe_cb *ppe_cb, 120 const u32 rss_tab[HNS_PPEV2_RSS_IND_TBL_SIZE]); 121 #endif /* _HNS_DSAF_PPE_H */ 122